From 0f4b5827d0d0cbe716347a148dabf10b2ede08e4 Mon Sep 17 00:00:00 2001 From: Eric Blade Date: Sat, 20 Nov 2010 03:29:53 -0500 Subject: [PATCH 001/162] re-undo the last merge change i made oops --- pyfpdb/CarbonToFpdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/CarbonToFpdb.py b/pyfpdb/CarbonToFpdb.py index 1a1541ee..cf8794da 100644 --- a/pyfpdb/CarbonToFpdb.py +++ b/pyfpdb/CarbonToFpdb.py @@ -66,7 +66,7 @@ class Carbon(HandHistoryConverter): # Static regexes re_SplitHands = re.compile(r'\n+(?=)') - re_GameInfo = re.compile(r'', re.MULTILINE) + re_GameInfo = re.compile(r'', re.MULTILINE) re_HandInfo = re.compile(r'[0-9]+)">') re_PlayerInfo = re.compile(r'', re.MULTILINE) From ba1b15048b87fe11b552b28a4942d76666db2b8c Mon Sep 17 00:00:00 2001 From: Worros Date: Mon, 22 Nov 2010 13:28:25 +0800 Subject: [PATCH 002/162] fpdb.pyw: Fix comment --- pyfpdb/fpdb.pyw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 91a0ebef..612f007f 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -1000,7 +1000,7 @@ class fpdb: self.add_and_display_tab(bulk_tab, _("Bulk Import")) def tab_tourney_import(self, widget, data=None): - """opens a tab for bulk importing""" + """opens a tab for bulk importing tournament summaries""" new_import_thread = GuiTourneyImport.GuiTourneyImport(self.settings, self.config, self.sql, self.window) self.threads.append(new_import_thread) bulk_tab=new_import_thread.get_vbox() From 2f72f5416eb15488ecc8d7cde9cbcbb7731038dd Mon Sep 17 00:00:00 2001 From: Eratosthenes Date: Mon, 22 Nov 2010 16:37:37 -0500 Subject: [PATCH 003/162] Handle tourney table changes and closures. --- pyfpdb/HUD_main.pyw | 87 +++++++++++++++++++++++-------------------- pyfpdb/Mucked.py | 9 +++-- pyfpdb/TableWindow.py | 14 ++++--- pyfpdb/XTables.py | 6 ++- 4 files changed, 65 insertions(+), 51 deletions(-) diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw index cd29f4ae..145e9048 100644 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -24,9 +24,6 @@ Main for FreePokerTools HUD. """ # TODO allow window resizing -# TODO hud to echo, but ignore non numbers -# TODO no stat window for hero -# TODO things to add to config.xml # Standard Library modules import sys @@ -39,26 +36,21 @@ import traceback import thread import time import string -import re # pyGTK modules -import pygtk import gtk import gobject # FreePokerTools modules import Configuration - - import Database -from HandHistoryConverter import getTableTitleRe +import Hud + # get the correct module for the current os if os.name == 'posix': import XTables as Tables elif os.name == 'nt': import WinTables as Tables -#import Tables -import Hud import locale lang = locale.getdefaultlocale()[0][0:2] @@ -79,7 +71,6 @@ else: c = Configuration.Config(file=options.config, dbname=options.dbname) log = Configuration.get_logger("logging.conf", "hud", log_dir=c.dir_log, log_file='HUD-log.txt') - class HUD_main(object): """A main() object to own both the read_stdin thread and the gui.""" # This class mainly provides state for controlling the multiple HUDs. @@ -144,14 +135,13 @@ class HUD_main(object): pass def client_destroyed(self, widget, hud): # call back for terminating the main eventloop - self.kill_hud(None, hud.table.name) + self.kill_hud(None, hud.table.key) def game_changed(self, widget, hud): print _("hud_main: Game changed.") def table_changed(self, widget, hud): - print _("hud_main: Table changed.") - self.kill_hud(None, hud.table.name) + self.kill_hud(None, hud.table.key) def destroy(self, *args): # call back for terminating the main eventloop log.info(_("Terminating normally.")) @@ -159,12 +149,24 @@ class HUD_main(object): def kill_hud(self, event, table): # called by an event in the HUD, to kill this specific HUD - if table in self.hud_dict: - self.hud_dict[table].kill() - self.hud_dict[table].main_window.destroy() - self.vb.remove(self.hud_dict[table].tablehudlabel) - del(self.hud_dict[table]) - self.main_window.resize(1, 1) + +# This method can be called by either gui or non-gui thread. It doesn't +# cost much to always do it in a thread-safe manner. + def idle(): + gtk.gdk.threads_enter() + try: + if table in self.hud_dict: + self.hud_dict[table].kill() + self.hud_dict[table].main_window.destroy() + self.vb.remove(self.hud_dict[table].tablehudlabel) + del(self.hud_dict[table]) + self.main_window.resize(1, 1) + except: + pass + finally: + gtk.gdk.threads_leave() + + gobject.idle_add(idle) def check_tables(self): for hud in self.hud_dict.keys(): @@ -178,42 +180,42 @@ class HUD_main(object): gtk.gdk.threads_enter() try: - table.gdkhandle = gtk.gdk.window_foreign_new(table.number) newlabel = gtk.Label("%s - %s" % (table.site, table_name)) self.vb.add(newlabel) newlabel.show() self.main_window.resize_children() - - self.hud_dict[table_name].tablehudlabel = newlabel - self.hud_dict[table_name].create(new_hand_id, self.config, stat_dict, cards) - for m in self.hud_dict[table_name].aux_windows: + + self.hud_dict[table.key].tablehudlabel = newlabel + self.hud_dict[table.key].create(new_hand_id, self.config, stat_dict, cards) + for m in self.hud_dict[table.key].aux_windows: m.create() m.update_gui(new_hand_id) - self.hud_dict[table_name].update(new_hand_id, self.config) - self.hud_dict[table_name].reposition_windows() + self.hud_dict[table.key].update(new_hand_id, self.config) + self.hud_dict[table.key].reposition_windows() except: log.error("*** Exception in HUD_main::idle_func() *** " + str(sys.exc_info())) for e in traceback.format_tb(sys.exc_info()[2]): log.error(e) 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 - self.hud_dict[table_name].stat_dict = stat_dict - self.hud_dict[table_name].cards = cards + return False + self.hud_dict[table.key] = Hud.Hud(self, table, max, poker_game, self.config, self.db_connection) + self.hud_dict[table.key].table_name = table_name + self.hud_dict[table.key].stat_dict = stat_dict + self.hud_dict[table.key].cards = cards + table.hud = self.hud_dict[table.key] + # set agg_bb_mult so that aggregate_tour and aggregate_ring can be ignored, # agg_bb_mult == 1 means no aggregation after these if statements: if type == "tour" and self.hud_params['aggregate_tour'] == False: - self.hud_dict[table_name].hud_params['agg_bb_mult'] = 1 + self.hud_dict[table.key].hud_params['agg_bb_mult'] = 1 elif type == "ring" and self.hud_params['aggregate_ring'] == False: - self.hud_dict[table_name].hud_params['agg_bb_mult'] = 1 + self.hud_dict[table.key].hud_params['agg_bb_mult'] = 1 if type == "tour" and self.hud_params['h_aggregate_tour'] == False: - self.hud_dict[table_name].hud_params['h_agg_bb_mult'] = 1 + self.hud_dict[table.key].hud_params['h_agg_bb_mult'] = 1 elif type == "ring" and self.hud_params['h_aggregate_ring'] == False: - self.hud_dict[table_name].hud_params['h_agg_bb_mult'] = 1 + self.hud_dict[table.key].hud_params['h_agg_bb_mult'] = 1 # sqlcoder: I forget why these are set to true (aren't they ignored from now on?) # but I think it's needed: self.hud_params['aggregate_ring'] = True @@ -222,7 +224,7 @@ class HUD_main(object): self.hud_params['aggregate_tour'] = True self.hud_params['h_aggregate_tour'] = True - [aw.update_data(new_hand_id, self.db_connection) for aw in self.hud_dict[table_name].aux_windows] + [aw.update_data(new_hand_id, self.db_connection) for aw in self.hud_dict[table.key].aux_windows] gobject.idle_add(idle_func) def update_HUD(self, new_hand_id, table_name, config): @@ -268,6 +270,8 @@ class HUD_main(object): self.destroy() break # this thread is not always killed immediately with gtk.main_quit() +# This block cannot be hoisted outside the while loop, because it would +# cause a problem when auto importing into an empty db. if not found: for site in self.config.get_supported_sites(): result = self.db_connection.get_site_id(site) @@ -355,9 +359,10 @@ class HUD_main(object): log.info(_("HUD_main.read_stdin: hand read in %4.3f seconds (%4.3f,%4.3f,%4.3f,%4.3f,%4.3f,%4.3f)") % (t6 - t0,t1 - t0,t2 - t0,t3 - t0,t4 - t0,t5 - t0,t6 - t0)) self.db_connection.connection.rollback() -# if type == "tour": -# tablewindow.check_table_no(None) -# # Ray!! tablewindow::check_table_no expects a HUD as an argument! + + if type == "tour": + self.hud_dict[temp_key].table.check_table_no(self.hud_dict[temp_key]) + if __name__== "__main__": # start the HUD_main object diff --git a/pyfpdb/Mucked.py b/pyfpdb/Mucked.py index cda24631..cf948221 100755 --- a/pyfpdb/Mucked.py +++ b/pyfpdb/Mucked.py @@ -415,9 +415,12 @@ class Aux_Seats(Aux_Window): # Methods likely to be of use for any Seat_Window implementation def destroy(self): """Destroy all of the seat windows.""" - for i in self.m_windows.keys(): - self.m_windows[i].destroy() - del(self.m_windows[i]) + try: + for i in self.m_windows.keys(): + self.m_windows[i].destroy() + del(self.m_windows[i]) + except AttributeError: + pass # Methods likely to be useful for mucked card windows (or similar) only def hide(self): diff --git a/pyfpdb/TableWindow.py b/pyfpdb/TableWindow.py index d780bdbc..61d7bd80 100644 --- a/pyfpdb/TableWindow.py +++ b/pyfpdb/TableWindow.py @@ -116,6 +116,7 @@ class Table_Window(object): self.config = config self.site = site + self.hud = None # fill in later if tournament is not None and table_number is not None: self.tournament = int(tournament) self.table = int(table_number) @@ -123,11 +124,13 @@ class Table_Window(object): self.type = "tour" table_kwargs = dict(tournament = self.tournament, table_number = self.table) self.tableno_re = getTableNoRe(self.config, self.site, tournament = self.tournament) + self.key = tournament # used as key for the hud_dict in HUD_main elif table_name is not None: self.name = table_name self.type = "cash" self.tournament = None table_kwargs = dict(table_name = table_name) + self.key = table_name else: return None @@ -135,6 +138,7 @@ class Table_Window(object): self.search_string = getTableTitleRe(self.config, self.site, self.type, **table_kwargs) self.find_table_parameters() + self.gdkhandle = gtk.gdk.window_foreign_new(self.number) geo = self.get_geometry() if geo is None: return None self.width = geo['width'] @@ -150,7 +154,7 @@ class Table_Window(object): # __str__ method for testing likely_attrs = ("number", "title", "site", "width", "height", "x", "y", "tournament", "table", "gdkhandle", "window", "parent", - "game", "search_string", "tableno_re") + "key", "hud", "game", "search_string", "tableno_re") temp = 'TableWindow object\n' for a in likely_attrs: if getattr(self, a, 0): @@ -185,13 +189,13 @@ class Table_Window(object): return False try: - mo = re.search(self.tableno_re, new_title) + mo = re.search(self.tableno_re, new_title) except AttributeError: #'Table' object has no attribute 'tableno_re' - return False + return False if mo is not None: #print "get_table_no: mo=",mo.groups() - return mo.group(1) + return int(mo.group(1)) return False #################################################################### @@ -256,7 +260,7 @@ class Table_Window(object): if result != False and result != self.table: self.table = result if hud is not None: - hud.main_window.emit("table_changed", hud) + hud.parent.main_window.emit("table_changed", hud) return True def check_bad_words(self, title): diff --git a/pyfpdb/XTables.py b/pyfpdb/XTables.py index b9a363d0..b082b8b2 100644 --- a/pyfpdb/XTables.py +++ b/pyfpdb/XTables.py @@ -44,6 +44,10 @@ class Table(Table_Window): def find_table_parameters(self): +# This is called by __init__(). Find the poker table window of interest, +# given the self.search_string. Then populate self.number, self.title, +# self.window, and self.parent (if required). + reg = ''' \s+(?P[\dxabcdef]+) # XID in hex \s(?P.+): # window title @@ -53,12 +57,10 @@ class Table(Table_Window): for listing in os.popen('xwininfo -root -tree').readlines(): if re.search(self.search_string, listing, re.I): mo = re.match(reg, listing, re.VERBOSE) -# mo = re.match('\s+([\dxabcdef]+) (.+):\s\(\"([a-zA-Z0-9\-.]+)\".+ (\d+)x(\d+)\+\d+\+\d+ \+(\d+)\+(\d+)', listing) title = re.sub('\"', '', mo.groupdict()["TITLE"]) if self.check_bad_words(title): continue self.number = int( mo.groupdict()["XID"], 0 ) self.title = title - self.hud = None # specified later break if self.number is None: From ac2937dc78208e7f3d418e6fa4d098bc1a40f2ea Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Tue, 23 Nov 2010 12:59:23 +0800 Subject: [PATCH 004/162] Session Viewer: Add a warning dialog on loading --- pyfpdb/GuiSessionViewer.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/pyfpdb/GuiSessionViewer.py b/pyfpdb/GuiSessionViewer.py index d12f1d10..6f0fd269 100644 --- a/pyfpdb/GuiSessionViewer.py +++ b/pyfpdb/GuiSessionViewer.py @@ -50,11 +50,14 @@ import Database import Filters import Charset +DEBUG = False + class GuiSessionViewer (threading.Thread): def __init__(self, config, querylist, mainwin, debug=True): self.debug = debug self.conf = config self.sql = querylist + self.window = mainwin self.liststore = None @@ -153,6 +156,28 @@ class GuiSessionViewer (threading.Thread): # make sure Hand column is not displayed #[x for x in self.columns if x[0] == 'hand'][0][1] = False + if DEBUG == False: + warning_string = """ +Session Viewer is proof of concept code only, and contains many bugs. + +Feel free to use the viewer, but there is no guarantee that the data is accurate. + +If you are interested in developing the code further please contact us via the usual channels. + +Thankyou +""" + self.warning_box(warning_string) + + def warning_box(self, str, diatitle=_("FPDB WARNING")): + diaWarning = gtk.Dialog(title=diatitle, parent=self.window, flags=gtk.DIALOG_DESTROY_WITH_PARENT, buttons=(gtk.STOCK_OK,gtk.RESPONSE_OK)) + + label = gtk.Label(str) + diaWarning.vbox.add(label) + label.show() + + response = diaWarning.run() + diaWarning.destroy() + return response def get_vbox(self): """returns the vbox of this thread""" From 9d89f9807e7338e09288498659a531b3f05f7e20 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Tue, 23 Nov 2010 16:56:41 -0500 Subject: [PATCH 005/162] Make HUD_main.pyw executable, again. --- pyfpdb/HUD_main.pyw | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 pyfpdb/HUD_main.pyw diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw old mode 100644 new mode 100755 From d3f07aae45667b7fd1648fa0bb12aa82dabe5f6c Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Wed, 24 Nov 2010 11:30:13 +0800 Subject: [PATCH 006/162] Stove: Mockup interface for a Stovelike EV calculator page --- pyfpdb/GuiStove.py | 205 +++++++++++++++++++++++++++++++++++++++++++++ pyfpdb/fpdb.pyw | 10 +++ 2 files changed, 215 insertions(+) create mode 100644 pyfpdb/GuiStove.py diff --git a/pyfpdb/GuiStove.py b/pyfpdb/GuiStove.py new file mode 100644 index 00000000..1ee825e2 --- /dev/null +++ b/pyfpdb/GuiStove.py @@ -0,0 +1,205 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +#Copyright 2008-2010 Steffen Schaumburg +#This program is free software: you can redistribute it and/or modify +#it under the terms of the GNU Affero General Public License as published by +#the Free Software Foundation, version 3 of the License. +# +#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 Affero General Public License +#along with this program. If not, see <http://www.gnu.org/licenses/>. +#In the "official" distribution you can find the license in agpl-3.0.txt. + +import L10n +_ = L10n.get_translation() + +import pygtk +pygtk.require('2.0') +import gtk +import os +import sys + +import Charset + +DEBUG = False + +class GuiStove(): + + def __init__(self, config, parent, debug=True): + """Constructor for GraphViewer""" + self.conf = config + self.parent = parent + + self.mainHBox = gtk.HBox(False, 0) + + # hierarchy: self.mainHBox / self.notebook + + self.notebook = gtk.Notebook() + self.notebook.set_tab_pos(gtk.POS_TOP) + self.notebook.set_show_tabs(True) + self.notebook.set_show_border(True) + + self.createFlopTab() + #self.createStudTab() + #self.createDrawTab() + + + self.mainHBox.add(self.notebook) + + self.mainHBox.show_all() + + if DEBUG == False: + warning_string = """ +Stove is a GUI mockup of a EV calculation page, and completely non functional. + +Unless you are interested in developing this feature, please ignore this page. + +If you are interested in developing the code further see GuiStove.py and Stove.py + +Thankyou +""" + self.warning_box(warning_string) + + + def warning_box(self, str, diatitle=_("FPDB WARNING")): + diaWarning = gtk.Dialog(title=diatitle, parent=self.parent, flags=gtk.DIALOG_DESTROY_WITH_PARENT, buttons=(gtk.STOCK_OK,gtk.RESPONSE_OK)) + + label = gtk.Label(str) + diaWarning.vbox.add(label) + label.show() + + response = diaWarning.run() + diaWarning.destroy() + return response + + + def get_active_text(combobox): + model = combobox.get_model() + active = combobox.get_active() + if active < 0: + return None + return model[active][0] + + def create_combo_box(self, strings): + combobox = gtk.combo_box_new_text() + for label in strings: + combobox.append_text(label) + combobox.set_active(0) + return combobox + + + def createFlopTab(self): + # hierarchy: hbox / ddbox / ddhbox / Label + flop_games_cb | label + players_cb + # / gamehbox / in_frame / table / + # / out_frame + + tab_title = "Flop" + label = gtk.Label(tab_title) + + ddbox = gtk.VBox(False, 0) + self.notebook.append_page(ddbox, label) + + ddhbox = gtk.HBox(False, 0) + gamehbox = gtk.HBox(False, 0) + + ddbox.add(ddhbox) + ddbox.add(gamehbox) + + # Combo boxes in the top row + + games = [ "Holdem", "Omaha", "Omaha 8", ] + players = [ "2", "3", "4", "5", "6", "7", "8", "9", "10" ] + flop_games_cb = self.create_combo_box(games) + players_cb = self.create_combo_box(players) + + label = gtk.Label("Gametype:") + ddhbox.add(label) + ddhbox.add(flop_games_cb) + label = gtk.Label("Players:") + ddhbox.add(label) + ddhbox.add(players_cb) + + # Frames for Stove input and output + + in_frame = gtk.Frame("Input:") + out_frame = gtk.Frame("Output:") + + gamehbox.add(in_frame) + gamehbox.add(out_frame) + + outstring = """ +No board given. Using Monte-Carlo simulation... +Enumerated 2053443 possible plays. +Your hand: (Ad Ac) +Against the range: { + AhAd, AhAs, AdAs, KhKd, KhKs, + KhKc, KdKs, KdKc, KsKc, QhQd, + QhQs, QhQc, QdQs, QdQc, QsQc, + JhJd, JhJs, JhJc, JdJs, JdJc, + JsJc + } + + Win Lose Tie + 69.91% 15.83% 14.26% + +""" + label = gtk.Label(outstring) + out_frame.add(label) + + # Input Frame + table = gtk.Table(4, 4, True) + label = gtk.Label("Board:") + board = gtk.Entry() + #board.connect("changed", self._some_function, arg) + + btn1 = gtk.Button() + btn1.set_image(gtk.image_new_from_stock(gtk.STOCK_INDEX, gtk.ICON_SIZE_BUTTON)) + #btn.connect('clicked', self._some_function, arg) + table.attach(label, 0, 1, 0, 1, xoptions=gtk.SHRINK, yoptions=gtk.SHRINK) + table.attach(board, 1, 2, 0, 1, xoptions=gtk.SHRINK, yoptions=gtk.SHRINK) + table.attach(btn1, 2, 3, 0, 1, xoptions=gtk.SHRINK, yoptions=gtk.SHRINK) + + + label = gtk.Label("Player1:") + board = gtk.Entry() + #board.connect("changed", self._some_function, arg) + btn2 = gtk.Button() + btn2.set_image(gtk.image_new_from_stock(gtk.STOCK_INDEX, gtk.ICON_SIZE_BUTTON)) + #btn.connect('clicked', self._some_function, arg) + btn3 = gtk.Button() + btn3.set_image(gtk.image_new_from_stock(gtk.STOCK_INDEX, gtk.ICON_SIZE_BUTTON)) + #btn.connect('clicked', self._some_function, arg) + table.attach(label, 0, 1, 1, 2, xoptions=gtk.SHRINK, yoptions=gtk.SHRINK) + table.attach(board, 1, 2, 1, 2, xoptions=gtk.SHRINK, yoptions=gtk.SHRINK) + table.attach(btn2, 2, 3, 1, 2, xoptions=gtk.SHRINK, yoptions=gtk.SHRINK) + table.attach(btn3, 3, 4, 1, 2, xoptions=gtk.SHRINK, yoptions=gtk.SHRINK) + + + label = gtk.Label("Player2:") + board = gtk.Entry() + #board.connect("changed", self._some_function, arg) + btn4 = gtk.Button() + btn4.set_image(gtk.image_new_from_stock(gtk.STOCK_INDEX, gtk.ICON_SIZE_BUTTON)) + #btn.connect('clicked', self._some_function, arg) + btn5 = gtk.Button() + btn5.set_image(gtk.image_new_from_stock(gtk.STOCK_INDEX, gtk.ICON_SIZE_BUTTON)) + #btn.connect('clicked', self._some_function, arg) + table.attach(label, 0, 1, 2, 3, xoptions=gtk.SHRINK, yoptions=gtk.SHRINK) + table.attach(board, 1, 2, 2, 3, xoptions=gtk.SHRINK, yoptions=gtk.SHRINK) + table.attach(btn4, 2, 3, 2, 3, xoptions=gtk.SHRINK, yoptions=gtk.SHRINK) + table.attach(btn5, 3, 4, 2, 3, xoptions=gtk.SHRINK, yoptions=gtk.SHRINK) + + #table.attach(label, i, i+1, j, j+1,) + in_frame.add(table) + + + + def get_vbox(self): + """returns the vbox of this thread""" + return self.mainHBox + #end def get_vbox diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 612f007f..3660dd57 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -116,6 +116,7 @@ import GuiAutoImport import GuiGraphViewer import GuiTourneyGraphViewer import GuiSessionViewer +import GuiStove import SQL import Database import Configuration @@ -778,6 +779,7 @@ class fpdb: <menuitem action="tourneyviewer"/> <menuitem action="posnstats"/> <menuitem action="sessionstats"/> + <menuitem action="stove"/> </menu> <menu action="database"> <menuitem action="maintaindbs"/> @@ -814,6 +816,7 @@ class fpdb: ('hudConfigurator', None, _('_HUD Configurator'), _('<control>H'), 'HUD Configurator', self.diaHudConfigurator), ('graphs', None, _('_Graphs'), _('<control>G'), 'Graphs', self.tabGraphViewer), ('tourneygraphs', None, _('Tourney Graphs'), None, 'TourneyGraphs', self.tabTourneyGraphViewer), + ('stove', None, _('Stove'), None, 'Stove', self.tabStove), ('ringplayerstats', None, _('Ring _Player Stats (tabulated view, not on pgsql)'), _('<control>P'), 'Ring Player Stats (tabulated view, not on pgsql)', self.tab_ring_player_stats), ('tourneyplayerstats', None, _('_Tourney Stats (tabulated view, not on pgsql)'), _('<control>T'), 'Tourney Stats (tabulated view, not on pgsql)', self.tab_tourney_player_stats), ('tourneyviewer', None, _('Tourney _Viewer'), None, 'Tourney Viewer)', self.tab_tourney_viewer_stats), @@ -1078,6 +1081,13 @@ You can find the full license texts in agpl-3.0.txt, gpl-2.0.txt, gpl-3.0.txt an gv_tab = new_gv_thread.get_vbox() self.add_and_display_tab(gv_tab, _("Tourney Graphs")) + def tabStove(self, widget, data=None): + """opens a tab for bulk importing tournament summaries""" + thread = GuiStove.GuiStove(self.config, self.window) + self.threads.append(thread) + tab = thread.get_vbox() + self.add_and_display_tab(tab, _("Stove")) + def __init__(self): # no more than 1 process can this lock at a time: self.lock = interlocks.InterProcessLock(name="fpdb_global_lock") From 18df2ef2c6fb77d9ece345d2c051b911fa6d0f8d Mon Sep 17 00:00:00 2001 From: Forrest <forrestdg@gmail.com> Date: Tue, 23 Nov 2010 15:03:40 +0100 Subject: [PATCH 007/162] add a regression test file for winamax tourney --- .../Winamax/Flop/NLHE-EUR-STT-FullHist.txt | 310 ++++++++++++++++++ 1 file changed, 310 insertions(+) create mode 100644 pyfpdb/regression-test-files/tour/Winamax/Flop/NLHE-EUR-STT-FullHist.txt diff --git a/pyfpdb/regression-test-files/tour/Winamax/Flop/NLHE-EUR-STT-FullHist.txt b/pyfpdb/regression-test-files/tour/Winamax/Flop/NLHE-EUR-STT-FullHist.txt new file mode 100644 index 00000000..2443c0be --- /dev/null +++ b/pyfpdb/regression-test-files/tour/Winamax/Flop/NLHE-EUR-STT-FullHist.txt @@ -0,0 +1,310 @@ +Winamax Poker - Tournament "No Limit Hold'em" buyIn: 0,90€ + 0,10€ level: 0 - HandId: #7959970263859201-1-1288800933 - Holdem no limit (10/20) - 2010/11/03 17:15:33 UTC +Table: 'No Limit Hold'em(1853325)#0' 10-max (real money) Seat #3 is the button +Seat 1: Player6 (1500) +Seat 2: Player3 (1500) +Seat 3: Player9 (1500) +Seat 4: Player1 (1500) +Seat 5: Player0 (1500) +Seat 6: Player7 (1500) +Seat 7: Player4 (1500) +Seat 8: Player2 (1500) +Seat 9: Player5 (1500) +Seat 10: Player8 (1500) +*** ANTE/BLINDS *** +Player1 posts small blind 10 +Player0 posts big blind 20 +Dealt to Player6 [Jd 7h] +*** PRE-FLOP *** +Player7 folds +Player4 folds +Player2 folds +Player5 calls 20 +Player8 folds +Player6 calls 20 +Player3 calls 20 +Player9 calls 20 +Player1 calls 10 +Player0 checks +*** FLOP *** [Td 4c 5h] +Player1 checks +Player0 checks +Player5 checks +Player6 bets 80 +Player3 calls 80 +Player9 folds +Player1 folds +Player0 calls 80 +Player5 folds +*** TURN *** [Td 4c 5h][3h] +Player0 checks +Player6 checks +Player3 checks +*** RIVER *** [Td 4c 5h 3h][Kc] +Player0 checks +Player6 bets 240 +Player3 calls 240 +Player0 folds +*** SHOW DOWN *** +Player6 shows [Jd 7h] (High card : King) +Player3 shows [Kd 4d] (Two pairs : Kings and 4) +Player3 collected 840 from pot +*** SUMMARY *** +Total pot 840 | No rake +Board: [Td 4c 5h 3h Kc] +Seat 1: Player6 showed [Jd 7h] and lost with High card : King +Seat 2: Player3 showed [Kd 4d] and won 840 with Two pairs : Kings and 4 +Seat 3: Player9 (button) folded on the flop +Seat 4: Player1 (small blind) folded on the flop +Seat 5: Player0 (big blind) folded on the river +Seat 6: Player7 folded on the pre-flop +Seat 7: Player4 folded +Seat 8: Player2 folded on the pre-flop +Seat 9: Player5 folded on the flop +Seat 10: Player8 folded on the pre-flop + + +Winamax Poker - Tournament "No Limit Hold'em" buyIn: 0,90€ + 0,10€ level: 0 - HandId: #7959970263859201-2-1288801071 - Holdem no limit (10/20) - 2010/11/03 17:17:51 UTC +Table: 'No Limit Hold'em(1853325)#0' 10-max (real money) Seat #4 is the button +Seat 1: Player6 (1160) +Seat 2: Player3 (2000) +Seat 3: Player9 (1480) +Seat 4: Player1 (1480) +Seat 5: Player0 (1400) +Seat 6: Player7 (1500) +Seat 7: Player4 (1500) +Seat 8: Player2 (1500) +Seat 9: Player5 (1480) +Seat 10: Player8 (1500) +*** ANTE/BLINDS *** +Player0 posts small blind 10 +Player7 posts big blind 20 +Dealt to Player6 [7h 3s] +*** PRE-FLOP *** +Player4 folds +Player2 folds +Player5 calls 20 +Player8 calls 20 +Player6 folds +Player3 calls 20 +Player9 folds +Player1 calls 20 +Player0 calls 10 +Player7 checks +*** FLOP *** [Jh 6h Qd] +Player0 checks +Player7 bets 20 +Player5 calls 20 +Player8 calls 20 +Player3 folds +Player1 calls 20 +Player0 calls 20 +*** TURN *** [Jh 6h Qd][5s] +Player0 checks +Player7 checks +Player5 bets 220 +Player8 folds +Player1 folds +Player0 folds +Player7 calls 220 +*** RIVER *** [Jh 6h Qd 5s][3c] +Player7 checks +Player5 bets 660 +Player7 folds +Player5 collected 1320 from pot +*** SUMMARY *** +Total pot 1.32k | No rake +Board: [Jh 6h Qd 5s 3c] +Seat 1: Player6 folded on the pre-flop +Seat 2: Player3 folded on the flop +Seat 3: Player9 folded on the pre-flop +Seat 4: Player1 (button) folded on the turn +Seat 5: Player0 (small blind) folded on the turn +Seat 6: Player7 (big blind) folded on the river +Seat 7: Player4 folded on the pre-flop +Seat 8: Player2 folded on the pre-flop +Seat 9: Player5 won 1320 +Seat 10: Player8 folded on the turn + + +Winamax Poker - Tournament "No Limit Hold'em" buyIn: 0,90€ + 0,10€ level: 0 - HandId: #7959970263859201-3-1288801160 - Holdem no limit (10/20) - 2010/11/03 17:19:20 UTC +Table: 'No Limit Hold'em(1853325)#0' 10-max (real money) Seat #5 is the button +Seat 1: Player6 (1160) +Seat 2: Player3 (1980) +Seat 3: Player9 (1480) +Seat 4: Player1 (1440) +Seat 5: Player0 (1360) +Seat 6: Player7 (1240) +Seat 7: Player4 (1500) +Seat 8: Player2 (1500) +Seat 9: Player5 (1880) +Seat 10: Player8 (1460) +*** ANTE/BLINDS *** +Player7 posts small blind 10 +Player4 posts big blind 20 +Dealt to Player6 [4h 3d] +*** PRE-FLOP *** +Player2 folds +Player5 calls 20 +Player8 calls 20 +Player6 folds +Player3 folds +Player9 folds +Player1 calls 20 +Player0 folds +Player7 raises 20 to 40 +Player4 folds +Player5 calls 20 +Player8 calls 20 +Player1 calls 20 +*** FLOP *** [Qd Kh 4s] +Player7 bets 1200 and is all-in +Player5 folds +Player8 folds +Player1 folds +Player7 collected 1380 from pot +*** SUMMARY *** +Total pot 1.38k | No rake +Board: [Qd Kh 4s] +Seat 1: Player6 folded on the pre-flop +Seat 2: Player3 folded on the pre-flop +Seat 3: Player9 folded on the pre-flop +Seat 4: Player1 folded on the flop +Seat 5: Player0 (button) folded on the pre-flop +Seat 6: Player7 (small blind) won 1380 +Seat 7: Player4 (big blind) folded on the pre-flop +Seat 8: Player2 folded on the pre-flop +Seat 9: Player5 folded on the flop +Seat 10: Player8 folded on the flop + + +Winamax Poker - Tournament "No Limit Hold'em" buyIn: 0,90€ + 0,10€ level: 0 - HandId: #7959970263859201-4-1288801277 - Holdem no limit (10/20) - 2010/11/03 17:21:17 UTC +Table: 'No Limit Hold'em(1853325)#0' 10-max (real money) Seat #6 is the button +Seat 1: Player6 (1160) +Seat 2: Player3 (1980) +Seat 3: Player9 (1480) +Seat 4: Player1 (1400) +Seat 5: Player0 (1360) +Seat 6: Player7 (1380) +Seat 7: Player4 (1480) +Seat 8: Player2 (1500) +Seat 9: Player5 (1840) +Seat 10: Player8 (1420) +*** ANTE/BLINDS *** +Player4 posts small blind 10 +Player2 posts big blind 20 +Dealt to Player6 [Qc 7d] +*** PRE-FLOP *** +Player5 calls 20 +Player8 folds +Player6 folds +Player3 folds +Player9 folds +Player1 calls 20 +Player0 folds +Player7 calls 20 +Player4 calls 10 +Player2 checks +*** FLOP *** [9s 7h 5h] +Player4 checks +Player2 checks +Player5 checks +Player1 checks +Player7 checks +*** TURN *** [9s 7h 5h][Ts] +Player4 checks +Player2 checks +Player5 checks +Player1 checks +Player7 bets 20 +Player4 calls 20 +Player2 folds +Player5 folds +Player1 calls 20 +*** RIVER *** [9s 7h 5h Ts][7s] +Player4 checks +Player1 checks +Player7 bets 160 +Player4 folds +Player1 calls 160 +*** SHOW DOWN *** +Player1 shows [4c 4d] (Two pairs : 7 and 4) +Player7 shows [4s As] (Flush Ace high) +Player7 collected 480 from pot +*** SUMMARY *** +Total pot 480 | No rake +Board: [9s 7h 5h Ts 7s] +Seat 1: Player6 folded on the pre-flop +Seat 2: Player3 folded on the pre-flop +Seat 3: Player9 folded on the pre-flop +Seat 4: Player1 showed [4c 4d] and lost with Two pairs : 7 and 4 +Seat 5: Player0 folded on the pre-flop +Seat 6: Player7 (button) showed [4s As] and won 480 with Flush Ace high +Seat 7: Player4 (small blind) folded on the river +Seat 8: Player2 (big blind) folded on the turn +Seat 9: Player5 folded on the turn +Seat 10: Player8 folded on the pre-flop + + +Winamax Poker - Tournament "No Limit Hold'em" buyIn: 0,90€ + 0,10€ level: 1 - HandId: #7959970263859201-5-1288801360 - Holdem no limit (10/20) - 2010/11/03 17:22:40 UTC +Table: 'No Limit Hold'em(1853325)#0' 10-max (real money) Seat #7 is the button +Seat 1: Player6 (1160) +Seat 2: Player3 (1980) +Seat 3: Player9 (1480) +Seat 4: Player1 (1200) +Seat 5: Player0 (1360) +Seat 6: Player7 (1660) +Seat 7: Player4 (1440) +Seat 8: Player2 (1480) +Seat 9: Player5 (1820) +Seat 10: Player8 (1420) +*** ANTE/BLINDS *** +Player2 posts small blind 10 +Player5 posts big blind 20 +Dealt to Player6 [Kd Ah] +*** PRE-FLOP *** +Player8 calls 20 +Player6 raises 70 to 90 +Player3 folds +Player9 calls 90 +Player1 calls 90 +Player0 calls 90 +Player7 calls 90 +Player4 calls 90 +Player2 folds +Player5 calls 70 +Player8 calls 70 +*** FLOP *** [2s 5h 3h] +Player5 checks +Player8 checks +Player6 bets 365 +Player9 folds +Player1 folds +Player0 folds +Player7 calls 365 +Player4 folds +Player5 folds +Player8 folds +*** TURN *** [2s 5h 3h][6d] +Player6 bets 705 and is all-in +Player7 calls 705 +*** RIVER *** [2s 5h 3h 6d][5s] +*** SHOW DOWN *** +Player6 shows [Kd Ah] (One pair : 5) +Player7 shows [7d 7h] (Two pairs : 7 and 5) +Player7 collected 2870 from pot +*** SUMMARY *** +Total pot 2.87k | No rake +Board: [2s 5h 3h 6d 5s] +Seat 1: Player6 showed [Kd Ah] and lost with One pair : 5 +Seat 2: Player3 folded on the pre-flop +Seat 3: Player9 folded on the flop +Seat 4: Player1 folded on the flop +Seat 5: Player0 folded on the flop +Seat 6: Player7 showed [7d 7h] and won 2870 with Two pairs : 7 and 5 +Seat 7: Player4 (button) folded on the flop +Seat 8: Player2 (small blind) folded on the pre-flop +Seat 9: Player5 (big blind) folded on the flop +Seat 10: Player8 folded on the flop + + + From ac4cae5abffa42dc189ade386637d80fde8d72cb Mon Sep 17 00:00:00 2001 From: Chaz <Chaz@Chaz-THINK> Date: Wed, 24 Nov 2010 14:14:29 -0600 Subject: [PATCH 008/162] * Updated the methods, variables, and SQL in Database.py and SQL.py to add Hours to the HudCache.styleKey field --- pyfpdb/Database.py | 26 +++++++++++++------------- pyfpdb/SQL.py | 18 +++++++++--------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 0647baf2..1fb94cbd 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -291,8 +291,8 @@ class Database: # vars for hand ids or dates fetched according to above config: self.hand_1day_ago = 0 # max hand id more than 24 hrs earlier than now - self.date_ndays_ago = 'd000000' # date N days ago ('d' + YYMMDD) - self.h_date_ndays_ago = 'd000000' # date N days ago ('d' + YYMMDD) for hero + self.date_ndays_ago = 'd00000000' # date N days ago ('d' + YYMMDD) + self.h_date_ndays_ago = 'd00000000' # date N days ago ('d' + YYMMDD) for hero self.date_nhands_ago = {} # dates N hands ago per player - not used yet self.saveActions = False if self.import_options['saveActions'] == False else True @@ -703,7 +703,7 @@ class Database: try: # self.date_nhands_ago is used for fetching stats for last n hands (hud_style = 'H') # This option not used yet - needs to be called for each player :-( - self.date_nhands_ago[str(playerid)] = 'd000000' + self.date_nhands_ago[str(playerid)] = 'd00000000' # should use aggregated version of query if appropriate c.execute(self.sql.query['get_date_nhands_ago'], (self.hud_hands, playerid)) @@ -771,11 +771,11 @@ class Database: if hud_style == 'T': stylekey = self.date_ndays_ago elif hud_style == 'A': - stylekey = '0000000' # all stylekey values should be higher than this + stylekey = '000000000' # all stylekey values should be higher than this elif hud_style == 'S': - stylekey = 'zzzzzzz' # all stylekey values should be lower than this + stylekey = 'zzzzzzzzz' # all stylekey values should be lower than this else: - stylekey = '0000000' + stylekey = '000000000' log.info('hud_style: %s' % hud_style) #elif hud_style == 'H': @@ -784,11 +784,11 @@ class Database: if h_hud_style == 'T': h_stylekey = self.h_date_ndays_ago elif h_hud_style == 'A': - h_stylekey = '0000000' # all stylekey values should be higher than this + h_stylekey = '000000000' # all stylekey values should be higher than this elif h_hud_style == 'S': - h_stylekey = 'zzzzzzz' # all stylekey values should be lower than this + h_stylekey = 'zzzzzzzzz' # all stylekey values should be lower than this else: - h_stylekey = '000000' + h_stylekey = '00000000' log.info('h_hud_style: %s' % h_hud_style) #elif h_hud_style == 'H': @@ -1824,11 +1824,11 @@ class Database: """Update cached statistics. If update fails because no record exists, do an insert.""" if self.use_date_in_hudcache: - styleKey = datetime.strftime(starttime, 'd%y%m%d') - #styleKey = "d%02d%02d%02d" % (hand_start_time.year-2000, hand_start_time.month, hand_start_time.day) + styleKey = datetime.strftime(starttime, 'd%y%m%d%h') + #styleKey = "d%02d%02d%02d%02d" % (hand_start_time.year-2000, hand_start_time.month, hand_start_time.day, hand_start_time.hour) else: - # hard-code styleKey as 'A000000' (all-time cache, no key) for now - styleKey = 'A000000' + # hard-code styleKey as 'A00000000' (all-time cache, no key) for now + styleKey = 'A00000000' update_hudcache = self.sql.query['update_hudcache'] update_hudcache = update_hudcache.replace('%s', self.sql.query['placeholder']) diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index d45ccd38..560930c3 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -2047,7 +2047,7 @@ class Sql: # gets a date, would need to use handsplayers (not hudcache) to get exact hand Id if db_server == 'mysql': self.query['get_date_nhands_ago'] = """ - select concat( 'd', date_format(max(h.startTime), '%Y%m%d') ) + select concat( 'd', date_format(max(h.startTime), '%Y%m%d%h') ) from (select hp.playerId ,coalesce(greatest(max(hp.handId)-%s,1),1) as maxminusx from HandsPlayers hp @@ -2059,7 +2059,7 @@ class Sql: """ elif db_server == 'postgresql': self.query['get_date_nhands_ago'] = """ - select 'd' || to_char(max(h3.startTime), 'YYMMDD') + select 'd' || to_char(max(h3.startTime), 'YYMMDDHH') from (select hp.playerId ,coalesce(greatest(max(hp.handId)-%s,1),1) as maxminusx from HandsPlayers hp @@ -2071,7 +2071,7 @@ class Sql: """ elif db_server == 'sqlite': # untested guess at query: self.query['get_date_nhands_ago'] = """ - select 'd' || strftime(max(h3.startTime), 'YYMMDD') + select 'd' || strftime(max(h3.startTime), 'YYMMDDHH') from (select hp.playerId ,coalesce(greatest(max(hp.handId)-%s,1),1) as maxminusx from HandsPlayers hp @@ -3290,7 +3290,7 @@ class Sql: else 'E' end AS hc_position <tourney_select_clause> - ,date_format(h.startTime, 'd%y%m%d') + ,date_format(h.startTime, 'd%y%m%d%h') ,count(1) ,sum(wonWhenSeenStreet1) ,sum(wonWhenSeenStreet2) @@ -3379,7 +3379,7 @@ class Sql: ,h.seats ,hc_position <tourney_group_clause> - ,date_format(h.startTime, 'd%y%m%d') + ,date_format(h.startTime, 'd%y%m%d%h') """ elif db_server == 'postgresql': self.query['rebuildHudCache'] = """ @@ -3488,7 +3488,7 @@ class Sql: else 'E' end AS hc_position <tourney_select_clause> - ,'d' || to_char(h.startTime, 'YYMMDD') + ,'d' || to_char(h.startTime, 'YYMMDDHH') ,count(1) ,sum(wonWhenSeenStreet1) ,sum(wonWhenSeenStreet2) @@ -3577,7 +3577,7 @@ class Sql: ,h.seats ,hc_position <tourney_group_clause> - ,to_char(h.startTime, 'YYMMDD') + ,to_char(h.startTime, 'YYMMDDHH') """ else: # assume sqlite self.query['rebuildHudCache'] = """ @@ -3686,7 +3686,7 @@ class Sql: else 'E' end AS hc_position <tourney_select_clause> - ,'d' || substr(strftime('%Y%m%d', h.startTime),3,7) + ,'d' || substr(strftime('%Y%m%d%h', h.startTime),3,7) ,count(1) ,sum(wonWhenSeenStreet1) ,sum(wonWhenSeenStreet2) @@ -3775,7 +3775,7 @@ class Sql: ,h.seats ,hc_position <tourney_group_clause> - ,'d' || substr(strftime('%Y%m%d', h.startTime),3,7) + ,'d' || substr(strftime('%Y%m%d%h', h.startTime),3,7) """ self.query['insert_hudcache'] = """ From ee926ac9ca84e8c07b72673a2d1c6c5f3c720d38 Mon Sep 17 00:00:00 2001 From: Chaz <Chaz@Chaz-THINK> Date: Wed, 24 Nov 2010 14:18:42 -0600 Subject: [PATCH 009/162] * Modified init_hud_stat_vars() so that it uses the timezone & day_start offset from Filters.py --- pyfpdb/Database.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 1fb94cbd..e5cdfa6b 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -55,6 +55,7 @@ import Card import Charset from Exceptions import * import Configuration +import Filters # Other library modules @@ -689,14 +690,16 @@ class Database: else: if row and row[0]: self.hand_1day_ago = int(row[0]) - - d = timedelta(days=hud_days) + + offset = strptime(Filters.Filters(self, self.config, self.sql).getDates()[0],"%Y-%m-%d %H:%M:%S").tm_hour + + d = timedelta(days=hud_days, hours=offset) now = datetime.utcnow() - d - self.date_ndays_ago = "d%02d%02d%02d" % (now.year - 2000, now.month, now.day) + self.date_ndays_ago = "d%02d%02d%02d%02d" % (now.year - 2000, now.month, now.day, offset) - d = timedelta(days=h_hud_days) + d = timedelta(days=h_hud_days, hours=offset) now = datetime.utcnow() - d - self.h_date_ndays_ago = "d%02d%02d%02d" % (now.year - 2000, now.month, now.day) + self.h_date_ndays_ago = "d%02d%02d%02d%02d" % (now.year - 2000, now.month, now.day, offset) def init_player_hud_stat_vars(self, playerid): # not sure if this is workable, to be continued ... From 8026ba256a1b29f6f7e66724098a0e5e6c8c0d63 Mon Sep 17 00:00:00 2001 From: Chaz <Chaz@Chaz-THINK> Date: Wed, 24 Nov 2010 14:41:12 -0600 Subject: [PATCH 010/162] It's %H, not %h --- pyfpdb/Database.py | 2 +- pyfpdb/SQL.py | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index e5cdfa6b..f2ce36b5 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1827,7 +1827,7 @@ class Database: """Update cached statistics. If update fails because no record exists, do an insert.""" if self.use_date_in_hudcache: - styleKey = datetime.strftime(starttime, 'd%y%m%d%h') + styleKey = datetime.strftime(starttime, 'd%y%m%d%H') #styleKey = "d%02d%02d%02d%02d" % (hand_start_time.year-2000, hand_start_time.month, hand_start_time.day, hand_start_time.hour) else: # hard-code styleKey as 'A00000000' (all-time cache, no key) for now diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index 560930c3..ffe1ee6d 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -2047,7 +2047,7 @@ class Sql: # gets a date, would need to use handsplayers (not hudcache) to get exact hand Id if db_server == 'mysql': self.query['get_date_nhands_ago'] = """ - select concat( 'd', date_format(max(h.startTime), '%Y%m%d%h') ) + select concat( 'd', date_format(max(h.startTime), '%Y%m%d%H') ) from (select hp.playerId ,coalesce(greatest(max(hp.handId)-%s,1),1) as maxminusx from HandsPlayers hp @@ -3290,7 +3290,7 @@ class Sql: else 'E' end AS hc_position <tourney_select_clause> - ,date_format(h.startTime, 'd%y%m%d%h') + ,date_format(h.startTime, 'd%y%m%d%H') ,count(1) ,sum(wonWhenSeenStreet1) ,sum(wonWhenSeenStreet2) @@ -3379,7 +3379,7 @@ class Sql: ,h.seats ,hc_position <tourney_group_clause> - ,date_format(h.startTime, 'd%y%m%d%h') + ,date_format(h.startTime, 'd%y%m%d%H') """ elif db_server == 'postgresql': self.query['rebuildHudCache'] = """ @@ -3686,7 +3686,7 @@ class Sql: else 'E' end AS hc_position <tourney_select_clause> - ,'d' || substr(strftime('%Y%m%d%h', h.startTime),3,7) + ,'d' || substr(strftime('%Y%m%d%H', h.startTime),3,7) ,count(1) ,sum(wonWhenSeenStreet1) ,sum(wonWhenSeenStreet2) @@ -3775,7 +3775,7 @@ class Sql: ,h.seats ,hc_position <tourney_group_clause> - ,'d' || substr(strftime('%Y%m%d%h', h.startTime),3,7) + ,'d' || substr(strftime('%Y%m%d%H', h.startTime),3,7) """ self.query['insert_hudcache'] = """ From b820cd4895ac6039fbe29df22efc3b2972f2d949 Mon Sep 17 00:00:00 2001 From: Chaz <Chaz@Chaz-THINK> Date: Wed, 24 Nov 2010 14:49:39 -0600 Subject: [PATCH 011/162] * Old Stars HHs don't display max seats. Added regression-test-file showing this and handling in the Stars HHC --- pyfpdb/PokerStarsToFpdb.py | 2 +- .../LHE-10-max-USD-1.00-2.00-No_max_seats.txt | 42 +++++++++++++++++++ 2 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10-max-USD-1.00-2.00-No_max_seats.txt diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index 16c4091e..3817ae3f 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -298,7 +298,7 @@ class PokerStars(HandHistoryConverter): if key == 'BUTTON': hand.buttonpos = info[key] if key == 'MAX': - hand.maxseats = int(info[key]) + if info[key]: hand.maxseats = int(info[key]) if key == 'MIXED': hand.mixed = self.mixes[info[key]] if info[key] is not None else None diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10-max-USD-1.00-2.00-No_max_seats.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10-max-USD-1.00-2.00-No_max_seats.txt new file mode 100644 index 00000000..173da216 --- /dev/null +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10-max-USD-1.00-2.00-No_max_seats.txt @@ -0,0 +1,42 @@ +PokerStars Game #2428142447: Hold'em Limit ($1/$2 USD) - 2005/08/26 16:12:22 ET +Table 'Teucer II' Seat #5 is the button +Seat 1: Frankson34 ($24 in chips) +Seat 2: webb22 ($64 in chips) +Seat 3: eric_mtx ($26 in chips) +Seat 4: sososolid ($147.75 in chips) +Seat 5: DRILHER ($48.25 in chips) +Seat 6: Naughtychic ($60 in chips) +Seat 7: Terps78 ($71.50 in chips) +Seat 8: ChazDazzle ($69.25 in chips) +Seat 9: alekos ($55 in chips) +Seat 10: BigNards84 ($64.25 in chips) +Naughtychic: posts small blind $0.50 +Terps78: posts big blind $1 +*** HOLE CARDS *** +Dealt to ChazDazzle [8c Kd] +ChazDazzle: folds +alekos: folds +BigNards84: raises $1 to $2 +Frankson34: folds +webb22: folds +eric_mtx: folds +ChazDazzle leaves the table +sososolid: folds +DRILHER: folds +cdhender joins the table at seat #8 +Naughtychic: folds +Terps78: folds +BigNards84 collected $2.50 from pot +BigNards84: doesn't show hand +*** SUMMARY *** +Total pot $2.50 | Rake $0 +Seat 1: Frankson34 folded before Flop (didn't bet) +Seat 2: webb22 folded before Flop (didn't bet) +Seat 3: eric_mtx folded before Flop (didn't bet) +Seat 4: sososolid folded before Flop (didn't bet) +Seat 5: DRILHER (button) folded before Flop (didn't bet) +Seat 6: Naughtychic (small blind) folded before Flop +Seat 7: Terps78 (big blind) folded before Flop +Seat 8: ChazDazzle folded before Flop (didn't bet) +Seat 9: alekos folded before Flop (didn't bet) +Seat 10: BigNards84 collected ($2.50) From 43ec9498e8d08db49cf86bbaade16948b7f5dc31 Mon Sep 17 00:00:00 2001 From: Chaz <Chaz@Chaz-THINK> Date: Wed, 24 Nov 2010 14:51:13 -0600 Subject: [PATCH 012/162] Just renamed the new regression file --- ...-No_max_seats.txt => LHE-10max-USD-1.00-2.00-No_max_seats.txt} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename pyfpdb/regression-test-files/cash/Stars/Flop/{LHE-10-max-USD-1.00-2.00-No_max_seats.txt => LHE-10max-USD-1.00-2.00-No_max_seats.txt} (100%) diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10-max-USD-1.00-2.00-No_max_seats.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10max-USD-1.00-2.00-No_max_seats.txt similarity index 100% rename from pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10-max-USD-1.00-2.00-No_max_seats.txt rename to pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10max-USD-1.00-2.00-No_max_seats.txt From 92c8e689146efd9bab24d8ba74c9eeba07699b5a Mon Sep 17 00:00:00 2001 From: Chaz <Chaz@Chaz-THINK> Date: Wed, 24 Nov 2010 14:53:53 -0600 Subject: [PATCH 013/162] It's actually an OSError, not an IOError --- pyfpdb/interlocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 pyfpdb/interlocks.py diff --git a/pyfpdb/interlocks.py b/pyfpdb/interlocks.py old mode 100755 new mode 100644 index c2e6abd6..496c5d0b --- a/pyfpdb/interlocks.py +++ b/pyfpdb/interlocks.py @@ -108,7 +108,7 @@ class InterProcessLockFcntl(InterProcessLockBase): self.lockfd = 0 try: os.unlink(self.lock_file_name) - except IOError: + except OSError: # We don't care about the existence of the file too much here. It's the flock() we care about, # And that should just go away magically. pass From ead567c5cc8c5783cdf1236d4312fe6ce22f5539 Mon Sep 17 00:00:00 2001 From: Chaz <Chaz@Chaz-THINK> Date: Wed, 24 Nov 2010 15:13:26 -0600 Subject: [PATCH 014/162] * Added encoding error handling and the ability to identify the worker responsible for splitting a particular file if several were launched via threading --- pyfpdb/SplitHandHistory.py | 76 +++++++++++++++++++++++--------------- 1 file changed, 47 insertions(+), 29 deletions(-) diff --git a/pyfpdb/SplitHandHistory.py b/pyfpdb/SplitHandHistory.py index 52c1d340..c996f903 100644 --- a/pyfpdb/SplitHandHistory.py +++ b/pyfpdb/SplitHandHistory.py @@ -1,19 +1,22 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- +#!/usr/bin/env python -#Copyright 2010 Chaz Littlejohn -#This program is free software: you can redistribute it and/or modify -#it under the terms of the GNU Affero General Public License as published by -#the Free Software Foundation, version 3 of the License. -# -#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 Affero General Public License -#along with this program. If not, see <http://www.gnu.org/licenses/>. -#In the "official" distribution you can find the license in agpl-3.0.txt. +# Copyright 2010, Chaz Littlejohn +# +# 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 + +######################################################################## import L10n _ = L10n.get_translation() @@ -28,6 +31,7 @@ import Options import Configuration from Exceptions import * from cStringIO import StringIO +import time (options, argv) = Options.fpdb_options() @@ -37,7 +41,7 @@ codepage = ["utf-16", "utf-8", "cp1252"] class SplitHandHistory: - def __init__(self, config, in_path = '-', out_path = None, hands = 100, filter = "PokerStarsToFpdb", archive = False): + def __init__(self, config, in_path = '-', out_path = None, hands = 100, filter = "PokerStarsToFpdb", archive = False, workerid = 0): self.config = config self.in_path = in_path self.out_path = out_path @@ -50,22 +54,25 @@ class SplitHandHistory: self.line_addendum = None self.filedone = False + self.timestamp = str(time.time()) + self.workerid = '%02d' % workerid + #Acquire re_SplitHands for this hh - filter_name = filter.replace("ToFpdb", "") + self.filter_name = filter.replace("ToFpdb", "") mod = __import__(filter) - obj = getattr(mod, filter_name, None) + obj = getattr(mod, self.filter_name, None) self.re_SplitHands = obj.re_SplitHands #Determine line delimiter type if any - if self.re_SplitHands.match('\n\n'): - self.line_delimiter = '\n\n' if self.re_SplitHands.match('\n\n\n'): self.line_delimiter = '\n\n\n' + if self.re_SplitHands.match('\n\n'): + self.line_delimiter = '\n\n' #Add new line addendum for sites which match SplitHand to next line as well - if filter_name == 'OnGame': + if self.filter_name == 'OnGame': self.line_addendum = '*' - if filter_name == 'Carbon': + if self.filter_name == 'Carbon': self.line_addendum = '<game' #Open the gargantuan file @@ -75,6 +82,7 @@ class SplitHandHistory: except IOError: print _('File not found') sys.exit(2) + self.kodec = kodec #Split with do_hands_per_file if archive and paragraphs if a regular hh if self.archive: @@ -105,9 +113,10 @@ class SplitHandHistory: print _('Nope, will not work (fileno=%d)' % fileno) sys.exit(2) basename = os.path.splitext(os.path.basename(self.in_path))[0] - name = os.path.join(self.out_path, basename+'-%06d.txt' % fileno) + name = os.path.join(self.out_path, self.filter_name+'-'+basename+'_'+self.workerid+'_'+self.timestamp+'_%06d.txt' % fileno) print '-> %s' % name newfile = file(name, 'w') + os.chmod(name, 0775) return newfile #Archive Hand Splitter @@ -122,8 +131,11 @@ class SplitHandHistory: except FpdbEndOfFile: done = True break + except UnicodeEncodeError: + print _('Absurd character done messed you up') + sys.exit(2) except: - print _("Unexpected error processing file") + print _('Unexpected error processing file') sys.exit(2) n += 1 outfile.close() @@ -174,7 +186,7 @@ class SplitHandHistory: l = infile.readline() l = l.replace('\r\n', '\n') outfile.write(l) - l = infile.readline() + l = infile.readline().encode(self.kodec) while len(l) < 3: l = infile.readline() @@ -182,7 +194,7 @@ class SplitHandHistory: while len(l) > 2: l = l.replace('\r\n', '\n') outfile.write(l) - l = infile.readline() + l = infile.readline().encode(self.kodec) outfile.write(self.line_delimiter) return infile @@ -195,13 +207,19 @@ class SplitHandHistory: def main(argv=None): if argv is None: argv = sys.argv[1:] + + if not options.filename: + options.filename = sys.argv[1] if not options.config: - options.config = Configuration.Config(file = "HUD_config.test.xml") - + options.config = sys.argv[2] + + if sys.argv[3] == "True": + options.archive = True + if options.filename: SplitHH = SplitHandHistory(options.config, options.filename, options.outpath, options.hands, - options.hhc, options.archive) + options.hhc, options.archive, options.workerid) if __name__ == '__main__': sys.exit(main()) From 9bb58ca77950ba56bf5216cf5fd4c3a2ccbf9c14 Mon Sep 17 00:00:00 2001 From: Chaz <Chaz@Chaz-THINK> Date: Wed, 24 Nov 2010 15:16:09 -0600 Subject: [PATCH 015/162] Adds the worker id command line option --- pyfpdb/Options.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyfpdb/Options.py b/pyfpdb/Options.py index b8be3d2a..6369b485 100644 --- a/pyfpdb/Options.py +++ b/pyfpdb/Options.py @@ -59,6 +59,8 @@ def fpdb_options(): help=_("File to be split is a PokerStars or Full Tilt Poker archive file")) parser.add_option("-n", "--numhands", dest="hands", default="100", type="int", help=_("How many hands do you want saved to each file. Default is 100")) + parser.add_option("-w", "--workerid", dest="workerid", default="0", type="int", + help=_("Specifies the worker id running the script")) (options, argv) = parser.parse_args() From 9137347acb00957d548ade66d65687d91be15236 Mon Sep 17 00:00:00 2001 From: Chaz <Chaz@Chaz-THINK> Date: Wed, 24 Nov 2010 15:20:48 -0600 Subject: [PATCH 016/162] Just fixed a few bugs --- pyfpdb/IdentifySite.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pyfpdb/IdentifySite.py b/pyfpdb/IdentifySite.py index b4f1a8a7..723991f3 100644 --- a/pyfpdb/IdentifySite.py +++ b/pyfpdb/IdentifySite.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # -*- coding: utf-8 -*- #Copyright 2010 Chaz Littlejohn @@ -28,18 +28,21 @@ import Configuration import Database __ARCHIVE_PRE_HEADER_REGEX='^Hand #(\d+)\s*$|\*{20}\s#\s\d+\s\*+\s+' -re_SplitArchive = re.compile(__ARCHIVE_PRE_HEADER_REGEX) +re_SplitArchive = re.compile(__ARCHIVE_PRE_HEADER_REGEX, re.MULTILINE) class IdentifySite: def __init__(self, config, in_path = '-'): self.in_path = in_path self.config = config - self.db = Database.Database(config) + self.db = Database.Database(self.config) self.sitelist = {} self.filelist = {} self.generateSiteList() - self.walkDirectory(self.in_path, self.sitelist) + if os.path.isdir(self.in_path): + self.walkDirectory(self.in_path, self.sitelist) + else: + self.idSite(self.in_path, self.sitelist) def generateSiteList(self): """Generates a ordered dictionary of site, filter and filter name for each site in hhcs""" @@ -80,7 +83,7 @@ class IdentifySite: for kodec in self.__listof(obj.codepage): try: in_fh = codecs.open(file, 'r', kodec) - whole_file = in_fh.read() + whole_file = in_fh.read(2000) in_fh.close() if info[2] in ('OnGame', 'Winamax'): @@ -94,7 +97,7 @@ class IdentifySite: if re_SplitArchive.search(whole_file): archive = True if m: - self.filelist[file] = [info[0]] + [info[1]] + [kodec] + [archive] + self.filelist[file] = [info[1]] + [kodec] + [archive] break except: pass From 872ea008ddb1205eef9a5fc07c7659c365767041 Mon Sep 17 00:00:00 2001 From: Chaz <Chaz@Chaz-THINK.gateway.2wire.net> Date: Thu, 25 Nov 2010 02:35:50 -0600 Subject: [PATCH 017/162] Updated database version to 145 --- pyfpdb/Database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index f2ce36b5..65e7a87d 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -74,7 +74,7 @@ except ImportError: use_numpy = False -DB_VERSION = 144 +DB_VERSION = 145 # Variance created as sqlite has a bunch of undefined aggregate functions. From 21ac5229cba63068408ce975c2db26b431499f2d Mon Sep 17 00:00:00 2001 From: Chaz <Chaz@Chaz-THINK.gateway.2wire.net> Date: Thu, 25 Nov 2010 02:36:34 -0600 Subject: [PATCH 018/162] Fixed styleKey char length to 9 --- pyfpdb/SQL.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index ffe1ee6d..6a505eae 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -1064,7 +1064,7 @@ class Sql: activeSeats SMALLINT NOT NULL, position CHAR(1), tourneyTypeId SMALLINT UNSIGNED, FOREIGN KEY (tourneyTypeId) REFERENCES TourneyTypes(id), - styleKey CHAR(7) NOT NULL, /* 1st char is style (A/T/H/S), other 6 are the key */ + styleKey CHAR(9) NOT NULL, /* 1st char is style (A/T/H/S), other 8 are the key */ HDs INT NOT NULL, wonWhenSeenStreet1 FLOAT, @@ -1165,7 +1165,7 @@ class Sql: activeSeats SMALLINT, position CHAR(1), tourneyTypeId INT, FOREIGN KEY (tourneyTypeId) REFERENCES TourneyTypes(id), - styleKey CHAR(7) NOT NULL, /* 1st char is style (A/T/H/S), other 6 are the key */ + styleKey CHAR(9) NOT NULL, /* 1st char is style (A/T/H/S), other 8 are the key */ HDs INT, wonWhenSeenStreet1 FLOAT, @@ -3686,7 +3686,7 @@ class Sql: else 'E' end AS hc_position <tourney_select_clause> - ,'d' || substr(strftime('%Y%m%d%H', h.startTime),3,7) + ,'d' || substr(strftime('%Y%m%d%H', h.startTime),3,9) ,count(1) ,sum(wonWhenSeenStreet1) ,sum(wonWhenSeenStreet2) @@ -3775,7 +3775,7 @@ class Sql: ,h.seats ,hc_position <tourney_group_clause> - ,'d' || substr(strftime('%Y%m%d%H', h.startTime),3,7) + ,'d' || substr(strftime('%Y%m%d%H', h.startTime),3,9) """ self.query['insert_hudcache'] = """ From b017fa298d9e8cc0ffd232cb8597439a5fdf8187 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Thu, 25 Nov 2010 20:11:19 +0800 Subject: [PATCH 019/162] Carbon: Fix regression test parse --- pyfpdb/CarbonToFpdb.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyfpdb/CarbonToFpdb.py b/pyfpdb/CarbonToFpdb.py index 1a1541ee..a2d2f56f 100644 --- a/pyfpdb/CarbonToFpdb.py +++ b/pyfpdb/CarbonToFpdb.py @@ -133,8 +133,9 @@ or None if we fail to get the info """ self.info = {} mg = m.groupdict() + print mg - limits = { 'No Limit':'nl', 'Limit':'fl' } + limits = { 'No Limit':'nl', 'No Limit ':'nl', 'Limit':'fl' } games = { # base, category 'Holdem' : ('hold','holdem'), 'Holdem Tournament' : ('hold','holdem') } From 31da6ff170997742b7231195edaeae185dac85d0 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 26 Nov 2010 12:45:41 +0800 Subject: [PATCH 020/162] Winamax: Pull in tournament support from Forrest Also add tournament directory to regression test file --- pyfpdb/TestHandsPlayers.py | 1 + pyfpdb/WinamaxToFpdb.py | 81 +++++++++++++++++++++++++++++++++++--- 2 files changed, 76 insertions(+), 6 deletions(-) diff --git a/pyfpdb/TestHandsPlayers.py b/pyfpdb/TestHandsPlayers.py index ee3be1e9..e0013ecc 100755 --- a/pyfpdb/TestHandsPlayers.py +++ b/pyfpdb/TestHandsPlayers.py @@ -201,6 +201,7 @@ def main(argv=None): walk_testfiles("regression-test-files/cash/iPoker/", compare, importer, iPokerErrors, "iPoker") if sites['Winamax'] == True: walk_testfiles("regression-test-files/cash/Winamax/", compare, importer, WinamaxErrors, "Winamax") + walk_testfiles("regression-test-files/tour/Winamax/", compare, importer, WinamaxErrors, "Winamax") if sites['Win2day'] == True: walk_testfiles("regression-test-files/cash/Win2day/", compare, importer, Win2dayErrors, "Win2day") diff --git a/pyfpdb/WinamaxToFpdb.py b/pyfpdb/WinamaxToFpdb.py index c49f4e09..47721515 100644 --- a/pyfpdb/WinamaxToFpdb.py +++ b/pyfpdb/WinamaxToFpdb.py @@ -82,15 +82,26 @@ class Winamax(HandHistoryConverter): # Winamax Poker - CashGame - HandId: #279823-223-1285031451 - Holdem no limit (0.02€/0.05€) - 2010/09/21 03:10:51 UTC # Table: 'Charenton-le-Pont' 9-max (real money) Seat #5 is the button re_HandInfo = re.compile(u""" - \s*Winamax\sPoker\s-\sCashGame\s-\sHandId:\s\#(?P<HID1>\d+)-(?P<HID2>\d+)-(?P<HID3>\d+).*\s + \s*Winamax\sPoker\s-\s + (?P<RING>CashGame)? + (?P<TOUR>Tournament\s + (?P<TOURNAME>.+)?\s + buyIn:\s(?P<BUYIN>(?P<BIAMT>[%(LS)s\d\,]+)?\s\+?\s(?P<BIRAKE>[%(LS)s\d\,]+)?\+?(?P<BOUNTY>[%(LS)s\d\.]+)?\s?(?P<TOUR_ISO>%(LEGAL_ISO)s)?|Gratuit|Ticket\suniquement)?\s + (level:\s(?P<LEVEL>\d+))? + .*)? + \s-\sHandId:\s\#(?P<HID1>\d+)-(?P<HID2>\d+)-(?P<HID3>\d+).*\s (?P<GAME>Holdem|Omaha)\s (?P<LIMIT>no\slimit|pot\slimit)\s \( + (((%(LS)s)?(?P<ANTE>[.0-9]+)(%(LS)s)?)/)? ((%(LS)s)?(?P<SB>[.0-9]+)(%(LS)s)?)/ ((%(LS)s)?(?P<BB>[.0-9]+)(%(LS)s)?) \)\s-\s (?P<DATETIME>.*) - Table:\s\'(?P<TABLE>[^']+)\'\s(?P<MAXPLAYER>\d+)\-max + Table:\s\'(?P<TABLE>[^(]+) + (.(?P<TOURNO>\d+).\#(?P<TABLENO>\d+))?.* + \' + \s(?P<MAXPLAYER>\d+)\-max """ % substitutions, re.MULTILINE|re.DOTALL|re.VERBOSE) re_TailSplitHands = re.compile(r'\n\s*\n') @@ -126,8 +137,8 @@ class Winamax(HandHistoryConverter): self.re_PostSB = re.compile('%(PLYR)s posts small blind (%(CUR)s)?(?P<SB>[\.0-9]+)(%(CUR)s)?' % subst, re.MULTILINE) self.re_PostBB = re.compile('%(PLYR)s posts big blind (%(CUR)s)?(?P<BB>[\.0-9]+)(%(CUR)s)?' % subst, re.MULTILINE) self.re_DenySB = re.compile('(?P<PNAME>.*) deny SB' % subst, re.MULTILINE) - self.re_Antes = re.compile(r"^%(PLYR)s: posts the ante (%(CUR)s)?(?P<ANTE>[\.0-9]+)(%(CUR)s)?" % subst, re.MULTILINE) - self.re_BringIn = re.compile(r"^%(PLYR)s: brings[- ]in( low|) for (%(CUR)s)?(?P<BRINGIN>[\.0-9]+(%(CUR)s)?)" % subst, re.MULTILINE) + self.re_Antes = re.compile(r"^%(PLYR)s posts ante (%(CUR)s)?(?P<ANTE>[\.0-9]+)(%(CUR)s)?" % subst, re.MULTILINE) + self.re_BringIn = re.compile(r"^%(PLYR)s brings[- ]in( low|) for (%(CUR)s)?(?P<BRINGIN>[\.0-9]+(%(CUR)s)?)" % subst, re.MULTILINE) self.re_PostBoth = re.compile('(?P<PNAME>.*): posts small \& big blind \( (%(CUR)s)?(?P<SBBB>[\.0-9]+)(%(CUR)s)?\)' % subst) self.re_PostDead = re.compile('(?P<PNAME>.*) posts dead blind \((%(CUR)s)?(?P<DEAD>[\.0-9]+)(%(CUR)s)?\)' % subst, re.MULTILINE) self.re_HeroCards = re.compile('Dealt\sto\s%(PLYR)s\s\[(?P<CARDS>.*)\]' % subst) @@ -144,6 +155,9 @@ class Winamax(HandHistoryConverter): ["ring", "hold", "fl"], ["ring", "hold", "nl"], ["ring", "hold", "pl"], + ["tour", "hold", "fl"], + ["tour", "hold", "nl"], + ["tour", "hold", "pl"], ] def determineGameType(self, handText): @@ -160,7 +174,11 @@ class Winamax(HandHistoryConverter): mg = m.groupdict() - info['type'] = 'ring' + if mg.get('TOUR'): + info['type'] = 'tour' + elif mg.get('RING'): + info['type'] = 'ring' + info['currency'] = 'EUR' if 'LIMIT' in mg: @@ -202,11 +220,62 @@ class Winamax(HandHistoryConverter): hand.startTime = datetime.datetime.strptime(datetimestr, "%Y/%m/%d %H:%M:%S") # also timezone at end, e.g. " ET" hand.startTime = HandHistoryConverter.changeTimezone(hand.startTime, "CET", "UTC") if key == 'HID1': - hand.handid = "1%.4d%s%s"%(int(info['HID2']),info['HID1'],info['HID3']) # Need to remove non-alphanumerics for MySQL + hand.handid = "1%.9d%s%s"%(int(info['HID2']),info['HID1'],info['HID3']) + if key == 'TOURNO': + hand.tourNo = info[key] if key == 'TABLE': hand.tablename = info[key] + if key == 'BUYIN': + if hand.tourNo!=None: + #print "DEBUG: info['BUYIN']: %s" % info['BUYIN'] + #print "DEBUG: info['BIAMT']: %s" % info['BIAMT'] + #print "DEBUG: info['BIRAKE']: %s" % info['BIRAKE'] + #print "DEBUG: info['BOUNTY']: %s" % info['BOUNTY'] + for k in ['BIAMT','BIRAKE']: + if k in info.keys() and info[k]: + info[k] = info[k].replace(',','.') + + if info[key] == 'Freeroll': + hand.buyin = 0 + hand.fee = 0 + hand.buyinCurrency = "FREE" + else: + if info[key].find("$")!=-1: + hand.buyinCurrency="USD" + elif info[key].find(u"€")!=-1: + hand.buyinCurrency="EUR" + elif info[key].find("FPP")!=-1: + hand.buyinCurrency="PSFP" + else: + #FIXME: handle other currencies, FPP, play money + raise FpdbParseError(_("failed to detect currency")) + + info['BIAMT'] = info['BIAMT'].strip(u'$€FPP') + + if hand.buyinCurrency!="PSFP": + if info['BOUNTY'] != None: + # There is a bounty, Which means we need to switch BOUNTY and BIRAKE values + tmp = info['BOUNTY'] + info['BOUNTY'] = info['BIRAKE'] + info['BIRAKE'] = tmp + info['BOUNTY'] = info['BOUNTY'].strip(u'$€') # Strip here where it isn't 'None' + hand.koBounty = int(100*Decimal(info['BOUNTY'])) + hand.isKO = True + else: + hand.isKO = False + + info['BIRAKE'] = info['BIRAKE'].strip(u'$€') + hand.buyin = int(100*Decimal(info['BIAMT'])) + hand.fee = int(100*Decimal(info['BIRAKE'])) + else: + hand.buyin = int(Decimal(info['BIAMT'])) + hand.fee = 0 + + if key == 'LEVEL': + hand.level = info[key] + # TODO: These hand.buttonpos = 1 hand.maxseats = 10 # Set to None - Hand.py will guessMaxSeats() From 9098c3ba036aa13ce786f4d1bae11cd8a1b9f348 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 26 Nov 2010 13:38:39 +0800 Subject: [PATCH 021/162] Regression: Party PLO tourney --- .../Flop/PLO-USD-STT-1.00.201008.Sample.txt | Bin 0 -> 1006 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 pyfpdb/regression-test-files/tour/PartyPoker/Flop/PLO-USD-STT-1.00.201008.Sample.txt diff --git a/pyfpdb/regression-test-files/tour/PartyPoker/Flop/PLO-USD-STT-1.00.201008.Sample.txt b/pyfpdb/regression-test-files/tour/PartyPoker/Flop/PLO-USD-STT-1.00.201008.Sample.txt new file mode 100644 index 0000000000000000000000000000000000000000..a57df9c2e6cd7adf203fd83a6eb5e4d74dd64786 GIT binary patch literal 1006 zcmah{%Wm5+5bRli{$YUh;23g4y=+If25#cCX&WSJFGdfvL`MW<(h#W_{`)RvtCiD3 z1&9QOJF_$7-tn!##dSK5B9=17U@UK}`QUrLcX8(qziDI`6!_lQeOPi;VkwQ)%>f(T zpsOAfc4fZz_<-+QUU9q+@#A@coAxk~3VEXr8PX)C#?<yfyox$Q4BXUGm1dN(tB|ov zOz>5!k{<$mY+qVq5wiecnx!lw+NVX1h=t7ea=xwwjw`|$o24m6PlDHuFAkT!_bj-@ z6w<&}0_)aVt%#>B)u?v677g?UyP6+FV<>ZcHN}Y)X80-Vnv?GlW<e4$^ny`_rD(Ln zlfURR!(%5jrGq$_ACHEa3Hg)RJJ0NH7z?s4)eB0!S15Q>8jQ!j=U@w~k4;y=)F7#l z(^}#e-S(+#!=(`ht2kwZ_T~#-*A8S3>};Qqs4E+^y{+|*8e)aW1W2m@QQ`D^rM0jm zL{Ilts6%=e8(o*?EKc4w>Ztp<^Lws0Fh<WrW+(RwScTWF&A{E0e5Kdw?9I<?nM&`; z7xFT|7y9!eKtdIEud(B@p)9#jBu%rM@3our?izaDlnN3Go4cJ14tTe^rLh<gd+U2i zf?>!|RB~sqY4o<6Fe6KWowf+Em$t${>#c`#sbC)eBer$3=fwUe)y3IJB~2wt5Gi&e KT?k70&if5Q=ON$# literal 0 HcmV?d00001 From 7c4d08833bc95a51317dd1224ea644980792ba82 Mon Sep 17 00:00:00 2001 From: Eric Blade <blade.eric@gmail.com> Date: Fri, 26 Nov 2010 16:57:47 -0500 Subject: [PATCH 022/162] add strptime to Database --- pyfpdb/Database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 65e7a87d..29637c96 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -37,7 +37,7 @@ import os import sys import traceback from datetime import datetime, date, time, timedelta -from time import time, strftime, sleep +from time import time, strftime, sleep, strptime from decimal import Decimal import string import re From 927d27ecce93521160e14115b6a759966eaf1d5a Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 26 Nov 2010 12:45:41 +0800 Subject: [PATCH 023/162] Winamax: Pull in tournament support from Forrest Also add tournament directory to regression test file --- pyfpdb/TestHandsPlayers.py | 1 + pyfpdb/WinamaxToFpdb.py | 81 +++++++++++++++++++++++++++++++++++--- 2 files changed, 76 insertions(+), 6 deletions(-) diff --git a/pyfpdb/TestHandsPlayers.py b/pyfpdb/TestHandsPlayers.py index ee3be1e9..e0013ecc 100755 --- a/pyfpdb/TestHandsPlayers.py +++ b/pyfpdb/TestHandsPlayers.py @@ -201,6 +201,7 @@ def main(argv=None): walk_testfiles("regression-test-files/cash/iPoker/", compare, importer, iPokerErrors, "iPoker") if sites['Winamax'] == True: walk_testfiles("regression-test-files/cash/Winamax/", compare, importer, WinamaxErrors, "Winamax") + walk_testfiles("regression-test-files/tour/Winamax/", compare, importer, WinamaxErrors, "Winamax") if sites['Win2day'] == True: walk_testfiles("regression-test-files/cash/Win2day/", compare, importer, Win2dayErrors, "Win2day") diff --git a/pyfpdb/WinamaxToFpdb.py b/pyfpdb/WinamaxToFpdb.py index c49f4e09..47721515 100644 --- a/pyfpdb/WinamaxToFpdb.py +++ b/pyfpdb/WinamaxToFpdb.py @@ -82,15 +82,26 @@ class Winamax(HandHistoryConverter): # Winamax Poker - CashGame - HandId: #279823-223-1285031451 - Holdem no limit (0.02€/0.05€) - 2010/09/21 03:10:51 UTC # Table: 'Charenton-le-Pont' 9-max (real money) Seat #5 is the button re_HandInfo = re.compile(u""" - \s*Winamax\sPoker\s-\sCashGame\s-\sHandId:\s\#(?P<HID1>\d+)-(?P<HID2>\d+)-(?P<HID3>\d+).*\s + \s*Winamax\sPoker\s-\s + (?P<RING>CashGame)? + (?P<TOUR>Tournament\s + (?P<TOURNAME>.+)?\s + buyIn:\s(?P<BUYIN>(?P<BIAMT>[%(LS)s\d\,]+)?\s\+?\s(?P<BIRAKE>[%(LS)s\d\,]+)?\+?(?P<BOUNTY>[%(LS)s\d\.]+)?\s?(?P<TOUR_ISO>%(LEGAL_ISO)s)?|Gratuit|Ticket\suniquement)?\s + (level:\s(?P<LEVEL>\d+))? + .*)? + \s-\sHandId:\s\#(?P<HID1>\d+)-(?P<HID2>\d+)-(?P<HID3>\d+).*\s (?P<GAME>Holdem|Omaha)\s (?P<LIMIT>no\slimit|pot\slimit)\s \( + (((%(LS)s)?(?P<ANTE>[.0-9]+)(%(LS)s)?)/)? ((%(LS)s)?(?P<SB>[.0-9]+)(%(LS)s)?)/ ((%(LS)s)?(?P<BB>[.0-9]+)(%(LS)s)?) \)\s-\s (?P<DATETIME>.*) - Table:\s\'(?P<TABLE>[^']+)\'\s(?P<MAXPLAYER>\d+)\-max + Table:\s\'(?P<TABLE>[^(]+) + (.(?P<TOURNO>\d+).\#(?P<TABLENO>\d+))?.* + \' + \s(?P<MAXPLAYER>\d+)\-max """ % substitutions, re.MULTILINE|re.DOTALL|re.VERBOSE) re_TailSplitHands = re.compile(r'\n\s*\n') @@ -126,8 +137,8 @@ class Winamax(HandHistoryConverter): self.re_PostSB = re.compile('%(PLYR)s posts small blind (%(CUR)s)?(?P<SB>[\.0-9]+)(%(CUR)s)?' % subst, re.MULTILINE) self.re_PostBB = re.compile('%(PLYR)s posts big blind (%(CUR)s)?(?P<BB>[\.0-9]+)(%(CUR)s)?' % subst, re.MULTILINE) self.re_DenySB = re.compile('(?P<PNAME>.*) deny SB' % subst, re.MULTILINE) - self.re_Antes = re.compile(r"^%(PLYR)s: posts the ante (%(CUR)s)?(?P<ANTE>[\.0-9]+)(%(CUR)s)?" % subst, re.MULTILINE) - self.re_BringIn = re.compile(r"^%(PLYR)s: brings[- ]in( low|) for (%(CUR)s)?(?P<BRINGIN>[\.0-9]+(%(CUR)s)?)" % subst, re.MULTILINE) + self.re_Antes = re.compile(r"^%(PLYR)s posts ante (%(CUR)s)?(?P<ANTE>[\.0-9]+)(%(CUR)s)?" % subst, re.MULTILINE) + self.re_BringIn = re.compile(r"^%(PLYR)s brings[- ]in( low|) for (%(CUR)s)?(?P<BRINGIN>[\.0-9]+(%(CUR)s)?)" % subst, re.MULTILINE) self.re_PostBoth = re.compile('(?P<PNAME>.*): posts small \& big blind \( (%(CUR)s)?(?P<SBBB>[\.0-9]+)(%(CUR)s)?\)' % subst) self.re_PostDead = re.compile('(?P<PNAME>.*) posts dead blind \((%(CUR)s)?(?P<DEAD>[\.0-9]+)(%(CUR)s)?\)' % subst, re.MULTILINE) self.re_HeroCards = re.compile('Dealt\sto\s%(PLYR)s\s\[(?P<CARDS>.*)\]' % subst) @@ -144,6 +155,9 @@ class Winamax(HandHistoryConverter): ["ring", "hold", "fl"], ["ring", "hold", "nl"], ["ring", "hold", "pl"], + ["tour", "hold", "fl"], + ["tour", "hold", "nl"], + ["tour", "hold", "pl"], ] def determineGameType(self, handText): @@ -160,7 +174,11 @@ class Winamax(HandHistoryConverter): mg = m.groupdict() - info['type'] = 'ring' + if mg.get('TOUR'): + info['type'] = 'tour' + elif mg.get('RING'): + info['type'] = 'ring' + info['currency'] = 'EUR' if 'LIMIT' in mg: @@ -202,11 +220,62 @@ class Winamax(HandHistoryConverter): hand.startTime = datetime.datetime.strptime(datetimestr, "%Y/%m/%d %H:%M:%S") # also timezone at end, e.g. " ET" hand.startTime = HandHistoryConverter.changeTimezone(hand.startTime, "CET", "UTC") if key == 'HID1': - hand.handid = "1%.4d%s%s"%(int(info['HID2']),info['HID1'],info['HID3']) # Need to remove non-alphanumerics for MySQL + hand.handid = "1%.9d%s%s"%(int(info['HID2']),info['HID1'],info['HID3']) + if key == 'TOURNO': + hand.tourNo = info[key] if key == 'TABLE': hand.tablename = info[key] + if key == 'BUYIN': + if hand.tourNo!=None: + #print "DEBUG: info['BUYIN']: %s" % info['BUYIN'] + #print "DEBUG: info['BIAMT']: %s" % info['BIAMT'] + #print "DEBUG: info['BIRAKE']: %s" % info['BIRAKE'] + #print "DEBUG: info['BOUNTY']: %s" % info['BOUNTY'] + for k in ['BIAMT','BIRAKE']: + if k in info.keys() and info[k]: + info[k] = info[k].replace(',','.') + + if info[key] == 'Freeroll': + hand.buyin = 0 + hand.fee = 0 + hand.buyinCurrency = "FREE" + else: + if info[key].find("$")!=-1: + hand.buyinCurrency="USD" + elif info[key].find(u"€")!=-1: + hand.buyinCurrency="EUR" + elif info[key].find("FPP")!=-1: + hand.buyinCurrency="PSFP" + else: + #FIXME: handle other currencies, FPP, play money + raise FpdbParseError(_("failed to detect currency")) + + info['BIAMT'] = info['BIAMT'].strip(u'$€FPP') + + if hand.buyinCurrency!="PSFP": + if info['BOUNTY'] != None: + # There is a bounty, Which means we need to switch BOUNTY and BIRAKE values + tmp = info['BOUNTY'] + info['BOUNTY'] = info['BIRAKE'] + info['BIRAKE'] = tmp + info['BOUNTY'] = info['BOUNTY'].strip(u'$€') # Strip here where it isn't 'None' + hand.koBounty = int(100*Decimal(info['BOUNTY'])) + hand.isKO = True + else: + hand.isKO = False + + info['BIRAKE'] = info['BIRAKE'].strip(u'$€') + hand.buyin = int(100*Decimal(info['BIAMT'])) + hand.fee = int(100*Decimal(info['BIRAKE'])) + else: + hand.buyin = int(Decimal(info['BIAMT'])) + hand.fee = 0 + + if key == 'LEVEL': + hand.level = info[key] + # TODO: These hand.buttonpos = 1 hand.maxseats = 10 # Set to None - Hand.py will guessMaxSeats() From 622b3507952fe395af36a2a3840adce9710690d8 Mon Sep 17 00:00:00 2001 From: Eric Blade <blade.eric@gmail.com> Date: Fri, 26 Nov 2010 18:15:28 -0500 Subject: [PATCH 024/162] Revert "Merge branch 'chaz' of git://github.com/ChazDazzle/fpdb-chaz" This reverts commit 61ac6be0fab6f2ca9395bbb3cc4f4cba222842b2, reversing changes made to 18df2ef2c6fb77d9ece345d2c051b911fa6d0f8d. Conflicts: pyfpdb/SQL.py --- pyfpdb/Database.py | 41 +++++----- pyfpdb/IdentifySite.py | 15 ++-- pyfpdb/Options.py | 2 - pyfpdb/PokerStarsToFpdb.py | 2 +- pyfpdb/SQL.py | 22 +++--- pyfpdb/SplitHandHistory.py | 76 +++++++------------ pyfpdb/interlocks.py | 2 +- .../LHE-10max-USD-1.00-2.00-No_max_seats.txt | 42 ---------- 8 files changed, 67 insertions(+), 135 deletions(-) mode change 100644 => 100755 pyfpdb/interlocks.py delete mode 100644 pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10max-USD-1.00-2.00-No_max_seats.txt diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 65e7a87d..9a17a1f1 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -55,7 +55,6 @@ import Card import Charset from Exceptions import * import Configuration -import Filters # Other library modules @@ -292,8 +291,8 @@ class Database: # vars for hand ids or dates fetched according to above config: self.hand_1day_ago = 0 # max hand id more than 24 hrs earlier than now - self.date_ndays_ago = 'd00000000' # date N days ago ('d' + YYMMDD) - self.h_date_ndays_ago = 'd00000000' # date N days ago ('d' + YYMMDD) for hero + self.date_ndays_ago = 'd000000' # date N days ago ('d' + YYMMDD) + self.h_date_ndays_ago = 'd000000' # date N days ago ('d' + YYMMDD) for hero self.date_nhands_ago = {} # dates N hands ago per player - not used yet self.saveActions = False if self.import_options['saveActions'] == False else True @@ -690,23 +689,21 @@ class Database: else: if row and row[0]: self.hand_1day_ago = int(row[0]) - - offset = strptime(Filters.Filters(self, self.config, self.sql).getDates()[0],"%Y-%m-%d %H:%M:%S").tm_hour - - d = timedelta(days=hud_days, hours=offset) - now = datetime.utcnow() - d - self.date_ndays_ago = "d%02d%02d%02d%02d" % (now.year - 2000, now.month, now.day, offset) - d = timedelta(days=h_hud_days, hours=offset) + d = timedelta(days=hud_days) now = datetime.utcnow() - d - self.h_date_ndays_ago = "d%02d%02d%02d%02d" % (now.year - 2000, now.month, now.day, offset) + self.date_ndays_ago = "d%02d%02d%02d" % (now.year - 2000, now.month, now.day) + + d = timedelta(days=h_hud_days) + now = datetime.utcnow() - d + self.h_date_ndays_ago = "d%02d%02d%02d" % (now.year - 2000, now.month, now.day) def init_player_hud_stat_vars(self, playerid): # not sure if this is workable, to be continued ... try: # self.date_nhands_ago is used for fetching stats for last n hands (hud_style = 'H') # This option not used yet - needs to be called for each player :-( - self.date_nhands_ago[str(playerid)] = 'd00000000' + self.date_nhands_ago[str(playerid)] = 'd000000' # should use aggregated version of query if appropriate c.execute(self.sql.query['get_date_nhands_ago'], (self.hud_hands, playerid)) @@ -774,11 +771,11 @@ class Database: if hud_style == 'T': stylekey = self.date_ndays_ago elif hud_style == 'A': - stylekey = '000000000' # all stylekey values should be higher than this + stylekey = '0000000' # all stylekey values should be higher than this elif hud_style == 'S': - stylekey = 'zzzzzzzzz' # all stylekey values should be lower than this + stylekey = 'zzzzzzz' # all stylekey values should be lower than this else: - stylekey = '000000000' + stylekey = '0000000' log.info('hud_style: %s' % hud_style) #elif hud_style == 'H': @@ -787,11 +784,11 @@ class Database: if h_hud_style == 'T': h_stylekey = self.h_date_ndays_ago elif h_hud_style == 'A': - h_stylekey = '000000000' # all stylekey values should be higher than this + h_stylekey = '0000000' # all stylekey values should be higher than this elif h_hud_style == 'S': - h_stylekey = 'zzzzzzzzz' # all stylekey values should be lower than this + h_stylekey = 'zzzzzzz' # all stylekey values should be lower than this else: - h_stylekey = '00000000' + h_stylekey = '000000' log.info('h_hud_style: %s' % h_hud_style) #elif h_hud_style == 'H': @@ -1827,11 +1824,11 @@ class Database: """Update cached statistics. If update fails because no record exists, do an insert.""" if self.use_date_in_hudcache: - styleKey = datetime.strftime(starttime, 'd%y%m%d%H') - #styleKey = "d%02d%02d%02d%02d" % (hand_start_time.year-2000, hand_start_time.month, hand_start_time.day, hand_start_time.hour) + styleKey = datetime.strftime(starttime, 'd%y%m%d') + #styleKey = "d%02d%02d%02d" % (hand_start_time.year-2000, hand_start_time.month, hand_start_time.day) else: - # hard-code styleKey as 'A00000000' (all-time cache, no key) for now - styleKey = 'A00000000' + # hard-code styleKey as 'A000000' (all-time cache, no key) for now + styleKey = 'A000000' update_hudcache = self.sql.query['update_hudcache'] update_hudcache = update_hudcache.replace('%s', self.sql.query['placeholder']) diff --git a/pyfpdb/IdentifySite.py b/pyfpdb/IdentifySite.py index 723991f3..b4f1a8a7 100644 --- a/pyfpdb/IdentifySite.py +++ b/pyfpdb/IdentifySite.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # -*- coding: utf-8 -*- #Copyright 2010 Chaz Littlejohn @@ -28,21 +28,18 @@ import Configuration import Database __ARCHIVE_PRE_HEADER_REGEX='^Hand #(\d+)\s*$|\*{20}\s#\s\d+\s\*+\s+' -re_SplitArchive = re.compile(__ARCHIVE_PRE_HEADER_REGEX, re.MULTILINE) +re_SplitArchive = re.compile(__ARCHIVE_PRE_HEADER_REGEX) class IdentifySite: def __init__(self, config, in_path = '-'): self.in_path = in_path self.config = config - self.db = Database.Database(self.config) + self.db = Database.Database(config) self.sitelist = {} self.filelist = {} self.generateSiteList() - if os.path.isdir(self.in_path): - self.walkDirectory(self.in_path, self.sitelist) - else: - self.idSite(self.in_path, self.sitelist) + self.walkDirectory(self.in_path, self.sitelist) def generateSiteList(self): """Generates a ordered dictionary of site, filter and filter name for each site in hhcs""" @@ -83,7 +80,7 @@ class IdentifySite: for kodec in self.__listof(obj.codepage): try: in_fh = codecs.open(file, 'r', kodec) - whole_file = in_fh.read(2000) + whole_file = in_fh.read() in_fh.close() if info[2] in ('OnGame', 'Winamax'): @@ -97,7 +94,7 @@ class IdentifySite: if re_SplitArchive.search(whole_file): archive = True if m: - self.filelist[file] = [info[1]] + [kodec] + [archive] + self.filelist[file] = [info[0]] + [info[1]] + [kodec] + [archive] break except: pass diff --git a/pyfpdb/Options.py b/pyfpdb/Options.py index 6369b485..b8be3d2a 100644 --- a/pyfpdb/Options.py +++ b/pyfpdb/Options.py @@ -59,8 +59,6 @@ def fpdb_options(): help=_("File to be split is a PokerStars or Full Tilt Poker archive file")) parser.add_option("-n", "--numhands", dest="hands", default="100", type="int", help=_("How many hands do you want saved to each file. Default is 100")) - parser.add_option("-w", "--workerid", dest="workerid", default="0", type="int", - help=_("Specifies the worker id running the script")) (options, argv) = parser.parse_args() diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index 3817ae3f..16c4091e 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -298,7 +298,7 @@ class PokerStars(HandHistoryConverter): if key == 'BUTTON': hand.buttonpos = info[key] if key == 'MAX': - if info[key]: hand.maxseats = int(info[key]) + hand.maxseats = int(info[key]) if key == 'MIXED': hand.mixed = self.mixes[info[key]] if info[key] is not None else None diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index 6a505eae..d45ccd38 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -1064,7 +1064,7 @@ class Sql: activeSeats SMALLINT NOT NULL, position CHAR(1), tourneyTypeId SMALLINT UNSIGNED, FOREIGN KEY (tourneyTypeId) REFERENCES TourneyTypes(id), - styleKey CHAR(9) NOT NULL, /* 1st char is style (A/T/H/S), other 8 are the key */ + styleKey CHAR(7) NOT NULL, /* 1st char is style (A/T/H/S), other 6 are the key */ HDs INT NOT NULL, wonWhenSeenStreet1 FLOAT, @@ -1165,7 +1165,7 @@ class Sql: activeSeats SMALLINT, position CHAR(1), tourneyTypeId INT, FOREIGN KEY (tourneyTypeId) REFERENCES TourneyTypes(id), - styleKey CHAR(9) NOT NULL, /* 1st char is style (A/T/H/S), other 8 are the key */ + styleKey CHAR(7) NOT NULL, /* 1st char is style (A/T/H/S), other 6 are the key */ HDs INT, wonWhenSeenStreet1 FLOAT, @@ -2047,7 +2047,7 @@ class Sql: # gets a date, would need to use handsplayers (not hudcache) to get exact hand Id if db_server == 'mysql': self.query['get_date_nhands_ago'] = """ - select concat( 'd', date_format(max(h.startTime), '%Y%m%d%H') ) + select concat( 'd', date_format(max(h.startTime), '%Y%m%d') ) from (select hp.playerId ,coalesce(greatest(max(hp.handId)-%s,1),1) as maxminusx from HandsPlayers hp @@ -2059,7 +2059,7 @@ class Sql: """ elif db_server == 'postgresql': self.query['get_date_nhands_ago'] = """ - select 'd' || to_char(max(h3.startTime), 'YYMMDDHH') + select 'd' || to_char(max(h3.startTime), 'YYMMDD') from (select hp.playerId ,coalesce(greatest(max(hp.handId)-%s,1),1) as maxminusx from HandsPlayers hp @@ -2071,7 +2071,7 @@ class Sql: """ elif db_server == 'sqlite': # untested guess at query: self.query['get_date_nhands_ago'] = """ - select 'd' || strftime(max(h3.startTime), 'YYMMDDHH') + select 'd' || strftime(max(h3.startTime), 'YYMMDD') from (select hp.playerId ,coalesce(greatest(max(hp.handId)-%s,1),1) as maxminusx from HandsPlayers hp @@ -3290,7 +3290,7 @@ class Sql: else 'E' end AS hc_position <tourney_select_clause> - ,date_format(h.startTime, 'd%y%m%d%H') + ,date_format(h.startTime, 'd%y%m%d') ,count(1) ,sum(wonWhenSeenStreet1) ,sum(wonWhenSeenStreet2) @@ -3379,7 +3379,7 @@ class Sql: ,h.seats ,hc_position <tourney_group_clause> - ,date_format(h.startTime, 'd%y%m%d%H') + ,date_format(h.startTime, 'd%y%m%d') """ elif db_server == 'postgresql': self.query['rebuildHudCache'] = """ @@ -3488,7 +3488,7 @@ class Sql: else 'E' end AS hc_position <tourney_select_clause> - ,'d' || to_char(h.startTime, 'YYMMDDHH') + ,'d' || to_char(h.startTime, 'YYMMDD') ,count(1) ,sum(wonWhenSeenStreet1) ,sum(wonWhenSeenStreet2) @@ -3577,7 +3577,7 @@ class Sql: ,h.seats ,hc_position <tourney_group_clause> - ,to_char(h.startTime, 'YYMMDDHH') + ,to_char(h.startTime, 'YYMMDD') """ else: # assume sqlite self.query['rebuildHudCache'] = """ @@ -3686,7 +3686,7 @@ class Sql: else 'E' end AS hc_position <tourney_select_clause> - ,'d' || substr(strftime('%Y%m%d%H', h.startTime),3,9) + ,'d' || substr(strftime('%Y%m%d', h.startTime),3,7) ,count(1) ,sum(wonWhenSeenStreet1) ,sum(wonWhenSeenStreet2) @@ -3775,7 +3775,7 @@ class Sql: ,h.seats ,hc_position <tourney_group_clause> - ,'d' || substr(strftime('%Y%m%d%H', h.startTime),3,9) + ,'d' || substr(strftime('%Y%m%d', h.startTime),3,7) """ self.query['insert_hudcache'] = """ diff --git a/pyfpdb/SplitHandHistory.py b/pyfpdb/SplitHandHistory.py index c996f903..52c1d340 100644 --- a/pyfpdb/SplitHandHistory.py +++ b/pyfpdb/SplitHandHistory.py @@ -1,22 +1,19 @@ -#!/usr/bin/env python +#!/usr/bin/python +# -*- coding: utf-8 -*- -# Copyright 2010, Chaz Littlejohn -# -# 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 - -######################################################################## +#Copyright 2010 Chaz Littlejohn +#This program is free software: you can redistribute it and/or modify +#it under the terms of the GNU Affero General Public License as published by +#the Free Software Foundation, version 3 of the License. +# +#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 Affero General Public License +#along with this program. If not, see <http://www.gnu.org/licenses/>. +#In the "official" distribution you can find the license in agpl-3.0.txt. import L10n _ = L10n.get_translation() @@ -31,7 +28,6 @@ import Options import Configuration from Exceptions import * from cStringIO import StringIO -import time (options, argv) = Options.fpdb_options() @@ -41,7 +37,7 @@ codepage = ["utf-16", "utf-8", "cp1252"] class SplitHandHistory: - def __init__(self, config, in_path = '-', out_path = None, hands = 100, filter = "PokerStarsToFpdb", archive = False, workerid = 0): + def __init__(self, config, in_path = '-', out_path = None, hands = 100, filter = "PokerStarsToFpdb", archive = False): self.config = config self.in_path = in_path self.out_path = out_path @@ -54,25 +50,22 @@ class SplitHandHistory: self.line_addendum = None self.filedone = False - self.timestamp = str(time.time()) - self.workerid = '%02d' % workerid - #Acquire re_SplitHands for this hh - self.filter_name = filter.replace("ToFpdb", "") + filter_name = filter.replace("ToFpdb", "") mod = __import__(filter) - obj = getattr(mod, self.filter_name, None) + obj = getattr(mod, filter_name, None) self.re_SplitHands = obj.re_SplitHands #Determine line delimiter type if any - if self.re_SplitHands.match('\n\n\n'): - self.line_delimiter = '\n\n\n' if self.re_SplitHands.match('\n\n'): self.line_delimiter = '\n\n' + if self.re_SplitHands.match('\n\n\n'): + self.line_delimiter = '\n\n\n' #Add new line addendum for sites which match SplitHand to next line as well - if self.filter_name == 'OnGame': + if filter_name == 'OnGame': self.line_addendum = '*' - if self.filter_name == 'Carbon': + if filter_name == 'Carbon': self.line_addendum = '<game' #Open the gargantuan file @@ -82,7 +75,6 @@ class SplitHandHistory: except IOError: print _('File not found') sys.exit(2) - self.kodec = kodec #Split with do_hands_per_file if archive and paragraphs if a regular hh if self.archive: @@ -113,10 +105,9 @@ class SplitHandHistory: print _('Nope, will not work (fileno=%d)' % fileno) sys.exit(2) basename = os.path.splitext(os.path.basename(self.in_path))[0] - name = os.path.join(self.out_path, self.filter_name+'-'+basename+'_'+self.workerid+'_'+self.timestamp+'_%06d.txt' % fileno) + name = os.path.join(self.out_path, basename+'-%06d.txt' % fileno) print '-> %s' % name newfile = file(name, 'w') - os.chmod(name, 0775) return newfile #Archive Hand Splitter @@ -131,11 +122,8 @@ class SplitHandHistory: except FpdbEndOfFile: done = True break - except UnicodeEncodeError: - print _('Absurd character done messed you up') - sys.exit(2) except: - print _('Unexpected error processing file') + print _("Unexpected error processing file") sys.exit(2) n += 1 outfile.close() @@ -186,7 +174,7 @@ class SplitHandHistory: l = infile.readline() l = l.replace('\r\n', '\n') outfile.write(l) - l = infile.readline().encode(self.kodec) + l = infile.readline() while len(l) < 3: l = infile.readline() @@ -194,7 +182,7 @@ class SplitHandHistory: while len(l) > 2: l = l.replace('\r\n', '\n') outfile.write(l) - l = infile.readline().encode(self.kodec) + l = infile.readline() outfile.write(self.line_delimiter) return infile @@ -207,19 +195,13 @@ class SplitHandHistory: def main(argv=None): if argv is None: argv = sys.argv[1:] - - if not options.filename: - options.filename = sys.argv[1] if not options.config: - options.config = sys.argv[2] - - if sys.argv[3] == "True": - options.archive = True - + options.config = Configuration.Config(file = "HUD_config.test.xml") + if options.filename: SplitHH = SplitHandHistory(options.config, options.filename, options.outpath, options.hands, - options.hhc, options.archive, options.workerid) + options.hhc, options.archive) if __name__ == '__main__': sys.exit(main()) diff --git a/pyfpdb/interlocks.py b/pyfpdb/interlocks.py old mode 100644 new mode 100755 index 496c5d0b..c2e6abd6 --- a/pyfpdb/interlocks.py +++ b/pyfpdb/interlocks.py @@ -108,7 +108,7 @@ class InterProcessLockFcntl(InterProcessLockBase): self.lockfd = 0 try: os.unlink(self.lock_file_name) - except OSError: + except IOError: # We don't care about the existence of the file too much here. It's the flock() we care about, # And that should just go away magically. pass diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10max-USD-1.00-2.00-No_max_seats.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10max-USD-1.00-2.00-No_max_seats.txt deleted file mode 100644 index 173da216..00000000 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10max-USD-1.00-2.00-No_max_seats.txt +++ /dev/null @@ -1,42 +0,0 @@ -PokerStars Game #2428142447: Hold'em Limit ($1/$2 USD) - 2005/08/26 16:12:22 ET -Table 'Teucer II' Seat #5 is the button -Seat 1: Frankson34 ($24 in chips) -Seat 2: webb22 ($64 in chips) -Seat 3: eric_mtx ($26 in chips) -Seat 4: sososolid ($147.75 in chips) -Seat 5: DRILHER ($48.25 in chips) -Seat 6: Naughtychic ($60 in chips) -Seat 7: Terps78 ($71.50 in chips) -Seat 8: ChazDazzle ($69.25 in chips) -Seat 9: alekos ($55 in chips) -Seat 10: BigNards84 ($64.25 in chips) -Naughtychic: posts small blind $0.50 -Terps78: posts big blind $1 -*** HOLE CARDS *** -Dealt to ChazDazzle [8c Kd] -ChazDazzle: folds -alekos: folds -BigNards84: raises $1 to $2 -Frankson34: folds -webb22: folds -eric_mtx: folds -ChazDazzle leaves the table -sososolid: folds -DRILHER: folds -cdhender joins the table at seat #8 -Naughtychic: folds -Terps78: folds -BigNards84 collected $2.50 from pot -BigNards84: doesn't show hand -*** SUMMARY *** -Total pot $2.50 | Rake $0 -Seat 1: Frankson34 folded before Flop (didn't bet) -Seat 2: webb22 folded before Flop (didn't bet) -Seat 3: eric_mtx folded before Flop (didn't bet) -Seat 4: sososolid folded before Flop (didn't bet) -Seat 5: DRILHER (button) folded before Flop (didn't bet) -Seat 6: Naughtychic (small blind) folded before Flop -Seat 7: Terps78 (big blind) folded before Flop -Seat 8: ChazDazzle folded before Flop (didn't bet) -Seat 9: alekos folded before Flop (didn't bet) -Seat 10: BigNards84 collected ($2.50) From bfa3cfc20cdf1612b4e74dd834cba217d2015858 Mon Sep 17 00:00:00 2001 From: Eric Blade <blade.eric@gmail.com> Date: Fri, 26 Nov 2010 18:51:25 -0500 Subject: [PATCH 025/162] check for AttributeError at new window_foreign_new call --- pyfpdb/TableWindow.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyfpdb/TableWindow.py b/pyfpdb/TableWindow.py index 61d7bd80..c0241df4 100644 --- a/pyfpdb/TableWindow.py +++ b/pyfpdb/TableWindow.py @@ -138,7 +138,10 @@ class Table_Window(object): self.search_string = getTableTitleRe(self.config, self.site, self.type, **table_kwargs) self.find_table_parameters() - self.gdkhandle = gtk.gdk.window_foreign_new(self.number) + try: + self.gdkhandle = gtk.gdk.window_foreign_new(self.number) + except AttributeError: # self.number does not exist, table was closed + return None geo = self.get_geometry() if geo is None: return None self.width = geo['width'] From cdd987483fd8db14d2847d29f1258271129853f2 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Fri, 26 Nov 2010 21:01:01 -0500 Subject: [PATCH 026/162] Don't put HUD on UB replayer window. --- pyfpdb/TableWindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/TableWindow.py b/pyfpdb/TableWindow.py index 61d7bd80..bf4ea854 100644 --- a/pyfpdb/TableWindow.py +++ b/pyfpdb/TableWindow.py @@ -58,7 +58,7 @@ limit_game_names = { #fpdb name Stars Name FTP Name # A window title might have our table name + one of these words/ # phrases. If it has this word in the title, it is not a table. -bad_words = ('History for table:', 'HUD:', 'Chat:', 'FPDBHUD') +bad_words = ('History for table:', 'HUD:', 'Chat:', 'FPDBHUD', 'Instant Replay') # Here are the custom signals we define for allowing the 'client watcher' # thread to communicate with the gui thread. Any time a poker client is From a8f12db7f7071e239d7d3301ecef2df649560b6f Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Fri, 26 Nov 2010 21:01:34 -0500 Subject: [PATCH 027/162] Clean up unused imports. --- pyfpdb/Mucked.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) mode change 100755 => 100644 pyfpdb/Mucked.py diff --git a/pyfpdb/Mucked.py b/pyfpdb/Mucked.py old mode 100755 new mode 100644 index cf948221..e642c6db --- a/pyfpdb/Mucked.py +++ b/pyfpdb/Mucked.py @@ -25,17 +25,17 @@ Mucked cards display for FreePokerTools HUD. # to do # Standard Library modules -import sys -import pprint +#import sys +#import pprint # pyGTK modules -import pygtk +#import pygtk import gtk import gobject # FreePokerTools modules -import Configuration -import Database +#import Configuration +#import Database import Card class Aux_Window(object): From e30989a8528239c00e1aecd427d7c02305e11343 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Fri, 26 Nov 2010 22:10:51 -0500 Subject: [PATCH 028/162] Fix odd intermittent problem with HUD not opening. --- pyfpdb/HUD_main.pyw | 3 ++- pyfpdb/TableWindow.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) mode change 100755 => 100644 pyfpdb/HUD_main.pyw diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw old mode 100755 new mode 100644 index 145e9048..cd46f596 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -184,7 +184,8 @@ class HUD_main(object): self.vb.add(newlabel) newlabel.show() self.main_window.resize_children() - + table.gdkhandle = gtk.gdk.window_foreign_new(table.number) + self.hud_dict[table.key].tablehudlabel = newlabel self.hud_dict[table.key].create(new_hand_id, self.config, stat_dict, cards) for m in self.hud_dict[table.key].aux_windows: diff --git a/pyfpdb/TableWindow.py b/pyfpdb/TableWindow.py index bf4ea854..43910317 100644 --- a/pyfpdb/TableWindow.py +++ b/pyfpdb/TableWindow.py @@ -138,7 +138,7 @@ class Table_Window(object): self.search_string = getTableTitleRe(self.config, self.site, self.type, **table_kwargs) self.find_table_parameters() - self.gdkhandle = gtk.gdk.window_foreign_new(self.number) +# self.gdkhandle = gtk.gdk.window_foreign_new(self.number) geo = self.get_geometry() if geo is None: return None self.width = geo['width'] From e5f4f5710d51744a7fbba33e0301fc728d532b85 Mon Sep 17 00:00:00 2001 From: Eric Blade <blade.eric@gmail.com> Date: Fri, 26 Nov 2010 23:13:14 -0500 Subject: [PATCH 029/162] read_stdin: return if fail to find table, rather than continue along, also trap KeyError at end of func when checking tournament tables. (maybe this'll finally fix the hud locking up on table close sometimes?) --- pyfpdb/HUD_main.pyw | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw index 145e9048..54484c45 100755 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -354,6 +354,7 @@ class HUD_main(object): self.create_HUD(new_hand_id, tablewindow, temp_key, max, poker_game, type, stat_dict, cards) else: log.error(_('Table "%s" no longer exists\n') % table_name) + return t6 = time.time() log.info(_("HUD_main.read_stdin: hand read in %4.3f seconds (%4.3f,%4.3f,%4.3f,%4.3f,%4.3f,%4.3f)") @@ -361,7 +362,10 @@ class HUD_main(object): self.db_connection.connection.rollback() if type == "tour": - self.hud_dict[temp_key].table.check_table_no(self.hud_dict[temp_key]) + try: + self.hud_dict[temp_key].table.check_table_no(self.hud_dict[temp_key]) + except KeyError: + pass if __name__== "__main__": From 2990e5856dc00919469804d19fde8f8a0d45944d Mon Sep 17 00:00:00 2001 From: Eric Blade <blade.eric@gmail.com> Date: Sat, 27 Nov 2010 18:34:30 -0500 Subject: [PATCH 030/162] Button changes immediately after pressing it instead of waiting until the pipe is ready. Terminates HUD process rather than asking it to close --- pyfpdb/GuiAutoImport.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyfpdb/GuiAutoImport.py b/pyfpdb/GuiAutoImport.py index 0121509d..59fe808c 100755 --- a/pyfpdb/GuiAutoImport.py +++ b/pyfpdb/GuiAutoImport.py @@ -213,6 +213,8 @@ class GuiAutoImport (threading.Thread): self.addText(_("\nGlobal lock taken ... Auto Import Started.\n")) self.doAutoImportBool = True widget.set_label(_(u' _Stop Auto Import ')) + while gtk.events_pending(): # change the label NOW don't wait for the pipe to open + gtk.main_iteration(False) if self.pipe_to_hud is None: if Configuration.FROZEN: # if py2exe, run hud_main.exe path = Configuration.EXEC_PATH @@ -224,15 +226,14 @@ class GuiAutoImport (threading.Thread): command = 'pythonw "'+path+'\\HUD_main.pyw" ' + self.settings['cl_options'] else: command = 'python "'+path+'\\HUD_main.pyw" ' + self.settings['cl_options'] - # uncomment above line if you want hud_main stdout to work ... and make sure you are running fpdb.py using python.exe not pythonw.exe bs = 0 else: command = os.path.join(sys.path[0], 'HUD_main.pyw') command = [command, ] + string.split(self.settings['cl_options']) bs = 1 - try: print _("opening pipe to HUD") + try: if Configuration.FROZEN or (os.name == "nt" and win32console.GetConsoleWindow()) == 0: self.pipe_to_hud = subprocess.Popen(command, bufsize=bs, stdin=subprocess.PIPE, @@ -242,8 +243,6 @@ class GuiAutoImport (threading.Thread): ) else: self.pipe_to_hud = subprocess.Popen(command, bufsize=bs, stdin=subprocess.PIPE, universal_newlines=True) - #self.pipe_to_hud.stdout.close() - #self.pipe_to_hud.stderr.close() except: err = traceback.extract_tb(sys.exc_info()[2])[-1] #self.addText( "\n*** GuiAutoImport Error opening pipe: " + err[2] + "(" + str(err[1]) + "): " + str(sys.exc_info()[1])) @@ -268,8 +267,9 @@ class GuiAutoImport (threading.Thread): if self.pipe_to_hud.poll() is not None: self.addText(_("\n * Stop Auto Import: HUD already terminated")) else: + self.pipe_to_hud.terminate() #print >>self.pipe_to_hud.stdin, "\n" - self.pipe_to_hud.communicate('\n') # waits for process to terminate + # self.pipe_to_hud.communicate('\n') # waits for process to terminate self.pipe_to_hud = None self.startButton.set_label(_(u' Start _Auto Import ')) From f94ad0126ad6d912e72ea81562f8aa7603b01d1f Mon Sep 17 00:00:00 2001 From: Eric Blade <blade.eric@gmail.com> Date: Sat, 27 Nov 2010 19:16:15 -0500 Subject: [PATCH 031/162] add --xloc and --yloc options for specifying where to start windows at --- pyfpdb/HUD_main.pyw | 6 ++++++ pyfpdb/Options.py | 4 ++++ pyfpdb/fpdb.pyw | 10 ++++++++-- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw index 54484c45..098ff57a 100755 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -102,6 +102,12 @@ class HUD_main(object): # a main window self.main_window = gtk.Window() + if options.xloc is not None or options.yloc is not None: + if options.xloc is None: + options.xloc = 0 + if options.yloc is None: + options.yloc = 0 + self.main_window.move(options.xloc,options.yloc) self.main_window.connect("client_moved", self.client_moved) self.main_window.connect("client_resized", self.client_resized) self.main_window.connect("client_destroyed", self.client_destroyed) diff --git a/pyfpdb/Options.py b/pyfpdb/Options.py index b8be3d2a..d66675c5 100644 --- a/pyfpdb/Options.py +++ b/pyfpdb/Options.py @@ -59,6 +59,10 @@ def fpdb_options(): help=_("File to be split is a PokerStars or Full Tilt Poker archive file")) parser.add_option("-n", "--numhands", dest="hands", default="100", type="int", help=_("How many hands do you want saved to each file. Default is 100")) + parser.add_option("--xloc", dest="xloc", default=None, type="int", + help=_("X location to open window")) + parser.add_option("--yloc", dest="yloc", default=None, type="int", + help=_("Y location to open Window")) (options, argv) = parser.parse_args() diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 3660dd57..0135aa26 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -14,7 +14,6 @@ #You should have received a copy of the GNU Affero General Public License #along with this program. If not, see <http://www.gnu.org/licenses/>. #In the "official" distribution you can find the license in agpl-3.0.txt. - import L10n _ = L10n.get_translation() @@ -1097,6 +1096,13 @@ You can find the full license texts in agpl-3.0.txt, gpl-2.0.txt, gpl-3.0.txt an self.visible = False self.window = gtk.Window(gtk.WINDOW_TOPLEVEL) + if options.xloc is not None or options.yloc is not None: + if options.xloc is None: + options.xloc = 0 + if options.yloc is None: + options.yloc = 0 + self.window.move(options.xloc,options.yloc) + self.window.connect("delete_event", self.delete_event) self.window.connect("destroy", self.destroy) self.window.set_title("Free Poker DB - v%s" % (VERSION, )) @@ -1148,7 +1154,7 @@ You can find the full license texts in agpl-3.0.txt, gpl-2.0.txt, gpl-3.0.txt an cards = os.path.join(os.getcwd(), '..','gfx','fpdb-cards.png') if os.path.exists(cards): self.statusIcon.set_from_file(cards) - self.window.set_icon_from_file(cards) + self.window.set_icon_from_file(cards) elif os.path.exists('/usr/share/pixmaps/fpdb-cards.png'): self.statusIcon.set_from_file('/usr/share/pixmaps/fpdb-cards.png') self.window.set_icon_from_file('/usr/share/pixmaps/fpdb-cards.png') From e2b86eb239320f89e95fda78ab0c2e1160fef55b Mon Sep 17 00:00:00 2001 From: Eric Blade <blade.eric@gmail.com> Date: Sat, 27 Nov 2010 19:32:28 -0500 Subject: [PATCH 032/162] Add --autoimport command argument --- pyfpdb/GuiAutoImport.py | 2 +- pyfpdb/Options.py | 2 ++ pyfpdb/fpdb.pyw | 6 ++++++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/pyfpdb/GuiAutoImport.py b/pyfpdb/GuiAutoImport.py index 59fe808c..3cc816ed 100755 --- a/pyfpdb/GuiAutoImport.py +++ b/pyfpdb/GuiAutoImport.py @@ -204,7 +204,7 @@ class GuiAutoImport (threading.Thread): # That is not correct. It should open another dir for importing while piping the # results to the same pipe. This means that self.path should be a a list of dirs # to watch. - if widget.get_active(): # toggled on + if widget.get_active() or data == "autostart": # toggled on # - Does the lock acquisition need to be more sophisticated for multiple dirs? # (see comment above about what to do if pipe already open) # - Ideally we want to release the lock if the auto-import is killed by some diff --git a/pyfpdb/Options.py b/pyfpdb/Options.py index d66675c5..9f5778ea 100644 --- a/pyfpdb/Options.py +++ b/pyfpdb/Options.py @@ -63,6 +63,8 @@ def fpdb_options(): help=_("X location to open window")) parser.add_option("--yloc", dest="yloc", default=None, type="int", help=_("Y location to open Window")) + parser.add_option("--autoimport", action="store_true", dest="autoimport", + help=_("Auto-start Auto-import")) (options, argv) = parser.parse_args() diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 0135aa26..90ce59e8 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -993,6 +993,9 @@ class fpdb: self.threads.append(new_aimp_thread) aimp_tab=new_aimp_thread.get_vbox() self.add_and_display_tab(aimp_tab, _("Auto Import")) + if options.autoimport: + new_aimp_thread.startClicked(new_aimp_thread.startButton, "autostart") + options.autoimport = False def tab_bulk_import(self, widget, data=None): """opens a tab for bulk importing""" @@ -1177,6 +1180,9 @@ You can find the full license texts in agpl-3.0.txt, gpl-2.0.txt, gpl-3.0.txt an self.window.connect('window-state-event', self.window_state_event_cb) sys.stderr.write(_("fpdb starting ...")) + + if options.autoimport: + self.tab_auto_import(None) def __iconify(self): From 7402c57eb1c040c01974bffee2401dcfa4b1338a Mon Sep 17 00:00:00 2001 From: Eric Blade <blade.eric@gmail.com> Date: Sat, 27 Nov 2010 20:35:34 -0500 Subject: [PATCH 033/162] --hidden --minimized --- pyfpdb/HUD_main.pyw | 8 +++++++- pyfpdb/Options.py | 4 ++++ pyfpdb/fpdb.pyw | 5 +++++ 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw index 098ff57a..cb2d7b3f 100755 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -102,6 +102,11 @@ class HUD_main(object): # a main window self.main_window = gtk.Window() + if options.minimized: + self.main_window.iconify() + if options.hidden: + self.main_window.hide() + if options.xloc is not None or options.yloc is not None: if options.xloc is None: options.xloc = 0 @@ -126,7 +131,8 @@ class HUD_main(object): self.main_window.set_icon_from_file('/usr/share/pixmaps/fpdb-cards.png') else: self.main_window.set_icon_stock(gtk.STOCK_HOME) - self.main_window.show_all() + if not options.hidden: + self.main_window.show_all() gobject.timeout_add(100, self.check_tables) except: diff --git a/pyfpdb/Options.py b/pyfpdb/Options.py index 9f5778ea..fb23d43c 100644 --- a/pyfpdb/Options.py +++ b/pyfpdb/Options.py @@ -65,6 +65,10 @@ def fpdb_options(): help=_("Y location to open Window")) parser.add_option("--autoimport", action="store_true", dest="autoimport", help=_("Auto-start Auto-import")) + parser.add_option("--minimized", action="store_true", dest="minimized", + help=_("Start Minimized")) + parser.add_option("--hidden", action="store_true", dest="hidden", + help=_("Start Hidden")) (options, argv) = parser.parse_args() diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 90ce59e8..9ba1dfea 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -1140,6 +1140,11 @@ You can find the full license texts in agpl-3.0.txt, gpl-2.0.txt, gpl-3.0.txt an self.nb_tab_names=[] # list of tab names currently displayed in notebook self.tab_main_help(None, None) + + if options.minimized: + self.window.iconify() + if options.hidden: + self.window.hide() self.window.show() self.visible = True # Flip on From 336fee0f3d1f4e748e986dc98ad0908d0e5870a9 Mon Sep 17 00:00:00 2001 From: Eric Blade <blade.eric@gmail.com> Date: Sat, 27 Nov 2010 20:36:42 -0500 Subject: [PATCH 034/162] oops --- pyfpdb/fpdb.pyw | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 9ba1dfea..83463e36 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -1146,7 +1146,8 @@ You can find the full license texts in agpl-3.0.txt, gpl-2.0.txt, gpl-3.0.txt an if options.hidden: self.window.hide() - self.window.show() + if not options.hidden: + self.window.show() self.visible = True # Flip on self.load_profile(create_db = True) From e5782dd7360ad00980d49f588bc41c9d1ab71e5f Mon Sep 17 00:00:00 2001 From: Eric Blade <blade.eric@gmail.com> Date: Sun, 28 Nov 2010 20:00:56 -0500 Subject: [PATCH 035/162] some cleanups and comments --- pyfpdb/GuiAutoImport.py | 10 ++++-- pyfpdb/fpdb.pyw | 67 ++++++++++++++++++++++++++++------------- 2 files changed, 53 insertions(+), 24 deletions(-) diff --git a/pyfpdb/GuiAutoImport.py b/pyfpdb/GuiAutoImport.py index 3cc816ed..b6d7bcaf 100755 --- a/pyfpdb/GuiAutoImport.py +++ b/pyfpdb/GuiAutoImport.py @@ -204,15 +204,19 @@ class GuiAutoImport (threading.Thread): # That is not correct. It should open another dir for importing while piping the # results to the same pipe. This means that self.path should be a a list of dirs # to watch. - if widget.get_active() or data == "autostart": # toggled on + if data == "autostart": + self.startButton.set_active(True) + return + + if widget == self.startButton and self.startButton.get_active(): # - Does the lock acquisition need to be more sophisticated for multiple dirs? # (see comment above about what to do if pipe already open) # - Ideally we want to release the lock if the auto-import is killed by some # kind of exception - is this possible? - if self.settings['global_lock'].acquire(False): # returns false immediately if lock not acquired + if self.settings['global_lock'].acquire(False, source="AutoImport"): # returns false immediately if lock not acquired self.addText(_("\nGlobal lock taken ... Auto Import Started.\n")) self.doAutoImportBool = True - widget.set_label(_(u' _Stop Auto Import ')) + self.startButton.set_label(_(u' _Stop Auto Import ')) while gtk.events_pending(): # change the label NOW don't wait for the pipe to open gtk.main_iteration(False) if self.pipe_to_hud is None: diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 83463e36..53f74aa4 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -964,8 +964,8 @@ class fpdb: self.quitting = True # TODO: check if current settings differ from profile, if so offer to save or abort - if self.db!=None: - if self.db.backend==self.db.MYSQL_INNODB: + if self.db is not None: + if self.db.backend == self.db.MYSQL_INNODB: try: import _mysql_exceptions if self.db is not None and self.db.is_connected(): @@ -991,7 +991,7 @@ class fpdb: """opens the auto import tab""" new_aimp_thread = GuiAutoImport.GuiAutoImport(self.settings, self.config, self.sql, self.window) self.threads.append(new_aimp_thread) - aimp_tab=new_aimp_thread.get_vbox() + aimp_tab = new_aimp_thread.get_vbox() self.add_and_display_tab(aimp_tab, _("Auto Import")) if options.autoimport: new_aimp_thread.startClicked(new_aimp_thread.startButton, "autostart") @@ -1096,8 +1096,11 @@ You can find the full license texts in agpl-3.0.txt, gpl-2.0.txt, gpl-3.0.txt an self.db = None self.status_bar = None self.quitting = False - self.visible = False + self.threads = [] # objects used by tabs - no need for threads, gtk handles it + self.closeq = Queue.Queue(20) # used to signal ending of a thread (only logviewer for now) + + # create window, move it to specific location on command line self.window = gtk.Window(gtk.WINDOW_TOPLEVEL) if options.xloc is not None or options.yloc is not None: if options.xloc is None: @@ -1106,9 +1109,11 @@ You can find the full license texts in agpl-3.0.txt, gpl-2.0.txt, gpl-3.0.txt an options.yloc = 0 self.window.move(options.xloc,options.yloc) + # connect to required events self.window.connect("delete_event", self.delete_event) self.window.connect("destroy", self.destroy) self.window.set_title("Free Poker DB - v%s" % (VERSION, )) + # set a default x/y size for the window self.window.set_border_width(1) defx, defy = 900, 720 sx, sy = gtk.gdk.screen_width(), gtk.gdk.screen_height() @@ -1117,30 +1122,31 @@ You can find the full license texts in agpl-3.0.txt, gpl-2.0.txt, gpl-3.0.txt an self.window.set_default_size(defx, defy) self.window.set_resizable(True) + # main area of window self.main_vbox = gtk.VBox(False, 1) self.main_vbox.set_border_width(1) self.window.add(self.main_vbox) self.main_vbox.show() + # create our Main Menu Bar menubar = self.get_menu(self.window) self.main_vbox.pack_start(menubar, False, True, 0) menubar.show() - #done menubar - - self.threads = [] # objects used by tabs - no need for threads, gtk handles it - self.closeq = Queue.Queue(20) # used to signal ending of a thread (only logviewer for now) + # create a tab bar self.nb = gtk.Notebook() self.nb.set_show_tabs(True) self.nb.show() self.main_vbox.pack_start(self.nb, True, True, 0) - self.tabs=[] # the event_boxes forming the actual tabs - self.tab_names=[] # names of tabs used since program started, not removed if tab is closed - self.pages=[] # the contents of the page, not removed if tab is closed - self.nb_tab_names=[] # list of tab names currently displayed in notebook + self.tabs = [] # the event_boxes forming the actual tabs + self.tab_names = [] # names of tabs used since program started, not removed if tab is closed + self.pages = [] # the contents of the page, not removed if tab is closed + self.nb_tab_names = [] # list of tab names currently displayed in notebook + # create the first tab self.tab_main_help(None, None) + # determine window visibility from command line options if options.minimized: self.window.iconify() if options.hidden: @@ -1148,9 +1154,11 @@ You can find the full license texts in agpl-3.0.txt, gpl-2.0.txt, gpl-3.0.txt an if not options.hidden: self.window.show() - self.visible = True # Flip on + self.visible = True # Flip on + self.load_profile(create_db = True) + # setup error logging if not options.errorsToConsole: fileName = os.path.join(self.config.dir_log, 'fpdb-errors.txt') print (_("\nNote: error output is being diverted to fpdb-errors.txt and HUD-errors.txt in: %s") % self.config.dir_log) \ @@ -1158,6 +1166,7 @@ You can find the full license texts in agpl-3.0.txt, gpl-2.0.txt, gpl-3.0.txt an errorFile = open(fileName, 'w', 0) sys.stderr = errorFile + # set up tray-icon and menu self.statusIcon = gtk.StatusIcon() # use getcwd() here instead of sys.path[0] so that py2exe works: cards = os.path.join(os.getcwd(), '..','gfx','fpdb-cards.png') @@ -1173,13 +1182,10 @@ You can find the full license texts in agpl-3.0.txt, gpl-2.0.txt, gpl-3.0.txt an self.statusIcon.set_tooltip("Free Poker Database") self.statusIcon.connect('activate', self.statusicon_activate) self.statusMenu = gtk.Menu() - menuItem = gtk.ImageMenuItem(gtk.STOCK_ABOUT) - menuItem.connect('activate', self.dia_about) - self.statusMenu.append(menuItem) - - menuItem = gtk.ImageMenuItem(gtk.STOCK_QUIT) - menuItem.connect('activate', self.quit) - self.statusMenu.append(menuItem) + + # set default menu options + self.addImageToTrayMenu(gtk.STOCK_ABOUT, self.dia_about) + self.addImageToTrayMenu(gtk.STOCK_QUIT, self.quit) self.statusIcon.connect('popup-menu', self.statusicon_menu, self.statusMenu) self.statusIcon.set_visible(True) @@ -1189,7 +1195,26 @@ You can find the full license texts in agpl-3.0.txt, gpl-2.0.txt, gpl-3.0.txt an if options.autoimport: self.tab_auto_import(None) - + + def addImageToTrayMenu(self, image, event=None): + menuItem = gtk.ImageMenuItem(image) + if event is not None: + menuItem.connect('activate', event) + self.statusMenu.append(menuItem) + menuItem.show() + return menuItem + + def addLabelToTrayMenu(self, label, event=None): + menuItem = gtk.MenuItem(label) + if event is not None: + menuItem.connect('activate', event) + self.statusMenu.append(menuItem) + menuItem.show() + return menuItem + + def removeFromTrayMenu(self, menuItem): + menuItem.destroy() + menuItem = None def __iconify(self): self.visible = False From 7b1143a6ffdf5e4f45286b4bdbaccd1f9b625001 Mon Sep 17 00:00:00 2001 From: Eric Blade <blade.eric@gmail.com> Date: Sun, 28 Nov 2010 20:04:32 -0500 Subject: [PATCH 036/162] make "source" argument to interlocks.acquire mandatory --- pyfpdb/interlocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/interlocks.py b/pyfpdb/interlocks.py index c2e6abd6..3ec53b4d 100755 --- a/pyfpdb/interlocks.py +++ b/pyfpdb/interlocks.py @@ -45,7 +45,7 @@ class InterProcessLockBase: def acquire_impl(self, wait): abstract - def acquire(self, wait=False, retry_time=1, source=None): + def acquire(self, source, wait=False, retry_time=1): if source == None: source="Unknown" if self._has_lock: # make sure 2nd acquire in same process fails From 99535cddbbffc4f3e81a8b51a586aad363432926 Mon Sep 17 00:00:00 2001 From: Eric Blade <blade.eric@gmail.com> Date: Sun, 28 Nov 2010 20:15:09 -0500 Subject: [PATCH 037/162] cleanups --- pyfpdb/GuiAutoImport.py | 7 ++----- pyfpdb/fpdb.pyw | 10 +++++----- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/pyfpdb/GuiAutoImport.py b/pyfpdb/GuiAutoImport.py index b6d7bcaf..03bec89d 100755 --- a/pyfpdb/GuiAutoImport.py +++ b/pyfpdb/GuiAutoImport.py @@ -204,16 +204,13 @@ class GuiAutoImport (threading.Thread): # That is not correct. It should open another dir for importing while piping the # results to the same pipe. This means that self.path should be a a list of dirs # to watch. - if data == "autostart": + if data == "autostart" or (widget == self.startButton and self.startButton.get_active()): self.startButton.set_active(True) - return - - if widget == self.startButton and self.startButton.get_active(): # - Does the lock acquisition need to be more sophisticated for multiple dirs? # (see comment above about what to do if pipe already open) # - Ideally we want to release the lock if the auto-import is killed by some # kind of exception - is this possible? - if self.settings['global_lock'].acquire(False, source="AutoImport"): # returns false immediately if lock not acquired + if self.settings['global_lock'].acquire(wait=False, source="AutoImport"): # returns false immediately if lock not acquired self.addText(_("\nGlobal lock taken ... Auto Import Started.\n")) self.doAutoImportBool = True self.startButton.set_label(_(u' _Stop Auto Import ')) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 53f74aa4..e7663007 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -75,7 +75,7 @@ try: pygtk.require('2.0') import gtk import pango -except: +except ImportError: print _("Unable to load PyGTK modules required for GUI. Please install PyCairo, PyGObject, and PyGTK from www.pygtk.org.") raw_input(_("Press ENTER to continue.")) exit() @@ -86,18 +86,18 @@ import interlocks try: import matplotlib matplotlib_version = matplotlib.__version__ -except: +except ImportError: matplotlib_version = 'not found' try: import numpy numpy_version = numpy.__version__ -except: +except ImportError: numpy_version = 'not found' try: import sqlite3 sqlite3_version = sqlite3.version sqlite_version = sqlite3.sqlite_version -except: +except ImportError: sqlite3_version = 'not found' sqlite_version = 'not found' @@ -203,7 +203,7 @@ class fpdb: gtk.Button.set_relief(button, gtk.RELIEF_NONE) settings = gtk.Widget.get_settings(button); (w,h) = gtk.icon_size_lookup_for_settings(settings, gtk.ICON_SIZE_SMALL_TOOLBAR); - gtk.Widget.set_size_request (button, w + 4, h + 4); + gtk.Widget.set_size_request(button, w + 4, h + 4); image.show() iconBox.pack_start(image, True, False, 0) button.add(iconBox) From 2d0ea89b9ac3b7308a5390b057581cbc6d1beb4b Mon Sep 17 00:00:00 2001 From: Eric Blade <blade.eric@gmail.com> Date: Sun, 28 Nov 2010 20:24:39 -0500 Subject: [PATCH 038/162] comment --- pyfpdb/fpdb.pyw | 1 + 1 file changed, 1 insertion(+) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index e7663007..47636e99 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -931,6 +931,7 @@ class fpdb: response = diaDbVersionWarning.run() diaDbVersionWarning.destroy() + # TODO: This should probably be setup in GUI Init if self.status_bar is None: self.status_bar = gtk.Label("") self.main_vbox.pack_end(self.status_bar, False, True, 0) From c6802484cb9ebbd697ec61c8226a2da547263dc0 Mon Sep 17 00:00:00 2001 From: Chaz <Chaz@Chaz-THINK> Date: Mon, 29 Nov 2010 15:20:05 -0600 Subject: [PATCH 039/162] Updated init_hud_stat_vars() so that it no longer requires Filters.py for the offset calculations --- pyfpdb/Database.py | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 65e7a87d..99d1322d 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -55,7 +55,6 @@ import Card import Charset from Exceptions import * import Configuration -import Filters # Other library modules @@ -256,6 +255,11 @@ class Database: self.database = db_params['db-databaseName'] self.host = db_params['db-host'] self.db_path = '' + gen = c.get_general_params() + self.day_start = 0 + + if 'day_start' in gen: + self.day_start = float(gen['day_start']) # where possible avoid creating new SQL instance by using the global one passed in if sql is None: @@ -690,16 +694,18 @@ class Database: else: if row and row[0]: self.hand_1day_ago = int(row[0]) + + tz = datetime.utcnow() - datetime.today() + tz_offset = tz.seconds/3600 + tz_day_start_offset = self.day_start + tz_offset - offset = strptime(Filters.Filters(self, self.config, self.sql).getDates()[0],"%Y-%m-%d %H:%M:%S").tm_hour + d = timedelta(days=hud_days, hours=tz_day_start_offset) + now = datetime.utcnow() - d + self.date_ndays_ago = "d%02d%02d%02d%02d" % (now.year - 2000, now.month, now.day, tz_day_start_offset) - d = timedelta(days=hud_days, hours=offset) + d = timedelta(days=h_hud_days, hours=tz_day_start_offset) now = datetime.utcnow() - d - self.date_ndays_ago = "d%02d%02d%02d%02d" % (now.year - 2000, now.month, now.day, offset) - - d = timedelta(days=h_hud_days, hours=offset) - now = datetime.utcnow() - d - self.h_date_ndays_ago = "d%02d%02d%02d%02d" % (now.year - 2000, now.month, now.day, offset) + self.h_date_ndays_ago = "d%02d%02d%02d%02d" % (now.year - 2000, now.month, now.day, tz_day_start_offset) def init_player_hud_stat_vars(self, playerid): # not sure if this is workable, to be continued ... From 3f2e1dc0ee04152e3b3a963dbf6043567fab9648 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Tue, 30 Nov 2010 01:26:41 -0500 Subject: [PATCH 040/162] Fixed intermittent hanging in foreign_new method. --- pyfpdb/HUD_main.pyw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 pyfpdb/HUD_main.pyw diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw old mode 100644 new mode 100755 index cd46f596..f7403d54 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -180,11 +180,11 @@ class HUD_main(object): gtk.gdk.threads_enter() try: + table.gdkhandle = gtk.gdk.window_foreign_new(table.number) newlabel = gtk.Label("%s - %s" % (table.site, table_name)) self.vb.add(newlabel) newlabel.show() self.main_window.resize_children() - table.gdkhandle = gtk.gdk.window_foreign_new(table.number) self.hud_dict[table.key].tablehudlabel = newlabel self.hud_dict[table.key].create(new_hand_id, self.config, stat_dict, cards) From 404cccb1d9c856a251f0905a8b76054d77f594f3 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Tue, 30 Nov 2010 15:13:08 +0800 Subject: [PATCH 041/162] GuiStove: Add Stud and Draw tabs --- pyfpdb/GuiStove.py | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/pyfpdb/GuiStove.py b/pyfpdb/GuiStove.py index 1ee825e2..7ff0820e 100644 --- a/pyfpdb/GuiStove.py +++ b/pyfpdb/GuiStove.py @@ -45,8 +45,8 @@ class GuiStove(): self.notebook.set_show_border(True) self.createFlopTab() - #self.createStudTab() - #self.createDrawTab() + self.createStudTab() + self.createDrawTab() self.mainHBox.add(self.notebook) @@ -92,6 +92,19 @@ Thankyou combobox.set_active(0) return combobox + def createDrawTab(self): + tab_title = "Draw" + label = gtk.Label(tab_title) + + ddbox = gtk.VBox(False, 0) + self.notebook.append_page(ddbox, label) + + def createStudTab(self): + tab_title = "Stud" + label = gtk.Label(tab_title) + + ddbox = gtk.VBox(False, 0) + self.notebook.append_page(ddbox, label) def createFlopTab(self): # hierarchy: hbox / ddbox / ddhbox / Label + flop_games_cb | label + players_cb From e1b1d06ec76b84d92fbe33f4350a028004ba1f3d Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Tue, 30 Nov 2010 15:16:01 +0800 Subject: [PATCH 042/162] Stove: Rename Holder to Stove Remove some debug code, and structure cli interface in the same way as other fpdb modules --- pyfpdb/Stove.py | 45 ++++++++++++++++++--------------------------- 1 file changed, 18 insertions(+), 27 deletions(-) diff --git a/pyfpdb/Stove.py b/pyfpdb/Stove.py index eb939c0f..6ec474ee 100755 --- a/pyfpdb/Stove.py +++ b/pyfpdb/Stove.py @@ -22,14 +22,19 @@ OFFSUIT = 2 ev = pokereval.PokerEval() -holder = None -class Holder: +class Stove: def __init__(self): self.hand = None self.board = None self.range = None + def set_board_with_list(self, board): + pass + + def set_board_with_string(self, board): + pass + class Cards: def __init__(self, c1, c2): @@ -218,9 +223,9 @@ def parse_args(args, container): else: range.expand(expand_hands(_h, pocket_cards, board)) - holder.hand = pocket_cards - holder.range = range - holder.board = board + container.hand = pocket_cards + container.range = range + container.board = board return True @@ -283,27 +288,13 @@ def odds_for_range(holder): sev.add(e) sev.show(holder.hand, holder.range.get()) - - - -holder = Holder() -if not parse_args(sys.argv, holder): - usage(sys.argv[0]) - sys.exit(2) -odds_for_range(holder) - -# debugs -#print '%s, %s' % ( holder.hand.c1, holder.hand.c2) -#print '%s %s %s %s %s' % (holder.board.b1, holder.board.b2, -# holder.board.b3, holder.board.b4, holder.board.b5) -#while True: -# try: -# vl = holder.range.get() -# v = vl.pop() -# print '\t%s %s' % (v.c1, v.c2) -# except IndexError: -# break - - +def main(argv=None): + stove = Stove() + if not parse_args(sys.argv, stove): + usage(sys.argv[0]) + sys.exit(2) + odds_for_range(stove) +if __name__ == '__main__': + sys.exit(main()) From 775b19e7d559a2310ccb63bcbdb0efc0233a68e0 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Tue, 30 Nov 2010 15:33:13 +0800 Subject: [PATCH 043/162] Stove: shift content of parse_args into Stove object Quick test - still functions correctly on the command line --- pyfpdb/Stove.py | 82 +++++++++++++++++++++++++++---------------------- 1 file changed, 45 insertions(+), 37 deletions(-) diff --git a/pyfpdb/Stove.py b/pyfpdb/Stove.py index 6ec474ee..235568aa 100755 --- a/pyfpdb/Stove.py +++ b/pyfpdb/Stove.py @@ -32,8 +32,48 @@ class Stove: def set_board_with_list(self, board): pass - def set_board_with_string(self, board): - pass + def set_board_string(self, string): + board = Board() + + # Board + b = string.strip().split() + if len(b) > 4: + board.b5 = b[4] + if len(b) > 3: + board.b4 = b[3] + if len(b) > 2: + board.b1 = b[0] + board.b2 = b[1] + board.b3 = b[2] + + self.board = board + return board + + def set_hero_cards_string(self, string): + # Our pocket cards + cc = string.strip().split() + c1 = cc[0] + c2 = cc[1] + pocket_cards = Cards(c1, c2) + self.hand = pocket_cards + return pocket_cards + + def set_villain_range_string(self, string): + # Villain's range + range = Range() + hands_in_range = string.strip().split(',') + for h in hands_in_range: + _h = h.strip() + if len(_h) > 3: + cc = _h.split() + r1 = cc[0] + r2 = cc[1] + vp = Cards(r1, r2) + range.add(vp) + else: + range.expand(expand_hands(_h, pocket_cards, board)) + + self.range = range class Cards: @@ -190,42 +230,10 @@ def parse_args(args, container): if len(args) < 4: return False - board = Board() + container.set_board_string(args[1]) + container.set_hero_cards_string(args[2]) + container.set_villain_range_string(args[3]) - # Board - b = args[1].strip().split() - if len(b) > 4: - board.b5 = b[4] - if len(b) > 3: - board.b4 = b[3] - if len(b) > 2: - board.b1 = b[0] - board.b2 = b[1] - board.b3 = b[2] - - # Our pocket cards - cc = args[2].strip().split() - c1 = cc[0] - c2 = cc[1] - pocket_cards = Cards(c1, c2) - - # Villain's range - range = Range() - hands_in_range = args[3].strip().split(',') - for h in hands_in_range: - _h = h.strip() - if len(_h) > 3: - cc = _h.split() - r1 = cc[0] - r2 = cc[1] - vp = Cards(r1, r2) - range.add(vp) - else: - range.expand(expand_hands(_h, pocket_cards, board)) - - container.hand = pocket_cards - container.range = range - container.board = board return True From 07fc254cdbdec8b48b2c0ba2fd55977d9d0eb910 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Tue, 30 Nov 2010 15:36:35 +0800 Subject: [PATCH 044/162] Stove: Remove unnecessary returns --- pyfpdb/Stove.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pyfpdb/Stove.py b/pyfpdb/Stove.py index 235568aa..2e2a6ef1 100755 --- a/pyfpdb/Stove.py +++ b/pyfpdb/Stove.py @@ -47,7 +47,6 @@ class Stove: board.b3 = b[2] self.board = board - return board def set_hero_cards_string(self, string): # Our pocket cards @@ -56,7 +55,6 @@ class Stove: c2 = cc[1] pocket_cards = Cards(c1, c2) self.hand = pocket_cards - return pocket_cards def set_villain_range_string(self, string): # Villain's range @@ -222,9 +220,6 @@ def expand_hands(abbrev, hand, board): return range - - - def parse_args(args, container): # args[0] is the path being executed; need 3 more args if len(args) < 4: From d8f36ba777fcb4d249f0153c5d725e0532f8bf91 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Tue, 30 Nov 2010 11:14:37 -0500 Subject: [PATCH 045/162] Add cheat sheet info. --- pyfpdb/Anonymise.py | 2 ++ 1 file changed, 2 insertions(+) mode change 100644 => 100755 pyfpdb/Anonymise.py diff --git a/pyfpdb/Anonymise.py b/pyfpdb/Anonymise.py old mode 100644 new mode 100755 index 166651e8..04f4185d --- a/pyfpdb/Anonymise.py +++ b/pyfpdb/Anonymise.py @@ -26,6 +26,8 @@ import HandHistoryConverter import Configuration import sys +# command line is: +# ./Anonymise.py -f <valid path to HH file> -k <name of input filter> (options, argv) = Options.fpdb_options() config = Configuration.Config() From e0f76a508c8e1c51e49f2f2e6888ce10129084e4 Mon Sep 17 00:00:00 2001 From: Chaz <Chaz@Chaz-THINK> Date: Tue, 30 Nov 2010 14:05:28 -0500 Subject: [PATCH 046/162] reverted HudCache styleKey to include only YYMMDD - however, it now stores the d000000 date based off the tz & offset --- pyfpdb/Database.py | 37 ++++++++++++++++++++++--------------- pyfpdb/SQL.py | 22 +++++++++++----------- 2 files changed, 33 insertions(+), 26 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 99d1322d..64d42a06 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -73,7 +73,7 @@ except ImportError: use_numpy = False -DB_VERSION = 145 +DB_VERSION = 144 # Variance created as sqlite has a bunch of undefined aggregate functions. @@ -296,8 +296,8 @@ class Database: # vars for hand ids or dates fetched according to above config: self.hand_1day_ago = 0 # max hand id more than 24 hrs earlier than now - self.date_ndays_ago = 'd00000000' # date N days ago ('d' + YYMMDD) - self.h_date_ndays_ago = 'd00000000' # date N days ago ('d' + YYMMDD) for hero + self.date_ndays_ago = 'd000000' # date N days ago ('d' + YYMMDD) + self.h_date_ndays_ago = 'd000000' # date N days ago ('d' + YYMMDD) for hero self.date_nhands_ago = {} # dates N hands ago per player - not used yet self.saveActions = False if self.import_options['saveActions'] == False else True @@ -701,18 +701,18 @@ class Database: d = timedelta(days=hud_days, hours=tz_day_start_offset) now = datetime.utcnow() - d - self.date_ndays_ago = "d%02d%02d%02d%02d" % (now.year - 2000, now.month, now.day, tz_day_start_offset) + self.date_ndays_ago = "d%02d%02d%02d" % (now.year - 2000, now.month, now.day) d = timedelta(days=h_hud_days, hours=tz_day_start_offset) now = datetime.utcnow() - d - self.h_date_ndays_ago = "d%02d%02d%02d%02d" % (now.year - 2000, now.month, now.day, tz_day_start_offset) + self.h_date_ndays_ago = "d%02d%02d%02d" % (now.year - 2000, now.month, now.day) def init_player_hud_stat_vars(self, playerid): # not sure if this is workable, to be continued ... try: # self.date_nhands_ago is used for fetching stats for last n hands (hud_style = 'H') # This option not used yet - needs to be called for each player :-( - self.date_nhands_ago[str(playerid)] = 'd00000000' + self.date_nhands_ago[str(playerid)] = 'd000000' # should use aggregated version of query if appropriate c.execute(self.sql.query['get_date_nhands_ago'], (self.hud_hands, playerid)) @@ -780,11 +780,11 @@ class Database: if hud_style == 'T': stylekey = self.date_ndays_ago elif hud_style == 'A': - stylekey = '000000000' # all stylekey values should be higher than this + stylekey = '0000000' # all stylekey values should be higher than this elif hud_style == 'S': - stylekey = 'zzzzzzzzz' # all stylekey values should be lower than this + stylekey = 'zzzzzzz' # all stylekey values should be lower than this else: - stylekey = '000000000' + stylekey = '0000000' log.info('hud_style: %s' % hud_style) #elif hud_style == 'H': @@ -793,9 +793,9 @@ class Database: if h_hud_style == 'T': h_stylekey = self.h_date_ndays_ago elif h_hud_style == 'A': - h_stylekey = '000000000' # all stylekey values should be higher than this + h_stylekey = '0000000' # all stylekey values should be higher than this elif h_hud_style == 'S': - h_stylekey = 'zzzzzzzzz' # all stylekey values should be lower than this + h_stylekey = 'zzzzzzz' # all stylekey values should be lower than this else: h_stylekey = '00000000' log.info('h_hud_style: %s' % h_hud_style) @@ -1832,12 +1832,19 @@ class Database: def storeHudCache(self, gid, pids, starttime, pdata): """Update cached statistics. If update fails because no record exists, do an insert.""" + tz = datetime.utcnow() - datetime.today() + tz_offset = tz.seconds/3600 + tz_day_start_offset = self.day_start + tz_offset + + d = timedelta(days=hud_days, hours=tz_day_start_offset) + starttime_offset = starttime - d + if self.use_date_in_hudcache: - styleKey = datetime.strftime(starttime, 'd%y%m%d%H') - #styleKey = "d%02d%02d%02d%02d" % (hand_start_time.year-2000, hand_start_time.month, hand_start_time.day, hand_start_time.hour) + styleKey = datetime.strftime(starttime_offset, 'd%y%m%d') + #styleKey = "d%02d%02d%02d" % (hand_start_time.year-2000, hand_start_time.month, hand_start_time.day) else: - # hard-code styleKey as 'A00000000' (all-time cache, no key) for now - styleKey = 'A00000000' + # hard-code styleKey as 'A000000' (all-time cache, no key) for now + styleKey = 'A000000' update_hudcache = self.sql.query['update_hudcache'] update_hudcache = update_hudcache.replace('%s', self.sql.query['placeholder']) diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index 6a505eae..d45ccd38 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -1064,7 +1064,7 @@ class Sql: activeSeats SMALLINT NOT NULL, position CHAR(1), tourneyTypeId SMALLINT UNSIGNED, FOREIGN KEY (tourneyTypeId) REFERENCES TourneyTypes(id), - styleKey CHAR(9) NOT NULL, /* 1st char is style (A/T/H/S), other 8 are the key */ + styleKey CHAR(7) NOT NULL, /* 1st char is style (A/T/H/S), other 6 are the key */ HDs INT NOT NULL, wonWhenSeenStreet1 FLOAT, @@ -1165,7 +1165,7 @@ class Sql: activeSeats SMALLINT, position CHAR(1), tourneyTypeId INT, FOREIGN KEY (tourneyTypeId) REFERENCES TourneyTypes(id), - styleKey CHAR(9) NOT NULL, /* 1st char is style (A/T/H/S), other 8 are the key */ + styleKey CHAR(7) NOT NULL, /* 1st char is style (A/T/H/S), other 6 are the key */ HDs INT, wonWhenSeenStreet1 FLOAT, @@ -2047,7 +2047,7 @@ class Sql: # gets a date, would need to use handsplayers (not hudcache) to get exact hand Id if db_server == 'mysql': self.query['get_date_nhands_ago'] = """ - select concat( 'd', date_format(max(h.startTime), '%Y%m%d%H') ) + select concat( 'd', date_format(max(h.startTime), '%Y%m%d') ) from (select hp.playerId ,coalesce(greatest(max(hp.handId)-%s,1),1) as maxminusx from HandsPlayers hp @@ -2059,7 +2059,7 @@ class Sql: """ elif db_server == 'postgresql': self.query['get_date_nhands_ago'] = """ - select 'd' || to_char(max(h3.startTime), 'YYMMDDHH') + select 'd' || to_char(max(h3.startTime), 'YYMMDD') from (select hp.playerId ,coalesce(greatest(max(hp.handId)-%s,1),1) as maxminusx from HandsPlayers hp @@ -2071,7 +2071,7 @@ class Sql: """ elif db_server == 'sqlite': # untested guess at query: self.query['get_date_nhands_ago'] = """ - select 'd' || strftime(max(h3.startTime), 'YYMMDDHH') + select 'd' || strftime(max(h3.startTime), 'YYMMDD') from (select hp.playerId ,coalesce(greatest(max(hp.handId)-%s,1),1) as maxminusx from HandsPlayers hp @@ -3290,7 +3290,7 @@ class Sql: else 'E' end AS hc_position <tourney_select_clause> - ,date_format(h.startTime, 'd%y%m%d%H') + ,date_format(h.startTime, 'd%y%m%d') ,count(1) ,sum(wonWhenSeenStreet1) ,sum(wonWhenSeenStreet2) @@ -3379,7 +3379,7 @@ class Sql: ,h.seats ,hc_position <tourney_group_clause> - ,date_format(h.startTime, 'd%y%m%d%H') + ,date_format(h.startTime, 'd%y%m%d') """ elif db_server == 'postgresql': self.query['rebuildHudCache'] = """ @@ -3488,7 +3488,7 @@ class Sql: else 'E' end AS hc_position <tourney_select_clause> - ,'d' || to_char(h.startTime, 'YYMMDDHH') + ,'d' || to_char(h.startTime, 'YYMMDD') ,count(1) ,sum(wonWhenSeenStreet1) ,sum(wonWhenSeenStreet2) @@ -3577,7 +3577,7 @@ class Sql: ,h.seats ,hc_position <tourney_group_clause> - ,to_char(h.startTime, 'YYMMDDHH') + ,to_char(h.startTime, 'YYMMDD') """ else: # assume sqlite self.query['rebuildHudCache'] = """ @@ -3686,7 +3686,7 @@ class Sql: else 'E' end AS hc_position <tourney_select_clause> - ,'d' || substr(strftime('%Y%m%d%H', h.startTime),3,9) + ,'d' || substr(strftime('%Y%m%d', h.startTime),3,7) ,count(1) ,sum(wonWhenSeenStreet1) ,sum(wonWhenSeenStreet2) @@ -3775,7 +3775,7 @@ class Sql: ,h.seats ,hc_position <tourney_group_clause> - ,'d' || substr(strftime('%Y%m%d%H', h.startTime),3,9) + ,'d' || substr(strftime('%Y%m%d', h.startTime),3,7) """ self.query['insert_hudcache'] = """ From fa32ed8c46bd8c6bae3053941e8cd6d410d6c042 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Tue, 30 Nov 2010 18:33:44 -0500 Subject: [PATCH 047/162] Fix problem with multiple tables from same tournament. --- pyfpdb/HUD_main.pyw | 3 ++- pyfpdb/TableWindow.py | 18 ++++++++++-------- 2 files changed, 12 insertions(+), 9 deletions(-) mode change 100755 => 100644 pyfpdb/HUD_main.pyw diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw old mode 100755 new mode 100644 index f7403d54..922a4885 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -297,7 +297,8 @@ class HUD_main(object): t1 = time.time() if type == "tour": # hand is from a tournament - temp_key = tour_number +# temp_key = tour_number + temp_key = "%s Table %s" % (tour_number, tab_number) else: temp_key = table_name diff --git a/pyfpdb/TableWindow.py b/pyfpdb/TableWindow.py index 43910317..c9e04800 100644 --- a/pyfpdb/TableWindow.py +++ b/pyfpdb/TableWindow.py @@ -104,12 +104,14 @@ gobject.signal_new("table_changed", gtk.Window, # title bar and window borders. To put it another way, this is the # screen location of (0, 0) in the working window. # tournament = Tournament number for a tournament or None for a cash game. -# table = Table number for a tournament. -# gdkhandle = -# window = -# parent = -# game = -# search_string = +# tw.table = tournament: Table number for the tournament. +# cash: full Table name as given by the poker site +# tw.gdkhandle = gdk handle for the poker client window - used to nail the hud to the window +# tw.window = is this still used? +# tw.parent = window object of the parent of the client window, only used in Linux +# tw.game = the poker game being played at the table, only used in mixed games +# tw.search_string = regular expression used to find the table, supplied by XToFpdb.py +# tw.key = a string formulated to be a unique id for this table window, used in the hud main window class Table_Window(object): def __init__(self, config, site, table_name = None, tournament = None, table_number = None): @@ -124,13 +126,13 @@ class Table_Window(object): self.type = "tour" table_kwargs = dict(tournament = self.tournament, table_number = self.table) self.tableno_re = getTableNoRe(self.config, self.site, tournament = self.tournament) - self.key = tournament # used as key for the hud_dict in HUD_main + self.key = "%s Table %s" % (tournament, str(self.table)) elif table_name is not None: self.name = table_name self.type = "cash" self.tournament = None table_kwargs = dict(table_name = table_name) - self.key = table_name + self.key = table_name # used as key for the hud_dict in HUD_main else: return None From 62ea67aac5587e18ae751d4894261c045dd9a94c Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Tue, 30 Nov 2010 23:26:35 -0500 Subject: [PATCH 048/162] Fix permissions on HUD_main.pyw, again. --- pyfpdb/HUD_main.pyw | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 pyfpdb/HUD_main.pyw diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw old mode 100644 new mode 100755 From 1cdb48cb59c7f9427100be9390b94148f122d4c5 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Wed, 1 Dec 2010 13:02:17 +0800 Subject: [PATCH 049/162] pypokertest.py: Add test.py from pokersource distribution test.py isn't published on Ubuntu, add it to our project for now. --- utils/pypokertest.py | 178 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 178 insertions(+) create mode 100644 utils/pypokertest.py diff --git a/utils/pypokertest.py b/utils/pypokertest.py new file mode 100644 index 00000000..ad8fec4f --- /dev/null +++ b/utils/pypokertest.py @@ -0,0 +1,178 @@ +# +# Copyright (C) 2007, 2008 Loic Dachary <loic@dachary.org> +# Copyright (C) 2004, 2005, 2006 Mekensleep +# +# Mekensleep +# 24 rue vieille du temple +# 75004 Paris +# licensing@mekensleep.com +# +# 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 3 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. +# +# Authors: +# Loic Dachary <loic@dachary.org> +# +# +import sys +sys.path.insert(0, ".") +sys.path.insert(0, ".libs") + +from pokereval import PokerEval + +iterations_low = 100000 +iterations_high = 200000 + +pokereval = PokerEval() + +if pokereval.best_hand_value("hi", ["Ah", "Ad", "As", "Kh", "Ks" ]) != 101494784: + sys.exit(1) + +if pokereval.string2card("2h") != 0: + sys.exit(1) + +print "" +pockets = [ ["As", "Ad", "Ac", "Tc", "Ts", "2d", "5c" ], + ["Js", "Jc", "7s", "8c", "8d", "3c", "3h" ], + [255, 255 ] ] +print "stud7 (1) result = %s\n" % pokereval.winners(game = "7stud", pockets = pockets, dead = [], board = []) + +pockets = [[22, 18, 21, 3, 41, 1, 30], [39, 255, 255, 15, 13, 17, 255]] +print "stud7 (2) result = %s\n" % pokereval.winners(game = "7stud", pockets = pockets, dead = [], board = []) + +print [ j + i + "/%d" % pokereval.string2card(j + i) for i in "hdcs" for j in "23456789TJQKA" ] +print "deck = %s\n" % pokereval.deck() + +print "result = %s\n" % pokereval.poker_eval(game = "holdem", pockets = [ ["tc", "ac"], ["3h", "ah"], ["8c", "6h"]], dead = [], board = ["7h", "3s", "2c"]) +print "winners = %s\n" % pokereval.winners(game = "holdem", pockets = [ ["tc", "ac"], ["3h", "ah"], ["8c", "6h"]], dead = [], board = ["7h", "3s", "2c"]) + +print "result = %s\n" % pokereval.poker_eval(game = "holdem", pockets = [ ["tc", "ac"], ["th", "ah"], ["8c", "6h"]], dead = [], board = ["7h", "3s", "2c", "7s", "7d"]) +print "winners = %s\n" % pokereval.winners(game = "holdem", pockets = [ ["tc", "ac"], ["th", "ah"], ["8c", "6h"]], dead = [], board = ["7h", "3s", "2c", "7s", "7d"]) + +print "winners (filthy pockets) = %s\n" % pokereval.winners(game = "holdem", pockets = [ ["tc", "ac", 255], [], [255, 255], ["th", "ah"], ["8c", "6h"]], dead = [], board = ["7h", "3s", "2c", "7s", "7d"]) + +print "winners omaha = %s\n" % pokereval.winners(game = "omaha", pockets = [ ["tc", "ac", "ks", "kc" ], ["th", "ah", "qs", "qc" ], ["8c", "6h", "js", "jc" ]], dead = [], board = ["7h", "3s", "2c", "7s", "7d"]) +print "winners omaha8 = %s\n" % pokereval.winners(game = "omaha8", pockets = [ ["tc", "ac", "ks", "kc" ], ["th", "ah", "qs", "qc" ], ["8c", "6h", "js", "jc" ]], dead = [], board = ["7h", "3s", "2c", "7s", "7d"]) + +hand = ["Ac", "As", "Td", "7s", "7h", "3s", "2c"] +best_hand = pokereval.best_hand("hi", hand) +print "best hand from %s = %s" % ( hand, pokereval.best_hand("hi", hand) ) +print "best hand from %s = (%s) %s " % (hand, best_hand[0], [ pokereval.card2string(i) for i in best_hand[1:] ]) + +print "" +hand = ["Ah", "Ts", "Kh", "Qs", "Js" ] +best_hand = pokereval.best_hand("hi", hand) +print "best hand from %s = %s" % ( hand, pokereval.best_hand("hi", hand) ) +print "best hand from %s = (%s) %s " % (hand, best_hand[0], [ pokereval.card2string(i) for i in best_hand[1:] ]) + +print "" +hand = ["2h", "Kh", "Qh", "Jh", "Th" ] +best_hand = pokereval.best_hand("hi", hand) +print "best hand from %s = %s" % ( hand, pokereval.best_hand("hi", hand) ) +print "best hand from %s = (%s) %s " % (hand, best_hand[0], [ pokereval.card2string(i) for i in best_hand[1:] ]) + +print "" +hand = ['2s', '3s', 'Jd', 'Ks', 'As', '4d', '5h', '7d', '9c'] +best_hand = pokereval.best_hand("hi", hand) +print "best hand from %s = %s" % ( hand, pokereval.best_hand("hi", hand) ) +print "best hand from %s = (%s) %s " % (hand, best_hand[0], [ pokereval.card2string(i) for i in best_hand[1:] ]) + +print "" +hand = ['As', '2s', '4d', '4s', '5c', '5d', '7s'] +best_hand = pokereval.best_hand("low", hand) +print "1/ low hand from %s = %s" % ( hand, pokereval.best("low", hand) ) +print "best low hand from %s = (%s) %s " % (hand, best_hand[0], [ pokereval.card2string(i) for i in best_hand[1:] ]) + +print "" +hand = ['As', '2s', '4d', '4s', '5c', '5d', '8s'] +best_hand = pokereval.best_hand("low", hand) +print "2/ low hand from %s = %s" % ( hand, pokereval.best("low", hand) ) +print "best low hand from %s = (%s) %s " % (hand, best_hand[0], [ pokereval.card2string(i) for i in best_hand[1:] ]) + +print "" +hand = ['7d', '6c', '5h', '4d', 'As'] +best_hand = pokereval.best_hand("low", hand) +print "3/ low hand from %s = %s" % ( hand, pokereval.best("low", hand) ) +print "best low hand from %s = (%s) %s " % (hand, best_hand[0], [ pokereval.card2string(i) for i in best_hand[1:] ]) + +print "" +board = [ 'As', '4d', '5h', '7d', '9c' ] +hand = [ '2s', 'Ts', 'Jd', 'Ks' ] +best_hand = pokereval.best_hand("low", hand, board) +print "4/ low hand from %s / %s = %s" % ( hand, board, pokereval.best("low", hand, board) ) +print "best low hand from %s / %s = (%s) %s " % (hand, board, best_hand[0], [ pokereval.card2string(i) for i in best_hand[1:] ]) + +print "" +board = [ 'As', '4d', '6h', '7d', '3c' ] +hand = [ '2s', '5s', 'Jd', 'Ks' ] +best_hand = pokereval.best_hand("low", hand, board) +print "low hand from %s / %s = %s" % ( hand, board, pokereval.best("low", hand, board) ) +print "best low hand from %s / %s = (%s) %s " % (hand, board, best_hand[0], [ pokereval.card2string(i) for i in best_hand[1:] ]) + +print "" +board = [ 'Jc', '4c', '3c', '5c', '9c' ] +hand = [ '2c', 'Ac', '5h', '9d' ] +best_hand = pokereval.best_hand("hi", hand, board) +print "hi hand from %s / %s = %s" % ( hand, board, pokereval.best("hi", hand, board) ) +print "best hi hand from %s / %s = (%s) %s " % (hand, board, best_hand[0], pokereval.card2string(best_hand[1:])) + +print "" +board = [ 'Jd', '9c', 'Jc', 'Tc', '2h' ] +hand = [ '2c', '4c', 'Th', '6s' ] +best_hand = pokereval.best_hand("low", hand, board) +print "5/ low hand from %s / %s = %s" % ( hand, board, pokereval.best("low", hand, board) ) +print "best low hand from %s / %s = (%s) %s " % (hand, board, best_hand[0], [ pokereval.card2string(i) for i in best_hand[1:] ]) + +print "" +board = [ 'Ks', 'Jd', '7s', '4d', 'Js' ] +hand = [ '2d', '6c', 'Ac', '5c' ] +best_hand = pokereval.best_hand("low", hand, board) +print "6/ low hand from %s / %s = %s" % ( hand, board, pokereval.best("low", hand, board) ) +print "best low hand from %s / %s = (%s) %s " % (hand, board, best_hand[0], [ pokereval.card2string(i) for i in best_hand[1:] ]) + +if len(sys.argv) > 2: + + print "f0 result = %s\n" % pokereval.poker_eval(game = "holdem", fill_pockets = 1, pockets = [ ["As", "3s"], ["__", "__"], ["__", "__"]], dead = [], board = ["__", "Qs", "2c", "Ac", "Kc"]) + + print "" + print "f1 result = %s\n" % pokereval.poker_eval(game = "holdem", fill_pockets = 1, pockets = [ ["As", "3s"], ["__", "__"], ["__", "__"]], dead = [], board = ["7s", "Qs", "2c", "Ac", "Kc"]) + + + print "" + print "f2 result = %s\n" % pokereval.poker_eval(game = "holdem", fill_pockets = 1, iterations = iterations_low, pockets = [ ["As", "3s"], ["__", "__"], ["__", "__"]], dead = [], board = ["__", "__", "__", "__", "__"]) + + print "" + print "f3 result = %s\n" % pokereval.poker_eval(game = "holdem", fill_pockets = 1, iterations = iterations_high, pockets = [ ["As", "Ac"], ["__", "__"], ["__", "__"]], dead = [], board = ["__", "__", "__", "__", "__"]) + + print "" + print "f4 result = %s\n" % pokereval.poker_eval(game = "holdem", fill_pockets = 1, iterations = iterations_high, pockets = [ ["As", "Ks"], ["__", "__"], ["__", "__"]], dead = [], board = ["__", "__", "__", "__", "__"]) + + print "" + print "f5 result = %s\n" % pokereval.poker_eval(game = "holdem", fill_pockets = 1, iterations = iterations_high, pockets = [ ["2s", "2c"], ["__", "__"], ["__", "__"]], dead = [], board = ["__", "__", "__", "__", "__"]) + + print "" + print "f6 result = %s\n" % pokereval.poker_eval(game = "holdem", fill_pockets = 1, iterations = iterations_high, pockets = [ ["Js", "Jc"], ["__", "__"], ["__", "__"]], dead = [], board = ["__", "__", "__", "__", "__"]) + + print "" + print "f7 result = %s\n" % pokereval.poker_eval(game = "omaha", fill_pockets = 1, iterations = iterations_high, pockets = [ ["Js", "Jc", "7s", "8c"], ["__", "__", "__", "__"], ["__", "__", "__", "__"]], dead = [], board = ["__", "__", "__", "__", "__"]) + +print "" +hand = ['As', 'Ad'] +print "handval %s = %d " % (hand, pokereval.evaln(hand)) + +print "" +hand = ['Qc', '7d'] +print "handval %s = %d " % (hand, pokereval.evaln(hand)) + +pokereval = None From a80f18e2b17123d9af2b12e258f136220d59d0a8 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Wed, 1 Dec 2010 01:54:42 -0500 Subject: [PATCH 050/162] Resize HUD when client is resized. Clean up idle functions. --- pyfpdb/HUD_main.pyw | 141 +++++++++++++++++++++++------------------- pyfpdb/Hud.py | 10 +++ pyfpdb/TableWindow.py | 2 + 3 files changed, 89 insertions(+), 64 deletions(-) diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw index 922a4885..e2752625 100644 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -132,7 +132,7 @@ class HUD_main(object): hud.up_update_table_position() def client_resized(self, widget, hud): - pass + gobject.idle_add(idle_resize, hud) def client_destroyed(self, widget, hud): # call back for terminating the main eventloop self.kill_hud(None, hud.table.key) @@ -148,26 +148,8 @@ class HUD_main(object): gtk.main_quit() def kill_hud(self, event, table): -# called by an event in the HUD, to kill this specific HUD - -# This method can be called by either gui or non-gui thread. It doesn't -# cost much to always do it in a thread-safe manner. - def idle(): - gtk.gdk.threads_enter() - try: - if table in self.hud_dict: - self.hud_dict[table].kill() - self.hud_dict[table].main_window.destroy() - self.vb.remove(self.hud_dict[table].tablehudlabel) - del(self.hud_dict[table]) - self.main_window.resize(1, 1) - except: - pass - finally: - gtk.gdk.threads_leave() - - gobject.idle_add(idle) - + gobject.idle_add(idle_kill, self, table) + def check_tables(self): for hud in self.hud_dict.keys(): self.hud_dict[hud].table.check_table(self.hud_dict[hud]) @@ -176,31 +158,6 @@ class HUD_main(object): def create_HUD(self, new_hand_id, table, table_name, max, poker_game, type, stat_dict, cards): """type is "ring" or "tour" used to set hud_params""" - def idle_func(): - - gtk.gdk.threads_enter() - try: - table.gdkhandle = gtk.gdk.window_foreign_new(table.number) - newlabel = gtk.Label("%s - %s" % (table.site, table_name)) - self.vb.add(newlabel) - newlabel.show() - self.main_window.resize_children() - - self.hud_dict[table.key].tablehudlabel = newlabel - self.hud_dict[table.key].create(new_hand_id, self.config, stat_dict, cards) - for m in self.hud_dict[table.key].aux_windows: - m.create() - m.update_gui(new_hand_id) - self.hud_dict[table.key].update(new_hand_id, self.config) - self.hud_dict[table.key].reposition_windows() - except: - log.error("*** Exception in HUD_main::idle_func() *** " + str(sys.exc_info())) - for e in traceback.format_tb(sys.exc_info()[2]): - log.error(e) - finally: - gtk.gdk.threads_leave() - return False - self.hud_dict[table.key] = Hud.Hud(self, table, max, poker_game, self.config, self.db_connection) self.hud_dict[table.key].table_name = table_name self.hud_dict[table.key].stat_dict = stat_dict @@ -226,27 +183,11 @@ class HUD_main(object): self.hud_params['h_aggregate_tour'] = True [aw.update_data(new_hand_id, self.db_connection) for aw in self.hud_dict[table.key].aux_windows] - gobject.idle_add(idle_func) + gobject.idle_add(idle_create, self, new_hand_id, table, table_name, max, poker_game, type, stat_dict, cards) def update_HUD(self, new_hand_id, table_name, config): """Update a HUD gui from inside the non-gui read_stdin thread.""" -# This is written so that only 1 thread can touch the gui--mainly -# for compatibility with Windows. This method dispatches the -# 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) - # 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 - [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) + gobject.idle_add(idle_update, self, new_hand_id, table_name, config) def read_stdin(self): # This is the thread function """Do all the non-gui heavy lifting for the HUD program.""" @@ -365,6 +306,78 @@ class HUD_main(object): if type == "tour": self.hud_dict[temp_key].table.check_table_no(self.hud_dict[temp_key]) +###################################################################### +# idle FUNCTIONS +# +# These are passed to the event loop by the non-gui thread to do +# gui things in a thread-safe way. They are passed to the event +# loop using the gobject.idle_add() function. +# +# A general rule for gtk is that only 1 thread should be messing +# with the gui. + +def idle_resize(hud): + gtk.gdk.threads_enter() + try: + [aw.update_card_positions() for aw in hud.aux_windows] + hud.resize_windows() + except: + pass + finally: + gtk.gdk.threads_leave() + +def idle_kill(hud_main, table): + gtk.gdk.threads_enter() + try: + if table in hud_main.hud_dict: + hud_main.hud_dict[table].kill() + hud_main.hud_dict[table].main_window.destroy() + hud_main.vb.remove(hud_main.hud_dict[table].tablehudlabel) + del(hud_main.hud_dict[table]) + hud_main.main_window.resize(1, 1) + except: + pass + finally: + gtk.gdk.threads_leave() + +def idle_create(hud_main, new_hand_id, table, table_name, max, poker_game, type, stat_dict, cards): + + gtk.gdk.threads_enter() + try: + table.gdkhandle = gtk.gdk.window_foreign_new(table.number) + newlabel = gtk.Label("%s - %s" % (table.site, table_name)) + hud_main.vb.add(newlabel) + newlabel.show() + hud_main.main_window.resize_children() + + hud_main.hud_dict[table.key].tablehudlabel = newlabel + hud_main.hud_dict[table.key].create(new_hand_id, hud_main.config, stat_dict, cards) + for m in hud_main.hud_dict[table.key].aux_windows: + m.create() + m.update_gui(new_hand_id) + hud_main.hud_dict[table.key].update(new_hand_id, hud_main.config) + hud_main.hud_dict[table.key].reposition_windows() + except: + log.error("*** Exception in HUD_main::idle_func() *** " + str(sys.exc_info())) + for e in traceback.format_tb(sys.exc_info()[2]): + log.error(e) + finally: + gtk.gdk.threads_leave() + return False + +def idle_update(hud_main, new_hand_id, table_name, config): + gtk.gdk.threads_enter() + try: + hud_main.hud_dict[table_name].update(new_hand_id, config) + # 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 + [aw.update_gui(new_hand_id) for aw in hud_main.hud_dict[table_name].aux_windows] + except KeyError: + pass + finally: + gtk.gdk.threads_leave() + return False + if __name__== "__main__": # start the HUD_main object diff --git a/pyfpdb/Hud.py b/pyfpdb/Hud.py index ac22d893..49d1cffd 100644 --- a/pyfpdb/Hud.py +++ b/pyfpdb/Hud.py @@ -536,6 +536,16 @@ class Hud: aux.destroy() self.aux_windows = [] + def resize_windows(self, *args): + for w in self.stat_windows.itervalues(): + if type(w) == int: + continue + rel_x = (w.x - self.table.x) * self.table.width / self.table.oldwidth + rel_y = (w.y - self.table.y) * self.table.height / self.table.oldheight + w.x = self.table.x + rel_x + w.y = self.table.y + rel_y + w.window.move(w.x, w.y) + def reposition_windows(self, *args): self.update_table_position() for w in self.stat_windows.itervalues(): diff --git a/pyfpdb/TableWindow.py b/pyfpdb/TableWindow.py index c9e04800..ea2596de 100644 --- a/pyfpdb/TableWindow.py +++ b/pyfpdb/TableWindow.py @@ -240,7 +240,9 @@ class Table_Window(object): return "client_destroyed" elif self.width != new_geo['width'] or self.height != new_geo['height']: # window resized + self.oldwidth = self.width self.width = new_geo['width'] + self.oldheight = self.height self.height = new_geo['height'] return "client_resized" return False # no change From 68b92b5130fc4af6415857439283bba2c1ea1dc3 Mon Sep 17 00:00:00 2001 From: Chaz <chaz@pokeit.co> Date: Wed, 1 Dec 2010 16:18:30 -0500 Subject: [PATCH 051/162] Incremented the db version up to 146 and fixed 1 bug --- pyfpdb/Database.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 64d42a06..c90b5fcb 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -73,7 +73,7 @@ except ImportError: use_numpy = False -DB_VERSION = 144 +DB_VERSION = 146 # Variance created as sqlite has a bunch of undefined aggregate functions. @@ -1836,7 +1836,7 @@ class Database: tz_offset = tz.seconds/3600 tz_day_start_offset = self.day_start + tz_offset - d = timedelta(days=hud_days, hours=tz_day_start_offset) + d = timedelta(hours=tz_day_start_offset) starttime_offset = starttime - d if self.use_date_in_hudcache: From 5fd3dddf2b8b8868f5d37c9feb7acb94430da18a Mon Sep 17 00:00:00 2001 From: Chaz <chaz@pokeit.co> Date: Wed, 1 Dec 2010 16:35:38 -0500 Subject: [PATCH 052/162] * update_hudcache wasn't updating existing cashgame records because it was trying to match a NULL tourneyTypeId with a %s None value. Changed the logic of the SQL to handle this situation. It appeared like someone had tried to handle this by adding '+0' to the NULL record but it doesn't work. * Deleted the attempted '+0' NULL value handling for gametypeId. gametypeId should never be null as an error would have already been thrown before it was inserted --- pyfpdb/SQL.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index d45ccd38..1f91e822 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -3964,11 +3964,12 @@ class Sql: street2Raises=street2Raises+%s, street3Raises=street3Raises+%s, street4Raises=street4Raises+%s - WHERE gametypeId+0=%s + WHERE gametypeId=%s AND playerId=%s AND activeSeats=%s AND position=%s - AND tourneyTypeId+0=%s + AND (case when tourneyTypeId is NULL then 1 else + (case when tourneyTypeId=%s then 1 else 0 end) end)=1 AND styleKey=%s""" self.query['get_hero_hudcache_start'] = """select min(hc.styleKey) From d2355c3ae8bcf165343760f29e0035ad3f8364e6 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Thu, 2 Dec 2010 11:27:06 +0800 Subject: [PATCH 053/162] FTPSummary: Add alternate Omaha label Patch originally posted by patrask on IRC http://hh.kallocain.se/FullTiltPokerSummary.py.patch --- pyfpdb/FullTiltPokerSummary.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyfpdb/FullTiltPokerSummary.py b/pyfpdb/FullTiltPokerSummary.py index ba8b85cb..6ad7560e 100644 --- a/pyfpdb/FullTiltPokerSummary.py +++ b/pyfpdb/FullTiltPokerSummary.py @@ -33,6 +33,7 @@ class FullTiltPokerSummary(TourneySummary): games = { # base, category "Hold'em" : ('hold','holdem'), 'Omaha' : ('hold','omahahi'), + 'Omahai Hi' : ('hold','omahahi'), 'Omaha Hi/Lo' : ('hold','omahahilo'), 'Razz' : ('stud','razz'), 'RAZZ' : ('stud','razz'), @@ -55,7 +56,7 @@ class FullTiltPokerSummary(TourneySummary): re_TourneyInfo = re.compile(u""" \s.* (?P<TYPE>Tournament|Sit\s\&\sGo)\s\((?P<TOURNO>[0-9]+)\)(\s+)? - (?P<GAME>Hold\'em|Razz|RAZZ|7\sCard\sStud|7\sCard\sStud\sHi/Lo|Omaha|Omaha\sHi/Lo|Badugi|Triple\sDraw\s2\-7\sLowball|5\sCard\sDraw)\s+ + (?P<GAME>Hold\'em|Razz|RAZZ|7\sCard\sStud|7\sCard\sStud\sHi/Lo|Omaha|Omaha\sHi|Omaha\sHi/Lo|Badugi|Triple\sDraw\s2\-7\sLowball|5\sCard\sDraw)\s+ (?P<LIMIT>No\sLimit|Limit|LIMIT|Pot\sLimit)\s+ (Buy-In:\s\$(?P<BUYIN>[.\d]+)(\s\+\s\$(?P<FEE>[.\d]+))?\s+)? (Buy-In\sChips:\s(?P<CHIPS>\d+)\s+)? From d48cf03aabb00dbf4521fe913b816335d268a100 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Thu, 2 Dec 2010 13:23:10 +0800 Subject: [PATCH 054/162] Party: Remove reencoding to latin-1 This crashes the UTF files from Party.fr - removing --- pyfpdb/PartyPokerToFpdb.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pyfpdb/PartyPokerToFpdb.py b/pyfpdb/PartyPokerToFpdb.py index 51eb3881..90d8e3b3 100755 --- a/pyfpdb/PartyPokerToFpdb.py +++ b/pyfpdb/PartyPokerToFpdb.py @@ -181,10 +181,6 @@ class PartyPoker(HandHistoryConverter): return self._gameType return self._gameType - @staticmethod - def decode_hand_text(handText): - return handText.encode("latin1").decode(LOCALE_ENCODING) - def determineGameType(self, handText): """inspect the handText and return the gametype dict @@ -192,7 +188,6 @@ class PartyPoker(HandHistoryConverter): {'limitType': xxx, 'base': xxx, 'category': xxx}""" info = {} - handText = self.decode_hand_text(handText) m = self._getGameType(handText) m_20BBmin = self.re_20BBmin.search(handText) if m is None: @@ -253,10 +248,6 @@ class PartyPoker(HandHistoryConverter): def readHandInfo(self, hand): - # we should redecode handtext here (as it imposible to it above) - # if you know more accurate way to do it - tell me - hand.handText = self.decode_hand_text(hand.handText) - info = {} try: info.update(self.re_Hid.search(hand.handText).groupdict()) From 5a2fcea9dfc3dad5e0039640e74454659e70e022 Mon Sep 17 00:00:00 2001 From: Chaz <chaz@pokeit.co> Date: Thu, 2 Dec 2010 00:27:03 -0500 Subject: [PATCH 055/162] turns out the the '+0' is for indexing and has nothing to do with NULLS so I put it back in --- pyfpdb/SQL.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index 1f91e822..1b6a9f4c 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -3964,12 +3964,12 @@ class Sql: street2Raises=street2Raises+%s, street3Raises=street3Raises+%s, street4Raises=street4Raises+%s - WHERE gametypeId=%s + WHERE gametypeId+0=%s AND playerId=%s AND activeSeats=%s AND position=%s AND (case when tourneyTypeId is NULL then 1 else - (case when tourneyTypeId=%s then 1 else 0 end) end)=1 + (case when tourneyTypeId+0=%s then 1 else 0 end) end)=1 AND styleKey=%s""" self.query['get_hero_hudcache_start'] = """select min(hc.styleKey) From cbd6aa242e43076bcef2fb1206fef3248da97be0 Mon Sep 17 00:00:00 2001 From: Chaz <Chaz@Chaz-THINK> Date: Thu, 2 Dec 2010 00:35:18 -0500 Subject: [PATCH 056/162] Added the 'cacheSessions' config option --- pyfpdb/Configuration.py | 6 +++++- pyfpdb/HUD_config.test.xml | 2 +- pyfpdb/HUD_config.xml.example | 2 +- pyfpdb/fpdb_import.py | 4 ++++ 4 files changed, 11 insertions(+), 3 deletions(-) mode change 100755 => 100644 pyfpdb/fpdb_import.py diff --git a/pyfpdb/Configuration.py b/pyfpdb/Configuration.py index 4e01b796..ed12f7a4 100644 --- a/pyfpdb/Configuration.py +++ b/pyfpdb/Configuration.py @@ -479,12 +479,13 @@ class Import: self.hhArchiveBase = node.getAttribute("hhArchiveBase") self.hhBulkPath = node.getAttribute("hhBulkPath") self.saveActions = string_to_bool(node.getAttribute("saveActions"), default=False) + self.cacheSessions = string_to_bool(node.getAttribute("cacheSessions"), default=False) self.fastStoreHudCache = string_to_bool(node.getAttribute("fastStoreHudCache"), default=False) self.saveStarsHH = string_to_bool(node.getAttribute("saveStarsHH"), default=False) def __str__(self): return " interval = %s\n callFpdbHud = %s\n hhArchiveBase = %s\n saveActions = %s\n fastStoreHudCache = %s\n" \ - % (self.interval, self.callFpdbHud, self.hhArchiveBase, self.saveActions, self.fastStoreHudCache) + % (self.interval, self.callFpdbHud, self.hhArchiveBase, self.saveActions, self.cacheSessions, self.fastStoreHudCache) class HudUI: def __init__(self, node): @@ -1259,6 +1260,9 @@ class Config: try: imp['saveActions'] = self.imp.saveActions except: imp['saveActions'] = False + + try: imp['cacheSessions'] = self.imp.cacheSessions + except: imp['cacheSessions'] = False try: imp['saveStarsHH'] = self.imp.saveStarsHH except: imp['saveStarsHH'] = False diff --git a/pyfpdb/HUD_config.test.xml b/pyfpdb/HUD_config.test.xml index 556bbede..964be208 100644 --- a/pyfpdb/HUD_config.test.xml +++ b/pyfpdb/HUD_config.test.xml @@ -2,7 +2,7 @@ <FreePokerToolsConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="FreePokerToolsConfig.xsd"> - <import callFpdbHud = "True" interval = "10" fastStoreHudCache="False" hhArchiveBase="~/.fpdb/HandHistories/" saveActions="True"></import> + <import callFpdbHud = "True" interval = "10" fastStoreHudCache="False" hhArchiveBase="~/.fpdb/HandHistories/" saveActions="True" cacheSessions="True"></import> <!-- These values determine what stats are displayed in the HUD diff --git a/pyfpdb/HUD_config.xml.example b/pyfpdb/HUD_config.xml.example index 9ac66289..1d3c3e00 100644 --- a/pyfpdb/HUD_config.xml.example +++ b/pyfpdb/HUD_config.xml.example @@ -12,7 +12,7 @@ config_difficulty="expert" /> - <import callFpdbHud = "True" interval = "10" fastStoreHudCache="False" hhArchiveBase="~/.fpdb/HandHistories/" saveActions="True"></import> + <import callFpdbHud = "True" interval = "10" fastStoreHudCache="False" hhArchiveBase="~/.fpdb/HandHistories/" saveActions="True" cacheSessions="True"></import> <gui_cash_stats> <col col_name="game" disp_all="True" disp_posn="True" col_title="Game" xalignment="0.0" field_format="%s" field_type="str" /> diff --git a/pyfpdb/fpdb_import.py b/pyfpdb/fpdb_import.py old mode 100755 new mode 100644 index 4c055bd1..e1c4b66a --- a/pyfpdb/fpdb_import.py +++ b/pyfpdb/fpdb_import.py @@ -83,6 +83,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") + self.cacheSessions = self.config.get_import_parameters().get("cacheSessions") # CONFIGURATION OPTIONS self.settings.setdefault("minPrint", 30) @@ -110,6 +111,9 @@ class Importer: #Set functions def setCallHud(self, value): self.callHud = value + + def setCacheSessions(self, value): + self.cacheSessions = value def setMinPrint(self, value): self.settings['minPrint'] = int(value) From a7f3b1326fda51ecb686711330a20474edd54a06 Mon Sep 17 00:00:00 2001 From: Chaz <chaz@pokeit.co> Date: Thu, 2 Dec 2010 00:40:31 -0500 Subject: [PATCH 057/162] Added some logic so the importer won't try to send hands to HUD when HudCache is generated from the command line --- pyfpdb/fpdb_import.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pyfpdb/fpdb_import.py b/pyfpdb/fpdb_import.py index e1c4b66a..4e4b09a4 100644 --- a/pyfpdb/fpdb_import.py +++ b/pyfpdb/fpdb_import.py @@ -497,12 +497,13 @@ class Importer: self.database.commit() #pipe the Hands.id out to the HUD - for hid in to_hud: - try: - print _("fpdb_import: sending hand to hud"), hand.dbid_hands, "pipe =", self.caller.pipe_to_hud - self.caller.pipe_to_hud.stdin.write("%s" % (hid) + os.linesep) - except IOError, e: - log.error(_("Failed to send hand to HUD: %s") % e) + if self.caller: + for hid in to_hud: + try: + print _("fpdb_import: sending hand to hud"), hand.dbid_hands, "pipe =", self.caller.pipe_to_hud + self.caller.pipe_to_hud.stdin.write("%s" % (hid) + os.linesep) + except IOError, e: + log.error(_("Failed to send hand to HUD: %s") % e) errors = getattr(hhc, 'numErrors') stored = getattr(hhc, 'numHands') From 925db93157eb64152fbf8ddb8c5df94fa7848077 Mon Sep 17 00:00:00 2001 From: Chaz <Chaz@Chaz-THINK> Date: Thu, 2 Dec 2010 01:58:02 -0500 Subject: [PATCH 058/162] * Added 'cacheSessions' flag * Added a cacheSessions update call to import_file_dict() in fpdb_import.py * Added updateSessionsCache() method to Hands * Added storeSessionsCache() to Database --- WORK IN PROGRESS and set to pass TO DOs - add sessions queries to SQL - complete storeSessionsCache() so it works like we've discussed (save for adding sessionId to HP) - add SessionsCache keys - add SessionsCache to the default table creation and deletion methods in Database.py - update storeSessionsCache() and all the relevant db & sql code so it writes a sessionId to HP --- pyfpdb/Database.py | 47 +++++++++++++++++++++++++++++++++++ pyfpdb/HUD_config.test.xml | 2 +- pyfpdb/HUD_config.xml.example | 2 +- pyfpdb/Hand.py | 3 +++ pyfpdb/fpdb_import.py | 7 ++++++ 5 files changed, 59 insertions(+), 2 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index c90b5fcb..b644cbd5 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1966,6 +1966,53 @@ class Database: else: #print "DEBUG: Successfully updated HudCacho using UPDATE" pass + + def storeSessionsCache(self, pids, starttime, pdata): + """Update cached sessions. If update fails because no record exists, do an insert.""" + #In development + pass + + #update_sessionscache = self.sql.query['update_sessionscache'] + #update_sessionscache = update_sessionscache.replace('%s', self.sql.query['placeholder']) + #insert_sessionscache = self.sql.query['insert_sessionscache'] + #insert_sessionscache = insert_sessionscache.replace('%s', self.sql.query['placeholder']) + #merge_sessionscache = self.sql.query['merge_sessionscache'] + #merge_sessionscache = merge_sessionscache.replace('%s', self.sql.query['placeholder']) + + #print "DEBUG: %s %s %s" %(hid, pids, pdata) + #inserts = [] + #for p in pdata: + #line = [0]*5 + + #line[0] = 1 # HDs + #line[1] = pdata[p]['totalProfit'] + + #line[2] = pids[p] # playerId + #line[3] = sessionStart + #line[4] = sessionEnd + #inserts.append(line) + + + #cursor = self.get_cursor() + + #for row in inserts: + # Try to do the update first: + #num = cursor.execute(update_sessionscache, row) + #print "DEBUG: values: %s" % row[-3:] + # Test statusmessage to see if update worked, do insert if not + # num is a cursor in sqlite + #if ((self.backend == self.PGSQL and cursor.statusmessage != "UPDATE 1") + #or (self.backend == self.MYSQL_INNODB and num == 0) + #or (self.backend == self.SQLITE and num.rowcount == 0)): + #move the last 6 items in WHERE clause of row from the end of the array + # to the beginning for the INSERT statement + #print "DEBUG: using INSERT: %s" % num + #row = row[-3:] + row[:-3] + #num = cursor.execute(insert_sessionscache, row) + #print "DEBUG: Successfully(?: %s) updated HudCacho using INSERT" % num + #else: + #print "DEBUG: Successfully updated HudCacho using UPDATE" + #pass def isDuplicate(self, gametypeID, siteHandNo): dup = False diff --git a/pyfpdb/HUD_config.test.xml b/pyfpdb/HUD_config.test.xml index 964be208..f62a13bf 100644 --- a/pyfpdb/HUD_config.test.xml +++ b/pyfpdb/HUD_config.test.xml @@ -2,7 +2,7 @@ <FreePokerToolsConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="FreePokerToolsConfig.xsd"> - <import callFpdbHud = "True" interval = "10" fastStoreHudCache="False" hhArchiveBase="~/.fpdb/HandHistories/" saveActions="True" cacheSessions="True"></import> + <import callFpdbHud = "True" interval = "10" fastStoreHudCache="False" hhArchiveBase="~/.fpdb/HandHistories/" saveActions="True" cacheSessions="False"></import> <!-- These values determine what stats are displayed in the HUD diff --git a/pyfpdb/HUD_config.xml.example b/pyfpdb/HUD_config.xml.example index 1d3c3e00..423d577a 100644 --- a/pyfpdb/HUD_config.xml.example +++ b/pyfpdb/HUD_config.xml.example @@ -12,7 +12,7 @@ config_difficulty="expert" /> - <import callFpdbHud = "True" interval = "10" fastStoreHudCache="False" hhArchiveBase="~/.fpdb/HandHistories/" saveActions="True" cacheSessions="True"></import> + <import callFpdbHud = "True" interval = "10" fastStoreHudCache="False" hhArchiveBase="~/.fpdb/HandHistories/" saveActions="True" cacheSessions="False"></import> <gui_cash_stats> <col col_name="game" disp_all="True" disp_posn="True" col_title="Game" xalignment="0.0" field_format="%s" field_type="str" /> diff --git a/pyfpdb/Hand.py b/pyfpdb/Hand.py index ce0e4e7a..250067f8 100644 --- a/pyfpdb/Hand.py +++ b/pyfpdb/Hand.py @@ -278,6 +278,9 @@ db: a connected Database object""" def updateHudCache(self, db): db.storeHudCache(self.dbid_gt, self.dbid_pids, self.startTime, self.stats.getHandsPlayers()) + + def updateSessionsCache(self, db): + db.storeSessionsCache(self.dbid_pids, self.startTime, self.stats.getHandsPlayers()) def select(self, handId): """ Function to create Hand object from database """ diff --git a/pyfpdb/fpdb_import.py b/pyfpdb/fpdb_import.py index 4e4b09a4..15043503 100644 --- a/pyfpdb/fpdb_import.py +++ b/pyfpdb/fpdb_import.py @@ -495,6 +495,13 @@ class Importer: if hand is not None and not hand.is_duplicate: hand.updateHudCache(self.database) self.database.commit() + + # Call sessionsCache update + if self.cacheSessions: + for hand in handlist: + if hand is not None and not hand.is_duplicate: + hand.updateSessionsCache(self.database) + self.database.commit() #pipe the Hands.id out to the HUD if self.caller: From a79dbd8f1b388c3bb0d008da0ece65af289b09c9 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Thu, 2 Dec 2010 17:40:24 +0800 Subject: [PATCH 059/162] Party: First pass at Party.fr support The USD regression test files show no change in parse problems - 3 files still fail --- pyfpdb/PartyPokerToFpdb.py | 53 +++++++++++++++++++------------------- 1 file changed, 26 insertions(+), 27 deletions(-) diff --git a/pyfpdb/PartyPokerToFpdb.py b/pyfpdb/PartyPokerToFpdb.py index 90d8e3b3..6eeefe1c 100755 --- a/pyfpdb/PartyPokerToFpdb.py +++ b/pyfpdb/PartyPokerToFpdb.py @@ -45,22 +45,27 @@ class PartyPoker(HandHistoryConverter): codepage = "utf8" siteId = 9 filetype = "text" - sym = {'USD': "\$", } + sym = {'USD': "\$", 'EUR': u"\u20ac", 'T$': ""} + currencies = {"\$": "USD", "$": "USD", u"\xe2\x82\xac": "EUR", u"\u20ac": "EUR", '': "T$"} + substitutions = { + 'LEGAL_ISO' : "USD|EUR", # legal ISO currency codes + 'LS' : "\$|\u20AC|\xe2\x82\xac|" # legal currency symbols - Euro(cp1252, utf-8) + } # Static regexes # $5 USD NL Texas Hold'em - Saturday, July 25, 07:53:52 EDT 2009 # NL Texas Hold'em $1 USD Buy-in Trny:45685440 Level:8 Blinds-Antes(600/1 200 -50) - Sunday, May 17, 11:25:07 MSKS 2009 - re_GameInfoRing = re.compile(""" - (?P<CURRENCY>\$|)\s*(?P<RINGLIMIT>[.,0-9]+)([.,0-9/$]+)?\s*(?:USD)?\s* + re_GameInfoRing = re.compile(u""" + (?P<CURRENCY>[%(LS)s])\s*(?P<RINGLIMIT>[.,0-9]+)([.,0-9/$]+)?\s*(?:%(LEGAL_ISO)s)?\s* (?P<LIMIT>(NL|PL|))\s* (?P<GAME>(Texas\ Hold\'em|Omaha|7 Card Stud Hi-Lo)) \s*\-\s* (?P<DATETIME>.+) - """, re.VERBOSE | re.UNICODE) + """ % substitutions, re.VERBOSE | re.UNICODE) re_GameInfoTrny = re.compile(""" (?P<LIMIT>(NL|PL|))\s* (?P<GAME>(Texas\ Hold\'em|Omaha))\s+ - (?:(?P<BUYIN>\$?[.,0-9]+)\s*(?P<BUYIN_CURRENCY>USD)?\s*Buy-in\s+)? + (?:(?P<BUYIN>\$?[.,0-9]+)\s*(?P<BUYIN_CURRENCY>%(LEGAL_ISO)s)?\s*Buy-in\s+)? Trny:\s?(?P<TOURNO>\d+)\s+ Level:\s*(?P<LEVEL>\d+)\s+ ((Blinds|Stakes)(?:-Antes)?)\( @@ -70,15 +75,14 @@ class PartyPoker(HandHistoryConverter): \) \s*\-\s* (?P<DATETIME>.+) - """, re.VERBOSE | re.UNICODE) - re_Hid = re.compile("^Game \#(?P<HID>\d+) starts.") + """ % substitutions, re.VERBOSE | re.UNICODE) + re_Hid = re.compile("Game \#(?P<HID>\d+) starts.") - re_PlayerInfo = re.compile(""" + re_PlayerInfo = re.compile(u""" Seat\s(?P<SEAT>\d+):\s (?P<PNAME>.*)\s - \(\s*\$?(?P<CASH>[0-9,.]+)\s*(?:USD|)\s*\) - """ , - re.VERBOSE) + \(\s*[%(LS)s]?(?P<CASH>[0-9,.]+)\s*(?:%(LEGAL_ISO)s|)\s*\) + """ % substitutions, re.VERBOSE| re.UNICODE) re_HandInfo = re.compile(""" ^Table\s+(?P<TTYPE>[$a-zA-Z0-9 ]+)?\s+ @@ -123,18 +127,16 @@ class PartyPoker(HandHistoryConverter): self.compiledPlayers = players player_re = "(?P<PNAME>" + "|".join(map(re.escape, players)) + ")" - subst = {'PLYR': player_re, 'CUR_SYM': hand.SYMBOL[hand.gametype['currency']], + subst = {'PLYR': player_re, 'CUR_SYM': self.sym[hand.gametype['currency']], 'CUR': hand.gametype['currency'] if hand.gametype['currency']!='T$' else ''} - for key in ('CUR_SYM', 'CUR'): - subst[key] = re.escape(subst[key]) self.re_PostSB = re.compile( - r"^%(PLYR)s posts small blind \[%(CUR_SYM)s(?P<SB>[.,0-9]+) ?%(CUR)s\]\." % subst, - re.MULTILINE) + r"^%(PLYR)s posts small blind \[%(CUR_SYM)s(?P<SB>[.,0-9]+) ?%(CUR)s\]\." + % subst, re.MULTILINE) self.re_PostBB = re.compile( - r"^%(PLYR)s posts big blind \[%(CUR_SYM)s(?P<BB>[.,0-9]+) ?%(CUR)s\]\." % subst, - re.MULTILINE) + u"%(PLYR)s posts big blind \[%(CUR_SYM)s(?P<BB>[.,0-9]+) ?%(CUR)s\]\." + % subst, re.MULTILINE) self.re_PostDead = re.compile( - r"^%(PLYR)s posts big blind \+ dead \[(?P<BBNDEAD>[.,0-9]+) ?%(CUR_SYM)s\]\." % subst, + r"^%(PLYR)s posts big blind + dead \[(?P<BBNDEAD>[.,0-9]+) ?%(CUR_SYM)s\]\." % subst, re.MULTILINE) self.re_Antes = re.compile( r"^%(PLYR)s posts ante \[%(CUR_SYM)s(?P<ANTE>[.,0-9]+) ?%(CUR)s\]" % subst, @@ -142,11 +144,10 @@ class PartyPoker(HandHistoryConverter): self.re_HeroCards = re.compile( r"^Dealt to %(PLYR)s \[\s*(?P<NEWCARDS>.+)\s*\]" % subst, re.MULTILINE) - self.re_Action = re.compile(r""" + self.re_Action = re.compile(u""" ^%(PLYR)s\s+(?P<ATYPE>bets|checks|raises|calls|folds|is\sall-In) (?:\s+\[%(CUR_SYM)s(?P<BET>[.,\d]+)\s*%(CUR)s\])? - """ % subst, - re.MULTILINE|re.VERBOSE) + """ % subst, re.MULTILINE|re.VERBOSE) self.re_ShownCards = re.compile( r"^%s (?P<SHOWED>(?:doesn\'t )?shows?) " % player_re + r"\[ *(?P<CARDS>.+) *\](?P<COMBINATION>.+)\.", @@ -205,7 +206,6 @@ class PartyPoker(HandHistoryConverter): 'Omaha' : ('hold','omahahi'), "7 Card Stud Hi-Lo" : ('stud','studhi'), } - currencies = { '$':'USD', '':'T$' } for expectedField in ['LIMIT', 'GAME']: if mg[expectedField] is None: @@ -238,7 +238,7 @@ class PartyPoker(HandHistoryConverter): info['bb'] = "%.2f" % (bb) info['sb'] = "%.2f" % (sb) - info['currency'] = currencies[mg['CURRENCY']] + info['currency'] = self.currencies[mg['CURRENCY']] else: info['sb'] = clearMoneyString(mg['SB']) info['bb'] = clearMoneyString(mg['BB']) @@ -251,8 +251,8 @@ class PartyPoker(HandHistoryConverter): info = {} try: info.update(self.re_Hid.search(hand.handText).groupdict()) - except: - raise FpdbParseError(_("Cannot read HID for current hand")) + except AttributeError, e: + raise FpdbParseError(_("Cannot read HID for current hand: %s" % e)) try: info.update(self.re_HandInfo.search(hand.handText,re.DOTALL).groupdict()) @@ -365,7 +365,6 @@ class PartyPoker(HandHistoryConverter): else: #zero stacked players are added later zeroStackPlayers.append([int(a.group('SEAT')), a.group('PNAME'), clearMoneyString(a.group('CASH'))]) - if hand.gametype['type'] == 'ring': #finds first vacant seat after an exact seat def findFirstEmptySeat(startSeat): From 283752e4dcea92b9450485633695308ac9828ff1 Mon Sep 17 00:00:00 2001 From: gimick <bbtgaf@googlemail.com> Date: Thu, 2 Dec 2010 19:58:44 +0000 Subject: [PATCH 060/162] py2exe: update files in the includes list --- packaging/windows/py2exe_setup.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/packaging/windows/py2exe_setup.py b/packaging/windows/py2exe_setup.py index 8bf723a4..0f46f8db 100644 --- a/packaging/windows/py2exe_setup.py +++ b/packaging/windows/py2exe_setup.py @@ -112,7 +112,7 @@ def copy_file(source,destination): shutil.copy( source, destination ) -fpdbver = '0.20.906' +fpdbver = '0.21.rc1' distdir = r'fpdb-' + fpdbver rootdir = r'../../' #cwd is normally /packaging/windows @@ -148,9 +148,10 @@ setup( ,'matplotlib.numerix.random_array' ,'AbsoluteToFpdb', 'BetfairToFpdb' ,'CarbonToFpdb', 'EverleafToFpdb' - ,'FulltiltToFpdb', 'OnGameToFpdb' - ,'PartyPokerToFpdb', 'PokerStarsToFpdb' - ,'UltimateBetToFpdb', 'Win2dayToFpdb' + ,'FulltiltToFpdb', 'iPokerToFpdb' + ,'OnGameToFpdb', 'PartyPokerToFpdb' + ,'PkrToFpdb', 'PokerStarsToFpdb' + ,'Win2dayToFpdb', 'WinamaxToFpdb' ], 'excludes' : ['_tkagg', '_agg2', 'cocoaagg', 'fltkagg'], 'dll_excludes': ['libglade-2.0-0.dll', 'libgdk-win32-2.0-0.dll', 'libgobject-2.0-0.dll' From 8942778f8c2f0b1c1a863fbfca4d85acfbf756f7 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Thu, 2 Dec 2010 18:04:13 -0500 Subject: [PATCH 061/162] Some cleanup. Minor refactor. Prep for some changes. --- pyfpdb/HUD_main.pyw | 69 +++++++++++++++------------------------------ 1 file changed, 23 insertions(+), 46 deletions(-) diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw index e2752625..22c6a368 100644 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -23,16 +23,10 @@ Main for FreePokerTools HUD. """ -# TODO allow window resizing - # Standard Library modules import sys import os -import Options import traceback - -(options, argv) = Options.fpdb_options() - import thread import time import string @@ -45,6 +39,9 @@ import gobject import Configuration import Database import Hud +import Options + +(options, argv) = Options.fpdb_options() # get the correct module for the current os if os.name == 'posix': @@ -76,17 +73,13 @@ class HUD_main(object): # This class mainly provides state for controlling the multiple HUDs. def __init__(self, db_name='fpdb'): - print _("\nHUD_main: starting ...") self.db_name = db_name self.config = c - print _("Logfile is ") + os.path.join(self.config.dir_log, 'HUD-log.txt') log.info(_("HUD_main starting: using db name = %s") % (db_name)) try: if not options.errorsToConsole: fileName = os.path.join(self.config.dir_log, 'HUD-errors.txt') - print _("Note: error output is being diverted to:\n") + fileName \ - + _("\nAny major error will be reported there _only_.\n") log.info(_("Note: error output is being diverted to:") + fileName) log.info(_("Any major error will be reported there _only_.")) errorFile = open(fileName, 'w', 0) @@ -124,9 +117,8 @@ class HUD_main(object): gobject.timeout_add(100, self.check_tables) except: - log.error("*** Exception in HUD_main.init() *** ") - for e in traceback.format_tb(sys.exc_info()[2]): - log.error(e) + log.exception(_("Error initializing main_window")) + gtk.main_quit() # we're hosed, just terminate def client_moved(self, widget, hud): hud.up_update_table_position() @@ -204,8 +196,6 @@ class HUD_main(object): while 1: # wait for a new hand number on stdin new_hand_id = sys.stdin.readline() - t0 = time.time() - t1 = t2 = t3 = t4 = t5 = t6 = t0 new_hand_id = string.rstrip(new_hand_id) log.debug(_("Received hand no %s") % new_hand_id) if new_hand_id == "": # blank line means quit @@ -214,6 +204,9 @@ class HUD_main(object): # This block cannot be hoisted outside the while loop, because it would # cause a problem when auto importing into an empty db. + +# FIXME: This doesn't work in the case of the player playing on 2 +# sites at once (???) Eratosthenes if not found: for site in self.config.get_supported_sites(): result = self.db_connection.get_site_id(site) @@ -233,12 +226,10 @@ class HUD_main(object): (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: - log.error(_("db error: skipping %s" % new_hand_id)) + log.exception(_("db error: skipping %s" % new_hand_id)) continue - t1 = time.time() if type == "tour": # hand is from a tournament -# temp_key = tour_number temp_key = "%s Table %s" % (tour_number, tab_number) else: temp_key = table_name @@ -248,10 +239,8 @@ class HUD_main(object): # get stats using hud's specific params and get cards self.db_connection.init_hud_stat_vars( self.hud_dict[temp_key].hud_params['hud_days'] , self.hud_dict[temp_key].hud_params['h_hud_days']) - t2 = time.time() 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) - t3 = time.time() try: self.hud_dict[temp_key].stat_dict = stat_dict @@ -261,13 +250,8 @@ class HUD_main(object): # Unlocks table, copied from end of function self.db_connection.connection.rollback() return - cards = self.db_connection.get_cards(new_hand_id) - t4 = time.time() - comm_cards = self.db_connection.get_common_cards(new_hand_id) - t5 = time.time() - if comm_cards != {}: # stud! - cards['common'] = comm_cards['common'] - self.hud_dict[temp_key].cards = cards + + self.hud_dict[temp_key].cards = self.get_cards(new_hand_id) [aw.update_data(new_hand_id, self.db_connection) for aw in self.hud_dict[temp_key].aux_windows] self.update_HUD(new_hand_id, temp_key, self.config) @@ -277,11 +261,7 @@ class HUD_main(object): self.db_connection.init_hud_stat_vars( self.hud_params['hud_days'], self.hud_params['h_hud_days'] ) stat_dict = self.db_connection.get_stats_from_hand(new_hand_id, type, self.hud_params, self.hero_ids[site_id], num_seats) - cards = self.db_connection.get_cards(new_hand_id) - comm_cards = self.db_connection.get_common_cards(new_hand_id) - if comm_cards != {}: # stud! - cards['common'] = comm_cards['common'] - + cards = self.get_cards(new_hand_id) table_kwargs = dict(table_name=table_name, tournament=tour_number, table_number=tab_number) tablewindow = Tables.Table(self.config, site_name, **table_kwargs) if tablewindow is None: @@ -298,14 +278,15 @@ class HUD_main(object): else: log.error(_('Table "%s" no longer exists\n') % table_name) - t6 = time.time() - log.info(_("HUD_main.read_stdin: hand read in %4.3f seconds (%4.3f,%4.3f,%4.3f,%4.3f,%4.3f,%4.3f)") - % (t6 - t0,t1 - t0,t2 - t0,t3 - t0,t4 - t0,t5 - t0,t6 - t0)) - self.db_connection.connection.rollback() - if type == "tour": self.hud_dict[temp_key].table.check_table_no(self.hud_dict[temp_key]) + def get_cards(self, new_hand_id): + cards = self.db_connection.get_cards(new_hand_id) + comm_cards = self.db_connection.get_common_cards(new_hand_id) + if comm_cards != {}: # stud! + cards['common'] = comm_cards['common'] + return cards ###################################################################### # idle FUNCTIONS # @@ -322,7 +303,7 @@ def idle_resize(hud): [aw.update_card_positions() for aw in hud.aux_windows] hud.resize_windows() except: - pass + log.exception("Error resizing HUD for table: %s." % hud.table.title) finally: gtk.gdk.threads_leave() @@ -336,7 +317,7 @@ def idle_kill(hud_main, table): del(hud_main.hud_dict[table]) hud_main.main_window.resize(1, 1) except: - pass + log.exception("Error killing HUD for table: %s." % table.title) finally: gtk.gdk.threads_leave() @@ -358,9 +339,7 @@ def idle_create(hud_main, new_hand_id, table, table_name, max, poker_game, type, hud_main.hud_dict[table.key].update(new_hand_id, hud_main.config) hud_main.hud_dict[table.key].reposition_windows() except: - log.error("*** Exception in HUD_main::idle_func() *** " + str(sys.exc_info())) - for e in traceback.format_tb(sys.exc_info()[2]): - log.error(e) + log.exception("Error creating HUD for hand %s." % new_hand_id) finally: gtk.gdk.threads_leave() return False @@ -369,11 +348,9 @@ def idle_update(hud_main, new_hand_id, table_name, config): gtk.gdk.threads_enter() try: hud_main.hud_dict[table_name].update(new_hand_id, config) - # 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 [aw.update_gui(new_hand_id) for aw in hud_main.hud_dict[table_name].aux_windows] - except KeyError: - pass + except: + log.exception("Error updating HUD for hand %s." % new_hand_id) finally: gtk.gdk.threads_leave() return False From b83242622a9950a6ccae5d018ca6a14f99b88352 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 3 Dec 2010 11:14:51 +0800 Subject: [PATCH 062/162] Stove: Fix card expansion, move a function or two --- pyfpdb/Stove.py | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/pyfpdb/Stove.py b/pyfpdb/Stove.py index 2e2a6ef1..594a3c08 100755 --- a/pyfpdb/Stove.py +++ b/pyfpdb/Stove.py @@ -69,7 +69,7 @@ class Stove: vp = Cards(r1, r2) range.add(vp) else: - range.expand(expand_hands(_h, pocket_cards, board)) + range.expand(expand_hands(_h, self.hand, self.board)) self.range = range @@ -158,26 +158,6 @@ class SumEV: print ' %5.2f%% %5.2f%% %5.2f%%' % (win_pct, lose_pct, tie_pct) -def usage(me): - print """Texas Hold'Em odds calculator -Calculates odds against a range of hands. - -To use: %s '<board cards>' '<your hand>' '<opponent's range>' [...] - -Separate cards with space. -Separate hands in range with commas. -""" % me - -def cards_from_range(range): - s = '{' - for h in range: - if h.c1 == '__' and h.c2 == '__': - s += 'random, ' - else: - s += '%s%s, ' % (h.c1, h.c2) - s = s.rstrip(', ') - s += '}' - return s # Expands hand abbreviations such as JJ and AK to full hand ranges. @@ -229,7 +209,6 @@ def parse_args(args, container): container.set_hero_cards_string(args[2]) container.set_villain_range_string(args[3]) - return True @@ -292,6 +271,27 @@ def odds_for_range(holder): sev.show(holder.hand, holder.range.get()) +def usage(me): + print """Texas Hold'Em odds calculator +Calculates odds against a range of hands. + +To use: %s '<board cards>' '<your hand>' '<opponent's range>' [...] + +Separate cards with space. +Separate hands in range with commas. +""" % me + +def cards_from_range(range): + s = '{' + for h in range: + if h.c1 == '__' and h.c2 == '__': + s += 'random, ' + else: + s += '%s%s, ' % (h.c1, h.c2) + s = s.rstrip(', ') + s += '}' + return s + def main(argv=None): stove = Stove() if not parse_args(sys.argv, stove): From 9b629a467a5ef815a595b35da85fd371e3391c6c Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 3 Dec 2010 11:46:15 +0800 Subject: [PATCH 063/162] Stove: Rename range to h_range range is a resvered word in Python. --- pyfpdb/Stove.py | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/pyfpdb/Stove.py b/pyfpdb/Stove.py index 594a3c08..0fd61a29 100755 --- a/pyfpdb/Stove.py +++ b/pyfpdb/Stove.py @@ -27,7 +27,7 @@ class Stove: def __init__(self): self.hand = None self.board = None - self.range = None + self.h_range = None def set_board_with_list(self, board): pass @@ -58,7 +58,7 @@ class Stove: def set_villain_range_string(self, string): # Villain's range - range = Range() + h_range = Range() hands_in_range = string.strip().split(',') for h in hands_in_range: _h = h.strip() @@ -67,11 +67,11 @@ class Stove: r1 = cc[0] r2 = cc[1] vp = Cards(r1, r2) - range.add(vp) + h_range.add(vp) else: - range.expand(expand_hands(_h, self.hand, self.board)) + h_range.expand(expand_hands(_h, self.hand, self.board)) - self.range = range + self.h_range = h_range class Cards: @@ -147,13 +147,13 @@ class SumEV: self.n_ties += ev.n_ties self.n_losses += ev.n_losses - def show(self, hand, range): + def show(self, hand, h_range): win_pct = 100 * (float(self.n_wins) / float(self.n_hands)) lose_pct = 100 * (float(self.n_losses) / float(self.n_hands)) tie_pct = 100 * (float(self.n_ties) / float(self.n_hands)) print 'Enumerated %d possible plays.' % self.n_hands print 'Your hand: (%s %s)' % (hand.c1, hand.c2) - print 'Against the range: %s\n' % cards_from_range(range) + print 'Against the range: %s\n' % cards_from_range(h_range) print ' Win Lose Tie' print ' %5.2f%% %5.2f%% %5.2f%%' % (win_pct, lose_pct, tie_pct) @@ -182,7 +182,7 @@ def expand_hands(abbrev, hand, board): else: selection = ANY - range = [] + h_range = [] considered = set() for s1 in SUITS: c1 = r1 + s1 @@ -196,8 +196,8 @@ def expand_hands(abbrev, hand, board): elif selection == OFFSUIT and s1 == s2: continue if c2 not in considered and c2 not in known_cards: - range.append(Cards(c1, c2)) - return range + h_range.append(Cards(c1, c2)) + return h_range def parse_args(args, container): @@ -260,7 +260,7 @@ def odds_for_range(holder): iters = random.randint(25000, 125000) else: iters = -1 - for h in holder.range.get(): + for h in holder.h_range.get(): e = odds_for_hand( [holder.hand.c1, holder.hand.c2], [h.c1, h.c2], @@ -269,7 +269,7 @@ def odds_for_range(holder): ) sev.add(e) - sev.show(holder.hand, holder.range.get()) + sev.show(holder.hand, holder.h_range.get()) def usage(me): print """Texas Hold'Em odds calculator @@ -281,9 +281,9 @@ Separate cards with space. Separate hands in range with commas. """ % me -def cards_from_range(range): +def cards_from_range(h_range): s = '{' - for h in range: + for h in h_range: if h.c1 == '__' and h.c2 == '__': s += 'random, ' else: From 1e749d3cf3ddcf74e3a402890d8b53dfcba42cb9 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 3 Dec 2010 12:34:58 +0800 Subject: [PATCH 064/162] Tourney Player Viewer fix for Bugid 0000050 SQL case statements only divided by 100 if the currency was USD. This is a temporary fix - what we probably want is WHEN tt.currency != PLAY or FPP --- pyfpdb/SQL.py | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index 1b6a9f4c..0b7af9e9 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -2479,7 +2479,11 @@ class Sql: select s.name AS siteName ,t.tourneyTypeId AS tourneyTypeId ,tt.currency AS currency - ,(CASE WHEN tt.currency = 'USD' THEN tt.buyIn/100.0 ELSE tt.buyIn END) AS buyIn + ,(CASE + WHEN tt.currency = 'USD' THEN tt.buyIn/100.0 + WHEN tt.currency = 'EUR' THEN tt.buyIn/100.0 + ELSE tt.buyIn + END) AS buyIn ,tt.fee/100.0 AS fee ,tt.category AS category ,tt.limitType AS limitType @@ -2512,7 +2516,11 @@ class Sql: select s.name AS siteName ,t.tourneyTypeId AS tourneyTypeId ,tt.currency AS currency - ,(CASE WHEN tt.currency = 'USD' THEN tt.buyIn/100.0 ELSE tt.buyIn END) AS buyIn + ,(CASE + WHEN tt.currency = 'USD' THEN tt.buyIn/100.0 + WHEN tt.currency = 'EUR' THEN tt.buyIn/100.0 + ELSE tt.buyIn + END) AS buyIn ,tt.fee/100.0 AS fee ,tt.category AS category ,tt.limitType AS limitType @@ -2546,7 +2554,11 @@ class Sql: select s.name AS siteName ,t.tourneyTypeId AS tourneyTypeId ,tt.currency AS currency - ,(CASE WHEN tt.currency = 'USD' THEN tt.buyIn/100.0 ELSE tt.buyIn END) AS buyIn + ,(CASE + WHEN tt.currency = 'USD' THEN tt.buyIn/100.0 + WHEN tt.currency = 'EUR' THEN tt.buyIn/100.0 + ELSE tt.buyIn + END) AS buyIn ,tt.fee/100.0 AS fee ,tt.category AS category ,tt.limitType AS limitType From 89990628af3f427a0b7e955fbc81cb14014026db Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 3 Dec 2010 15:38:41 +0800 Subject: [PATCH 065/162] Regression: Add NLHE Party.fr hand sample --- .../Flop/NLHE-EUR-0.05-0.10-201011.Sample.txt | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-EUR-0.05-0.10-201011.Sample.txt diff --git a/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-EUR-0.05-0.10-201011.Sample.txt b/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-EUR-0.05-0.10-201011.Sample.txt new file mode 100644 index 00000000..55559a57 --- /dev/null +++ b/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-EUR-0.05-0.10-201011.Sample.txt @@ -0,0 +1,32 @@ +Game #9864152000 starts. + +#Game No : 9864152000 +***** Hand History for Game 9864152000 ***** +€10 EUR NL Texas Hold'em - Sunday, November 21, 19:00:00 CET 2010 +Table Table 183347 (Real Money) +Seat 1 is the button +Total number of players : 5/6 +Seat 3: Hero ( €10 EUR ) +Seat 6: Player6 ( €16.49 EUR ) +Seat 4: Player4 ( €10.73 EUR ) +Seat 1: Player1 ( €8.56 EUR ) +Seat 2: Player2 ( €4.90 EUR ) +Player2 posts small blind [€0.05 EUR]. +Hero posts big blind [€0.10 EUR]. +** Dealing down cards ** +Dealt to Hero [ Ah Kc ] +Player4 calls [€0.10 EUR] +Player6 calls [€0.10 EUR] +Player1 calls [€0.10 EUR] +Player2 calls [€0.05 EUR] +Hero raises [€0.56 EUR] +Player4 folds +Player6 folds +Player1 folds +Player2 calls [€0.56 EUR] +** Dealing Flop ** [ 5s, 9d, Ad ] +Player2 checks +Hero bets [€1.52 EUR] +Player2 folds +Hero does not show cards. +Hero wins €3.04 EUR From 8d8f604d128c929938fab00983191accca8b7626 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 3 Dec 2010 18:13:07 +0800 Subject: [PATCH 066/162] Party: Make Party Stud H/L partially recognised --- pyfpdb/PartyPokerToFpdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/PartyPokerToFpdb.py b/pyfpdb/PartyPokerToFpdb.py index 6eeefe1c..a9321c63 100755 --- a/pyfpdb/PartyPokerToFpdb.py +++ b/pyfpdb/PartyPokerToFpdb.py @@ -58,7 +58,7 @@ class PartyPoker(HandHistoryConverter): re_GameInfoRing = re.compile(u""" (?P<CURRENCY>[%(LS)s])\s*(?P<RINGLIMIT>[.,0-9]+)([.,0-9/$]+)?\s*(?:%(LEGAL_ISO)s)?\s* (?P<LIMIT>(NL|PL|))\s* - (?P<GAME>(Texas\ Hold\'em|Omaha|7 Card Stud Hi-Lo)) + (?P<GAME>(Texas\ Hold\'em|Omaha|7\ Card\ Stud\ Hi-Lo)) \s*\-\s* (?P<DATETIME>.+) """ % substitutions, re.VERBOSE | re.UNICODE) From 94bdc43deb87e2e67b3924785d44cdd11cab8186 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Fri, 3 Dec 2010 11:51:18 -0500 Subject: [PATCH 067/162] Tables_Demo to work with new Tables stuff. Find Tour tables better. --- pyfpdb/HandHistoryConverter.py | 2 +- pyfpdb/Tables_Demo.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) mode change 100755 => 100644 pyfpdb/Tables_Demo.py diff --git a/pyfpdb/HandHistoryConverter.py b/pyfpdb/HandHistoryConverter.py index f99e05f4..62383beb 100644 --- a/pyfpdb/HandHistoryConverter.py +++ b/pyfpdb/HandHistoryConverter.py @@ -664,7 +664,7 @@ or None if we fail to get the info """ def getTableTitleRe(type, table_name=None, tournament = None, table_number=None): "Returns string to search in windows titles" if type=="tour": - return "%s.+Table.+%s" % (tournament, table_number) + return "%s.+Table %s" % (tournament, table_number) else: return table_name diff --git a/pyfpdb/Tables_Demo.py b/pyfpdb/Tables_Demo.py old mode 100755 new mode 100644 index 3e633204..f00c201e --- a/pyfpdb/Tables_Demo.py +++ b/pyfpdb/Tables_Demo.py @@ -103,9 +103,12 @@ if __name__=="__main__": table_kwargs = dict(table_name = table_name) table = Tables.Table(config, "Full Tilt Poker", **table_kwargs) + table.gdk_handle = gtk.gdk.window_foreign_new(table.number) print table fake = fake_hud(table) + fake.parent = fake + gobject.timeout_add(1000, table.check_game, fake) gobject.timeout_add(100, table.check_table, fake) print "calling main" From ab3acc504922167d26553bc169138efce0acaa0c Mon Sep 17 00:00:00 2001 From: gimick <bbtgaf@googlemail.com> Date: Fri, 3 Dec 2010 18:41:42 +0000 Subject: [PATCH 068/162] pypokereval: walkthrough to create the dll --- packaging/windows/pypoker138walkthrough.txt | 149 ++++++++++++++++++++ 1 file changed, 149 insertions(+) create mode 100644 packaging/windows/pypoker138walkthrough.txt diff --git a/packaging/windows/pypoker138walkthrough.txt b/packaging/windows/pypoker138walkthrough.txt new file mode 100644 index 00000000..0986f739 --- /dev/null +++ b/packaging/windows/pypoker138walkthrough.txt @@ -0,0 +1,149 @@ +pypokereval build stepbystep + +These build instructions are for Python2.6 and Visual Studio C++ 2008 + +We are building against the 2008 runtime because Python 2.6 + has the same dependency (msvcr90.dll version 9.0.21022.8) + +0. Build environ +---------------- + +Using winXPhome 32 bit + +1 Visual studio +--------------- + +1.1/ Get the ISO CD from here ... http://www.microsoft.com/express/Downloads/#2008-All + +1.2/ Run and install Visual C++ only, don't bother with the additional packages offered + +This package will run 30 days before registration is needed + +2. Python runtime +----------------- + +2.1/ Install python runtime from here ... + +Python 2.6.5 ... http://www.python.org/ftp/python/2.6.5/python-2.6.5.msi + +3. Source install +----------------- + +3.1/ grab sources from here + +pypoker-eval v138 ... http://download.gna.org/pokersource/sources/pypoker-eval-138.0.tar.gz +poker-eval v138 ... http://download.gna.org/pokersource/sources/poker-eval-138.0.tar.gz + +3.2/ unpack and place the pypoker-eval-138 directory in c:\ +3.2.1/ rename to pypoker-eval + +3.3/ unpack and place the poker-eval-138 directory in c:\ +3.3.1/ rename to poker-eval + +Important: the build will fail with bizarre missing header files if the project is placed + in a directory containing a space character - you have been warned! + +4. Update source file +--------------------- + +4.1/ dos> write c:/pypoker-eval/pypokereval.c + +change this: + +#define VERSION_NAME(W) W##2_4 +#define PYTHON_VERSION "2_4" + +to be this: + +#define VERSION_NAME(W) W##2_6 +#define PYTHON_VERSION "2_6" + +4.2/ save and exit + +5. Build pre-preparation +------------------------ + +(Here we are converting the two project definition files to 2008) + +5.1 navigate to directory c:/poker-eval +5.1.1 double click poker-eval.vcproj +5.1.2 Visual studio will launch and make a conversion - accept all defaults +5.1.3 exit and save + +5.2 navigate to directory c:/pypoker-eval +5.2.1 double click pypoker-eval.vcproj +5.2.2 Visual studio will launch and make a conversion - accept all defaults +5.2.3 exit + +6. build preparation +-------------------- + +6.2 navigate to directory c:/pypoker-eval +6.2.1 double click pypoker-eval.vcproj - visual studio should launch + +6.2.3 Select Build...configuration manager... + Select "active solution configuration" to "Release" + (The configuration for both projects will change to "Release") + +6.2.3 Close the configuration manager + +6.2.4 In the solution explorer window, hilight pythonpoker-eval / right mouse / properties... + +6.2.5 In the pythonpoker-eval properties dialog, + +change references to "python24" to "python26" in the following: + + = C/C++/Additional Include Directories/ + = linker/general/Additional library directories + = linker/input/Additional Dependencies + +Change the following + + = c/c++/general/Debug information format - set to disabled + = linker/generate debug info - set to No + = linker/debugging/Generate debug info - set to No + +6.2.6 Apply all changes to the properties dialog and close + +6.3 Exit from visual studio + +7. Build poker eval +------------------- + +7.1 navigate to directory c:/poker-eval +7.1.1 double click poker-eval.vcproj +7.1.2 Visual studio will launch + +7.2 In the solution explorer window, hilight poker-eval / right mouse / build + +7.3 There should be no errors (but quite a lot of warnings) + +7.4 Exit from visual studio + + +8. Build pypoker eval +--------------------- + +8.1 navigate to directory c:/pypoker-eval +8.1.1 double click pypoker-eval.vcproj +8.1.2 Visual studio will launch + +8.2 In the solution explorer window, hilight pythonpoker-eval / right mouse / build + +8.3 There should be no errors (but a few warnings) + +8.4 Exit from visual studio + +9. packaging +------------ + +9.1 Navigate to c:/pypoker-eval/release +9.2 the output file is pypokereval.dll +9.3 rename this file to _pypoker_2_6.pyd + +9.4 create a zip file containing _pypoker_2_6.pyd, test.py and pokereval.py, +include the version (138) and win32 in the filename + + + + From 2302a4147e8ea00b22a514ff3a358e2ab64c9f7e Mon Sep 17 00:00:00 2001 From: gimick <bbtgaf@googlemail.com> Date: Fri, 3 Dec 2010 19:38:09 +0000 Subject: [PATCH 069/162] pokereval: update walkthrough --- packaging/windows/pypoker138walkthrough.txt | 45 ++++++++++++++++----- 1 file changed, 36 insertions(+), 9 deletions(-) diff --git a/packaging/windows/pypoker138walkthrough.txt b/packaging/windows/pypoker138walkthrough.txt index 0986f739..cff7009a 100644 --- a/packaging/windows/pypoker138walkthrough.txt +++ b/packaging/windows/pypoker138walkthrough.txt @@ -1,13 +1,20 @@ -pypokereval build stepbystep +pypokereval build for windows stepbystep guide +---------------------------------------------- -These build instructions are for Python2.6 and Visual Studio C++ 2008 +Created by Gimick on 3rd December 2010 + +This walkthrough is derived with the assistance of EricBlade and the build notes +supplied by Loic Dachary <loic@dachary.org> http://dachary.org/ + +Content is available under the the GNU Affero General Public License version 3 -We are building against the 2008 runtime because Python 2.6 - has the same dependency (msvcr90.dll version 9.0.21022.8) 0. Build environ ---------------- +We are building against the 2008 runtime because Python 2.6 + has the same dependency (msvcr90.dll version 9.0.21022.8) + Using winXPhome 32 bit 1 Visual studio @@ -99,7 +106,6 @@ change references to "python24" to "python26" in the following: Change the following - = c/c++/general/Debug information format - set to disabled = linker/generate debug info - set to No = linker/debugging/Generate debug info - set to No @@ -116,7 +122,7 @@ Change the following 7.2 In the solution explorer window, hilight poker-eval / right mouse / build -7.3 There should be no errors (but quite a lot of warnings) +7.3 There should be no errors 7.4 Exit from visual studio @@ -139,10 +145,31 @@ Change the following 9.1 Navigate to c:/pypoker-eval/release 9.2 the output file is pypokereval.dll -9.3 rename this file to _pypoker_2_6.pyd +9.3 rename this file to _pokereval_2_6.pyd + +9.4 create a zip file containing : + +_pokereval_2_6.pyd from releases +test.py from pypoker-eval-138.0 +pokereval.py from pypoker-eval-138.0 +poker-eval.vcproj from c:\poker-eval +pypoker-eval.vcproj from c:\pypoker-eval + +Remember to include the version (138), python 265 and win32 in the package filename + +10. Installation and Testing +---------------------------- + +Python 2.6.5 must be installed + +10.1 Extract this package to directory +10.2 Change directory to the directory in 10.1 +10.3 execute dos> c:\Python26\python.exe test.py +10.4 hand-output should scroll down the screen +10.5 start the python interpreter +10.6 >>> import pokereval +10.7 No errors should be seen -9.4 create a zip file containing _pypoker_2_6.pyd, test.py and pokereval.py, -include the version (138) and win32 in the filename From a4e708507f8f3c85f54f79478bb8ff5123333f45 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Sat, 4 Dec 2010 03:43:06 +0800 Subject: [PATCH 070/162] Stars: More useful exception message of currency match fails --- pyfpdb/PokerStarsToFpdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index 3817ae3f..def8b9c8 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -264,7 +264,7 @@ class PokerStars(HandHistoryConverter): hand.buyinCurrency="PSFP" else: #FIXME: handle other currencies, FPP, play money - raise FpdbParseError(_("failed to detect currency")) + raise FpdbParseError(_("Failed to detect currency: '%s'" % info[key])) info['BIAMT'] = info['BIAMT'].strip(u'$€FPP') From e032b32ea7b86ce8f55f84bd4feb3ea48d7bee9a Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Sat, 4 Dec 2010 03:47:23 +0800 Subject: [PATCH 071/162] Regression: Repair (?) Party hh that seemed to be missing 2 lines --- .../Flop/NLHE-USD-0.01-0.02-20100712.emailedHistory.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-20100712.emailedHistory.txt b/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-20100712.emailedHistory.txt index 2267fa45..46418c1a 100644 --- a/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-20100712.emailedHistory.txt +++ b/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-20100712.emailedHistory.txt @@ -1,3 +1,6 @@ +Game #9423586142 starts. + +#Game No : 9423586142 ***** Hand History For Game 9423586142 ***** 0.01/0.02 Texas Hold'em Game Table (NL) - Mon Jul 12 13:38:32 EDT 2010 Table 20BB Min Speed #1775757 (Real Money) -- Seat 1 is the button From eb4b7b738c3f4e0192486199a258b22c8669741c Mon Sep 17 00:00:00 2001 From: gimick <bbtgaf@googlemail.com> Date: Fri, 3 Dec 2010 19:59:57 +0000 Subject: [PATCH 072/162] pypokereval: tweaks to walkthrough --- packaging/windows/pypoker138walkthrough.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/packaging/windows/pypoker138walkthrough.txt b/packaging/windows/pypoker138walkthrough.txt index cff7009a..6a4ab8f7 100644 --- a/packaging/windows/pypoker138walkthrough.txt +++ b/packaging/windows/pypoker138walkthrough.txt @@ -154,6 +154,7 @@ test.py from pypoker-eval-138.0 pokereval.py from pypoker-eval-138.0 poker-eval.vcproj from c:\poker-eval pypoker-eval.vcproj from c:\pypoker-eval +pypokereval.c from c:\pypoker-eval Remember to include the version (138), python 265 and win32 in the package filename From b4c2614f25ca81b1f8af38bf873dc4eccbb1ac90 Mon Sep 17 00:00:00 2001 From: lastpoet <maxime@grandchamp.net> Date: Fri, 12 Nov 2010 11:17:28 +0000 Subject: [PATCH 073/162] remove irrelevant comments from tooltips --- pyfpdb/GuiRingPlayerStats.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pyfpdb/GuiRingPlayerStats.py b/pyfpdb/GuiRingPlayerStats.py index 0d40fd59..39ea97b4 100644 --- a/pyfpdb/GuiRingPlayerStats.py +++ b/pyfpdb/GuiRingPlayerStats.py @@ -75,10 +75,6 @@ onlinehelp = {'Game':_('Type of Game'), class DemoTips(TreeViewTooltips): def __init__(self, customer_column): - # customer_column is an instance of gtk.TreeViewColumn and - # is being used in the gtk.TreeView to show customer names. - # self.cust_col = customer_column - # call base class init TreeViewTooltips.__init__(self) @@ -91,11 +87,6 @@ class DemoTips(TreeViewTooltips): return (display) def location(self, x, y, w, h): - # rename me to "location" so I override the base class - # method. This will demonstrate being able to change - # where the tooltip window popups, relative to the - # pointer. - # this will place the tooltip above and to the right return x + 30, y - (h + 10) From 96bf9856973e681a0eb4176cfb6654178eaeb95e Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Sat, 4 Dec 2010 18:27:03 +0800 Subject: [PATCH 074/162] GuiReplayer: Added by lastpoet <maxime@grandchamp.net> 1st Draft to get it in for comments --- pyfpdb/GuiReplayer.py | 274 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 274 insertions(+) create mode 100644 pyfpdb/GuiReplayer.py diff --git a/pyfpdb/GuiReplayer.py b/pyfpdb/GuiReplayer.py new file mode 100644 index 00000000..4b95faf2 --- /dev/null +++ b/pyfpdb/GuiReplayer.py @@ -0,0 +1,274 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +#Copyright 2010 Maxime Grandchamp +#This program is free software: you can redistribute it and/or modify +#it under the terms of the GNU Affero General Public License as published by +#the Free Software Foundation, version 3 of the License. +# +#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 Affero General Public License +#along with this program. If not, see <http://www.gnu.org/licenses/>. +#In the "official" distribution you can find the license in agpl-3.0.txt. + +import L10n +_ = L10n.get_translation() + + +from Hand import * +import Configuration +import Database +import SQL +import fpdb_import +import Filters +import pygtk +pygtk.require('2.0') +import gtk +import math +import gobject + + +class GuiReplayer: + def __init__(self, config, querylist, mainwin, debug=True): + self.debug = debug + self.conf = config + self.main_window = mainwin + self.sql = querylist + + self.db = Database.Database(self.conf, sql=self.sql) + + filters_display = { "Heroes" : True, + "Sites" : True, + "Games" : True, + "Limits" : True, + "LimitSep" : True, + "LimitType" : True, + "Type" : True, + "Seats" : True, + "SeatSep" : True, + "Dates" : True, + "Groups" : True, + "GroupsAll" : True, + "Button1" : True, + "Button2" : True + } + + + self.filters = Filters.Filters(self.db, self.conf, self.sql, display = filters_display) + #self.filters.registerButton1Name(_("Import Hand")) + #self.filters.registerButton1Callback(self.importhand) + #self.filters.registerButton2Name(_("temp")) + #self.filters.registerButton2Callback(self.temp()) + + # hierarchy: self.mainHBox / self.hpane / self.replayBox / self.area + + self.mainHBox = gtk.HBox(False, 0) + self.mainHBox.show() + + self.leftPanelBox = self.filters.get_vbox() + + self.hpane = gtk.HPaned() + self.hpane.pack1(self.leftPanelBox) + self.mainHBox.add(self.hpane) + + self.replayBox = gtk.VBox(False, 0) + self.replayBox.show() + + self.hpane.pack2(self.replayBox) + self.hpane.show() + + self.area=gtk.DrawingArea() + self.pangolayout = self.area.create_pango_layout("") + self.area.connect("expose-event", self.area_expose) + self.style = self.area.get_style() + self.gc = self.style.fg_gc[gtk.STATE_NORMAL] + self.area.show() + + self.replayBox.pack_start(self.area) + + self.MyHand = self.importhand() + + self.maxseats=self.MyHand.maxseats + + if self.MyHand.gametype['currency']=="USD": #TODO: check if there are others .. + self.currency="$" + elif self.MyHand.gametype['currency']=="EUR": + self.currency="€" + + + self.table={} #create table with positions, player names, status (live/folded), stacks and chips on table + for i in range(0,self.maxseats): # radius: 200, center: 250,250 + x= int (round(250+200*math.cos(2*i*math.pi/self.maxseats))) + y= int (round(250+200*math.sin(2*i*math.pi/self.maxseats))) + try: + self.table[i]={"name":self.MyHand.players[i][1],"stack":Decimal(self.MyHand.players[i][2]),"x":x,"y":y,"chips":0,"status":"live"} #save coordinates of each player + try: + self.table[i]['holecards']=self.MyHand.holecards["PREFLOP"][self.MyHand.players[i][1]][1]+' '+self.MyHand.holecards["PREFLOP"][self.MyHand.players[i][1]][2] + print "holecards",self.table[i]['holecards'] + except: + self.table[i]['holecards']='' + except IndexError: #if seat is empty + print "seat",i+1,"out of",self.maxseats,"empty" + + self.actions=[] #create list with all actions + + if isinstance(self.MyHand, HoldemOmahaHand): + if self.MyHand.gametype['category'] == 'holdem': + self.play_holdem() + + self.action_number=0 + self.action_level=0 + self.pot=0 + gobject.timeout_add(1000,self.draw_action) + + + def area_expose(self, area, event): + self.style = self.area.get_style() + self.gc = self.style.fg_gc[gtk.STATE_NORMAL] + + playerid='999' #makes sure we have an error if player is not recognised + for i in range(0,len(self.table)): #surely there must be a better way to find the player id in the table... + if self.table[i]['name']==self.actions[self.action_number][1]: + playerid=i + + if self.actions[self.action_number][2]=="folds": + self.table[playerid]["status"]="folded" + + if self.actions[self.action_number][3]: + self.table[playerid]["stack"] -= Decimal(self.actions[self.action_number][3]) #decreases stack if player bets + self.pot += Decimal(self.actions[self.action_number][3]) #increase pot + self.table[playerid]["chips"] += Decimal(self.actions[self.action_number][3]) #increase player's chips on table + + + cm = self.gc.get_colormap() #create colormap toi be able to play with colours + + color = cm.alloc_color("black") #defaults to black + self.gc.set_foreground(color) + + self.area.window.draw_arc(self.gc, 0, 125, 125, 300, 300, 0, 360*64) #table + + for i in self.table: + if self.table[i]["status"]=="folded": + color = cm.alloc_color("grey") #player has folded => greyed out + self.gc.set_foreground(color) + else: + color = cm.alloc_color("black") #player is live + self.gc.set_foreground(color) + self.pangolayout.set_text(self.table[i]["name"]+self.table[i]["holecards"]) #player names + holecards + self.area.window.draw_layout(self.gc, self.table[i]["x"],self.table[i]["y"], self.pangolayout) + self.pangolayout.set_text('$'+str(self.table[i]["stack"])) #player stacks + self.area.window.draw_layout(self.gc, self.table[i]["x"]+10,self.table[i]["y"]+20, self.pangolayout) + + color = cm.alloc_color("green") + self.gc.set_foreground(color) + + self.pangolayout.set_text(self.currency+str(self.pot)) #displays pot + self.area.window.draw_layout(self.gc,270,270, self.pangolayout) + + if self.actions[self.action_number][0]>1: #displays flop + self.pangolayout.set_text(self.MyHand.board['FLOP'][0]+" "+self.MyHand.board['FLOP'][1]+" "+self.MyHand.board['FLOP'][2]) + self.area.window.draw_layout(self.gc,210,240, self.pangolayout) + if self.actions[self.action_number][0]>2: #displays turn + self.pangolayout.set_text(self.MyHand.board['TURN'][0]) + self.area.window.draw_layout(self.gc,270,240, self.pangolayout) + if self.actions[self.action_number][0]>3: #displays river + self.pangolayout.set_text(self.MyHand.board['RIVER'][0]) + self.area.window.draw_layout(self.gc,290,240, self.pangolayout) + + color = cm.alloc_color("red") #highlights the action + self.gc.set_foreground(color) + + self.pangolayout.set_text(self.actions[self.action_number][2]) #displays action + self.area.window.draw_layout(self.gc, self.table[playerid]["x"]+10,self.table[playerid]["y"]+35, self.pangolayout) + if self.actions[self.action_number][3]: #displays amount + self.pangolayout.set_text(self.currency+self.actions[self.action_number][3]) + self.area.window.draw_layout(self.gc, self.table[playerid]["x"]+10,self.table[playerid]["y"]+55, self.pangolayout) + + color = cm.alloc_color("black") #we don't want to draw the filters and others in red + self.gc.set_foreground(color) + + def play_holdem(self): + actions=('BLINDSANTES','PREFLOP','FLOP','TURN','RIVER') + for action in actions: + for i in range(0,len(self.MyHand.actions[action])): + player=self.MyHand.actions[action][i][0] + act=self.MyHand.actions[action][i][1] + try: + amount=str(self.MyHand.actions[action][i][2]) + except: + amount='' #no amount + self.actions.append([actions.index(action),player,act,amount]) #create table with all actions + + + def draw_action(self): + if self.action_number==len(self.actions)-1: #no more actions, we exit the loop + return False + + if self.actions[self.action_number][0]!=self.action_level: #have we changed street ? + self.action_level=self.actions[self.action_number][0] #record the new street + if self.action_level>1: #we don't want to refresh if simply moving from antes/blinds to preflop action + alloc = self.area.get_allocation() + rect = gtk.gdk.Rectangle(0, 0, alloc.width, alloc.height) + self.area.window.invalidate_rect(rect, True) #make sure we refresh the whole screen + + self.action_number+=1 + if self.area.window: + playerid='999' #makes sure we have an error if player is not recognised + for i in range(0,len(self.table)): #surely there must be a better way to find the player id in the table... + if self.table[i]['name']==self.actions[self.action_number][1]: + playerid=i + rect = gtk.gdk.Rectangle(self.table[playerid]["x"],self.table[playerid]["y"],100,100) + self.area.window.invalidate_rect(rect, True) #refresh player area of the screen + rect = gtk.gdk.Rectangle(270,270,100,50) + self.area.window.invalidate_rect(rect, True) #refresh pot area + self.area.window.process_updates(True) + print "draw action",self.action_number,self.actions[self.action_number][1],self.actions[self.action_number][2],self.actions[self.action_number][3] + return True + + + def get_vbox(self): + """returns the vbox of this thread""" + return self.mainHBox + + def importhand(self, handnumber=1): + """Temporary function that grabs a Hand object from a specified file. Obviously this will + be replaced by a function to select a hand from the db in the not so distant future. + This code has been shamelessly stolen from Carl + """ + config = Configuration.Config(file = "HUD_config.test.xml") + db = Database.Database(config) + sql = SQL.Sql(db_server = 'sqlite') + settings = {} + settings.update(config.get_db_parameters()) + settings.update(config.get_import_parameters()) + settings.update(config.get_default_paths()) + #db.recreate_tables() + importer = fpdb_import.Importer(False, settings, config, None) + importer.setDropIndexes("don't drop") + importer.setFailOnError(True) + importer.setThreads(-1) + importer.setCallHud(False) + importer.setFakeCacheHHC(True) + + #Get a simple regression file with a few hands of Hold'em + filename="regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt" + site="PokerStars" + + + importer.addBulkImportImportFileOrDir(filename, site=site) + (stored, dups, partial, errs, ttime) = importer.runImport() + + + hhc = importer.getCachedHHC() + handlist = hhc.getProcessedHands() + + return handlist[0] + + + def temp(self): + pass + From c61598b7aa77c81899adde9a797807d7a4b782a0 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Sat, 4 Dec 2010 19:10:47 +0800 Subject: [PATCH 075/162] fpdb: Add menu calls for Replayer --- pyfpdb/fpdb.pyw | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 3660dd57..40f89a01 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -116,6 +116,7 @@ import GuiAutoImport import GuiGraphViewer import GuiTourneyGraphViewer import GuiSessionViewer +import GuiReplayer import GuiStove import SQL import Database @@ -779,6 +780,7 @@ class fpdb: <menuitem action="tourneyviewer"/> <menuitem action="posnstats"/> <menuitem action="sessionstats"/> + <menuitem action="replayer"/> <menuitem action="stove"/> </menu> <menu action="database"> @@ -822,6 +824,7 @@ class fpdb: ('tourneyviewer', None, _('Tourney _Viewer'), None, 'Tourney Viewer)', self.tab_tourney_viewer_stats), ('posnstats', None, _('P_ositional Stats (tabulated view, not on sqlite)'), _('<control>O'), 'Positional Stats (tabulated view, not on sqlite)', self.tab_positional_stats), ('sessionstats', None, _('Session Stats'), None, 'Session Stats', self.tab_session_stats), + ('replayer', None, _('Hand _Replayer'), None, 'Hand Replayer', self.tab_replayer), ('database', None, _('_Database')), ('maintaindbs', None, _('_Maintain Databases'), None, 'Maintain Databases', self.dia_maintain_dbs), ('createtabs', None, _('Create or Recreate _Tables'), None, 'Create or Recreate Tables ', self.dia_recreate_tables), @@ -1046,6 +1049,12 @@ class fpdb: ps_tab=new_ps_thread.get_vbox() self.add_and_display_tab(ps_tab, _("Session Stats")) + def tab_replayer(self, widget, data=None): + new_ps_thread = GuiReplayer.GuiReplayer(self.config, self.sql, self.window) + self.threads.append(new_ps_thread) + ps_tab=new_ps_thread.get_vbox() + self.add_and_display_tab(ps_tab, _("Hand Replayer")) + def tab_main_help(self, widget, data=None): """Displays a tab with the main fpdb help screen""" mh_tab=gtk.Label(_("""Fpdb needs translators! From dd542db59da8fc675781a1723ec42701c2f7d3da Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Sat, 4 Dec 2010 11:22:02 -0500 Subject: [PATCH 076/162] Update Tables_Demo. Found/fixed bug in XTables. --- pyfpdb/Tables_Demo.py | 5 +++-- pyfpdb/XTables.py | 10 +++++++--- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/pyfpdb/Tables_Demo.py b/pyfpdb/Tables_Demo.py index f00c201e..86e5f1f3 100644 --- a/pyfpdb/Tables_Demo.py +++ b/pyfpdb/Tables_Demo.py @@ -30,6 +30,7 @@ import sys import os # pyGTK modules +import pygtk import gtk import gobject @@ -60,7 +61,7 @@ if __name__=="__main__": self.main_window.set_title(_("Fake HUD Main Window")) self.main_window.move(table.x + dx, table.y + dy) self.main_window.show_all() - table.topify(self) + table.topify(self.main_window) # These are the currently defined signals. Do this in the HUD. self.main_window.connect("client_moved", self.client_moved) @@ -103,7 +104,7 @@ if __name__=="__main__": table_kwargs = dict(table_name = table_name) table = Tables.Table(config, "Full Tilt Poker", **table_kwargs) - table.gdk_handle = gtk.gdk.window_foreign_new(table.number) + table.gdkhandle = gtk.gdk.window_foreign_new(table.number) print table fake = fake_hud(table) diff --git a/pyfpdb/XTables.py b/pyfpdb/XTables.py index b082b8b2..4a5af947 100644 --- a/pyfpdb/XTables.py +++ b/pyfpdb/XTables.py @@ -98,7 +98,11 @@ class Table(Table_Window): except AttributeError: return None + def topify(self, window): +# The idea here is to call set_transient_for on the HUD window, with the table window +# as the argument. This should keep the HUD window on top of the table window, as if +# the hud window was a dialog belonging to the table. - def topify(self, hud): - hud.main_window.gdkhandle = gtk.gdk.window_foreign_new(hud.main_window.window.xid) - hud.main_window.gdkhandle.set_transient_for(self.gdk_handle) +# This is the gdkhandle for the HUD window + gdkwindow = gtk.gdk.window_foreign_new(window.window.xid) + gdkwindow.set_transient_for(self.gdkhandle) \ No newline at end of file From d47d33587faeedc6792b44d9d17821108dbd4ef5 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Sat, 4 Dec 2010 15:29:23 -0500 Subject: [PATCH 077/162] Fix problem with multiple huds in tourneys at some sites. --- pyfpdb/HUD_main.pyw | 70 ++++++++++++++++++++++----------------------- 1 file changed, 35 insertions(+), 35 deletions(-) mode change 100755 => 100644 pyfpdb/HUD_main.pyw diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw old mode 100755 new mode 100644 index 22c6a368..47cdfae0 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -75,16 +75,16 @@ class HUD_main(object): def __init__(self, db_name='fpdb'): self.db_name = db_name self.config = c - log.info(_("HUD_main starting: using db name = %s") % (db_name)) + log.info("HUD_main starting: using db name = %s" % (db_name)) try: if not options.errorsToConsole: fileName = os.path.join(self.config.dir_log, 'HUD-errors.txt') - log.info(_("Note: error output is being diverted to:") + fileName) - log.info(_("Any major error will be reported there _only_.")) + log.info("Note: error output is being diverted to:" + fileName) + log.info("Any major error will be reported there _only_.") errorFile = open(fileName, 'w', 0) sys.stderr = errorFile - sys.stderr.write(_("HUD_main: starting ...\n")) + sys.stderr.write("HUD_main: starting ...\n") self.hud_dict = {} self.hud_params = self.config.get_hud_ui_parameters() @@ -102,10 +102,10 @@ class HUD_main(object): self.main_window.connect("table_changed", self.table_changed) self.main_window.connect("destroy", self.destroy) self.vb = gtk.VBox() - self.label = gtk.Label(_('Closing this window will exit from the HUD.')) + self.label = gtk.Label('Closing this window will exit from the HUD.') self.vb.add(self.label) self.main_window.add(self.vb) - self.main_window.set_title(_("HUD Main Window")) + self.main_window.set_title("HUD Main Window") cards = os.path.join(os.getcwd(), '..','gfx','fpdb-cards.png') if os.path.exists(cards): self.main_window.set_icon_from_file(cards) @@ -117,7 +117,7 @@ class HUD_main(object): gobject.timeout_add(100, self.check_tables) except: - log.exception(_("Error initializing main_window")) + log.exception("Error initializing main_window") gtk.main_quit() # we're hosed, just terminate def client_moved(self, widget, hud): @@ -130,13 +130,13 @@ class HUD_main(object): self.kill_hud(None, hud.table.key) def game_changed(self, widget, hud): - print _("hud_main: Game changed.") + print "hud_main: Game changed." def table_changed(self, widget, hud): self.kill_hud(None, hud.table.key) def destroy(self, *args): # call back for terminating the main eventloop - log.info(_("Terminating normally.")) + log.info("Terminating normally.") gtk.main_quit() def kill_hud(self, event, table): @@ -147,25 +147,25 @@ class HUD_main(object): self.hud_dict[hud].table.check_table(self.hud_dict[hud]) return True - def create_HUD(self, new_hand_id, table, table_name, max, poker_game, type, stat_dict, cards): + def create_HUD(self, new_hand_id, table, temp_key, max, poker_game, type, stat_dict, cards): """type is "ring" or "tour" used to set hud_params""" - self.hud_dict[table.key] = Hud.Hud(self, table, max, poker_game, self.config, self.db_connection) - self.hud_dict[table.key].table_name = table_name - self.hud_dict[table.key].stat_dict = stat_dict - self.hud_dict[table.key].cards = cards - table.hud = self.hud_dict[table.key] + self.hud_dict[temp_key] = Hud.Hud(self, table, max, poker_game, self.config, self.db_connection) + self.hud_dict[temp_key].table_name = temp_key + self.hud_dict[temp_key].stat_dict = stat_dict + self.hud_dict[temp_key].cards = cards + table.hud = self.hud_dict[temp_key] # set agg_bb_mult so that aggregate_tour and aggregate_ring can be ignored, # agg_bb_mult == 1 means no aggregation after these if statements: if type == "tour" and self.hud_params['aggregate_tour'] == False: - self.hud_dict[table.key].hud_params['agg_bb_mult'] = 1 + self.hud_dict[temp_key].hud_params['agg_bb_mult'] = 1 elif type == "ring" and self.hud_params['aggregate_ring'] == False: - self.hud_dict[table.key].hud_params['agg_bb_mult'] = 1 + self.hud_dict[temp_key].hud_params['agg_bb_mult'] = 1 if type == "tour" and self.hud_params['h_aggregate_tour'] == False: - self.hud_dict[table.key].hud_params['h_agg_bb_mult'] = 1 + self.hud_dict[temp_key].hud_params['h_agg_bb_mult'] = 1 elif type == "ring" and self.hud_params['h_aggregate_ring'] == False: - self.hud_dict[table.key].hud_params['h_agg_bb_mult'] = 1 + self.hud_dict[temp_key].hud_params['h_agg_bb_mult'] = 1 # sqlcoder: I forget why these are set to true (aren't they ignored from now on?) # but I think it's needed: self.hud_params['aggregate_ring'] = True @@ -174,8 +174,8 @@ class HUD_main(object): self.hud_params['aggregate_tour'] = True self.hud_params['h_aggregate_tour'] = True - [aw.update_data(new_hand_id, self.db_connection) for aw in self.hud_dict[table.key].aux_windows] - gobject.idle_add(idle_create, self, new_hand_id, table, table_name, max, poker_game, type, stat_dict, cards) + [aw.update_data(new_hand_id, self.db_connection) for aw in self.hud_dict[temp_key].aux_windows] + gobject.idle_add(idle_create, self, new_hand_id, table, temp_key, max, poker_game, type, stat_dict, cards) def update_HUD(self, new_hand_id, table_name, config): """Update a HUD gui from inside the non-gui read_stdin thread.""" @@ -197,7 +197,7 @@ class HUD_main(object): while 1: # wait for a new hand number on stdin new_hand_id = sys.stdin.readline() new_hand_id = string.rstrip(new_hand_id) - log.debug(_("Received hand no %s") % new_hand_id) + log.debug("Received hand no %s" % new_hand_id) if new_hand_id == "": # blank line means quit self.destroy() break # this thread is not always killed immediately with gtk.main_quit() @@ -221,12 +221,12 @@ class HUD_main(object): # get basic info about the new hand from the db # if there is a db error, complain, skip hand, and proceed - log.info(_("HUD_main.read_stdin: hand processing starting ...")) + log.info("HUD_main.read_stdin: hand processing starting ...") 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: - log.exception(_("db error: skipping %s" % new_hand_id)) + log.exception("db error: skipping %s" % new_hand_id) continue if type == "tour": # hand is from a tournament @@ -245,8 +245,8 @@ class HUD_main(object): try: self.hud_dict[temp_key].stat_dict = stat_dict except KeyError: # HUD instance has been killed off, key is stale - log.error(_('hud_dict[%s] was not found\n') % temp_key) - log.error(_('will not send hand\n')) + log.error('hud_dict[%s] was not found\n' % temp_key) + log.error('will not send hand\n') # Unlocks table, copied from end of function self.db_connection.connection.rollback() return @@ -268,7 +268,7 @@ class HUD_main(object): # If no client window is found on the screen, complain and continue if type == "tour": table_name = "%s %s" % (tour_number, tab_number) - log.error(_("HUD create: table name %s not found, skipping.") % table_name) + log.error("HUD create: table name %s not found, skipping." % table_name) else: tablewindow.max = max tablewindow.site = site_name @@ -276,7 +276,7 @@ class HUD_main(object): if hasattr(tablewindow, 'number'): self.create_HUD(new_hand_id, tablewindow, temp_key, max, poker_game, type, stat_dict, cards) else: - log.error(_('Table "%s" no longer exists\n') % table_name) + log.error('Table "%s" no longer exists\n' % table_name) if type == "tour": self.hud_dict[temp_key].table.check_table_no(self.hud_dict[temp_key]) @@ -321,23 +321,23 @@ def idle_kill(hud_main, table): finally: gtk.gdk.threads_leave() -def idle_create(hud_main, new_hand_id, table, table_name, max, poker_game, type, stat_dict, cards): +def idle_create(hud_main, new_hand_id, table, temp_key, max, poker_game, type, stat_dict, cards): gtk.gdk.threads_enter() try: table.gdkhandle = gtk.gdk.window_foreign_new(table.number) - newlabel = gtk.Label("%s - %s" % (table.site, table_name)) + newlabel = gtk.Label("%s - %s" % (table.site, temp_key)) hud_main.vb.add(newlabel) newlabel.show() hud_main.main_window.resize_children() - hud_main.hud_dict[table.key].tablehudlabel = newlabel - hud_main.hud_dict[table.key].create(new_hand_id, hud_main.config, stat_dict, cards) - for m in hud_main.hud_dict[table.key].aux_windows: + hud_main.hud_dict[temp_key].tablehudlabel = newlabel + hud_main.hud_dict[temp_key].create(new_hand_id, hud_main.config, stat_dict, cards) + for m in hud_main.hud_dict[temp_key].aux_windows: m.create() m.update_gui(new_hand_id) - hud_main.hud_dict[table.key].update(new_hand_id, hud_main.config) - hud_main.hud_dict[table.key].reposition_windows() + hud_main.hud_dict[temp_key].update(new_hand_id, hud_main.config) + hud_main.hud_dict[temp_key].reposition_windows() except: log.exception("Error creating HUD for hand %s." % new_hand_id) finally: From 6bfb7df105042639668e5db03015ec27035499e9 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Sat, 4 Dec 2010 15:31:34 -0500 Subject: [PATCH 078/162] Fix file permissions. --- pyfpdb/HUD_main.pyw | 0 pyfpdb/Tables_Demo.py | 0 2 files changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 pyfpdb/HUD_main.pyw mode change 100644 => 100755 pyfpdb/Tables_Demo.py diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw old mode 100644 new mode 100755 diff --git a/pyfpdb/Tables_Demo.py b/pyfpdb/Tables_Demo.py old mode 100644 new mode 100755 From c2cda3bf87d9827e6764b3ee9ae27edd3e8936d5 Mon Sep 17 00:00:00 2001 From: Chaz <Chaz@192.168.1.103> Date: Sat, 4 Dec 2010 17:33:57 -0500 Subject: [PATCH 079/162] Added sessionTimeout Import field to Configuration.py and the Hud_config files. Default set to 30 minutes to start a new session --- pyfpdb/Configuration.py | 6 +++++- pyfpdb/HUD_config.test.xml | 6 +++--- pyfpdb/HUD_config.xml.example | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/pyfpdb/Configuration.py b/pyfpdb/Configuration.py index ed12f7a4..a0ad4bad 100644 --- a/pyfpdb/Configuration.py +++ b/pyfpdb/Configuration.py @@ -480,12 +480,13 @@ class Import: self.hhBulkPath = node.getAttribute("hhBulkPath") self.saveActions = string_to_bool(node.getAttribute("saveActions"), default=False) self.cacheSessions = string_to_bool(node.getAttribute("cacheSessions"), default=False) + self.sessionTimeout = string_to_bool(node.getAttribute("sessionTimeout"), default=30) self.fastStoreHudCache = string_to_bool(node.getAttribute("fastStoreHudCache"), default=False) self.saveStarsHH = string_to_bool(node.getAttribute("saveStarsHH"), default=False) def __str__(self): return " interval = %s\n callFpdbHud = %s\n hhArchiveBase = %s\n saveActions = %s\n fastStoreHudCache = %s\n" \ - % (self.interval, self.callFpdbHud, self.hhArchiveBase, self.saveActions, self.cacheSessions, self.fastStoreHudCache) + % (self.interval, self.callFpdbHud, self.hhArchiveBase, self.saveActions, self.cacheSessions, self.sessionTimeout, self.fastStoreHudCache) class HudUI: def __init__(self, node): @@ -1263,6 +1264,9 @@ class Config: try: imp['cacheSessions'] = self.imp.cacheSessions except: imp['cacheSessions'] = False + + try: imp['sessionTimeout'] = self.imp.sessionTimeout + except: imp['sessionTimeout'] = 30 try: imp['saveStarsHH'] = self.imp.saveStarsHH except: imp['saveStarsHH'] = False diff --git a/pyfpdb/HUD_config.test.xml b/pyfpdb/HUD_config.test.xml index f62a13bf..cb835aff 100644 --- a/pyfpdb/HUD_config.test.xml +++ b/pyfpdb/HUD_config.test.xml @@ -2,7 +2,7 @@ <FreePokerToolsConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="FreePokerToolsConfig.xsd"> - <import callFpdbHud = "True" interval = "10" fastStoreHudCache="False" hhArchiveBase="~/.fpdb/HandHistories/" saveActions="True" cacheSessions="False"></import> + <import callFpdbHud = "True" interval = "10" fastStoreHudCache="False" hhArchiveBase="~/.fpdb/HandHistories/" saveActions="True" cacheSessions="False" sessionTimeout="30"></import> <!-- These values determine what stats are displayed in the HUD @@ -104,7 +104,7 @@ Left-Drag to Move" <site enabled="True" site_name="PokerStars" table_finder="PokerStars.exe" - screen_name="YOUR SCREEN NAME HERE" + screen_name="s0rrow" site_path="C:/Program Files/PokerStars/" HH_path="C:/Program Files/PokerStars/HandHistory/YOUR SCREEN NAME HERE/" decoder="pokerstars_decode_table" @@ -165,7 +165,7 @@ Left-Drag to Move" <site enabled="True" site_name="Full Tilt Poker" table_finder="FullTiltPoker" - screen_name="YOUR SCREEN NAME HERE" + screen_name="Sorrowful" site_path="C:/Program Files/Full Tilt Poker/" HH_path="C:/Program Files/Full Tilt Poker/HandHistory/YOUR SCREEN NAME HERE/" decoder="fulltilt_decode_table" diff --git a/pyfpdb/HUD_config.xml.example b/pyfpdb/HUD_config.xml.example index 423d577a..7bb30e0f 100644 --- a/pyfpdb/HUD_config.xml.example +++ b/pyfpdb/HUD_config.xml.example @@ -12,7 +12,7 @@ config_difficulty="expert" /> - <import callFpdbHud = "True" interval = "10" fastStoreHudCache="False" hhArchiveBase="~/.fpdb/HandHistories/" saveActions="True" cacheSessions="False"></import> + <import callFpdbHud = "True" interval = "10" fastStoreHudCache="False" hhArchiveBase="~/.fpdb/HandHistories/" saveActions="True" cacheSessions="False" sessionTimeout="30"></import> <gui_cash_stats> <col col_name="game" disp_all="True" disp_posn="True" col_title="Game" xalignment="0.0" field_format="%s" field_type="str" /> From 0c46965d987ab682f1e7efbbfbb6ad1d68d8c09e Mon Sep 17 00:00:00 2001 From: Chaz <chaz@pokeit.co> Date: Sat, 4 Dec 2010 17:40:48 -0500 Subject: [PATCH 080/162] Finished up code for creating and updating SessionsCache. Table includes fields for sessionStart, sessionEnd, ring hands, tournament hands, ring totalProfit, and ring bigBets won during each session. bigBets field is a python float stored as a REAL in the database (I am open to alternative suggestions). Also, storeSessions is currently set to False. --- pyfpdb/Database.py | 163 ++++++++++++++++++++++++++++++++++----------- pyfpdb/Hand.py | 2 +- pyfpdb/SQL.py | 98 +++++++++++++++++++++++++++ 3 files changed, 223 insertions(+), 40 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index b644cbd5..375dacb2 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -260,6 +260,8 @@ class Database: if 'day_start' in gen: self.day_start = float(gen['day_start']) + + self.sessionTimeout = float(self.import_options['sessionTimeout']) # where possible avoid creating new SQL instance by using the global one passed in if sql is None: @@ -312,7 +314,7 @@ class Database: tables=self.cursor.execute(self.sql.query['list_tables']) tables=self.cursor.fetchall() - for table in (u'Actions', u'Autorates', u'Backings', u'Gametypes', u'Hands', u'HandsActions', u'HandsPlayers', u'HudCache', u'Players', u'RawHands', u'RawTourneys', u'Settings', u'Sites', u'TourneyTypes', u'Tourneys', u'TourneysPlayers'): + for table in (u'Actions', u'Autorates', u'Backings', u'Gametypes', u'Hands', u'HandsActions', u'HandsPlayers', u'HudCache', u'SessionsCache', u'Players', u'RawHands', u'RawTourneys', u'Settings', u'Sites', u'TourneyTypes', u'Tourneys', u'TourneysPlayers'): print "table:", table result+="###################\nTable "+table+"\n###################\n" rows=self.cursor.execute(self.sql.query['get'+table]) @@ -1177,6 +1179,7 @@ class Database: c.execute(self.sql.query['createHandsPlayersTable']) c.execute(self.sql.query['createHandsActionsTable']) c.execute(self.sql.query['createHudCacheTable']) + c.execute(self.sql.query['createSessionsCacheTable']) c.execute(self.sql.query['createBackingsTable']) c.execute(self.sql.query['createRawHands']) c.execute(self.sql.query['createRawTourneys']) @@ -1967,52 +1970,134 @@ class Database: #print "DEBUG: Successfully updated HudCacho using UPDATE" pass - def storeSessionsCache(self, pids, starttime, pdata): + def storeSessionsCache(self, pids, startTime, game, pdata): """Update cached sessions. If update fails because no record exists, do an insert.""" - #In development - pass + + THRESHOLD = timedelta(seconds=int(self.sessionTimeout * 60)) #convert minutes to seconds + bigBet = int(Decimal(game['bb'])*200) + + check_sessionscache = self.sql.query['check_sessionscache'] + check_sessionscache = check_sessionscache.replace('%s', self.sql.query['placeholder']) + update_sessionscache = self.sql.query['update_sessionscache'] + update_sessionscache = update_sessionscache.replace('%s', self.sql.query['placeholder']) + update_sessionscache_start = self.sql.query['update_sessionscache_start'] + update_sessionscache_start = update_sessionscache_start.replace('%s', self.sql.query['placeholder']) + update_sessionscache_end = self.sql.query['update_sessionscache_end'] + update_sessionscache_end = update_sessionscache_end.replace('%s', self.sql.query['placeholder']) + insert_sessionscache = self.sql.query['insert_sessionscache'] + insert_sessionscache = insert_sessionscache.replace('%s', self.sql.query['placeholder']) + merge_sessionscache = self.sql.query['merge_sessionscache'] + merge_sessionscache = merge_sessionscache.replace('%s', self.sql.query['placeholder']) + delete_sessions = self.sql.query['delete_sessions'] + delete_sessions = delete_sessions.replace('%s', self.sql.query['placeholder']) + + try: + # derive list of program owner's player ids + self.hero = {} # name of program owner indexed by site id + self.hero_ids = [] + # make sure at least two values in list + # so that tuple generation creates doesn't use + # () or (1,) style + for site in self.config.get_supported_sites(): + result = self.get_site_id(site) + if result: + site_id = result[0][0] + self.hero[site_id] = self.config.supported_sites[site].screen_name + p_id = self.get_player_id(self.config, site, self.hero[site_id]) + if p_id: + self.hero_ids.append(int(p_id)) - #update_sessionscache = self.sql.query['update_sessionscache'] - #update_sessionscache = update_sessionscache.replace('%s', self.sql.query['placeholder']) - #insert_sessionscache = self.sql.query['insert_sessionscache'] - #insert_sessionscache = insert_sessionscache.replace('%s', self.sql.query['placeholder']) - #merge_sessionscache = self.sql.query['merge_sessionscache'] - #merge_sessionscache = merge_sessionscache.replace('%s', self.sql.query['placeholder']) + except: + err = traceback.extract_tb(sys.exc_info()[2])[-1] + print _("Error aquiring hero ids:"), str(sys.exc_value) + print err - #print "DEBUG: %s %s %s" %(hid, pids, pdata) - #inserts = [] - #for p in pdata: - #line = [0]*5 + inserts = [] + for p in pdata: + if pids[p] in self.hero_ids: + line = [0]*5 + + if (game['type']=='ring'): line[0] = 1 # count ring hands + if (game['type']=='tour'): line[1] = 1 # count tour hands + if (game['type']=='ring'): line[2] = pdata[p]['totalProfit'] + if (game['type']=='ring'): line[3] = float(Decimal(pdata[p]['totalProfit'])/Decimal(bigBet)) + line[4] = startTime + inserts.append(line) - #line[0] = 1 # HDs - #line[1] = pdata[p]['totalProfit'] + cursor = self.get_cursor() + + for row in inserts: + check = [] + check.append(row[-1]-THRESHOLD) + check.append(row[-1]+THRESHOLD) + num = cursor.execute(check_sessionscache, check) + log.info(_("check yurself: '%s'") % (num.rowcount)) - #line[2] = pids[p] # playerId - #line[3] = sessionStart - #line[4] = sessionEnd - #inserts.append(line) - - - #cursor = self.get_cursor() - - #for row in inserts: # Try to do the update first: - #num = cursor.execute(update_sessionscache, row) - #print "DEBUG: values: %s" % row[-3:] - # Test statusmessage to see if update worked, do insert if not - # num is a cursor in sqlite - #if ((self.backend == self.PGSQL and cursor.statusmessage != "UPDATE 1") - #or (self.backend == self.MYSQL_INNODB and num == 0) - #or (self.backend == self.SQLITE and num.rowcount == 0)): - #move the last 6 items in WHERE clause of row from the end of the array + if ((self.backend == self.PGSQL and cursor.statusmessage == "UPDATE 1") + or (self.backend == self.MYSQL_INNODB and num == 1) + or (self.backend == self.SQLITE and num.rowcount == 1)): + update = row + row[-1:] + mid = cursor.execute(update_sessionscache, update) + log.info(_("update '%s' rows, no change to session times ") % str(mid.rowcount)) + if ((self.backend == self.PGSQL and cursor.statusmessage != "UPDATE 1") + or (self.backend == self.MYSQL_INNODB and mid == 0) + or (self.backend == self.SQLITE and mid.rowcount == 0)): + update_start = row[-1:] + row + check + start = cursor.execute(update_sessionscache_start, update_start) + log.info(_("update '%s' rows, and updated sessionStart") % str(start.rowcount)) + if ((self.backend == self.PGSQL and cursor.statusmessage != "UPDATE 1") + or (self.backend == self.MYSQL_INNODB and start == 0) + or (self.backend == self.SQLITE and start.rowcount == 0)): + update_end = row[-1:] + row + check + end = cursor.execute(update_sessionscache_end, update_end) + log.info(_("update '%s' rows, and updated sessionEnd") % str(end.rowcount)) + else: + pass + else: + pass + elif ((self.backend == self.PGSQL and cursor.statusmessage != "UPDATE 1" and "UPDATE" in cursor.statusmessage) + or (self.backend == self.MYSQL_INNODB and num > 1) + or (self.backend == self.SQLITE and num.rowcount > 1)): + log.info(_("multiple matches")) + pass + #merge_sessionscache + cursor.execute(merge_sessionscache, check) + merge = cursor.fetchone() + cursor.execute(delete_sessions, check) + cursor.execute(insert_sessionscache, merge) + update = row + row[-1:] + mid = cursor.execute(update_sessionscache, update) + log.info(_("update '%s' rows, no change to session times ") % str(mid.rowcount)) + if ((self.backend == self.PGSQL and cursor.statusmessage != "UPDATE 1") + or (self.backend == self.MYSQL_INNODB and mid == 0) + or (self.backend == self.SQLITE and mid.rowcount == 0)): + update_start = row[-1:] + row + check + start = cursor.execute(update_sessionscache_start, update_start) + log.info(_("update '%s' rows, and updated sessionStart") % str(start.rowcount)) + if ((self.backend == self.PGSQL and cursor.statusmessage != "UPDATE 1") + or (self.backend == self.MYSQL_INNODB and start == 0) + or (self.backend == self.SQLITE and start.rowcount == 0)): + update_end = row[-1:] + row + check + end = cursor.execute(update_sessionscache_end, update_end) + log.info(_("update '%s' rows, and updated sessionEnd") % str(end.rowcount)) + else: + pass + else: + pass + + elif ((self.backend == self.PGSQL and cursor.statusmessage != "UPDATE 1") + or (self.backend == self.MYSQL_INNODB and num == 0) + or (self.backend == self.SQLITE and num.rowcount == 0)): + #move the last 2 items in WHERE clause of row from the end of the array # to the beginning for the INSERT statement #print "DEBUG: using INSERT: %s" % num - #row = row[-3:] + row[:-3] - #num = cursor.execute(insert_sessionscache, row) - #print "DEBUG: Successfully(?: %s) updated HudCacho using INSERT" % num - #else: - #print "DEBUG: Successfully updated HudCacho using UPDATE" - #pass + insert = row + row[-1:] + insert = insert[-2:] + insert[:-2] + log.info(_("insert row: '%s'") % (insert)) + cursor.execute(insert_sessionscache, insert) + else: + pass def isDuplicate(self, gametypeID, siteHandNo): dup = False diff --git a/pyfpdb/Hand.py b/pyfpdb/Hand.py index 250067f8..2d7088e6 100644 --- a/pyfpdb/Hand.py +++ b/pyfpdb/Hand.py @@ -280,7 +280,7 @@ db: a connected Database object""" db.storeHudCache(self.dbid_gt, self.dbid_pids, self.startTime, self.stats.getHandsPlayers()) def updateSessionsCache(self, db): - db.storeSessionsCache(self.dbid_pids, self.startTime, self.stats.getHandsPlayers()) + db.storeSessionsCache(self.dbid_pids, self.startTime, self.gametype, self.stats.getHandsPlayers()) def select(self, handId): """ Function to create Hand object from database """ diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index 1b6a9f4c..8a5405d1 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -1355,7 +1355,42 @@ class Sql: street3Raises INT, street4Raises INT) """ + + ################################ + # Create SessionsCache + ################################ + if db_server == 'mysql': + self.query['createSessionsCacheTable'] = """CREATE TABLE SessionsCache ( + id BIGINT UNSIGNED AUTO_INCREMENT NOT NULL, PRIMARY KEY (id), + sessionStart DATETIME NOT NULL, + sessionEnd DATETIME NOT NULL, + ringHDs INT NOT NULL, + tourHDs INT NOT NULL, + totalProfit INT NOT NULL, + bigBets FLOAT UNSIGNED NOT NULL) + + ENGINE=INNODB""" + elif db_server == 'postgresql': + self.query['createSessionsCacheTable'] = """CREATE TABLE SessionsCache ( + id BIGSERIAL, PRIMARY KEY (id), + sessionStart REAL NOT NULL, + sessionEnd REAL NOT NULL, + ringHDs INT NOT NULL, + tourHDs INT NOT NULL, + totalProfit INT NOT NULL, + bigBets FLOAT NOT NULL) + """ + elif db_server == 'sqlite': + self.query['createSessionsCacheTable'] = """CREATE TABLE SessionsCache ( + id INTEGER PRIMARY KEY, + sessionStart REAL NOT NULL, + sessionEnd REAL NOT NULL, + ringHDs INT NOT NULL, + tourHDs INT NOT NULL, + totalProfit INT NOT NULL, + bigBets REAL UNSIGNED NOT NULL) + """ if db_server == 'mysql': self.query['addTourneyIndex'] = """ALTER TABLE Tourneys ADD UNIQUE INDEX siteTourneyNo(siteTourneyNo, tourneyTypeId)""" @@ -3971,6 +4006,69 @@ class Sql: AND (case when tourneyTypeId is NULL then 1 else (case when tourneyTypeId+0=%s then 1 else 0 end) end)=1 AND styleKey=%s""" + + self.query['check_sessionscache'] = """ + UPDATE SessionsCache SET + sessionStart=sessionStart, + sessionEnd=sessionEnd, + ringHDs=ringHDs, + tourHDs=tourHDs, + totalProfit=totalProfit, + bigBets=bigBets + WHERE sessionEnd>=%s + AND sessionStart<=%s""" + + self.query['insert_sessionscache'] = """ + INSERT INTO SessionsCache ( + sessionStart, + sessionEnd, + ringHDs, + tourHDs, + totalProfit, + bigBets) + VALUES (%s, %s, %s, %s, %s, %s)""" + + self.query['update_sessionscache_start'] = """ + UPDATE SessionsCache SET + sessionStart=%s, + ringHDs=ringHDs+%s, + tourHDs=tourHDs+%s, + totalProfit=totalProfit+%s, + bigBets=bigBets+%s + WHERE sessionStart>%s + AND sessionEnd>=%s + AND sessionStart<=%s""" + + self.query['update_sessionscache_end'] = """ + UPDATE SessionsCache SET + sessionEnd=%s, + ringHDs=ringHDs+%s, + tourHDs=tourHDs+%s, + totalProfit=totalProfit+%s, + bigBets=bigBets+%s + WHERE sessionEnd<%s + AND sessionEnd>=%s + AND sessionStart<=%s""" + + self.query['update_sessionscache'] = """ + UPDATE SessionsCache SET + ringHDs=ringHDs+%s, + tourHDs=tourHDs+%s, + totalProfit=totalProfit+%s, + bigBets=bigBets+%s + WHERE sessionStart<=%s + AND sessionEnd>=%s""" + + self.query['merge_sessionscache'] = """ + SELECT min(sessionStart), max(sessionEnd), sum(ringHDs), sum(tourHDs), sum(totalProfit), sum(bigBets) + FROM SessionsCache + WHERE sessionStart>=%s + AND sessionEnd<=%s""" + + self.query['delete_sessions'] = """ + DELETE FROM SessionsCache + WHERE sessionStart>=%s + AND sessionEnd<=%s""" self.query['get_hero_hudcache_start'] = """select min(hc.styleKey) from HudCache hc From dd707fb0cbb27cd9c0ff4dd19aa79a5729748312 Mon Sep 17 00:00:00 2001 From: "chaz@pokeit.co" <chaz@pokeit.co> Date: Sat, 4 Dec 2010 21:02:21 -0500 Subject: [PATCH 081/162] Updated the comments --- pyfpdb/Database.py | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 375dacb2..a52f4890 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1991,6 +1991,7 @@ class Database: delete_sessions = self.sql.query['delete_sessions'] delete_sessions = delete_sessions.replace('%s', self.sql.query['placeholder']) + #Grab playerIds using hero names in HUD_Config.xml try: # derive list of program owner's player ids self.hero = {} # name of program owner indexed by site id @@ -2019,8 +2020,8 @@ class Database: if (game['type']=='ring'): line[0] = 1 # count ring hands if (game['type']=='tour'): line[1] = 1 # count tour hands - if (game['type']=='ring'): line[2] = pdata[p]['totalProfit'] - if (game['type']=='ring'): line[3] = float(Decimal(pdata[p]['totalProfit'])/Decimal(bigBet)) + if (game['type']=='ring'): line[2] = pdata[p]['totalProfit'] #sum of profit + if (game['type']=='ring'): line[3] = float(Decimal(pdata[p]['totalProfit'])/Decimal(bigBet)) #sum of big bets won line[4] = startTime inserts.append(line) @@ -2031,7 +2032,7 @@ class Database: check.append(row[-1]-THRESHOLD) check.append(row[-1]+THRESHOLD) num = cursor.execute(check_sessionscache, check) - log.info(_("check yurself: '%s'") % (num.rowcount)) + #DEBUG log.info(_("check yurself: '%s'") % (num.rowcount)) # Try to do the update first: if ((self.backend == self.PGSQL and cursor.statusmessage == "UPDATE 1") @@ -2039,19 +2040,19 @@ class Database: or (self.backend == self.SQLITE and num.rowcount == 1)): update = row + row[-1:] mid = cursor.execute(update_sessionscache, update) - log.info(_("update '%s' rows, no change to session times ") % str(mid.rowcount)) + #DEBUG log.info(_("update '%s' rows, no change to session times ") % str(mid.rowcount)) if ((self.backend == self.PGSQL and cursor.statusmessage != "UPDATE 1") or (self.backend == self.MYSQL_INNODB and mid == 0) or (self.backend == self.SQLITE and mid.rowcount == 0)): update_start = row[-1:] + row + check start = cursor.execute(update_sessionscache_start, update_start) - log.info(_("update '%s' rows, and updated sessionStart") % str(start.rowcount)) + #DEBUG log.info(_("update '%s' rows, and updated sessionStart") % str(start.rowcount)) if ((self.backend == self.PGSQL and cursor.statusmessage != "UPDATE 1") or (self.backend == self.MYSQL_INNODB and start == 0) or (self.backend == self.SQLITE and start.rowcount == 0)): update_end = row[-1:] + row + check end = cursor.execute(update_sessionscache_end, update_end) - log.info(_("update '%s' rows, and updated sessionEnd") % str(end.rowcount)) + #DEBUG log.info(_("update '%s' rows, and updated sessionEnd") % str(end.rowcount)) else: pass else: @@ -2059,28 +2060,28 @@ class Database: elif ((self.backend == self.PGSQL and cursor.statusmessage != "UPDATE 1" and "UPDATE" in cursor.statusmessage) or (self.backend == self.MYSQL_INNODB and num > 1) or (self.backend == self.SQLITE and num.rowcount > 1)): - log.info(_("multiple matches")) + #DEBUG log.info(_("multiple matches")) pass - #merge_sessionscache + #merge two sessions if there are multiple matches cursor.execute(merge_sessionscache, check) merge = cursor.fetchone() cursor.execute(delete_sessions, check) cursor.execute(insert_sessionscache, merge) update = row + row[-1:] mid = cursor.execute(update_sessionscache, update) - log.info(_("update '%s' rows, no change to session times ") % str(mid.rowcount)) + #DEBUG log.info(_("update '%s' rows, no change to session times ") % str(mid.rowcount)) if ((self.backend == self.PGSQL and cursor.statusmessage != "UPDATE 1") or (self.backend == self.MYSQL_INNODB and mid == 0) or (self.backend == self.SQLITE and mid.rowcount == 0)): update_start = row[-1:] + row + check start = cursor.execute(update_sessionscache_start, update_start) - log.info(_("update '%s' rows, and updated sessionStart") % str(start.rowcount)) + #DEBUG log.info(_("update '%s' rows, and updated sessionStart") % str(start.rowcount)) if ((self.backend == self.PGSQL and cursor.statusmessage != "UPDATE 1") or (self.backend == self.MYSQL_INNODB and start == 0) or (self.backend == self.SQLITE and start.rowcount == 0)): update_end = row[-1:] + row + check end = cursor.execute(update_sessionscache_end, update_end) - log.info(_("update '%s' rows, and updated sessionEnd") % str(end.rowcount)) + #DEBUG log.info(_("update '%s' rows, and updated sessionEnd") % str(end.rowcount)) else: pass else: @@ -2094,7 +2095,7 @@ class Database: #print "DEBUG: using INSERT: %s" % num insert = row + row[-1:] insert = insert[-2:] + insert[:-2] - log.info(_("insert row: '%s'") % (insert)) + #DEBUG log.info(_("insert row: '%s'") % (insert)) cursor.execute(insert_sessionscache, insert) else: pass From 6ea5432c2e633dfc57d59b4f117b4d2f58b6c0b0 Mon Sep 17 00:00:00 2001 From: "chaz@pokeit.co" <chaz@pokeit.co> Date: Sat, 4 Dec 2010 21:04:43 -0500 Subject: [PATCH 082/162] Added a placeholder for rebuild_sessionscache() --- pyfpdb/Database.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index a52f4890..a997d20a 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1546,6 +1546,11 @@ class Database: print _("Error rebuilding hudcache:"), str(sys.exc_value) print err #end def rebuild_hudcache + + def rebuild_sessionscache(self, h_start=None, v_start=None): + """clears sessionscache and rebuilds from the individual handsplayers records""" + #Will get to this soon + pass def get_hero_hudcache_start(self): """fetches earliest stylekey from hudcache for one of hero's player ids""" From 50ac251f9aa143cb3c2fabfefaff7ff517ce5fcf Mon Sep 17 00:00:00 2001 From: "chaz@pokeit.co" <chaz@pokeit.co> Date: Sun, 5 Dec 2010 00:53:38 -0500 Subject: [PATCH 083/162] DB version 147 --- pyfpdb/Database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index a997d20a..162547c8 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -73,7 +73,7 @@ except ImportError: use_numpy = False -DB_VERSION = 146 +DB_VERSION = 147 # Variance created as sqlite has a bunch of undefined aggregate functions. From 10ab80ff7d0dd6dfcd3b6ec33e0b98b69d2741cd Mon Sep 17 00:00:00 2001 From: Eric Blade <blade.eric@gmail.com> Date: Sun, 5 Dec 2010 02:15:30 -0500 Subject: [PATCH 084/162] apparently i forgot to commit that a long time ago. --- .gitignore | 2 + regression-test/Everleaf-nlhe-cash-usd.txt | 267 +++++++++++++++++++++ 2 files changed, 269 insertions(+) create mode 100644 .gitignore create mode 100644 regression-test/Everleaf-nlhe-cash-usd.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..1670801e --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ + +*.pyc \ No newline at end of file diff --git a/regression-test/Everleaf-nlhe-cash-usd.txt b/regression-test/Everleaf-nlhe-cash-usd.txt new file mode 100644 index 00000000..c19b266c --- /dev/null +++ b/regression-test/Everleaf-nlhe-cash-usd.txt @@ -0,0 +1,267 @@ +Everleaf Gaming Game #196321235 +***** Hand history for game #196321235 ***** +Blinds $0.05/$0.10 NL Hold'em - 2010/08/29 - 20:34:15 +Table Cortland XIV +Seat 6 is the button +Total number of players: 6 +Seat 1: zlodeu123 ( $ 12.40 USD ) +Seat 2: EricBlade ( $ 5 USD ) +Seat 3: gabitzatoade ( $ 5.45 USD ) +Seat 5: N0pr3s3n7 ( $ 10.29 USD ) +Seat 6: Coolcatcool ( $ 8.30 USD ) +zlodeu123: posts small blind [$ 0.05 USD] +EricBlade: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to EricBlade [ 9h, Qd ] +gabitzatoade folds +N0pr3s3n7 raises [$ 0.35 USD] +Coolcatcool folds +zlodeu123 folds +EricBlade folds +N0pr3s3n7 does not show cards +N0pr3s3n7 wins $ 0.25 USD from main pot + + + +Everleaf Gaming Game #196321319 +***** Hand history for game #196321319 ***** +Blinds $0.05/$0.10 NL Hold'em - 2010/08/29 - 20:34:38 +Table Cortland XIV +Seat 1 is the button +Total number of players: 5 +Seat 1: zlodeu123 ( $ 12.35 USD ) +Seat 2: EricBlade ( $ 4.90 USD ) +Seat 3: gabitzatoade ( $ 5.45 USD ) +Seat 5: N0pr3s3n7 ( $ 10.44 USD ) +Seat 6: Coolcatcool ( $ 8.30 USD ) +EricBlade: posts small blind [$ 0.05 USD] +gabitzatoade: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to EricBlade [ Qd, 9d ] +N0pr3s3n7 folds +Coolcatcool folds +zlodeu123 folds +EricBlade raises [$ 0.25 USD] +gabitzatoade folds +EricBlade does not show cards +EricBlade wins $ 0.20 USD from main pot + + + +Everleaf Gaming Game #196321394 +***** Hand history for game #196321394 ***** +Blinds $0.05/$0.10 NL Hold'em - 2010/08/29 - 20:34:57 +Table Cortland XIV +Seat 2 is the button +Total number of players: 5 +Seat 1: zlodeu123 ( $ 12.35 USD ) +Seat 2: EricBlade ( $ 5 USD ) +Seat 3: gabitzatoade ( $ 5.35 USD ) +Seat 4: Miazza ( new player ) +Seat 5: N0pr3s3n7 ( $ 10.44 USD ) +Seat 6: Coolcatcool ( $ 8.30 USD ) +gabitzatoade: posts small blind [$ 0.05 USD] +N0pr3s3n7: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to EricBlade [ 9c, Ac ] +Coolcatcool folds +zlodeu123 folds +EricBlade raises [$ 0.35 USD] +gabitzatoade calls [$ 0.30 USD] +N0pr3s3n7 folds +** Dealing Flop ** [ 4c, Kh, 6h ] +gabitzatoade checks +EricBlade: bets [$ 0.40 USD] +gabitzatoade calls [$ 0.40 USD] +** Dealing Turn ** [ Qh ] +gabitzatoade checks +Miazza has joined the table +EricBlade checks +** Dealing River ** [ Qd ] +gabitzatoade checks +EricBlade checks +EricBlade shows [ 9c, Ac ] a pair of queens +gabitzatoade shows [ 4s, 4d ] a full house, fours full of queens +gabitzatoade wins $ 1.52 USD from main pot with a full house, fours full of queens [ Qh, Qd, 4s, 4d, 4c ] + + + +Everleaf Gaming Game #196321538 +***** Hand history for game #196321538 ***** +Blinds $0.05/$0.10 NL Hold'em - 2010/08/29 - 20:35:34 +Table Cortland XIV +Seat 3 is the button +Total number of players: 6 +Seat 1: zlodeu123 ( $ 12.35 USD ) +Seat 2: EricBlade ( $ 4.25 USD ) +Seat 3: gabitzatoade ( $ 6.12 USD ) +Seat 4: Miazza ( $ 5 USD ) +Seat 5: N0pr3s3n7 ( $ 10.34 USD ) +Seat 6: Coolcatcool ( $ 8.30 USD ) +N0pr3s3n7: posts small blind [$ 0.05 USD] +Coolcatcool: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to EricBlade [ Kc, Jd ] +zlodeu123 raises [$ 0.35 USD] +EricBlade calls [$ 0.35 USD] +gabitzatoade folds +N0pr3s3n7 folds +Coolcatcool folds +** Dealing Flop ** [ 9s, 3c, Jc ] +zlodeu123: bets [$ 0.60 USD] +EricBlade raises [$ 1.80 USD] +zlodeu123 folds +EricBlade does not show cards +EricBlade wins $ 1.95 USD from main pot + + + +Everleaf Gaming Game #196321707 +***** Hand history for game #196321707 ***** +Blinds $0.05/$0.10 NL Hold'em - 2010/08/29 - 20:36:15 +Table Cortland XIV +Seat 5 is the button +Total number of players: 6 +Seat 1: zlodeu123 ( $ 11.40 USD ) +Seat 2: EricBlade ( $ 5.25 USD ) +Seat 3: gabitzatoade ( $ 6.12 USD ) +Seat 4: Miazza ( $ 5 USD ) +Seat 5: N0pr3s3n7 ( $ 10.29 USD ) +Seat 6: Coolcatcool ( $ 8.20 USD ) +Coolcatcool: posts small blind [$ 0.05 USD] +zlodeu123: posts big blind [$ 0.10 USD] +Miazza sits out +** Dealing down cards ** +Dealt to EricBlade [ 6d, 3d ] +EricBlade folds +gabitzatoade calls [$ 0.10 USD] +N0pr3s3n7 raises [$ 0.30 USD] +Coolcatcool folds +zlodeu123 folds +gabitzatoade calls [$ 0.20 USD] +** Dealing Flop ** [ 8d, 4d, Td ] +gabitzatoade checks +N0pr3s3n7: bets [$ 0.50 USD] +gabitzatoade folds +N0pr3s3n7 does not show cards +N0pr3s3n7 wins $ 0.72 USD from main pot + + + +Everleaf Gaming Game #196321850 +***** Hand history for game #196321850 ***** +Blinds $0.05/$0.10 NL Hold'em - 2010/08/29 - 20:36:52 +Table Cortland XIV +Seat 6 is the button +Total number of players: 6 +Seat 1: zlodeu123 ( $ 11.30 USD ) +Seat 2: EricBlade ( $ 5.25 USD ) +Seat 3: gabitzatoade ( $ 5.82 USD ) +Seat 4: Miazza ( $ 5 USD ) +Seat 5: N0pr3s3n7 ( $ 10.71 USD ) +Seat 6: Coolcatcool ( $ 8.15 USD ) +zlodeu123: posts small blind [$ 0.05 USD] +EricBlade: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to EricBlade [ Qh, Qd ] +gabitzatoade folds +N0pr3s3n7 folds +Coolcatcool folds +zlodeu123 folds +EricBlade does not show cards +EricBlade wins $ 0.10 USD from main pot + + + +Everleaf Gaming Game #196321947 +***** Hand history for game #196321947 ***** +Blinds $0.05/$0.10 NL Hold'em - 2010/08/29 - 20:37:15 +Table Cortland XIV +Seat 1 is the button +Total number of players: 6 +Seat 1: zlodeu123 ( $ 11.25 USD ) +Seat 2: EricBlade ( $ 5.30 USD ) +Seat 3: gabitzatoade ( $ 5.82 USD ) +Seat 4: Miazza ( $ 5 USD ) +Seat 5: N0pr3s3n7 ( $ 10.71 USD ) +Seat 6: Coolcatcool ( $ 8.15 USD ) +EricBlade: posts small blind [$ 0.05 USD] +gabitzatoade: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to EricBlade [ Ts, Ks ] +N0pr3s3n7 folds +Coolcatcool folds +zlodeu123 folds +EricBlade raises [$ 0.25 USD] +gabitzatoade folds +EricBlade does not show cards +EricBlade wins $ 0.20 USD from main pot + + + +Everleaf Gaming Game #196322013 +***** Hand history for game #196322013 ***** +Blinds $0.05/$0.10 NL Hold'em - 2010/08/29 - 20:37:32 +Table Cortland XIV +Seat 2 is the button +Total number of players: 6 +Seat 1: zlodeu123 ( $ 11.25 USD ) +Seat 2: EricBlade ( $ 5.40 USD ) +Seat 3: gabitzatoade ( $ 5.72 USD ) +Seat 4: Miazza ( $ 5 USD ) +Seat 5: N0pr3s3n7 ( $ 10.71 USD ) +Seat 6: Coolcatcool ( $ 8.15 USD ) +gabitzatoade: posts small blind [$ 0.05 USD] +Miazza: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to EricBlade [ 2c, 4s ] +N0pr3s3n7 folds +Coolcatcool folds +zlodeu123 raises [$ 0.35 USD] +EricBlade folds +gabitzatoade calls [$ 0.30 USD] +Miazza folds +** Dealing Flop ** [ Ad, 6d, 6s ] +gabitzatoade checks +zlodeu123: bets [$ 0.60 USD] +gabitzatoade calls [$ 0.60 USD] +** Dealing Turn ** [ Jc ] +gabitzatoade checks +zlodeu123 checks +** Dealing River ** [ Th ] +gabitzatoade checks +zlodeu123 checks +zlodeu123 shows [ Ah, 8d ] two pairs, aces and sixes +gabitzatoade shows [ Ac, 9c ] two pairs, aces and sixes +gabitzatoade wins $ 0.95 USD from main pot with two pairs, aces and sixes [ Ac, Ad, Jc, 6d, 6s ] +zlodeu123 wins $ 0.95 USD from main pot with two pairs, aces and sixes [ Ah, Ad, Jc, 6d, 6s ] + + + +Everleaf Gaming Game #196322188 +***** Hand history for game #196322188 ***** +Blinds $0.05/$0.10 NL Hold'em - 2010/08/29 - 20:38:16 +Table Cortland XIV +Seat 3 is the button +Total number of players: 6 +Seat 1: zlodeu123 ( $ 11.25 USD ) +Seat 2: EricBlade ( $ 5.40 USD ) +Seat 3: gabitzatoade ( $ 5.72 USD ) +Seat 4: Miazza ( $ 4.90 USD ) +Seat 5: N0pr3s3n7 ( $ 10.71 USD ) +Seat 6: Coolcatcool ( $ 8.15 USD ) +Miazza: posts small blind [$ 0.05 USD] +N0pr3s3n7: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to EricBlade [ 7d, Kd ] +Coolcatcool folds +zlodeu123 folds +EricBlade raises [$ 0.35 USD] +gabitzatoade folds +Miazza folds +N0pr3s3n7 folds +EricBlade does not show cards +EricBlade wins $ 0.25 USD from main pot + + + From 46022509de5e5539638e51e784c861b36c03d6cb Mon Sep 17 00:00:00 2001 From: gimick <bbtgaf@googlemail.com> Date: Sun, 5 Dec 2010 16:59:32 +0000 Subject: [PATCH 085/162] pypokereval: fixes to allow py2exe to compile. Also, place win32 dependencies in pyfpdb (pyfpdb files can be deleted when there is a site-package on win) This commit allows fpdb+pypokereval to work on win32 machines without having to manually install pypokereval files --- packaging/windows/py2exe_setup.py | 5 +- packaging/windows/pypoker138walkthrough.txt | 368 ++++++++++---------- pyfpdb/_pokereval_2_6.pyd | Bin 0 -> 143360 bytes pyfpdb/pokereval.py | 338 ++++++++++++++++++ 4 files changed, 533 insertions(+), 178 deletions(-) create mode 100644 pyfpdb/_pokereval_2_6.pyd create mode 100644 pyfpdb/pokereval.py diff --git a/packaging/windows/py2exe_setup.py b/packaging/windows/py2exe_setup.py index 0f46f8db..84b75886 100644 --- a/packaging/windows/py2exe_setup.py +++ b/packaging/windows/py2exe_setup.py @@ -68,7 +68,6 @@ import matplotlib import shutil #from datetime import date - def isSystemDLL(pathname): #dwmapi appears to be vista-specific file, not XP if os.path.basename(pathname).lower() in ("dwmapi.dll"): @@ -120,6 +119,7 @@ pydir = rootdir+'pyfpdb/' gfxdir = rootdir+'gfx/' sys.path.append( pydir ) # allows fpdb modules to be found by options/includes below + print "\n" + r"Output will be created in "+distdir print "*** Cleaning working folders ***" @@ -142,6 +142,9 @@ setup( {'script': pydir+'Configuration.py', } ], + console = [ {'script': pydir+'Stove.py', } + ], + options = {'py2exe': { 'packages' : ['encodings', 'matplotlib'], 'includes' : ['gio', 'cairo', 'pango', 'pangocairo', 'atk', 'gobject' diff --git a/packaging/windows/pypoker138walkthrough.txt b/packaging/windows/pypoker138walkthrough.txt index 6a4ab8f7..1c7ee0f4 100644 --- a/packaging/windows/pypoker138walkthrough.txt +++ b/packaging/windows/pypoker138walkthrough.txt @@ -1,177 +1,191 @@ -pypokereval build for windows stepbystep guide ----------------------------------------------- - -Created by Gimick on 3rd December 2010 - -This walkthrough is derived with the assistance of EricBlade and the build notes -supplied by Loic Dachary <loic@dachary.org> http://dachary.org/ - -Content is available under the the GNU Affero General Public License version 3 - - -0. Build environ ----------------- - -We are building against the 2008 runtime because Python 2.6 - has the same dependency (msvcr90.dll version 9.0.21022.8) - -Using winXPhome 32 bit - -1 Visual studio ---------------- - -1.1/ Get the ISO CD from here ... http://www.microsoft.com/express/Downloads/#2008-All - -1.2/ Run and install Visual C++ only, don't bother with the additional packages offered - -This package will run 30 days before registration is needed - -2. Python runtime ------------------ - -2.1/ Install python runtime from here ... - -Python 2.6.5 ... http://www.python.org/ftp/python/2.6.5/python-2.6.5.msi - -3. Source install ------------------ - -3.1/ grab sources from here - -pypoker-eval v138 ... http://download.gna.org/pokersource/sources/pypoker-eval-138.0.tar.gz -poker-eval v138 ... http://download.gna.org/pokersource/sources/poker-eval-138.0.tar.gz - -3.2/ unpack and place the pypoker-eval-138 directory in c:\ -3.2.1/ rename to pypoker-eval - -3.3/ unpack and place the poker-eval-138 directory in c:\ -3.3.1/ rename to poker-eval - -Important: the build will fail with bizarre missing header files if the project is placed - in a directory containing a space character - you have been warned! - -4. Update source file ---------------------- - -4.1/ dos> write c:/pypoker-eval/pypokereval.c - -change this: - -#define VERSION_NAME(W) W##2_4 -#define PYTHON_VERSION "2_4" - -to be this: - -#define VERSION_NAME(W) W##2_6 -#define PYTHON_VERSION "2_6" - -4.2/ save and exit - -5. Build pre-preparation ------------------------- - -(Here we are converting the two project definition files to 2008) - -5.1 navigate to directory c:/poker-eval -5.1.1 double click poker-eval.vcproj -5.1.2 Visual studio will launch and make a conversion - accept all defaults -5.1.3 exit and save - -5.2 navigate to directory c:/pypoker-eval -5.2.1 double click pypoker-eval.vcproj -5.2.2 Visual studio will launch and make a conversion - accept all defaults -5.2.3 exit - -6. build preparation --------------------- - -6.2 navigate to directory c:/pypoker-eval -6.2.1 double click pypoker-eval.vcproj - visual studio should launch - -6.2.3 Select Build...configuration manager... - Select "active solution configuration" to "Release" - (The configuration for both projects will change to "Release") - -6.2.3 Close the configuration manager - -6.2.4 In the solution explorer window, hilight pythonpoker-eval / right mouse / properties... - -6.2.5 In the pythonpoker-eval properties dialog, - -change references to "python24" to "python26" in the following: - - = C/C++/Additional Include Directories/ - = linker/general/Additional library directories - = linker/input/Additional Dependencies - -Change the following - - = linker/generate debug info - set to No - = linker/debugging/Generate debug info - set to No - -6.2.6 Apply all changes to the properties dialog and close - -6.3 Exit from visual studio - -7. Build poker eval -------------------- - -7.1 navigate to directory c:/poker-eval -7.1.1 double click poker-eval.vcproj -7.1.2 Visual studio will launch - -7.2 In the solution explorer window, hilight poker-eval / right mouse / build - -7.3 There should be no errors - -7.4 Exit from visual studio - - -8. Build pypoker eval ---------------------- - -8.1 navigate to directory c:/pypoker-eval -8.1.1 double click pypoker-eval.vcproj -8.1.2 Visual studio will launch - -8.2 In the solution explorer window, hilight pythonpoker-eval / right mouse / build - -8.3 There should be no errors (but a few warnings) - -8.4 Exit from visual studio - -9. packaging ------------- - -9.1 Navigate to c:/pypoker-eval/release -9.2 the output file is pypokereval.dll -9.3 rename this file to _pokereval_2_6.pyd - -9.4 create a zip file containing : - -_pokereval_2_6.pyd from releases -test.py from pypoker-eval-138.0 -pokereval.py from pypoker-eval-138.0 -poker-eval.vcproj from c:\poker-eval -pypoker-eval.vcproj from c:\pypoker-eval -pypokereval.c from c:\pypoker-eval - -Remember to include the version (138), python 265 and win32 in the package filename - -10. Installation and Testing ----------------------------- - -Python 2.6.5 must be installed - -10.1 Extract this package to directory -10.2 Change directory to the directory in 10.1 -10.3 execute dos> c:\Python26\python.exe test.py -10.4 hand-output should scroll down the screen -10.5 start the python interpreter -10.6 >>> import pokereval -10.7 No errors should be seen - - - - - +pypokereval build for windows stepbystep guide +---------------------------------------------- + +Created by Gimick on 3rd December 2010 + +This walkthrough is derived with the assistance of EricBlade and the build notes +supplied by Loic Dachary <loic@dachary.org> http://dachary.org/ + +Content is available under the the GNU Affero General Public License version 3 + + +0. Build environ +---------------- + +We are building against the 2008 runtime because Python 2.6 + has the same dependency (msvcr90.dll version 9.0.21022.8) + +Using winXPhome 32 bit + +1 Visual studio +--------------- + +1.1/ Get the ISO CD from here ... http://www.microsoft.com/express/Downloads/#2008-All + +1.2/ Run and install Visual C++ only, don't bother with the additional packages offered + +This package will run 30 days before registration is needed + +2. Python runtime +----------------- + +2.1/ Install python runtime from here ... + +Python 2.6.5 ... http://www.python.org/ftp/python/2.6.5/python-2.6.5.msi + +3. Source install +----------------- + +3.1/ grab sources from here + +pypoker-eval v138 ... http://download.gna.org/pokersource/sources/pypoker-eval-138.0.tar.gz +poker-eval v138 ... http://download.gna.org/pokersource/sources/poker-eval-138.0.tar.gz + +3.2/ unpack and place the pypoker-eval-138 directory in c:\ +3.2.1/ rename to pypoker-eval + +3.3/ unpack and place the poker-eval-138 directory in c:\ +3.3.1/ rename to poker-eval + +Important: the build will fail with bizarre missing header files if the project is placed + in a directory containing a space character - you have been warned! + +4. Update source file +--------------------- + +4.1/ dos> write c:/pypoker-eval/pypokereval.c + +change this: + +#define VERSION_NAME(W) W##2_4 +#define PYTHON_VERSION "2_4" + +to be this: + +#define VERSION_NAME(W) W##2_6 +#define PYTHON_VERSION "2_6" + +4.2/ save and exit + +4.3/ dos> write c:/pypoker-eval/pokereval.py + +Comment-out this line: + +_pokereval = __import__('_pokereval_' + sys.version[0] + '_' + sys.version[2]) + +Insert this one in its' place: + +import _pokereval_2_6 as _pokereval + + +4.4/ save and exit + + +5. Build pre-preparation +------------------------ + +(Here we are converting the two project definition files to 2008) + +5.1 navigate to directory c:/poker-eval +5.1.1 double click poker-eval.vcproj +5.1.2 Visual studio will launch and make a conversion - accept all defaults +5.1.3 exit and save + +5.2 navigate to directory c:/pypoker-eval +5.2.1 double click pypoker-eval.vcproj +5.2.2 Visual studio will launch and make a conversion - accept all defaults +5.2.3 exit + +6. build preparation +-------------------- + +6.2 navigate to directory c:/pypoker-eval +6.2.1 double click pypoker-eval.vcproj - visual studio should launch + +6.2.3 Select Build...configuration manager... + Select "active solution configuration" to "Release" + (The configuration for both projects will change to "Release") + +6.2.3 Close the configuration manager + +6.2.4 In the solution explorer window, hilight pythonpoker-eval / right mouse / properties... + +6.2.5 In the pythonpoker-eval properties dialog, + +change references to "python24" to "python26" in the following: + + = C/C++/Additional Include Directories/ + = linker/general/Additional library directories + = linker/input/Additional Dependencies + +Change the following + + = linker/generate debug info - set to No + = linker/debugging/Generate debug info - set to No + +6.2.6 Apply all changes to the properties dialog and close + +6.3 Exit from visual studio + +7. Build poker eval +------------------- + +7.1 navigate to directory c:/poker-eval +7.1.1 double click poker-eval.vcproj +7.1.2 Visual studio will launch + +7.2 In the solution explorer window, hilight poker-eval / right mouse / build + +7.3 There should be no errors + +7.4 Exit from visual studio + + +8. Build pypoker eval +--------------------- + +8.1 navigate to directory c:/pypoker-eval +8.1.1 double click pypoker-eval.vcproj +8.1.2 Visual studio will launch + +8.2 In the solution explorer window, hilight pythonpoker-eval / right mouse / build + +8.3 There should be no errors (but a few warnings) + +8.4 Exit from visual studio + +9. packaging +------------ + +9.1 Navigate to c:/pypoker-eval/release +9.2 the output file is pypokereval.dll +9.3 rename this file to _pokereval_2_6.pyd + +9.4 create a zip file containing : + +_pokereval_2_6.pyd from releases +test.py from pypoker-eval-138.0 +pokereval.py from pypoker-eval-138.0 +poker-eval.vcproj from c:\poker-eval +pypoker-eval.vcproj from c:\pypoker-eval +pypokereval.c from c:\pypoker-eval + +Remember to include the version (138), python 265 and win32 in the package filename + +10. Installation and Testing +---------------------------- + +Python 2.6.5 must be installed + +10.1 Extract this package to directory +10.2 Change directory to the directory in 10.1 +10.3 execute dos> c:\Python26\python.exe test.py +10.4 hand-output should scroll down the screen +10.5 start the python interpreter +10.6 >>> import pokereval +10.7 No errors should be seen + + + + + diff --git a/pyfpdb/_pokereval_2_6.pyd b/pyfpdb/_pokereval_2_6.pyd new file mode 100644 index 0000000000000000000000000000000000000000..f11d3081e396138da2d9b9bc2aadb69ca1388e57 GIT binary patch literal 143360 zcmeF43w&Hvo%nB(X`7OixoE0UqTaE?nq2}rGb!4dijx-vO=0rrgQX=&n}M{JHce&< z_)pn}Nq~4e-KvQ0Zrz2&b#d3-W%u7jP*#(sw7gV6#T2O46?JM@sE?&ZkokXq=blM! z9-X#^wfkS%e!lt5x#yneJ?D3R=bZak`X@V$Ji{<NkWL%M{Yd#2R)4eqN#T9=d%k+M zv3u?}efQ_of7938v98<d?Aml~SKD>g+O~}wH^r<qQL8Jy(OS3Bs=1=cx^7c@^ul@b z&hqQ1=iaz$?b7031~SyNwgs-hUDJAP;4&pQ2O5y;e=wkqH+`fnaJf4FSAm%F-=f?# zt*wE2<zA~~<GQsS5@)6aky^v3&zWu9UHM9V=GY-4*H@4;*D!A3$QN_e;cIpxOt@1y zP4zq1FlH&|xHLLBNTuC+f3CqV{t-yRjY-G(#6K9uGLAm?MZ<`QcO=)i*9jo5@qewk zMj(^O_|dUnVZs;VI`+4duFajqJ$BaA9~Z`=H^ev`>*tT;Ps%D6+x5>fjMfXg+S_7n zhH+jY9(Tgo@Ck7J3zPJP&S}Px+o-R5@w^53IoC=2<h;QPV;j2V=s(M!Fa?$}zk6cA z!*X6%ch_3HRGm;aDsR@5^THQ)MK^5X#LlxgxfOrOr+><MRUAF@?-Xhv@j|}c>^Ga1 z*&F;t%k4*per~R?f7|;X>Gv4M(0`h}KawBzFAILr`xE)q`!o4l@LvT-z4!gqJ)3jP z^M?m&{O0}Aa`)HxOC;rr5%0}=k&AAX6S~Si@z?h><d}WW#@^cEy>IyHSw_BLtR6aK zUX|FJKWvx$`#nz@X74ZoW{qCIs9%M7$0t7Tgo!_Hm;9sagyoBR^$CBjPxuGBB<VWg zqD43B6aGS<@Cm!*Gp-YgB;(|#|Jm4kNtLcJ^kZ{imA`}o=OlXkW?uJMEmyC$hn?(E zxJ1hE_I;IRo=D|*`#zre@t@?_-m_q6!9xr7$1d>RciTPxVwm^iYkcQWOYe{|hnRol zDc|S4Z=3jBoi{|G3!PZ^mG3DZDu1YaKb1#@wn>&NNGeus6QBLd1>auqy@Dqf94*+l zV2_TufHNf%#&`ZhVxR5Aj_=gixeon<-u|;W+wPJ0KPwrqAJv)b-6NfG=s!I6!{y)h z-Zvng-%v6CEbmDUmme#C-Fx4ya=7K{yglSP-^uk4%AYAeP=2udhp|7h3qLP)YJaEv zY43eEt5azLxyIF;-1{Trh}T%1H{^tRX2JKQPz!!oFudT~6l#zCgwC{t{e*=5x=Q`0 zvt%S1I^@Y4D*vVTzB^Q`IH%8p_dZ)ru!qa{*`9vMOv_NpL(LG^)#n{ar@cczGRHFE z`8RdO)vHyW9v}agc%iUq1+`RM{#5z1<&PxNxdYAqd?@T`OYDFB$(Jro7JhiyKs}vf zG%tCX;l1zPdp?;%W!f)(=O^~J@(%vH%KJ}}AMqsi<d;8`@mIb%8~mpBFMlZUQciq` zlq~vNkzMaEzIt`Vx3|vo-nUaC%zGs7k?;J6UE|Ns8*a(lLpBSCC6`V1Du3a!<#x<( z+WXE^z4Aq~_own>g?-F^%zk<(RX8+iCJyBcy;#`$W8Fz#N~aS)&7m9f!|B6$>4IbS zaNbh|Puss38ZA6ed=fv-Au4_h9WKlpEErDwC@1gbf?wFFf)@*ZZXYc8;U{cqne>jL zZLiGgDzrVHzvo|aXceok8n%B>@XUgj7K{`ev|n8CbMJkR6dX((&h_5+4^kR$-@njO z6NhtR@0UMw2vI&rm~ZMPxIVAE#$TNJ)7QzvUQh2sa?x6beo}aK-a|Au&sD?Qz9tFh z+TV;<>qfsm$KF#uoT=V#>4@k@64CpKsCS=g)<5+SW8Qxa{nXQvx9@7zc!x8o=BktD zj-^U-Bh`E-)%>wk;|t5BgYI8Ia<@rwruI8j=GD^h@zni#yl@nUzE8v+l9SW6sneun zg;%MII^O&qry+P~5c&2{!JeU%S%6Si*?yR7qApV2AeW`!VcV0Gx=%*Zy}zl7&M~&k zqEv<XljG}sVHY*uWbg9dgDf9hwj34XheFZQEAGE1m}}bkcEn@<V!>{|4B+-}7QAY| zSnyKpd>H}~zx8;NpXYMe2L^V%uwDG0;m1z-vCF?3Q9HnC3%2{kQe1Gm|3UGgofkYB zTfnH$znQR!-_G(TZ;(hNrGfev+6S6n=#YSBVle+hb>+FHcl(xfI!&`KN?!6B+UnMS zMkghg{x<PSuJ_hY^V@#VFM~*bI(C8Gr!rcwOC?s&r;=`pqz1W=<xeq+d`N1-`<Xp- z+tTDE>C8Zcw8V$#cN9yMJ^lbGmVJ$!8TMnz+x=2L`u0KsN*yh+(-rh|JD1<hc9jRQ z67NOcqy$m@-|l-{0-=qY@vX-xRfBUS&PcNMbxADF*>sxX<SKuAa%q~MHTZ^;?S8|q z_Hc5<errLqzn+5ux_oiP5E&@*Cf^}dwqb9(UB9=Zpxz${+am=(uUO?b$wVtB*Ljma zA+^zq=})RnU)8%;F88pwDWKtY)40dnqxs1%_;DLMX>YBG2mOQM;EMM=*I~z=YcF`E z;J;QZSEG39=SR6N^?pC~S}}CJr~i?-)I$k@<a!vfCI-n;BUW$kE7&hB7I8`~mbk5o zp|1SiSLE8L$gOHAq<4FZGzp4HhbZGT^RkK|@AgryvNSLhVT~$u4mFk-&i_MdRBG1S ze~+BOWwJ-|9+T^*F4^`*Im&g#XCbON@3B8z<zJ#MGzYx>ZxwH+Oth~-O4dIZo6X53 z1Nk(%*#xx)-tH(aS1pU7<E~}whcUNw>t*%}iRX{?zECEYvbMCzUTrR45uqiD@ouD6 zZ#Ine9m#tC4eO1Dlou1(-s(?Yffh6quN0E;8t<Q7MH-AoFP9H88ugr=SCq($B|M42 z+=`)|UsmkjI>+`TxFSV%ZSmY%EAQzX8BdlK&0SVfKG^@rO~v-ILc3@WPWjQi$1``C z6((rPt`$?SsQl%Mect~6#DJ)H+Ph;li6s~QyJT*8dVbxVhA9f8Z0b+@BJsp;QTl2A zhLfJ(N}x#k>BQb54y@`=-*g?-XK?}j=MQmYp*^Im!(xsE&L6ga#W8cB$6sQf-LQUP z>QfsjJe8a*3?Y_820Z7aUf;yAw-Jj!?<xL&t8pO5$%#Zf;0a1K?eioy_)Bu)57@QV zffwy%B}7}#b*(EOtPp#OepEr_CkqqF*xpW+8?jMqoLopA_+?SmG6<KRKYadU94nR{ zHtNBrSnA03<Z{UtN&)eVNT2>2eiNYP;E27)F3RDjNuup`kr)dlqjPizBZd<E77|N) zq@gjjL`p<@_98~~{Zu-3@+Hz}&}=vTF=v*H7V4mme#x<m9#Tr$^U#;k)pOrA_YzNH z$RpOnkL}s^<(>s}kOlSr`huaDmzWoZF&rc0a$!$`>OhLy+c%5;Z=Y>1_sp&L*Ud%Q zkX8}7Y8~*L#aU%xiF99nMXe~lGN}&l_TNgM*y=AIyrSZmsuWt8l%I=M<K6LRWZI4w z+TT_KPx3*3KGpoIe@OQDZ#e&TyZ!^7g3CR&=K}?^3+nx`f*OBk!P4S_+M<TY{S1dj z>Qlc`y>umdWuR~Sh(v}FM5lXa#n2YhewZv2Q|U!SYK+c~d(zUxNjxmM<oZcQdOp|x zNbIa<@i~zC!7oO04-9ffjU6v7e*_&`Pq}wIM)2e<Pf&W?X7Y|B=i$CQOz0Ac?ZA-T z*C&aWrzuq{$)88$#qnYWhoXZc2L?y>B+@zYS?S6rMhnt8qjS=g0lZozZ1018Qe;tE zvDxX~L1N*sd2m+bF2l^*KXM@5cS|cLd~9$bK}ynd(tUw2mpti+A0B#n@2rm#@CX5) z%cXn~$$f$-<{f-zV!vo9F3Mt#OE2+muSXrGFUdbRLgve8gWH!9IhE!o_5hc%^!!&i zu^pFn{*&h)kmjEB^m0%xTQjk&Vq}xN-{i5+KKgxM4~<|+uCxK#_t7VPG>l8tg)Z?X zZKp6)0b{nbYfr9R5TY_k(d1BZ!-~e#bsJQf!yL2hlKd%c`q`V#m(yM2&GFjv=rrwl z&ZQL;yl2OO7e!JzWj*hvvln^l5-;XEmC#d9R;1pF4xcBZMf2WH8h0HdW(<$gxpWLv z?!c0pX~*HiqpzmZ9gDa+2S?KLYtUcVhH4CHx%w*mC##3;T0aH;P#B;7!J96`I0!Jz z_|N}=l-uc#p7KcQv+F4J*$wIM({>X||Cl-PpOBuvG5vk=;*TI0uQ`K*OPqrnB8Nvm zfRg>zffom2{!$2dcl1g%uP)5=AZduY2fb?7zsFNR&#^u4DH!WK1t0Yk<YjtLgjtOw zqk7P8X^IniPbs}8z`;!K30%S`SrPNs^n5}0n!s4E*;-mYNJEoOWqEgemq1P{mU1UQ ztNP3p;pA7O8&N*%z#e*yBv}3|jcS$dHKp{LRsI0IW@uzM@#^GW!-*1>UL(bv+-pXj z%o|pQSkA6nb*IUBch0UwPKQxKI!tAJcFvzW9Y!Kkoh5IW?xOliVxMR`rxe?pq`O?2 zfAE=uBL_zg$KKC^Caweg?%;RgSdO=U9ZL@~>K&bS)LSw>>XquBW22sxemYsGM!W`T zh?!BZ87<z$HIc@;P>p)4^r%<LkzzgSS@gm{@-L|cMz==BzB{hv7gv(j(w_INhzxys z(#B-yTR3&-3%G~AKu-Lt#~J#HyvcL8NaI7_LNx%(WgshZt@%}=eo6LZ@rF!ryq$~$ zI8sWt=Mp>WX2-3P-+KS5@gdJbt+YBro?n-T*3UVuk*0=Jq=WNm|Mmx`=!Nu63pmSf zr|skEgXzY%Ibs)<_53CJ0O{=uzD5U-F>o$ppz7*UhcZr3kKuumv)p5vn1KQB_V<dG zsP&gWQl~};=_Ho4MST4rXO($(yq9XDUnXl9%cP<r#2T@Ciaqwi;)4I<DJU=KVN8oL zrfn@Qh!<fit1<2CFQ^{5kO9q<7`|2T?V-bF0YWdFJvsFALVn6z`#*B>9w~UzF8qv| z#x-E_<!5Gc4@ib&W`Zg&9oW8G`itt?`xzLI(Rd`+eiF!ZZ9fIJ90Qu+^U-e8ev&I= zan{7)v(|q}ohX4LXrD6g_V-a2y}waCu^1cI&p_%wI4gjDJTUl!Up~WRZ1lYxFP7t? zDh>>dzU9CmE@!x%ePHmw(1AznrG6Q4)0b6zo2-fHfN^k?%q4FT#UZuFfJ+X`L~YzY zrZxf<!)mZCjZ1Gq@g5K>F@Wkgrd7ur2HZRuaA|;gm{wD}SSh{SA{Yx1BST7oSB%7G z<y5wgo}JSx6R^?DcuYHXG+EN~cGrMBFK;+m^qzFz9iq_~rj?etUAdBuYr^O(SN}O_ z%VkweSP!l|CJk%<yozRY4F{!&-tF&{mPO%Zh(^muW9omzyM2i?1hj#@RYpzoe7Sxy zVi&7lt^6uE|A}Pm@y=x7Z5)ygC{gyHElbX#bu(Bu^Skh@qfhu~=FYfXU2%XjEpPJE z6qeXgx@w%3ksOb9a#ZS!SJ<?KZ*OR7Obxa>=aR`K_L8ZCb(#^6(?<)m0jlPwr`$iS z9$WQK(Je)4ybff>>!SX_9?@|!nF}0#m(<t9@!Fg#<MmemK*`OF+Tp|RXS|*`CjSxL zLPnW|YD_NOX?xxsNzGY9!6uByrOtS~&>4CyXFM);#$!E5w?__N6&M?jP5MfS(gU=5 zdWT>2knDP3f(lStA)^QGOTFQGz?@DGNUkULaONIU^gsz`P1F`A)&oTo^nia%52&6$ zrU#T(7|rN`TG0b_BvwYFlzv|$6Qx-!P3kVF^Z|x8oj0QqhTR&WRBHrNX#_F9_eet? z*?V#tp+so}|Hz&bXoS*{CzGBJjv41l7gU@`7hrfemO9Pa%B~A6?{<r}EqdTt(F9l= zFJB-QN3OU3MLo~1Ic1CEIP>h4SR9+_PvaIxv$i-)(F-n%qgeH4HP`-w7CH<jyffEc z6%m8uQ>`2mgQMgG21oJn=h_$?GVV<_IGUZD$aUve2@0xM6pfy1tJN$u*H+Vt2_{FM zsJD85^F)(lRmSAFOmv^v8>__LIOLSd|KDbB49S#rlD#3T8EPIqoxM@)-L7UO*c;E* zRSaV*%i?)4$e6(}`DH2J*1}{AJL4!SCqg~&mlDO8E!#yG6MH9<W;=GVr{H=|!Q0mx z$z8h&spF=G$nr)a+K_t3&&d@FUx~fN`}=lfY-_q+|K?m`m!(UoLuNFtskLa1VwVL` zjGC>kOYG0D7#Yjm_RTb6Jyj@nPZgZWHD=O&>F10?<5Psc)>DKsHL+G>{mYcASx*s6 zrU)o-J+Xd$@)Us+$#2>8Qv^#-toMx^P#Z)!yT>L9<vF`2PZXG0=lqMFD8v|XsBR_; z*1Su`<_g0LGj@=gSTi?}i8W)Ccl#wWW;Z)ywlvh=FdWOgI-q{7Qe*a`&iwjj4pEiV zf}fL`Ww?G@W^OI3Ld~`(=jc;D=A_QtnlW1~oDhaaEtBb0juD-MFn5wqIo29k(U3A% zt6X$)%x{<EPBEgNRpYgJa^tm{Ut>QIdHsUf3oiGtUZm#N&Uh{RP?_<%*galfOaMP# z#fN<|Ue`0fW}Sd>JBCN;Tv<qx`E{?FUms<>J~%Qfg;6!_jJk}AFEeUq^fuW)vx~|b zQ<we;1)a?xJ#jwG+{YQQEoT@HIK%i7=U~U-zbrM3123|E`7K(Q3B}$We=QwqnPa#= zA%+wk$}u=phjMxoooLA~?dByt_Jd2d5uo6~Un|l4>z?GU-MV+Ny77&l%6=5RN?G7y z9Z0V_SL)$hwueRKniV5k&Zfsq?N3Ynmt0oyi=JNDLpIbR)p#FLBV}d^A`6zNf>v*4 zoTM$4jxAIrzpi@JDt`&q^R8X0M-38UB^fwRmdWW+sx7HWcgAuaTdLwj>bs=(!7;@! zwp6u>k#&61omr{Mc~8!+$*WWoC*39Vqf!RVv5vGqGwEiHN=>>M_?$_1`VVB-%k%cX z%JfJk+W&Z>VK1}NJT}p8oiNd^$xO8C81}BE1xl-RCfY0YuqRg~GwhYpB~53FUA~fr zAx)VXYqBKBkoVTqUtfv(%Cl$Z4dx9-#uk<rxo6ib?0myDyOs@uMS5YG!S3y%CzhH@ z6O{D2vLacK*^Er9E%i&X711jKGFp4yfd)2dd}1j1#ZcPGZ*sR1wcvTDbS}H-9r!hq zWU+faS;kHoDVt?I`2{If#T3=x%&&`2G{0u`p2(JD^nt7&o3eiFCtb7W(`x-#Zba~V z`yP_1?b-Bw39(Ank(t>Kc-}#fB3Y76411ilW7dsT4`IxExvpZLbWKV+(Y96%{+N{4 z>5$20{|zMBfiqT6E31qf?ApTf#rhM?T}Ej)Bnyw&HHA0W^@TkJ^}p^ZsQL8`bk-3f zX-Yn*I_-)^&WklRL{hVVtU9jr*6U;n@nNYlX0q?Bc!e4Cx9MP0E$4GdsHFE*H5-0s z#Rzj~nfOn!oiC9UH1GCnPy)_ew3rc6X3kSB=10`bIh)1IwE5Y^4BaS@QtysY$}%=* zE*1-!1|)N4XQ}O}@-(C90xpLce<xmI9}n42Og~>Poibk*>zJ8mX1;uE+WB&3uKd<< z>v-fq-u`6K3GL&tm27fWtnA}b*IaoxGgmI9PO*yADh#dQ;DOA7wi<UYm@w`})MzU+ zWM|xM=9hK;lySG6PQG${++}Jj<L=7LxVva<O<S#BDP5_?UFld@l4{%~(`qP|VfW9u zKTjGQ$Br}XzE7HyUhg{I{8*2-6Z)54&;HcddbTq^o-p2CK-}$8hll@ge7s$x$J>bN zbb7G8URw5q1?vkY4X?7lEaU6X8Yxkh@m0@=S56pTS01kLxyRSZo!GnMmGKUY4a<df z_g}SiCi`z<%tma_V!M8^r{D@t!JOpns@F<q?aU0fV?DS2hhshW|H{Vmxtt~UX1%lG z8G7z_xMWj%t}{H7Oo`JY*+8QA$_CQZ-YXXFSO?ZK<>LOQj?;smI#Ca1aIcXY-LOOq z!@DC-jR&Q=7xl{Wms&ox5<^aBX1Y7pnUh^P^yl}g{;brf%y;R}dn@+QH#a{qIwvPM znwPUVKx>%Toka(f#NV#E^PY;=<!o8``WG2NMlpK_kxa#9n(OMwC)JIoPIHgjjhW__ zN)xRuJ@{-otk%4k=@v5GmqX9UA({HV`fjlSJl=j=PkmoyyL0Lmvum+^;pD~k!1P<p z?b-&ALDsPW>ZY*)ij@tZroDe0Q9WBGjFDtX2pgav^_LACdz(yo8wc{nY=F{}w*lVj z*Z{OsYqA|sN5&jGKy0+q^M}rVQic>7akHB5Vg=;UcrsRi?CI^0du+*H9acb*w2ET8 zFpmH$Y0ZAIm*oxyM_H|Gj5MTPkRly#{6FFP`tinpnVq`Ff7aR`dY()DHuMj=h)E4= z?idaO7%J0@|7xbNlsWHZ6_1H+3^GB&$n8}vbGrSmlh`qC{T^9h?Lh5!DN8u}l(rhP z1Pgh5ziZ3@SKZd$D$D5V7FF+#N68qjB7`wMo6T%^m5k43Wy7n^HJhbqdNw=FhL<z| zZ13qdyf7EkHu3Ptfs@$wlG*I|wwGAoMQ#gxY}*S9e5v$F8Cpl!?&3PCfpwuY(y<Ax zH8zcP2G*5mlG3RIYb!mcZpy$~H+5j$Ay;*LU|lH<eB!{`ECXx!a+Qe=PCd@RD(lau zHlLkte3kWQXTSJ3<7=yA_OP-+ocU~Ke6?ubOEQz$b7gnwq{i1<KT5%}jIU+R{I&G( zv+o#RaCYXaszYSi0RE^)_J8vVroDyYil<y1V(JF)lsV~?4dAg3AsaZE4d9YV8^9-? zi`Jd&T(s^q&PBV6+39h%W)5G=@5HfL-u^9m1Nh|=%}Y;ZOxi#zE~SZ`U`%rMXVk!S z$7QN#Oc<DQrBTgfV0x!BFr9Evk|BxQI@8o<@;+&Ds)i-C&%`2DW^&5fq)bkwtIK#K zIhQ%<N|}?c{0KRpZcLK<oBXG8e^d7H>DICNDdW?5KcFvU=BLfs=cmQWY#G}F9-p5& z`@gae{JZY~fAw2rL{#nM&EJ8(+tsG<sqX>*f3Wv+Dto}UkM98&SA2(6ER6cG9UoaW zDV}~#J9Q5@v*R;#f*qgY%)Iu4llOp6X<qv~?*U&VU2$v=*it*cvWgr~zntNB!X9uj z{mL1BOU}vc0oU1u=cqm4MQVL{iL(dHy;`pIWVu(1nXhcAG*gkRCp-PJS?&K`qH-a9 zwd45vzb85Vs{1o0^-pzwMv3146`eBe_$#-JV8uD>$<F>Sqd4oySkPirI{Uxj!wXMp zek=E5&8eYa6ZU`g{aAYcx6GN?mQJ`IE5`osTgHcDF$GU?|M&R!f!z0~8kpb6`#}Cb z&;iHU|E2Bg?)N6%|7CGsj1Om7JcTQ9Y__+5#~W#O$a45em>qN!?l|*T(q&}qc1?wM zR&i`57KdyovK%fQ`Gi)-)TyxC?K@#Atn}K%sj%opH5DG6t=Hcs&4-_pa!qG@oYehh zll0lxdiXT+;eV6K=t<6pOSHYA_kdMFm9F9bC8m>p?~b3z463$J9t2Q(1hV2?mh?Ph z_jr2jnCFIqp67ZBV$a=>xxr-FzI1wpx-);EZ<kbi>c@}B!kNj;w#49=tc%Aiu5Jl2 z6<0jUCKWoD8lHH&2&2Q~H8Zh>Cf_YmUB^S5+dC+RUNSqEbc&7G`=(j<KF{%zo5r#& zeNQkL<dy(d2d2AeOt!sT21A)P7>Xwt3}w?B3?)+*!Nty?!ZVBD$GvH+?2R-SN?Z%! zV>gY-uHW%*8dLN2-_c+gyJ-xA!MSN{vcce*uWN%rZW>bt11(1FEs4Fb^I{sMtm?|P z*>Ud|`@Pu<YQCPuUf43(USNe<mXIfGIoo0{e7}N%O|cgaKgQXKV{^Ryb55j|r`!(A z%{i{yfyZ_!WrcF1>V%VLgBBH=*`-t~l$qy6)cwG>NCrilb8mZQv+|cqrrWG6J^6)7 zJs%{_((Kx~L@!iYC|hTt(wb(W@{^*nCTi!gg-X}`{*(0c5=!xV(a-arIC=f7?%Z6> zb1omP7?D9p>1L)ObWscaTys;8Jm>OQ^7xOqu;;jDud?|{)#_yCd6sFl>%{wRNJBl+ zqVC7;`FpKk<)N0b)fqPap7rkdiB!0((<FDO8}gTj$zKupd-us5^N9x^l)D3r14ER- z;)fB-OIHQ#z6WJ6aMXN&odYwj?&ml-qShS`3`!|S_EZeBjqoS3jqn#cIh`A5ZyrRV zE%kjjV$L&rnw>XnuP#mZCFHh*q$A`cy!{z3=brt9h|F!YHy<Ig=W;kxZo?^>*URZ& z;?Ti&T$&ilPwe5@qlFc(dbfW-4V9%VUWW742CQ1XRP(2?<xA&&9B2L{cjn0aspNNE zzMOhLj;v{9mM?cwEZG=T>zCUWQy<N0m+QZA{qh9&<H-JCE4i9*KTc--QtrnYTfg*7 zUcdD2xD3TMNgvAo;C`Nmn7V#>_*~9T94qwpA9y^S&bnhWoj#;lO?fErchHB*THPWU zL~l{{v5lMm;9;5>S*!me^kJEl;`d>%&U);P(}!dGI497F&I80>`q~?z82|Qvo?_Hn zICMtq_=-_<t@Yog7}diCZ<u1tS2rr^8zxYUcgO&Ms?j$pYQ-oIxSC`0FPDC7<pJ3@ zRzK?JTNm+s>yneaUvXSNI?rRM`xU3vkH4O5FWz*#`zQV`NWrq~?@W7tVvJ3n#9p4t zF145W?WOrGAGvxUe;`u0Kg|9&_XP~9Ck~zG!|mF#-WSw;hs&`vR<JV}NmZ4rN5h>L zE6CH~zmV!(>c1?Zo(=c@*-|z!?A1KgZ56C8Dp*!rJ~*(tWMG-aGvDv9m+UL}q2063 z6E65Z&w3vrMttz+p>KIM*4r=dN~(CpyCd~>xygf3)MBrTxQLPKyHK{Gd*$*km9<1O z>AV{Poz5fVezQEi_=5u%58ULr>2i6JGQ#tcfBpd3GmgH3ie6|BFYtU%9$H>d_&s@O zxnL;%jO`q;og;H+&*kCZCmF65N_>|Vj8uHE=e`3kVjGz97&1?J7UslnCrjneChO8; z+sH*^hW#mZCr^BA8+jWk^VsBr>O~Nfo;}{KUQ)qJBJSm+iBBM#Ur~xl?I+jl;;HUQ z_eW2dD(lVUlAgOJKXOcEV1Iab+(!a-ylm{wP3p9;cb}L^cFlu4Xsn)<Tr^?pSZ?8x zCyb}rI$qTK;Db^wbw66>X(p<FeB0PwU4|K^pOs9{PWKf%c9#+vyGuV@OuZJ)yOf6{ z5B`aIb_ruk^1OWw=GJH)F{uUggCjZB@*V}t+yByU)9J&H&KCoK=OhCZLK@50IB+0E z!2$<fJg6QNvzJPXp$d3thfeC<p{51P%!AL!*69IJ74Eh}Q(C;(X*rQ8EyrmZx}ivy zUof1l<t&-da>~<_+K!XI1E~X#@`zfkzmAsya5E^TG5w6k{b=w|1l%?JZtP}x+|PNH zh<f6$2E|u1;fcQootEVEgo)4n?c1$dlErg>w@E9Qy!B(B+MbU*d``F9?KH{ELw}NY z9#tHB=+C13g?dyRf9S7}vnDiL%0B+kAGhB5WfkW)s#(2-TOv!CXjmh!$ZE~VZ${tE zks@{E)dPD*%>zT~_-j1kGjw2&sz+M5JmQ1yQFpG&o27RAlHbmai|XN?GUwr*;sf$< z&o=y2%deU6aE~Q7FQQIrrhmAH`(^qf&Xh%-^($1%HYa}8uO_o>GqY#?%GCXf#gmt9 zL@~;okS8bQ*)^xj9LQl=cZ5z8pwnP+^T5x6!=GehK|Su%rnD?QgZ;#tIEaSZ%1wE- zO3l{D%AZ!Uj1inwnCUCd<F|$Mt3}7xv;I@jvvT8ep<B-uYCX&I!%ENU2Vx7!hG<!O z#ou%3<l&Uvj$W1LQ)<-nDK$*vifye~<uR2H@X8dWUu$_%g%>}JJ*m=16zWNpRJWsS zd03rQ$n6nne{y?n1B0Qu$**w2O@7n0;!5>+irm&mE0(tfaogU+cRw(ItuD*lRxeiy ztvpN)2x2BbttQPM4JW_msAQ(s^6rOi_?OEgDjCgOs2)+tXy$1iQCTD=QEyM5D#O^_ z^bA~DHIF}^l2Oh%AIRA~jdC7)K85&1dCkk)H}Rf&StF#Z5z0!MWhl(*{BT8WsnZ7k zRaEr*OlfJ{VgELzqA4jYt%!ptKCPlh=c1txJfid<+L{-9pjwp?Fs`hXrXFj3G-lE} zLF-#`Dy>g+^>JI@0bWI;pF1vp1XZK5T37z8dO%xRg0mpwv`fpmtfF#UjV>;?pVo0; zH^-ej$m^3@oA1M`2D7Bb_5|(vpuCo(V0N;3S43_)jU*r3C5=?wJKik!jz5Ynr;$qI zyjO;W4@=h7z2m>(4%F|X1Ew}ktOpX9cClxI#?BZK-t8Mi3#&IC#oj_Y7A;()w6LYL z@KZ_)qmd5`qlNc48kwrub6^-P94}M1jhD!Mby#p@f9$sLKt}iOWz~EeKIMa~9zDfv z<K&y$#(9~IXkL5I$U}+WOn%H7^=3EU9?_#isos}oq#POgsti08zhRB2LDq;qxf5sR zA?u7uGWnkIQ+mESFh%F8d&V<5H=v)SlWySLGd|uC-bF`{owdX7oX3Ka+G2A*f~0Of zU82q1R|>VcTQ)%v*Uvx^Pc~cXvzsmQ!jj{51?>CGU6X}e-RaET9)Dzlt;>Uf@}8ZG zdCyK3Ti5?(WuX)~_fAT~m|*TsY0{aN+VfYF&0V#_WN$5#en~Xk^}L_IxGZr^y>}8L zBBN&I-buHbrGQxsU{sJfjhf9o2Kc+&IBBA0ttmH7ikdYYHJdSmFBLPm%-jEc(Xqp4 ziH_xNv7k1CcXL3Q!HY6FRy8JN3Zq<UOjE4j3A&Ymo{?SK!PCv4>Q6<tW^GWDtl-Sx zI902v5r3w3@YlcehTFl|Ba`glDQ%SwWlph!r&`M=wu9Xo*s+6)M#k-6Yvc{FgEOza z5StdIukGN#N!h{9_9g0AwbPS$=f%wKclw>|;6*&-p0R@m=19-sMu%fs{eGMSs^^qV z=s6jCIMZ{M%KUMe%pWJ%#A11!z$$rTdd?zj;^Xw3@fl>s9#K8#=jc9r>DUZXUOpyj zMP`xm{x@cl`Mf(Ozu*Q>K_Ih<zw?XqmJ!ad*vjA4Cqrtg<nL7vVi(CAz)Z#{mf&W^ zfw8AdCr<7dOEMeydwA$Y9(k4iF~RB}g<=L4bYDq+n0F|WFRV(L`s<N?K02LeRNphf z2=O@wWj2_#7nG-+skOGZUy?yUy=9H8C~Jh&WG2|R4IgI>WWr1^(*qVw*8{{Nskwd1 zOz=cKfcrSKQR03J8;U=9YA=16YLuw`dzVr2ZfbGTM37<QePWTwMDRAIH)>1ygSrFU z$N{z77C2e^<M-O=Gxi5f$XO;?B?}S$5?*Q*FJ$NOLBCwZ<Jcb<&#V7#+|0lz&NR); z^H_S=8C$|I$IOhcxR&?L%)17}c3rGyaX%zgSzB}Me9A<i*xC6U%`N9mM7WC<_o+oQ zXXBGqxA9%iLbdD3i{Hj~J&R6p*Hf0;WbQb=>nSfJESAN6@jCvlr?NWO@hp}d&r1)! zV|>R`Ey8`6HZ*k+j`f5CVtv%oa?~!|YTbn1k93-l1S-*{hhulB)r4iHO!80!nbid6 zwx-{U%^{lexQ*!g<2Iu4mqqe&JGLE-RQFxKV@vwi|7k60nr))rdrSJRD5Md#8JxX{ zk7RZtWL8%`sNdDla<$TAYF{GrN^0JRu091|*LseIn>jl-{vLbYZWjFQb2=X9O<|4c z`S+_ADds00POnbzn)0UQE0(3_KghvyhBw}@Sn)&betFZYUTuAjXfpdpE0&>Z<T1i@ zdj6mjk9{OPe=k2}23|%6?Mpm%xLLYReyoX?(mt$C^Vmloc$oA*VSezO_&fWaioN9% zk(>`U<iyYB&A5r7+`gyc&zBF5&N_E6F(S`R*K%*2)j;s?F3jb%k1RgLVlwoOo=42v z3~%2*kO1C~JF%lotPiC*6e~;|TX_8j^_y1!F&2-$%`TkqN>&VkxpeMJ<^F{-3PQB9 z+NNIWPSp;W19cvbc~tG#^PeCEJ9l}<7sx$t9r&(Fu#gio6_}~t^$Q~%H#k-7oWz^f z$4<ISU4#6Nm7LHpb`4x7I9CwkA)jlQ^!OtkFF2=u*-5Z}Fg}}C3Uk41kDmwdJ&lpn z*}U*o)lJV&>_R`$%2ky4szlS+kov*r)9FY@ig?oV?^V$-p>$qMuN#bfKSEa9B)wlt zdNPtwjYfL@c)GljJ%3o<Vei40CvXfyT}peOoj%FS8TUy@xjx?e_z~$i;>uJ0)e=8N z%5QXE@A!A+BG~g({ht$2^-t^7^<O@yLM2`(zN_=1T(f+y3@6e+l2n8$a%8%qcqwgB z`QxcS;mNMV-eRdsr>VTRLt3Y*gG^mX&B(bI>T{h+PtSjX7MY})oEme^=2YIeZF07u z&(_ydionHavWu759iHVYzQKTGBrD&ST=>mHA>QTw*n+d|?=4vFDR?yg)+-V(b|g~s z`qNueytta?#Vhx9(=AeO6Xp^W9ewiXQwttj@V%CSvj>)Y<W>HezAsYx|MK-*y)Q^h zkoRq*sFV`>3Ho)xlkpFB9Gh55`^a)S|2?X0n2FhGZ+|-(lrCIXygdCRp{}+cQXK*F z(lS;wL}K$&b41t6d+~}!oll3P;(wWz*Mt?>$GDVD_78_fS!MqGAu6g-RVfO^(iJr+ zL2lG?B}O8=o4n9@t%J9(PsY+EpD*PC=OjH!N-Ey%Kcf<dUNRFu^Xd@&>G+&)NW&e? zxgznZCw4>P)%;j@vYHzNXJ22E_V@3-p09floiX~>`{fdh7T%9(XN<~g_+@d$c|S6- z7ju~{UM5pT-*WdIcTE*jQ<E~j!OwfP_Kq$sfA)UKMt`~|*WMo?E`MX{DBAqwqpGF= zvw9v-YxdarqL~sO%<btOdZ{o|UX|zASrmF!@`eIc<lNY-#H+L8vs4**87}Xhm-mO! zPOTM@RQ$v_U{R`pOa2s>Ji*Hl_Q{?WO{XZaD6gm4=2h|ei9=(xJs6*(iaDB77eP_` z8&Yp21^Zp1WOPZtGo`|cc*@JJA`NMbqqCi}rH>^Rdw4G}NqCNzgsR4SnWi2$@(Inz zsk2!<mu4!=-cM}}Qd^f6sw~&|{gG5__V`>C@(uR(jjPoA*gU^gZ}%?zt!$Jpplh-5 zX>qT^AFXidS$EN;S50awFXi0$m6lAuveOsD4O3VMRT}wS0dL6nAg+{A`FH#tguLQI zeGfw2;(YSogV;-7%X|;w9)6$1_aN@wb@JbXxIm(0UmJ~B#_Lx}YwFh^<a!<Fdk{|$ z#Ce```~wj7?arqmxSJ3)Am4((Ca)LGU~{(q76fBTu_T8=tKqEh=)zO|mIH0Go_-Z6 z;7by3B?{TP8T*2SjF2bzg2ZE-GFq6i$LK!e--GzTbl-z`<}=DLcYP0nl?q0LKL5i~ zj=;bTp0RI3v^d&y<s0;E2ua8yp~o``>F-2b>KI+Tl}x=_)cH=tEIGIVokPtk{Wj%0 z5qr?cly_0(_(vi><Q$TlQvBR4QOSKMOXLMHvS-FeB3>7z^u~WA!ZqObzVKxVw|oV9 zwj)AO2XUbgI~&maH#C;N+~N5fv8y8kyZwDq3%mW>M8y0(44>^td9gSz(Q=HfB6L(i z3#Lu)UWs;?rqTI;K@2BlX7L^pnXpHsebP4~RLTbOvWQ1~f5Mv(8JT&X>s{1fN7FL$ z+sf-GzL`1hEP<2hMU8mXM@U)1mNjtt1`da1^Q~D9H#am!$a6E)KnHAqm9Q$clzX%i zd##GsWAbE^pX*<&ru5#vn;C88;t|afS)t$}S%=rkLD>kD*T`~jku*#^<wo}6!}6I0 z8iZ_Khwc4GN6sBQPu&SZoGdi(cBS%1I9DR8hZ@*$^m`A8rY0*TU>*I=z?c1ZItS!y z537iO5!8X)jNL()qQkdf4$$sb8nKT^@d~Ix`7Vn7IqBOd@`<Iv@vr&Ru_@^Knok9J zBi@Ch3#7J)Ez+o`$IYLjCGuWhE&?kg>Ldzno;!GSgqh8|<x~R73bQC53n`UR%=SHJ z;Zk|#wPQV(XDmYJ`w|0v{%sV{mIcfnd%JQh7+&yAZp3+rV66o;v@{~;cYA?zF3#q| z1=8D`sLP}}cxb$5&6KF`S5XtK{Ls-pLNK1}_215+0?#*PG$ed0M?U8qk%5sT?e>r) zAd&kISC1zbkRt(->zI<<y_w|XhbuYmiC4WRlbn+{2j%7+4yqKL^v4q|(=TLF)mJKs zmQI`KJ()!1hbvKD;iJAUG@ht*U=GT<?|7n;h4DlKhZpFQGV?5=RTUZDq>m1H8P~_; z_0mbvg&&c&*#A^d&BUARbmBkaT7?Uo+wYPe5wp6EBQ+dR<s=>s)sOzG?X>O7`(NG~ zN){=z<ch@4`S^`@`z%tlbM23Kbd*1{&$1gmWTAtUHzco5k3MRb{g*^%7yXyAXTHf7 zq3)ET>`}X+cavgAfxOQx%&!dv59!1>P{S9R5UcDb4lkCnI!(YXR99iaHzl}ScW?h( z@g?(_3Y1kXGM=eAKG&42RFj6o-*vQj(WJOkGxqlXQ^uDFGI2SVhUk`LqI0gx_?0L< zER$o@;L7rs$xlfEY9;Q~dW4*LDFddcGf(0z%#F%?v$;D`Y*_mOnG#{fHKo6o*jqHk zgrh4<A1ztIBz)kPq%-kMm+2^9B5cX%^T!{*zxaJDmc7h|q|(8qVm$|BuqYF~YsnC@ zgfkq~yWROMo*lRGvAptUJ38;iz%KvK2JDY!kZ**@+vt{nd`+pIZ*&Eab?NzcsyQ8P zK0bFfUp$g@)f~R$fezxZ_c_mFp4`AP96zTi)tgWANXbXQ4ws-ZA81w4oNNSdS)Y^o z@OTW*V81=E@)TppP5pMxSROtnF+@%=hP>3*#$#A6G1Q%644%}D<1rLT3}F?6eje=P zt7BFwFdorkbl3+Lo?=#Jr{wL_`jQMt3}vSn!<^KY$78ruV(_104Ed?`<1vWZd7$JJ zW0;#N9gkrc74(3qVmP(->0N(T>d>rAZH(UZK)#A(=gD3V@A`t&o#Wvze&98%E_>fe zhc8}Vm}+&xb8`ao+lo>4i?Kt-*AF|1aeVy{?P1w<o}-m&k#<G=5A6ABg)q0H**Q;E zX*nr?#lRFJ(}V2~$r7J>^{$6E>B>WB+)}iaYD;eLck=#FCgaN+238vbt3Bf@w8zF* zXjjr?m#s*B_b^I}#om0LRNG#|u@%nZq2zpI>s!WMa&ztOn$i6I{3R9RlEg##-0Btc z7x#Qxnd>S;q6<-CChG9x67vyauK1OA`_E|+qJ4RjgT#Df>s!#ACF)Ll&-rqrS9sJT zs*CVt>@r&Dy+v$Gy`MNFZ-d_L_ecyVIO=i{`$jK!to#GYdb|I-<Ym3ln6jnP<<oz> zE0eWNRz4OcxBH*KS4`I;F?>prD{>l}mPZ=wr3RT?)tGb!3+&$uc<L~*w{(;n&G?ex z?JAsDx<$!Lb0SU48yf9p26}mAggCcLoQ<hxJ}E&k#dz=cU21JIzoV2(#_FqHn#_E3 zPO03nwYX(P*io{S&K7bl1B?tayb-R$A}m#~B>g=ZMC^CTz?1$?VsD8v=(v_l%3o$| z-|<<Za6PZN-9N&CXZw`se`M?I=VlcX<8u%GdXS2;Z{K~VRAAq3nep1&cXuLK^F3JN zZ^Vx`Xc!DRyJgDIfbXw~N{$!PAb2xSM?Nu;uVYkVWJN@B6-dmH)r>1-v1o-_ERq+j zvOV4HjP|9jwkp%4j{jn)SkM2CQU<V&-So=z{9P20QB@W$WmP%9|K(U^;--8)d-<*~ zUa<>Su#b50O(pXFyi4*EOYS$4p8I3@c7B6o!E<TF#XUc>m*+PsSIcrGuDV*SgEq+S zhpE1|%4>gL^!`~JMO(qgEc^fSrneJcvM$Ho=l$pXe}43p%PH4T#X~(WkZc{vt}jfp zW<~t{FMIp`iJC}y{*k{%WZ*)coKT4jTq13<Pi#Jw!}spw#d`ATS29M120UMt{IY;X zmSa)L=MQ;J*X*0-*_Y?rMZE*L;fmQkzf!Z?#g}+!{-$@wgOXAtFY`R{>_jT(hI0Gr zeEZ?^znRCq3dto2`;YAnfAm^y#o?RYTbFprb6Nl3))z1;$_H0pIlMge0Co;(W)9ee z3A^W<*YX~{bYL;dvB%P}pYUD5^i9RidIuRP?6p_P31M!re@D-M($p(vZ+*9ZKLh?f zy|39z-k#*NxtE3qmYhYNWf9p7^VnyFlkKf@spgWymvhmtviEV#uhgs1oX75uXKYQH ze&wMGa&CGTy{b^I3y;g(m~St+)n4)yKJyi>$mw~h#kqFUUL?Hg;_Hn_>Yt^tPTa2$ ze|A@|KPOrEkX)SeA5MCb@<Gz!@<B;d(!2kP7xrF$^zhJca&5lJ`kp*q()qEc=AHlO zCqB8G1!>O6zwMk)Y}?E4%G+}GRpuCK&D6=V`j9sHyl5pYf@bLbdaZmT(fjp3ldx2C z#ltZk%t#mB^b@C>5A*v^1NOU`Iluhno!+l6%b{I*zrI7_*XLi7cs+0Ye14C8P?ve` z$6lV7ceG_7l=%ecSk*~&sPZ(~S9+Xgy~18xKKON+;*MtCr%~wG??uX*=eyJ2;X|&o z2KZcjIPqf6jfbQ=x?`03YqD3e5n=OQ><8|ZDL}(9d-H1xzQ5pC1y9Fv!uC1#X3w~* zA>ZCy=yIC&=AtoYVu-I8MX3Frud<UR>7>uAry?rm$(~F+_gBM*N9q5nB+j1(G`#2h zhne?2vEX5Q?|BB_M5}nX>nwZd%G+&Yz~djjKt6NdZ;T$c)5|-yQPlMOR-!~XrsuEX z$CX#!om!M@-u*m(`d^OEDjy7AJ)HOhBXz|r!|3SylwqbW<kx<W|Bg@c`@Q_Wk`<L< zJI%9O4GlEL+QRtRi)Y<Q4sTkLo+mP~wJ^t?cY`D|m+jDjc_T#b?Uym8-JVyBuy6F( z7nO0sKy6{<YlrY2WfkJ^Bec+p{js-qq$p;3et;9!8!MX9Ph)ofY;?~4T6sv!xa&F2 zU!Qw5W5(R|?@2Xc?~E?#c!85Up6Ad0S>i7zrh<4~c_rt~A@X$`>Nq54J;$GvSNsMp zl5@+`S1#UK7|$oA`3vz|{Gk^(8Y}4#kt&rU6UV%C++3cH=cnh(;j}98VfnxqHQ?=+ zXV2U3Qe|TWF#4L|l+P)fH*29@lf0@z@z6wU9!2_7N%HW&aX5XETpjzO4ziVg`bw%x zH0G_!M=n|VY1D3QAs*(y)_k;C#n!^EhQx=B*ss#_+oddXVu#Zo;0?01SS@m3U`~43 zF(=ye)9H&O67hT5Udm=u;o_xceAeRH{MhaR9(`L{I8d8!9~=EU2C4M?Frlw>B2mpn zHJtLnyQK;j*S;3dkLdcN4bgrd*;8n&H#=_lB9(ne7N1_Re`&AI$8(_ec@~?NzBX{t zHd@O-?Q0dkh?|R5(~0K~EPej)S14b_5w>7n&y8Pr*9(737Z{4=uVDK41Yr|fpEtaH zpXMBnq`Fy@<e*f`Hhrj`)Z{##Ucj)3vt!egTEwvx>y4&VHRr1+xumn@Ncsr|Op?lr zS4(^g@F!57&q*leq|eFcWzru#*RFkm?@i4eSb7MfXN0zT<(0#BG?j=xZ^)(JU;7$^ zNIEr_{Mfb6r`|`}!~17RVL6<3`i^vx_^eb7el#k1Z_u*B)Z>J^ay1pF`?%_5y)TrK z#NGG4pSqg&W%)b*9{KyOFUa4E?v%eD+Qr{%w$Fc9iFpqy@vhG)G3$0E&fBTP1=|t3 z{%qDD!mc&$-mRqP?)#C++Wfosio5?1n>qVu8T`&Ma*Vsg^X}c`fB&p|_&e8Q4DO%x zWqzrqE81zGe}o`+#njK|_?ezxOnbTe7zdcE{z@uIjJFaFb{ye~rsrGyOngXAFyi@~ z^KCh&L*h=)_v43kUy68SxZ??0Sn59U9$sJ6ai_GX9oSS;I>+;j&$LwOqqh_C%F%1r z=cjf`IJqpDMo-gl+C3eLj&mqkdx-6c=Oc0%E)t!{@kpwPU<0+!rQ^@1pH?kB9Y3T# zzo6Rw#7q2KN^JgN5_`MKq`GWGmy!`(mRgUFTv^BWHPg%Q?;!JEmp^>3zG7du*PcVu z%4H94zo+8$u3s>A%UPXrmi#&HSxy5{3GsC8{Y&|V$Tf>|Vps>HQ@JE>sCQAM)-d8P zl|S`B0axjo#dXEr+xOUeR!<neM2pLpkn5J@J?#BTWl_^|?^ia@E`N#@`26Djm$#hD z6Hs<tVZ|$5bM2M+c?T+9?K+DG!%8cj?n<dUXC_4VxXRD^*E<HuddFvOH_Z0C=mSOs z8<~MX-C7W=Jy!k@^?juMZt)t3rl?E#)d6PekEk)mc`9WY`MN-k$%hp2k>`NaEGAZA zhy7S0N1sR>%F!3XUV5Z`U>@fgSE72HkC{pz%_)ECLnzZhRdng2`uy_2sUa9`H^|jL zuT%YvslPq^Ri#q>^(~1Hi8eCgb5$cN!V`VwbXcdn>5C*2*afC6?J$cp&p$L?^w%gl zB~Hgt+OO%Xpnb<`W7wT5ryvcEx=6>17=N7B-Eqfus#khl>H!i<>@AkICC^g7V5&M! zM2{&&)U@Iom;W^UwXe}t(hNcK`iEn4k3Mm?bkfn*<;mJ(bTLB;7=Nui&iLSw@*GLe z&)2e0Npi<|rkq#%>+;$o<wq)x#^-$f3Su5D=>JuGj=gW_kXdkK;3CP=(WeJ4k_4`9 zx$2SO^m*F|mOigf{k={7-LC%bRDYN7SL*A3%D*pg8`KWC0XpDv2*JC-fam|-FrI)1 z;jiEh*aq_N8f5903?l#^gc`UUmP0FSf!p8?_#)g7d*LZK1V<p3IErBjTmsFo3gllt z{y)Em*T}%*a6jAwcR(L(fp%zwi{U~jhJ2X(?^zm<``FsHuJ%xOtZUuIYYj()<d6~F z(zanECw6Z7ShTA}T!uQ<($TiDeJp}QAKthrW<@t{ieKAdNx1H_wBJ8n`lF8*{nJYy zmV?%H@$Q(lCTg`=P7>CpE~{;$wQgg~Q2xXok6NYYwg2JRsp~dcv5u(K)wc24sC8A~ zg7ex}JLjI)ZLRCJB-u8LaO>Jty4J?F>!Ol$OAGnDp)<NR7H#K@4eLmG(=|@s#D5)J z0c)TeF5eXEkg{*sbiL7i#T7>BI_F>eAL2Ro??|N_mqV&PE|B{8pw)R}bYuKFt1B9d zcWorOXjc~nTf3<}YMm!_)VXQx$D*<Bu`)?!GErVjeyyox(KXSrX+wMTx-!d=i^{A` z*R^%DX@T<t-LZJP78&Qp?#*S?*T+9zW?j_Y)porWcq^y!rj%>iHf$)f^pDU7q)cOu z@!v)!jO17SUZf>%NkopTToCWrZ_ZK2IG{3&TS?ryBwAAUS6tC^#kzHd)PscAb!DvC zB(0D39Bot0?3#5OHne0sIle9y?P`my+q993$8j2`T#J@a3vbG~=mOQ6YAC!Fy5Iv= zy;Ir=$15+mD0AGpeqF4?S}$=-3|qJEj|oZ}vo^<RVb`pScAe<lMHg)9x?oK-M(!q@ zIw9@4brby>sYk2y15U1+xT2QM9T&xYbejB3=kLnH<nXk4X+V~aX~LP~esUe^RLh(G z#4$h4Yl@)<xKuUKwI7pkO|eTh#Jf8z`P~q2Ywxx!_4|?yb(`YdQT<!aaE>>3t?SI3 z(|rA=NZYzDb<PzVqhr4>cMhxLI({c^10CtaizH6mO|h=Fb=P*N{-xsPn2y)banjc% zYCQNS#;h2*b&m6Q`YVH8EA~!~gbwGL{{&y)*srG<+c1fy{U_4}@nHQ_$&CA|osOP< zAF={6$9W^wg!3+Do-W}t{v$5`$3AVCKZJ+>PR?-tz4J?kvFlFyqwCmujxin^Wv*ji zmvN6{)BXG3JXYRpL~g9@>T0=UQ`dEEw5DgoeZ$(8#`wnAy6d8NZK4G&%8A@~*~VB) zWq1811`p#;aw9j=0vSj+<oqyh)iGVMc5S??D~dL|f>8C00WFtCW0%FE*I^-Kjx??N zc+~g{9ik~3({cP*r`~*Hr%t*!FLGl`Rears_T@5Y8gn?Kvg_KGNLyETv^n0n0c~2J ziM6t`Gs<Y)m~meoy&kJzN{Gsh?H`Tac>N}ZZ)1_ff7!-$v89{Z;~Sz2(abl-IyP+# zz5l}Y4cGwBd#>q<lE#IzIw@}K8pAku)^!Xio7Nh}AI-WhdR=#vT3a-WftwO{&5CVe zbV0#(^D9nvx{Rew%c~m~2UK+Hb6TPsWxzz06C1v_=C(M|wXE%m86V5|x3_GJlYDDV zOM7&}`JUXCb>x<y*BP_Mf44-9`8h3Z*L7dp61`y^IV!-_z8*WI<(l?&TVyG{rKP&F zbLHC3*d^;WNXj40ktB(KP5jzxv3WW+Z9=nc=e)HWqHP;nVq62#x@J?0*c#pZB-BQ+ zi+-Bd65mJ-e9X9mv#F*{8&#rPa$D5VlDrmuq?_{Gur}HmQ)bkLXxGA)wVSTHZqr8N z-*ahC(JnbZ+D?PR%(^ye_&iM;qR~#{t8U-wP1kj{bw$TcGA{5mQ~Y%s+hWm3*QT}6 zZpOwh<<Q8grQvOiWe#5KS+-Hkw+$)<a=|dF3vbN#(CUus{bcTC-8H&mB3;pLA~hZ} zYSwkPt=SN5?&xB$u3xvNtF7zCYT81#(VW*1k9OS{iFREh{b=LbX!RyK5Vd?wF8OL+ zxAtS|fMNWjE1yn8m(gzi-gQ*xp2Js2*rpr1={n8y#ma6nAC+ImM{64|udOc+Ic+qf zv+k~ZrCxsLepy~8G|n+}+iRlVIDY4ChVd4pwDU1@LPaCZYO;kP=bicYzp(~tu_F0Q zkKq{eYVLt;AMIMVwrv9zey7vumE|e(i8eK(n0S7-8UUs}c|0nyP^JD{>4*UvAB$OL zJ<>_btSIIw<|O)4=1U#xF0>k>-SG`Eng2L5n=<Q~bzMwwq8p;u(Ir(lnH0sNWmY$O zawBsR?IqE!iE{2m&U{Idu-Y;aWu{0@;O+~ZxgM#gE@7$3N_PzXV)%LNVcY*P%sk4_ zd9Ps><G#1oahvQ+nz*0XtZgFvJ-EYNjyoUsF|m!h9rq&KQWx%jH?Xm}4Q_*-@Hw~# z#?Q&g$>m?3{^yzWZ`KL^&7R@EIj8ww{+s;Y+%x~))HQI{nSW<$;7kp?X=|Y1%)c`= zaHa;%)WDe<I8y^>YT!**1BGY)ovDE{HE^Z|&eXt}8aPt}XKLU~4V<ZgGc|Cg2F}#L znHo4#1OMx5z;z!0Kjp3-p1%=HjUjg?fZU-VSQ;NvFgy+>Qm`~Wq!7>qkwVD9L<)v6 z%fUnnmd1w^0-7LF2sxNY!3b+AkwTS&i4=@#2NNk+8Xr<H44z&TOpS#Ue3}4KkS8F8 zkb{X7jIgE>DO5R_NWrLfFp+|#@gW5xqG>=1@(?DN8lwp}m>LTy_%uc{{$Oe>q~Oy8 zkU~%sLb@@y<56KE1xw>Y3i2`#A*cx<!PFRG+(M<M3JIphsKyPZ#zG1{jS<0LXwWnw z!PFQ{xWUv|NWrHun(+ryV<82fCV&)znh?^B(MousO|u3Grp8!{8%&Lb6nq+^9e*%2 z7E<tO0!SgK2_fAWQNn|%v5<mK6F>?<O$g~Gj9aMG$V<Q6RO8Nu+`p<Yk%Fc1A%%b@ zh!jE&CQ>lMno6Wl<zONOquRkl3YNx)6pV<b0Vy;(m`K5BaxjsCrSTyJquIek3YNx) z6atzcQV31LXeGSRrdfjoQ)8^f4W`CI3O<d|jz5?h3n}<C0i+Prgph8GDB;1>SV+OA z2_S`_CWLeo#w}E8s*rA~ac9HmBz<ACrV9zC#^}Zkrp7`FK8+E>A54vf6nvThQV427 zNH;vN%CnV(*H}owrwJg1peBTL6UHr6YO0WKs&Qw-*h2bXYAmGS(*%%0P!mGB3F8(j zHC0GA)wr_}!Cz?5G$P$J;m$@g{xiWa=F<Pc)L2NtrwJg1peBR_Q)7g23zeEGB$yhb z8aJ343n}<CMg)JMLDPr?Q)4vY22*1p1)s)f#ve?Lg%o_608$8QLP$48E8&GU%^D<_ z8e=VPFf|rZ@M(;8{K3>%NWrHGAcdeNgmhy>2@j^mLJB@j04W4DA*7oyZlO|Bg>+Mm zI~ztP=?j}RT}UuBMmKISH5O9vX^a^DU}`L+;L`+<LQoSzy5Rv}`aj_{7E<tO0!SgK z2_fBtaSN52Dx{lg+}SX;kUp3i3n}<C0i+Prgph8+xP?kh71B*L?rcQx7aBB;NH<Nm zv(b$IOfa@lexX-$GZIXVk-!b6#zG1{jnRicm>LTy_%s2e5Y&W_Zj64ygQ>BQf=?4b z3PDW>=_ZU@sMJ&;-BjbwhH(q&gQ>BQf=?4b3PDW>=_ZU@sMJ&;-BjbwMg)JMLDPtI z(}X)4&G^p*<5tQKrp7`FK1~2A1T`U~n=o#nQd5O=Q;j<t5&VS)O(W7x6Ygv@<3AHx z2`{v1)*#)i#hs0I{AWUx@TU{QkSEN+)L2NtrwJg1peBR_Q)7g23zeEGB$yhb8aJ34 z3n}<CMg)JMLDPr?Q)4vY22*1p1)s)f#ve?Lg%o_608$8QLP$48E8&GU%^D<_8e=VP zFf|rZ@M(;8{K3>%NWrHGAcdeNgmhy>2@j^mLJB@j04W4DA*7oyZlO|Bg>+MmI~ztP z=?j}RT}UuBMmKISH5O9vX^a^DU}`L+;L`+<LQoSzx-sH}2UBAq1)nB>6oQ%%(oGn* zP^qaxx~ayU4Py)GgQ>BQf=?4b3PDW>=_ZU@sMJ&;-BjbwMg)JMLDPtI(}X)4&G^p* zV;kicdNnsA!PFQD++b=fq~OySefWc^v5<mK6F>?<O$h16=qEgw8Vf1-Gy$X#)P#_3 z!nlP>O%>8jHSTN}w~#)V8Vf1-Gy$X#)P#_3!nlP>O%>8jHSTOg@E001jYv05xU<oW z|4cA$rTk!OETrJm1du{d6GFNP;}$A4RY*70xU&(#Uue)YBHc9M&PFr-Goh96LYrm{ z(#=}j*=WaqCPWE;Ix%)~{e@3zK7|BRV|*Gnm>LTy_%z1t_=Bmjkb+MWKng)k2<gW7 z4B^4lSV+OA2_S`_CWLeo#w}E8s*rA~ac9H0gY?1FSV+OA2_S`_CWLeo#w}E8s*rA~ zac3ifztEs*M7n9hosDMvXM*ur$`7W-LJB@j04W4DA*7oyZlO|Bg>+MmI~x)Fg$7L{ z(oGZYY&7FP6Iux`v}x8L-K@o(jduKJLX_~Q6XSDSe=s!`Qt)X4NFk^RA>D*=3zeEG zq?>Bo*@)mTG-w);ZkljsqZ$91&`NlrO|u5+W-ab)wBtV$qJ%%4bdtWXS<{7d(~UbD zG5lvjobacUEu{ZuhBvt|{|8fJAqAf%fE0q75E4v{5ymZ4YO0W6YK&^!U}`L+;L{ip z{DlThBN9xF(S#dJjfE6^8lxG1Ff|rZ@M!`_A*cx<-59Ne7uqyykYH+zwYb65SV+OA zG1~D5Q)3|opC*75f|?N0jS(e0m>LTy_%s2e5Y&W_Zo;^QN=+5gO*QUp7@edqY}Rxk z!PFStxWUv|NWrHuV)%opv5<mK6F>?<O$h16h!Y-6jfE6^ngCJ=YC=diVcbHcrV8n% z8h18~Eu;^o#zG1{O#mqbH6f&%Fm9nzQ-yR>jXN6={DlThBhpP1?rb#UKNE~?lwau8 z+>8WMV<d2csj-lPPh<4q52nUK3O-E$DFihkq#L83@L*~zq~Oy8kU~%sLb?g#7AiGW zNH^8Evtisq`e14-q~Oy8kU~%sLb?g#7AiGWNH^8Evk}2xXwWnw-8A9OMl=31!MK(3 zgQ>BQf=?4b3PDW>=_ZU@sMJ&;-BjbwMg)JMLDPtI(}X)4&G^rRR>BKynl(r_YjJ0z z9sijSCH(2c*va)5KB@T>5=@QpY209HETrJm7`NjOrp7`FK1~2A1T`U~8{;#C2UBAq z1)nB>6oQ%%(oGn*P^qaxx~ayU4dV{d2UBAq1)nB>6oQ%%(oGn*P^qaxx~ayUjR^ii zgQgMbrU`d8n(?0r#%C!%m>LTy_%s2e5Y&W_Zo;^QN=+5gO*QUpMDQ0HG>u3%O}Mks zjQ>n%CA`q4S%Y-57I!w<@t+A%!k<oz&vE_1)L2NtrwJg1peBTL6UHr6YO0WKs&Qu{ zg1^w9X+*kd!kvv~{AWTd;e|HM8l;=GxU<oY|4fJy{&dnw`od;S7t&2P?rg;Hp9yio zpH8-r{+k)&PWr!am*#JfU}}uJaf7L`kb+NRd;xzjH5O9vX#z+gs0kt67=KH6Ff|rZ z@M!`_A*cx<-Gp%qm6|G~n`+$IFuq9oU}`L+;L`+<LQoSzx(VYJDm7I|H`Tba5y4+* z&@>|5G~v!hGyXHd_&drErp7`FK1~2A1T`U~n=o#nQd5O=Q;j<t5&VS)O(W7x6Ygv@ z<3AHx2`{v1)*#)i#hs0I{AWUx@TU{w9<D!_8Vf1-Gy$X#)P#_3!nlP>O%>8jHSTOg z@E001jYv05xU<oW|4e8lywIjugLJbNcQ)Gbp9xXIpH4bSU)ZeaLb~b3osAg&Ga*j+ z)5#Xne=}oziT)3!#zG1{O#mqbH6f&%Fm9nzQ-yR>jXN6={DlThBhpP1?rb#UKNDIB zFSKdaAl<CRosD+<XF`<lr;|?77dC6UkZ!thXCsFHOo$Wybh3r?-^^^I{6eqhW~7@0 z?rikoKNI>1e>%B^^xw?fO8L+5=B)$6C}jU1OpS#Ue3}4K2x>w|Ff~RPw@|66LV~F= zs&Rv<v5<mKV?^*58Z?baFf~RKZZI_#Qt)YvX8gg_SV+OA2_S`_CWLfjv=Uxu)2u;) zsWH~#22*1p1)s)f#~)0Mg%o_608$8QLP$48l<;6`ETrJm1du{d6GFNP;}$A4RY*70 zxU*q&lD@E6(}e_6V|3#NQ)3|opT>yc52nUK3O-E$DFihkq#GkncrY~<Qt)X4NFk^R zA>D*=3zeEGq?>Bo*)X<{KA0K{Dfl!2q!84EkZ!`bg-T5o(oHq)Y((%E8Z?baH%+*+ z(Tx90Ft$;Cp;vP=5=@PezzwFxLJB^O(T6{n8Vf1-Gy$X#)P#_3jDEs{sj-lPPZK~2 zK}`thCX8FC)KnqeRO8NuaSQ2#sj-lPPZK~2K}`thCX8FC)KnqeRO8M@1b?AH(};A_ zggYC}_|F96R>}{i#zG1{O#mqbH6f&%Fm9nzQ-yR>jXN6={DlThBhpP1?rb#UKNDIB zFSKdaAl<CRosD+<XF`<lrxRl**I)Rg=2J*8HO8lLgQ>BQf=^@Ijz5?h3n}<C0i+Pr zgph8G&k!C=jfE6^ngCJ=YC=diVcbHcrV8n%8h18~J4hc)jfE6^ngCJ=YC=diVcbHc zrV8n%8h17#_zMl1Mx>i2+}UWxe<m28rTk!OETrJm1du{d6GFNP;}$A4RY*70xU&(# zUue)YBHc9M&PFr-Goh96LYrm{(#=}j*=WaqCPWE;Ix#-S^#@a9AqAf%fE0q75YkN; zw@|66Lb|EOos9_oLW8Ce>81&HHk$FD39W<|+B9pBZr0+?Mmzp9AxikuNhj$Gn>AfX zH{H0i5yO8b#0h^o*+TknW{f-O|H56Gzd?ejG493<rp7`FK8^7O{K3>%NWrHGAcdeN zgmh#4E#bk`SV+OA2_S`_CWLeo#w}E8s*rA~ac9H$BI$#vv5<mK6F>?<O$g~Gj9aMG zR3Y6|<IY9|f1yFsh;-A0I~&dT&jjP|C_k7Q3n}<C0i+Prgph8+xP?kh71B*L?rcQx z7aBB;NH<Nmv(b$IOlT#%(56{~bh8$BHrnx@2~onIPK<lF{$Oe>q~Oy8kU~%sLb?g# z7AiGWNH^8Evk}2xXwWnw-8A9OMl=31p_TALn`RBt&05^qXvcphL<xU7=_Gw&v!)B_ zrW<!QV))O5IN?txTS))SjPWJ<KbRT|Dfl!2q!84EkZ!`bg-T5o(oHq)Y((%E8Z?ba zH%+*+(Tx90XeGSRrdfk@vle$Y+VP(WQNo{2I!RyHtm#6!>BgOn82&RMPWaQw7Sew+ zvyJi#y_%bmZW6e&(TD#`=qLQ?<QCF@Gjl8DKf{~14vc#l|Al|i{3{Ynjq!hRgQ>BQ zf=^@Y#ve?Lg%o_608$8QLP$5pzY!ixjfE6^ngCJ=YC=diVcbHcrV8n%8h18~`$!*5 zjfE6^ngCJ=YC=diVcbHcrV8n%8h17#_zMl1Mx>i2+}UWxe<m1Tq5NQKETrJm1du{d z6GFNP;}$A4RY*70xU&(#Uue)YBHc9M&PFr-Goh96LYrm{(#=}j*=WaqCPWE;Ix+6& z`h%&lkb+MWKng)k2<aw_Td34jA>CBt&PD`(p+VD#bkl@88_oF7gjT`}ZJISmH*0Zc zqaFX55GDNSq?7c8&6+Nxn{M3Mh~YmI;)Fk)Y$5$OGsXk-e=s!`Qt)X4NFk^RA>D*= z3zeEGq?>Bo*@)mTG-w);ZkljsqZ$91&`NlrO|u5+W-ab)wBtV$qJ%%4bdtWXS<{7d z(~UbDG5lvjobacUEu{ZuW*g-fdNnsA-6U{l<NvjHKERRO)tw*j|CN-uD+vh(lA2x| z3UYYe-SbDYl4dlTF#*Sh8c7qgBpfGcG=>fPS0f37o!r{H+9ipT81Emi6GJ7e*FY{L z#sOj=|40bOU7U-Hm>hTU72FwI1e`0E16Nmf)cHQI=l9#5?%D2<)oW(Mw5r~I=k@E? zuix+2zj^cYouBqN_BgVJe?R2}@dsH>l7AwDI|ivwQ~wb|Ng5O}l~|yNt;7L4rHn2z zrKAFON)<gyYS=}lmCS&hGK(H1b?k9u4u6q(B@1AuG|;1D5qlhI;@?j>Oni|eN|wM* zX`x5SGWIyKf`30{mH2}!N6BC0P9=ANopKC4N{(ZXBWw8gQ%(?nkmV%#Co;HWa1Zk@ z@;)W^f}L^-JxWevk0WRB@28w4{vgYJ<e$jkj=?$RKape%l4oErp8+=iNBwMxGNw{n zw?^Ajk^bBGiQ^w9{&w}#ulN$TANlVH{0v(DI^RK=|D8R4^mv3|<ob=X{v=*Mo`0R^ zpv=F{S7TuL@6g9XFq!|5foUJ^fBhSZ`4gF5D!P6r>%af=|3c?4S^w=38<h9|9_63^ z{5|p~dH;_bo@D(;4o{Ezk$nE!wr#l2KY{t%9MFU7KVa{A{sZ=|&ksKPCFb8}=U!g4 z_#yBA-?R8K&i%;0NB#f4&tE^^gEIdwu>L3WuOE;$zG&}1a`|Nacm4kNd-nW&zpVe5 z?LYtdx9{hBHvST|AJ4ze_WNc2bv_Dv&R<gh+aon7^Pkjz-wL_7J_cp}ec7i{o0IkL zU;iTm{*$`us!dmI+O%0@)8@@vG|KDETefTs>iW3Ywrt(Ht(QG`zV;K}t=qP3kL%y- z`oVZQuEgH9efy4n$B%pez48m@tMiuJx9`}obI|ke_xQ)1zh3hjoNqnvGWR=n?i@<y zzx_U^=Ru<$*PyPC>v8R651z06^gP7%?{)oPJRMih|DZqr{T~0g^Ve&BgY&KDUDp22 zp`qbq{U_^R)_`6I8ufD-)b(-w-1V{t&)0tXxs2=I>-xcXI<8&^{f-~^{(I#Y%va~F z*MIW<-|l1dJZRM88r1c1J+8g%!Sl7Bo`<;py{;dOr{n7RAN1$H-{T*5{(8-CaK81t zOYI*T9v(^Re^USDJwU$?Xw>T>sO#hUx$R{Sp0EA%a~s#c*Y$((bX>hI`W-*+{rAc* zn6J)TzYiq!KdJxn4C?1lqkgV}x<0O-t6uit`PxrEhjIOTT|XF4$JNh&zvIWf|6ch8 z^VNCl`k$=-Wc|w;(Ca{>elCN$KCYj;UiRSm+D|{1as7K;KNwHP)$5?&@#Efqul$1f z>b&*(AN0>ZgFgR*o`1jBU)=TEYkddTyI%Lw`wx$d{J`_6t5Tbg%?h^!^sNCsXy4Yu z-phY`O#is?cl0@azw_TY;Q0^w{0}AbKhW=g$@(Ac`Zt`c|78913?!fb+V2Cw&$qok zzsCLi+3(MPN&O$}_y45+5BB_zB=tY3|4IEH*v~&n{U7Z2|D^s8_WURP|6tF5vi=8q z{*(GY*z=#P|G}RBz~6`Xo~niu{PS8bEWF`F|Mvq%#cwyNZ9NT|Nc{NG|9yc`@!O4R zTTg=~(ks3(6Y!r^{-B8j^Ec|s4w{J0-{Q3`IypPw<;#D2<b)X&zul;|^)zTAz4H(F z&nkb=M7r}=_BwXN%YQrhqr3TUUw8h-LLh!aT^}?N!wJmKqOyY~qUYb@wJkbx?to$Q zZ#0!ZXd-(4EneHAGv^MN4$Oa<V^d;hZYyF3_54@SU%dH`{`2uh#cwyNZ9NT|NbmU% z_|GbT&_ufDU)k%}5pVu?F#qW8{O@=H^B;)cP}c`dq<j9AeGxn2%|G!)cjsT?UwZu; zP2~@oh&TWEi|)=p{$2CGgZanq&OdhF{O{QC{2NPw{9Ee&Koc>X!1`ELcF;uh`nPy( zi_V&Nz_9gitSEobM2wmC^(|i8qO;~5FdbO`WsXgWoi$z&d&l~(qFd<eS^vhWiVvEI zUjG)aZP8it4ww$C|1!s>#Ln8Th#l1Hzlz>#{nt2WTKrk7GvW{G^*<~A=wa)>j=g{D zKl;yy8x_CZsJ8VqXd=DWf53lM`GY3Xz5bQGjvevV|4!x~-Ch4XU%>hg#BZqUgC^3w z{*`?ZJL0W>;*0LCe~BNq{*`|df5cn=_>1nYfBd`F|4!CFc6a?__pSe(G1h+||CYKx z&_ue|zp^i5N4)jV{fq9df61Tc8wt+8v7-Dz6Y<tR{-V3<U-HKv(eq!%HYIj<{Y(DX z5t;ug$Jf99Rs2=rBi{NazUZub2kc(|#234}{;~VkKk?C{>VFO2Y4La0KmNY;kALL) z-}$1gf8(z9c<2v##xXTMpothx`~C8w{kXD&CZg-V#cNx1YQ6)8)qi76`GY26%(Sm> z@!A%hn(u&Vu(SS`IW{Hs`i@jZ?4YjyRdfq|J@wx>q2hxkVl1fmytYNB<~v|IQ2)yu zn-V)Uz9ROH`d>x2(4*>qjdP~OpBg?R{-Cb^v*M2)R{!hR%h)eR{Wngk{6Q1Z_21&P zEjl&d0n=b-{V#KDO6=73ir7J2|EuV|>VJ)Mrp2FHJtO|0uK%;*j~-V4>)7Mg|2eKP zk4XJr0MnqZ{|)r0`oD-hPW^A<|1Y=x2mgGqekW+7QSsZ2YFkf(CK7!A_j{*U{{jD5 z<qw*Oe*f2gMqSxK6Y=W*5bGb^t^Y&3|E#b7Hx>f%8|wO?iFDV0WnaXOc=ez7qPz89 z;)m6L<=?~~@#;VRqPz7U|E~H!#QMkX)_?52`acw-{s;1Jsrv&>q`Uqr`!aUKtN+}; z=x+U&{KM+M@?XIp@#;VRqPz89@(<R3@)x^X|0Vy<`Y-vf_w&Dsze;?>tN+9o-L3yz zAMEV^%h;yG?$&?ozWPu6p7no-`j5X`|MB<LfBYls|ImwA|J&nnaeW<A;{%#Vcl}rP z<Jb|e{xg1}yY-*^z)SW2#+vd6O~kAJ_>1n=fBd`ZKjSZU>U;(C*MFJ+_11qC{{-<7 zul^HXbhrL<{jT~?e6hRrAG@#q%l!AM|IEMmyY(M`U;UT)kE;JN|Cg)&tNc%rKjPJY z@)zB$|J+|!{U?91yY(Ntul{rY=r$78|JU%H7Js+?<L|5g_(#@%^2Z*h|DPlFyu^3w zKk<F_pZMru{r@6<@#_E36<hy}d)v>$#r1zmJs+Tn7*6~1;zj#uWd}_}_x~2JZPBYc zQw|u`{~KqNKWHMxO#Av4uWixk`5iC~cJ}{ej!lW39={@XQ1|~;bPIhw{l9Tm#RpBq zSWxkKZHwL@K9~kO`~Nb>ro_HTe6fSN|F5E3=u!QDjdP~OzqvCtBmSW7|7XP?J*@w) zV=rUB9R0s>pUNLJ5o1Z^&ud$BdVU8?gPr|<nPXF8r^l~|9n}4Q72QIQ>i=t;GcEq~ z>NDaG>i&OL{L#bu|2p=#{r?=-m`4nH@C7gp>i)lhZlQ<u|BKkm*f-k$H}Stx`hVk` znt#wlbpLPh+7_Lj-vQHLXa8U3*p%4m?JHsjb^l*Q@74d;IA>b?*O-6t2X+5HEB@$V z{eK;M-2Q)#Ys@3k|1W@PQ1|~0bPGMK|6jx&r~hx_-|znaF!yi-k^X-POoO`rZ=px^ z|I66p^#3dP_p|?BC4SQX>k9tD&~Sz$9gK?KZdBWP8Z?pK{eQrJR{4V_(%t_ndmTIC z_5Z`ve{{G1ALjGNdi(!C{D!(dXd>PHzp^i4N4)-@_@cZ0zr+vg|CN6ef5hwm@fY3g z|MBnY|A(pn*xmjgyRZKr=JU_S_<v(5kbg_vA7~=o{lBs=V@JIHpZgcx?f)hJu>N29 zui%e({XhPqyZyi9AMF3hU+ixGFZp-&|C0ZD`+pUGmH3F){}W$yxBut*UHw1t#qRe1 z*nRy!@q70F!}S07yZt}@zWyKo$o_x$MeP6E<DnP1aZHU5Xd>PHzp@|4j(Gh)<0rb? z|C3*6|F8Vl@JGD<AAix^{vZFY{-5y|dtLf}?4bAif0=*!H>4N;Z=6u^K@;)%f8vYo z_WxYJtN$my*xmjgyRZM3`6oUS#{bvwofdz$|Ht3g|I7U2k6eoXuj6<5`hS)GN%BX$ z{-69scl&?tudDwjf3Yvi@Bgub-tYgpfAr}7pZvw&?f>!j_5b)s_W$G`yZ;}i|0llN z{}bQW{}Vs5|0h27jq?9Z;@0rL68V4Q-uClwas8iC&j)BC-Tl9^pT>@O{Xfr-=vDd$ zFuea){%7z<y#615(cS(Z|E~U@=TGeP`4!OL|1*CaUtj;P;-4ix;`RT;7oEP}0lWKu z;)|U=zan<f>;H+59^L=*{EI(*{EYa6UjL6jdU*dY>;H1~|0@6c$RF|gfASaI?f<#I zuKu6=#ZI4J0sZ|y_usSsCx7vG`+xj>{XhPZ{lBb#@<-bBAO6l)|Kaa?)c-kR&r5u_ z|0lk$|0jNA|1ax5PX90K|H|P1jdN=LK@;)%f979wxBq8+y83_SU+nb#70}=RGkzS8 z;{R*-OpE`T^#AySUjL6jdU*fO_+yX5|IZO~UgEp`Kk<G2Kk*~`f8t}`DF5FiZvXrL zVfugacl&?x_x1nej~>SVFXI=l|0jR0-!J}umHSWne_i4IXne5!exQ#U=hgcIXd;Hw z{(a#^`-933nuzBAEneHASBFv#7{>n_7nDC}BAWlVcx{V5i$9nKJNf@I$EL(yA4*lk z4r>0tif*B=hyOPoQt?3((fq%~Yg_aN@xe6M$^Vx*HYIjA{)*T^&Hq=?E%Ye<zs5P! z;@=!f&4@p!`Ttq*M-Suw>)6ZKF9-i`d`RUFnuxK~o?naCw&*SL2h(6D|6k_Vl-QTa zU+kdf|EuU0dKCX(<D6;nUm<_-2Q~jcEB@$V{C^#L8G9W5e~xR+BgX1bY5`1xn*VR0 zTj*i@|04D{{C^Yw8rQ!P_<!TWYW_hJG44|H&ud$BIDZFBgPr_;nPXF8hvTn^9n}1P z72QIQ;{R)$GcEpW%)j`9n*W~_fAlc^zmC0(Jr4gr$2H~=0}g%xOoN*LZ=hS~Vf_Ch z_A>U3^8ZczYxwt*|3Az<96=1Y>?JS_YW}~4ZlQ<q|I66R*f+}mui)QL{(qJD3IE@& z;KoPP`Ug!!^ZypFZP8D${=qcZ$^Vx*HYN7ctbehCn*Xn&_u~I+oHH%{XITH@4{H8@ zR{YV!`2RZgxcvVd*O*6y|6c&ppyvM@=oWey|G$Vm4*%c8zu)}-Vea7wBK-dnm<Bcf z-$J+0!}$MY>~Z-275w|j|F05%(E0zPjKQ6V@c(y#X;Ab3$Izqr|Kr%>@c(Q0_mlrW zLHt4H|4)*C!v81V|JObI3qivfi9Fq?`0Ylut*1c~>COKK{AZOvXd>PGzp~e{BOd=h zLjRBM^8X|J{$aiRe;|HCT^}@&ZvJ1{7qKHA|4)3;UH)I<hw=Z)zllHM@&EXX?(+Zm zck%xt^#9mh{vW%K{~zJ^9~<TW1Npbq{edRZ&HpR=GIqq{|G9tBUH)J4599xp{|f$y z$N%Fmy37Ad{z3kq{Kd}i`75CR_y3ardij49f0g)%$Nv*wbeI3<`d$1#@x|`)|JZ%} zKk<9=|0DGO_`Cc+{yzR6|49CSgx~+XIQ##NyV~QS7rAjvjSpxd-Tc3@AIFY({6FI- zy37BQUnu{t{MYbDJpLbl(Ov!@|1SQY@fSNBe+BgO|1$sU<^NUu6U0Y6{-5}wyZk@b z@8bW7FLsyz$L{0*W&V5d|IEMmyZk@?KK@_kKZ^gC`M+G>|5y2+B!9%?|H)r;m;dMf zy7+(c7dt$E1@!a(+<#C0pZvw&<^S>b@&EWo^8e%?oBtny|0g~?{DRy+=<WX_K6?1~ z|A~)%<NW`~70my)pNEU<|CD+@KojZa|CRkTcEscVd45E9`G3Y2ywv`G<BakLO~m8> z@fY3Y|MBnQ|9Sqz?(+ZGLGSzj%pdyt_<t4uEb$SK|0lla4dMT}KIs4cKk>y5&tDNc z=<)x=M~~+JdH%(}Df~bFpvV8?j~>qd%le0ZMB4RV_-{U6AnyKmj<2`=8~3UFK@;)# zfASaI<^Q?AF8-hV#SYJ30sZ_x_s?+~Y1e=5FHrw$_)LpG9R7^>gWmW5@kbB;{=ck$ z@<%q#|FixjK0N$_#0S0a{}UfQ{QLj1{)vyY>p%JV>ObQjQU9C7yK?w{HUH<Bf5hYe znSarb$@l*mAJG5(f97B8@cb3AgWmW589(%B{-605|25(N@drKrAAj_4{-5#39*_TL z{w2Q4{}bQG{}Vrw|0jMd{-62Bzn}a650m>5$=~Jw$=}ESlYb=tPyX09y8nNLxc%k- zNBI4J(*Nrk--*Tt+wTYZm~mdcKY%9E&HpR=gV+&||L6Tf^eX%T7|#DI{|opd9{-QO z=(G5P-TXiAKVq-LKZqUl_<x>X^!4%oD*i*nM?C(Y_@cx6J772ePkgb%^H;<Udi+1} z(WCi)-v7kEDf~bFpvV8?j~>qdv;MGO9{ykD{~_{6JpP~jMThryz;6DZ{KdXZ{$d9` z{-66tkLLf$U;N?mXT%@$_<#J-!})*m#~zRW=lx&e!^1B~e9+_niH{!6{}UhkM)&_W ziFf7j|7!j}%={xB|Ihr3?(+YPPZ$5s{EHo)zXJOCf5wmF(fmL2FaB%7|KksO{6GHa z;ru`2k3Am$&-_b#c=!d04|@DR@zKNif8t}`IR7v8zu){n^<VOL`G4~F@&Du>$^Vmo zEdF2WKlvl={-6DazW$&6hmrk1`wwIE|EuJk@c-=!Z+t|pf6zoc{-5<Py37Cbe01^u ztbeheX8nVH{-5WE<5BznYxqoy{~6)`@drKrAAj_4{-5U$dz}6MbHtpN_-BRxCqC%$ z|HMZR=l_Y1eWUyTo5brs|IhlD{9XQ^{C)gC`A72q<d1!$`~O!YfBgHk|9_SE3I9I= z|Ihrp{6F*W<Nuj|^sxQ^$MK8D|1<wwzhC?RPsscee^B@TpCtc;|4;gV-Q#zn@ksmg zfIepYq56CPnn-Z}zwvQp2Terp|F?K;i(Va0IbhiSf8!I%A2bnTru}_Hi`Ta3v-pE) zuyg-^nPXF8uMejxVh8p9|0=qLzMlR6#wS&L&_s*{6`$9(=ndk7X|Qwuf0<)bVqYY_ z*g?Jjzlv_5NA3Twan7{(H-}R*;t%Tm|Fhzc9=89#j=hZia_s*%{z&Bynuy;2Z}Hj| zy+!_D8tmNvU*_19*q6y)?4aKNUq!djqxS#TIA>b?SIA%dLB0QfR{YV!_W#$hm$Ap$ z|3Aky<`H9cIJE$#LB0RKfo`FP?f+lIUdF!B{r^q;YxrLY`~Qtc)%=4dV%(*ke_q?7 zA7lQ(G}yWSzs#{Iu^(st#SZHI|5bDgJ!=1djdP~Oe~tMUe^BrLpA~=fu>Jpa>}Bk6 z_W#dujd?`&|1W@PQ1Ab5pj+rRa;g3Qi`dK9HoE`6iGL0MX}P}3|MUGzAOFwyFC+PX zzJD2$|3Az<96^ke!>J`O4VsAX|1ETj*S6>`|Iht(@c+x$%h;yG?(+ZG!S(L{U%|hI z@3i>S$IpQN{-69K`+xF})Bh8Hj+pZj-{t>_@8kc8AIbj{KNkPb_h0e9688TapHk}| zG!ec3-{Q3``YF~wm<Bud|Cc#7CHB*-f3bsl|9=(TLXX=2U*nu<@jt`*7k^Oi|DP3q z^sxQ^b?jyAarXbuagBMzILrD6)1cn}-$1v}!}k9#VlQLg=>GpE{x$sjx&Qw#_izL; z*aN==ra`^`zlCn0hwcAg#$Lw0(f$7`_}B37*Z%)i;t%@%|D%k-orvuJzY9!*djJ11 zbPGLf|Nn99W$YW>|G$QRKllHiApRil|369ohnc@*|3BZ~p$-r7-~Ts0t?EB$B6|P7 z#cNyi^VEMZ4R-GTFLP{4><?1^#SZHI|5fx}`~Pd4GcEoXsQ=;*>iz$-;*TD-|G$ns z?*9Kdt}%}o4^jWYG^qFgH_$C~8@bf}|3&O^_Ww8WuW{{Zxqegle?EVL9{(?&|M~qZ za;d-ne>wL5ALbs8AjXHN|6m$45#j$^=oYVS(Ov$Z`vdj<|7GlDY*S)~=YOI5|5xy@ z;X5t<E5iTF=YOt`$oKzW?EU|%#GfPPyu@D>{$D=-6CaW9{}00c|D%k-orvuJzY9!* zdjJ11bPGLf|Nn99arXbO;or~w|0jq)$ov0Kl7F)Qf3W}l|2;ed??Yt&|Gi)u)cgNW zp-1iiKaD-k{{J)h_jCXMS>g}!{{Q>PKiU63xPSlu9P^*-{~u)jKiU7EeE<I{Me%P^ zxJ9A<|2++*rxlhJ9#xoH*9F#f5?4&CtCkfWRXBK2+KJ1oh-_8kAme!Lg_I%KX%k&! z2R1n_vnbN(_uU6m#^!)c`+XIgoG<py|JhsYk7JYTblSAv!`QZk*zUn5*9!V^D7B1D zKVkYF<+xmTFE;(ZOKF>q_gZZFFHZ(-DQs=l+Ml;v_sR1qqx~DMZrkUuIhkxOKU&yR z|C#BVra1o{i;Y$mv=~q0S5rm}`6^=Foie`0u_uuykjIceM;=8UMm~)EHgXzyFLDQR z7?E=pk-f;xNEwm)*JCbYBst14J+Gq6kDxv#=XHwM-}H3(GatL=&u);{^7Fj<X=};9 z$q4jk1mxM4r}w4&iyReAe)Ms9rmagH-^mGYz_z!xDRm1ceXZ?~nwW33ng<s4zdL=~ zf&B+t#a$~)2gh2CcQg;ox2`*|ud#Hfb?DaR>l%j+jLo+W>|V8Zr4P&>+;?lUwR}r+ zskQIW!Qw7^x3#PE14HTb#PZTgYx%~5w;o#O)iP~AJX_7i%F@2&ce~d~^E0v3JhDQR z=3;GW-|D{o&9^sO7mc0f*WHHeGB<K_bG5lYy<h$<?wW7icyRU5JDW?p(kuI>8jWU) z+-{xU-)inEO<aHR+J5JY*Y7x^EBeIszI&ax{$kSYF<5LKZXR509&G4bCiIczDK*w! z96kCs;;>Bm>E(AHZWedFYu~|)vnzdY{s77w^(^eZrMk!3U7e}#O0Vj%-?Q7=?bw#% z>@Ms|A6_~ni5^;-T57yw-*U6Dyt2dvZY$)mtt{-{*SM+q?mD9)lXh#Pu#j2UGjBKT zLNl`<!xFq3b)OU0UpfQtxSOlzU#d;jrf#_5#y7ow?_TvH(c_IrijRy(S-%t3zqXpz zG3$NS{nmrlBi5&_zq0<$`UmT2>pRv>Oyvptg8i5F)AnZPWzLxMI_Ea$PUp9rKX(4T z^N&s@Gn+Y{NoTF>O!oflBiXBSX0DWL=6)~tY;HOKw!#mNT{Cv=*uNS(KXzvPf$`TB zo2C7wr%K-{ZJi`=I+eNs7`C?9SKBYMP5T4(igSn4%52VlDf^QAEAsc}Zyy~l>@BSB zxpU9mdrs}SdhF|C&y0Ow;;)L272jMsD%aqRN#27FShtbEuUOx;zGOdX7c*C7bGeD! zCv(r|Uq5=Ja7W=};nxePJzv`M<evTGXC@w)_|f7B_h3xEd~(<1{c@dh`(9S8JFIuv z+nxX7yd?XI?Ah$?x#9fY{2ikwNADfIpL_Xw;h92iY-s#-6E{zMe&UCVKT&*5(JFqV zxK_Hml&YmtbuRUz*3a5+wg29JrL)`F<CL9GIcG8tWUkMx<nPG;uY9iXGll8GTMLcC z`8}^4J2du7V{2n)$KF5o*w{PAKRfaM;v>aR6+c(}>tbp0Z{@z`QmMBBFSjgf)T&rF zTDMzy=T(_pW+L;(Og(cUo5{T^cX#eo?gP0Cxi98g`TsC_pzyK6=L>&R_;TSZg^@jf zJ@(M}XU6|x{BOpe7#}HqtC%WnFa1#In$j(ksl%z%GhF*s)^%2vE8k(Aw9Z=}wf={7 zmHle_db?r2(_Uis@3HT*f7kw){U{^*lzp{xt@BgP&CbvB96aj$sq;nWDd$_xbIz8` zk7Zt!xhYf2+>%+&{1Q*aA7`G*d^2-R*3Ra$6WO26zCU|D`_b$lWxt;Nr|fHTbGch{ zhjaff_p#h(a@XZE`C|Sz@@MkDlmC<abNT<5uZ+HFv^Dyk(YqP<2Sz_P`i0TQMjs!2 zV)V<SPmZPv#|!Tn`<?MGj6XI0p5k|k-!0ZkZ!X<gI#v3!(&tOhGOyXm@yX`odnP|S z`Gv`UnEWRh$D^s#w}ByR!m3)wtzWesvOZxwZvAKLIi9{L`zCwVevAE&_OtfOoUC)Z z^C!;p&Q#`D=CRBVW^37dvrlBN$-O0ap8I_y_gL=la{o2=T<$0GugTw>|GE6J{J$MN zG5Twx7e+rl`WK^L9Q~2P+X}y1_=CbH3Xd0Fzh~?C?(wnlw~YV7_%DzD=J@7`p^3?f zV-xpIoSXRi#Q&W5&cy$jFp94zjuk7#n~QHQ9w@FBf4%rn@iWCgFMhuG--}NdpDS)E z?I>McdR6JQr8kylN{!O(WO{$;qow~;`bz1WrRPdNK6&lrYbJM3<|ZqXvy+D>e{u56 z<ToVeds2MVPNiPL`hLLrp!H$v_pOh!x<6}u!TMY4@2&r4ea-ro_0QJ-wKlW<UTXii z{Yv{fJI`pm(Vnpv?6=zo?3Vq@?)+b{AGSYf|3~{P_BZWK&P$!2bQYYqJMVRV&3OaQ z;lIiJV&;9B`!cEQw(LmuhqABCUY{*ye=hr>?C)j&GW&G)pR><rx96_Ty*xLWdwp&u zw>S5;++yw*nE%vor&6!x9=~BdoBMVyn=j<c`5W?YU|jFXpUXdxe>DF@{>ynzcsP}k z&-t&mUu$RWf<0m1V86k>*{<7rS!;{-JM8`Tvi)BBZtnK9ea?Qs=45M=EXmYd=8nv{ z%*Qj2XP(LI$X=T*XWyE=EqglqaQ3n6<IL=rvrlHfn*Cb#8`)>F&t|`!{omQ|W>dK> oxgEKYoRRyH+)Hz>$fa}F=D1YylZ-$z0?7y@Ban>1zxWaO|5U9n1ONa4 literal 0 HcmV?d00001 diff --git a/pyfpdb/pokereval.py b/pyfpdb/pokereval.py new file mode 100644 index 00000000..08d08786 --- /dev/null +++ b/pyfpdb/pokereval.py @@ -0,0 +1,338 @@ +# +# Copyright (C) 2007, 2008 Loic Dachary <loic@dachary.org> +# Copyright (C) 2004, 2005, 2006 Mekensleep +# +# Mekensleep +# 24 rue vieille du temple +# 75004 Paris +# licensing@mekensleep.com +# +# 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 3 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. +# +# Authors: +# Loic Dachary <loic@dachary.org> +# +# +import sys + +# for fpdb alter the following line from __import__ to import...as... . +# fpdb py2exe package build does no recognise __import__ statement, +# and fails at runtime with _pokereval_2_6 not found + +#_pokereval = __import__('_pokereval_' + sys.version[0] + '_' + sys.version[2]) +import _pokereval_2_6 as _pokereval + +from types import * + +class PokerEval: + """\ +Evaluate the strengh of a poker hand for a given poker variant. +In all methods, when a list of cards is to be provided (for instance +with the "hand" argument of the "best" method), each member of the +list may be a number or a string designating a card according to +the following table: + + 2h/00 2d/13 2c/26 2s/39 + 3h/01 3d/14 3c/27 3s/40 + 4h/02 4d/15 4c/28 4s/41 + 5h/03 5d/16 5c/29 5s/42 + 6h/04 6d/17 6c/30 6s/43 + 7h/05 7d/18 7c/31 7s/44 + 8h/06 8d/19 8c/32 8s/45 + 9h/07 9d/20 9c/33 9s/46 + Th/08 Td/21 Tc/34 Ts/47 + Jh/09 Jd/22 Jc/35 Js/48 + Qh/10 Qd/23 Qc/36 Qs/49 + Kh/11 Kd/24 Kc/37 Ks/50 + Ah/12 Ad/25 Ac/38 As/51 + +The string __ (two underscore) or the number 255 are placeholders +meaning that the card is unknown. +""" + + def best(self, side, hand, board = []): + """\ +Return the best five card combination that can be made with the cards +listed in "hand" and, optionally, board. The "side" may be "hi" or +"low". The "board" argument must only be provided for variants where +knowing if a given card is taken from the board or not is significant +(such as Omaha but not Holdem). + +A list is returned. The first element is the numerical value +of the hand (better hands have higher values if "side" is "hi" and +lower values if "side" is "low"). The second element is a list whose +first element is the strength of the hand among the following: + +Nothing (only if "side" equals "low") +NoPair +TwoPair +Trips +Straight +Flush +FlHouse +Quads +StFlush + +The last five elements are numbers describing the best hand properly +sorted (for instance the ace is at the end for no pair if "side" is low or +at the beginning if "side" high). + +Examples: + +[134414336, ['StFlush', 29, 28, 27, 26, 38]] is the wheel five to ace, clubs +[475920, ['NoPair', 45, 29, 41, 39, 51]] is As, 8s, 5c, 4s, 2s +[268435455, ['Nothing']] means there is no qualifying low +""" + if len(hand + board) >= 5: + return _pokereval.eval_hand(side, hand, board) + else: + return False + + def best_hand(self, side, hand, board = []): + """\ +Return the best five card combination that can be made with the cards +listed in "hand" and, optionaly, board. The "side" may be "hi" or +"low". The returned value is the second element of the list returned +by the "best" method. +""" + if len(hand + board) >= 5: + return _pokereval.eval_hand(side, hand, board)[1] + else: + return False + + def best_hand_value(self, side, hand, board = []): + """\ +Return the best five card combination that can be made with the cards +listed in "hand" and, optionaly, board. The "side" may be "hi" or +"low". The returned value is the first element of the list returned +by the "best" method. +""" + if len(hand + board) >= 5: + return _pokereval.eval_hand(side, hand, board)[0] + else: + return False + + def evaln(self, cards): + """\ +Call the poker-eval Hand_EVAL_N function with the "cards" argument. +Return the strength of the "cards" as a number. The higher the +better. +""" + return _pokereval.evaln(cards) + + def winners(self, *args, **kwargs): + """\ +Return a list of the indexes of the best hands, relative to the "pockets" +keyword argument. For instance, if the first pocket and third pocket cards +tie, the list would be [0, 2]. Since there may be more than one way to +win a hand, a hash is returned with the list of the winners for each so +called side. For instace {'hi': [0], 'low': [1]} means pocket cards +at index 0 won the high side of the hand and pocket cards at index 1 +won the low side. + +See the"poker_eval" method for a detailed +explanation of the semantics of the arguments. + +If the keyword argument "fill_pockets" is set, pocket cards +can contain a placeholder (i.e. 255 or __) that will be be +used as specified in the "poker_eval" method documentation. + +If the keyword argument "fill_pockets" is not set, pocket cards +that contain at least one placeholder (i.e. 255 or __) are +ignored completly. For instance if winners is called as follows +o.winners(game = 'holdem', pockets = [ [ '__', 'As' ], [ 'Ks', 'Kd'] ]) +it is strictly equivalent as calling +o.winners(game = 'holdem', pockets = [ [ 'Ks', 'Kd'] ]). +""" + index2index = {} + normalized_pockets = [] + normalized_index = 0 + pockets = kwargs["pockets"][:] + for index in xrange(len(pockets)): + if not kwargs.has_key("fill_pockets"): + if 255 in pockets[index] or "__" in pockets[index]: + pockets[index] = [] + + if pockets[index] != []: + normalized_pockets.append(pockets[index]) + index2index[index] = normalized_index + normalized_index += 1 + kwargs["pockets"] = normalized_pockets + + results = _pokereval.poker_eval(*args, **kwargs) + + (count, haslopot, hashipot) = results.pop(0) + winners = { 'low': [], 'hi': [] } + for index in xrange(len(pockets)): + if index2index.has_key(index): + result = results[index2index[index]] + if result[1] == 1 or result[3] == 1: + winners["hi"].append(index) + if result[4] == 1 or result[6] == 1: + winners["low"].append(index) + + if not haslopot or len(winners["low"]) == 0: + del winners["low"] + if not hashipot: + del winners["hi"] + return winners + + def poker_eval(self, *args, **kwargs): + """\ +Provided with a description of a poker game, return the outcome (if at showdown) or +the expected value of each hand. The poker game description is provided as a set +of keyword arguments with the following meaning: + +game : the variant (holdem, holdem8, omaha, omaha8, 7stud, 7stud8, razz, + 5draw, 5draw8, 5drawnsq, lowball, lowball27). + Mandatory, no default. + +pockets : list of pocket cards for each player still in game. Each member + of the list is a list of cards. The position of the pocket cards + in the list is meaningfull for the value returned will refer to + this position when stating which player wins, tie or loose. + Example: [ ["tc", "ac"], ["3h", "ah"], ["8c", "6h"]] + Cards do not have to be real cards like "tc" or "4s". They may also be a + placeholder, denoted by "__" or 255. When using placeholders, the + keyword argument "iterations" may be specified to use Monte Carlo instead of + exhaustive exploration of all the possible combinations. + Example2: [ ["tc", "__"], [255, "ah"], ["8c", "6h"]] + + Mandatory, no default. + +board : list of community cards, for games where this is meaningfull. If + specified when irrelevant, the return value cannot be predicted. + Default: [] + +dead : list of dead cards. These cards won't be accounted for when exloring + the possible hands. + Default: [] + +iterations: the maximum number of iterations when exploring the + possible outcome of a given hand. Roughly speaking, each + iteration means to distribute cards that are missing (for + which there are place holders in the board or pockets + keywords arguments, i.e. 255 or __). If the number of + iterations is not specified and there are place holders, + the return value cannot be predicted. + Default: +infinite (i.e. exhaustive exploration) + +Example: object.poker_eval(game = "holdem", + pockets = [ ["tc", "ac"], ["3h", "ah"], ["8c", "6h"]], + dead = [], + board = ["7h", "3s", "2c"]) + +The return value is a map of two entries: +'info' contains three integers: + - the number of samples (which must be equal to the number of iterations given + in argument). + - 1 if the game has a low side, 0 otherwise + - 1 if the game has a high side, 0 otherwise +'eval' is a list of as many maps as there are pocket cards, each +made of the following entries: + 'scoop': the number of time these pocket cards scoop + 'winhi': the number of time these pocket cards win the high side + 'losehi': the number of time these pocket cards lose the high side + 'tiehi': the number of time these pocket cards tie for the high side + 'winlo': the number of time these pocket cards win the low side + 'loselo': the number of time these pocket cards lose the low side + 'tielo': the number of time these pocket cards tie for the low side + 'ev': the EV of these pocket cards as an int in the range [0,1000] with + 1000 being the best. + +It should be clear that if there is only one sample (i.e. because all the +cards are known which is the situation that occurs at showdown) the details +provided by the 'eval' entry is mostly irrelevant and the caller might +prefer to call the winners method instead. +""" + result = _pokereval.poker_eval(*args, **kwargs) + return { + 'info': result[0], + 'eval': [ { 'scoop': x[0], + 'winhi': x[1], + 'losehi': x[2], + 'tiehi': x[3], + 'winlo': x[4], + 'loselo': x[5], + 'tielo': x[6], + 'ev': int(x[7] * 1000) } for x in result[1:] ] + } + + def deck(self): + """\ +Return the list of all cards in the deck. +""" + return [ self.string2card(i + j) for i in "23456789TJQKA" for j in "hdcs" ] + + def nocard(self): + """Return 255, the numerical value of a place holder in a list of cards.""" + return 255 + + def string2card(self, cards): + """\ +Convert card names (strings) to card numbers (integers) according to the +following map: + + 2h/00 2d/13 2c/26 2s/39 + 3h/01 3d/14 3c/27 3s/40 + 4h/02 4d/15 4c/28 4s/41 + 5h/03 5d/16 5c/29 5s/42 + 6h/04 6d/17 6c/30 6s/43 + 7h/05 7d/18 7c/31 7s/44 + 8h/06 8d/19 8c/32 8s/45 + 9h/07 9d/20 9c/33 9s/46 + Th/08 Td/21 Tc/34 Ts/47 + Jh/09 Jd/22 Jc/35 Js/48 + Qh/10 Qd/23 Qc/36 Qs/49 + Kh/11 Kd/24 Kc/37 Ks/50 + Ah/12 Ad/25 Ac/38 As/51 + +The "cards" argument may be either a list in which case a converted list +is returned or a string in which case the corresponding number is +returned. +""" + if type(cards) is ListType or type(cards) is TupleType: + return [ _pokereval.string2card(card) for card in cards ] + else: + return _pokereval.string2card(cards) + + def card2string(self, cards): + """\ +Convert card numbers (integers) to card names (strings) according to the +following map: + + 2h/00 2d/13 2c/26 2s/39 + 3h/01 3d/14 3c/27 3s/40 + 4h/02 4d/15 4c/28 4s/41 + 5h/03 5d/16 5c/29 5s/42 + 6h/04 6d/17 6c/30 6s/43 + 7h/05 7d/18 7c/31 7s/44 + 8h/06 8d/19 8c/32 8s/45 + 9h/07 9d/20 9c/33 9s/46 + Th/08 Td/21 Tc/34 Ts/47 + Jh/09 Jd/22 Jc/35 Js/48 + Qh/10 Qd/23 Qc/36 Qs/49 + Kh/11 Kd/24 Kc/37 Ks/50 + Ah/12 Ad/25 Ac/38 As/51 + +The "cards" argument may be either a list in which case a converted list +is returned or an integer in which case the corresponding string is +returned. +""" + if type(cards) is ListType or type(cards) is TupleType: + return [ _pokereval.card2string(card) for card in cards ] + else: + return _pokereval.card2string(cards) + From f329d85ca7973164e5ac5d283c56d33bef8f4773 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Sun, 5 Dec 2010 12:52:02 -0500 Subject: [PATCH 086/162] Fixed table dectection on Ubuntu/KDE. --- pyfpdb/XTables.py | 36 +++++++++++++++++++++++------------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/pyfpdb/XTables.py b/pyfpdb/XTables.py index 4a5af947..5ae3112e 100644 --- a/pyfpdb/XTables.py +++ b/pyfpdb/XTables.py @@ -66,27 +66,37 @@ class Table(Table_Window): if self.number is None: return None - self.window = self.get_window_from_xid(self.number) - self.parent = self.window.query_tree().parent + (self.window, self.parent) = self.get_window_from_xid(self.number) def get_window_from_xid(self, id): for outside in root.query_tree().children: if outside.id == id: - return outside + return (outside, outside.query_tree().parent) for inside in outside.query_tree().children: - if inside.id == id: - return inside - return None + if inside.id == id: # GNOME, Xfce + return (inside, inside.query_tree().parent) + for wayinside in inside.query_tree().children: + if wayinside.id == id: # KDE + parent = wayinside.query_tree().parent + return (wayinside, parent.query_tree().parent) + return (None, None) def get_geometry(self): try: my_geo = self.window.get_geometry() - pa_geo = self.parent.get_geometry() - return {'x' : my_geo.x + pa_geo.x, - 'y' : my_geo.y + pa_geo.y, - 'width' : my_geo.width, - 'height' : my_geo.height - } + if self.parent is None: + return {'x' : my_geo.x + pa_geo.x, + 'y' : my_geo.y + pa_geo.y, + 'width' : my_geo.width, + 'height' : my_geo.height + } + else: + pa_geo = self.parent.get_geometry() + return {'x' : my_geo.x + pa_geo.x, + 'y' : my_geo.y + pa_geo.y, + 'width' : my_geo.width, + 'height' : my_geo.height + } except: return None @@ -105,4 +115,4 @@ class Table(Table_Window): # This is the gdkhandle for the HUD window gdkwindow = gtk.gdk.window_foreign_new(window.window.xid) - gdkwindow.set_transient_for(self.gdkhandle) \ No newline at end of file + gdkwindow.set_transient_for(self.gdkhandle) From 515557d45efe92a3e116a0b893da327a120522b8 Mon Sep 17 00:00:00 2001 From: Eric Blade <blade.eric@gmail.com> Date: Sun, 5 Dec 2010 16:48:12 -0500 Subject: [PATCH 087/162] fix merge error --- pyfpdb/HUD_main.pyw | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw index 02569c9f..b7b3fa28 100644 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -291,9 +291,9 @@ class HUD_main(object): log.error(_('Table "%s" no longer exists\n') % table_name) return - t6 = time.time() - log.info(_("HUD_main.read_stdin: hand read in %4.3f seconds (%4.3f,%4.3f,%4.3f,%4.3f,%4.3f,%4.3f)") - % (t6 - t0,t1 - t0,t2 - t0,t3 - t0,t4 - t0,t5 - t0,t6 - t0)) +# t6 = time.time() +# log.info(_("HUD_main.read_stdin: hand read in %4.3f seconds (%4.3f,%4.3f,%4.3f,%4.3f,%4.3f,%4.3f)") +# % (t6 - t0,t1 - t0,t2 - t0,t3 - t0,t4 - t0,t5 - t0,t6 - t0)) self.db_connection.connection.rollback() if type == "tour": try: From a504fc211c7a3970bc0563a980fddd8b5090bdae Mon Sep 17 00:00:00 2001 From: "chaz@pokeit.co" <chaz@pokeit.co> Date: Sun, 5 Dec 2010 17:28:31 -0500 Subject: [PATCH 088/162] Replaced all of the Hero names in the regression files with 'Hero' --- ...USD-0.02-0.04-200903.River.with.mucked.txt | 18 +- ...0.05-0.10-200909.All.in.river.splitpot.txt | 14 +- ...-9max-USD-0.25-0.50.200810.All.Streets.txt | 2 +- ...ax-USD-0.25-0.50.200810.All.Streets.txt.hp | 2 +- .../NLHE-6max-USD-0.05-0.10-29Aug2010.txt | 130 +- ...- No Limit Hold'em - dateformat change.txt | 14 +- ... singlehand session postBB out of turn.txt | 14 +- ...0.01-0.02.201008.Weird.table.character.txt | Bin 1900 -> 1864 bytes ...1-0.02.201008.Weird.table.character.txt.hp | 2 +- ...02-0.05.201007.Short.lived.date.format.txt | 14 +- ...0.05.201007.Short.lived.date.format.txt.hp | 2 +- ...0-201006.Player.sitting.out.but.acting.txt | Bin 2858 -> 2834 bytes ...ax-USD-0.01-0.02.201003.River.Showdown.txt | Bin 3254 -> 3214 bytes ...USD-0.01-0.02.201003.River.Showdown.txt.hp | 2 +- .../Flop/PLO-6max-USD-0.01-0.02.201003.txt | Bin 2840 -> 2800 bytes ...SD-3-6-20106.Steal.from.Button.Failure.txt | 10 +- ...3-6-20106.Steal.from.Button.Failure.txt.hp | 2 +- ...ud-USD-3-6-20106.Steal.from.CO.Success.txt | 10 +- ...6.Steal.from.HJ.Failure-3bet.by.button.txt | 34 +- ...ud-USD-3-6-20106.Steal.from.HJ.Failure.txt | 12 +- ...ud-USD-3-6-20106.Steal.from.HJ.Success.txt | 10 +- ...7-StudHL-USD-2-4-201006.Steal.examples.txt | 614 ++++---- ...5-Carddraw-USD-0.05-0.10-201009.Sample.txt | 66 +- ...-0.50-1.00-201008.All-in.with.showdown.txt | 16 +- ...50-1.00-201008.All-in.with.showdown.txt.hp | 2 +- .../Flop/LO-9max-0.05-0.10-201009.Sample.txt | 146 +- ...9max-USD-0.05-0.10-201008.Betfair.Skin.txt | 10 +- ...-USD-0.05-0.10-201009.Dead.Small.Blind.txt | 18 +- .../7-Stud-USD-0.10-0.20-201009.Sample.txt | 122 +- ...tudHL-USD-0.25-0.50-201008.All.streets.txt | 30 +- ...ax-USD-0.02-0.04-200903.All-in.on.turn.txt | 16 +- ...USD-0.02-0.04-200903.All-in.on.turn.txt.hp | 2 +- ...-USD-0.01-0.02-20100712.emailedHistory.txt | 8 +- ...01-0.02-20100731.bigBlindIsForcedAllIn.txt | 20 +- .../Flop/NLHE-USD-0.01-0.02-201008.Sample.txt | Bin 1165 -> 1149 bytes .../NLHE-USD-0.01-0.02-201008.Sample.txt.hp | 2 +- ...1-0.02-20100807.newPlayerWithZeroStack.txt | 10 +- ...-0.04-20100804.smallBlindIsForcedAllIn.txt | 10 +- ...02-0.04-20100811.unseatedPlayerActions.txt | 12 +- .../Stud/7-StudHL-USD-0.50-1.00-201008.txt | 8 +- .../3-Draw-Limit-USD-0.10-0.20-200911.txt | 296 ++-- .../5-Carddraw-NL-USD-0.25-0.50.Sample.txt | 18 +- ...arddraw-PL-USD-0.50-1.00.201009.Sample.txt | 18 +- .../Draw/5-Carddraw-USD-0.10-0.20-200911.txt | 414 +++--- .../Draw/Badugi-USD-0.25-0.50-201009.txt | 42 +- ...Draw-USD-0.25-0.50-201009.Mucked.cards.txt | 18 +- ...-10max-USD-0.05-0.10-PF_all_fold_to_BB.txt | 8 +- .../LHE-10max-USD-1.00-2.00-No_max_seats.txt | 10 +- ...-USD-0.05-0.10-20090315.Hand-cancelled.txt | 6 +- ...NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt | 82 +- .../Flop/NLHE-6max-EUR-0.05-0.10-200911.txt | 748 +++++----- .../Flop/NLHE-6max-USD-0.05-0.10-200911.txt | 908 ++++++------ ...HE-6max-USD-0.05-0.10-200912.Allin-pre.txt | 14 +- ...6max-USD-0.05-0.10-200912.Allin-pre.txt.hp | 2 +- ...USD-0.05-0.10-200912.Stats-comparision.txt | 20 +- .../NLHE-FR-USD-0.01-0.02-201004.4betPF.txt | 8 +- ...NLHE-FR-USD-0.01-0.02-201004.4betPF.txt.hp | 2 +- ...LHE-FR-USD-0.01-0.02-201005.microgrind.txt | 1232 ++++++++--------- ...FR-USD-0.01-0.02-201006.foldsoutofturn.txt | 14 +- ...-0.05-0.10-201004.allinWithAmtReturned.txt | 16 +- .../PLO-FR-USD-0.01-0.02-201006.sidepots.txt | 44 +- .../Flop/PLO8-6max-USD-0.01-0.02-200911.txt | 220 +-- ...1-0.02-20100829.No.VPIP.from.posted.bb.txt | 16 +- ....02-20100829.No.VPIP.from.posted.bb.txt.hp | 2 +- ...0.04-0.08-200907.Missing.Showdown.Card.txt | 26 +- .../Stud/7-Stud-USD-0.04-0.08-200911.txt | 200 +-- ...7-StudHL-USD-0.04-0.08-200911.Cardtest.txt | 30 +- ...tudHL-USD-0.04-0.08-200911.Cardtest.txt.hp | 2 +- .../Stud/7-StudHL-USD-0.04-0.08-200911.txt | 136 +- .../Stars/Stud/Razz-USD-0.04-0.08-200911.txt | 152 +- ...2-0.05-201010.Invalid.side.pot.Player8.txt | 8 +- ....05-201010.Invalid.side.pot.Player8.txt.hp | 2 +- ....with.bad.collected.Biggest.stack.wins.txt | 14 +- ...th.bad.collected.Biggest.stack.wins.txt.hp | 2 +- ...01009.Real.side.pot.with.bad.collected.txt | 8 +- ...09.Real.side.pot.with.bad.collected.txt.hp | 2 +- .../Flop/PLO-FR-EUR-0.02-0.05-201009.Sample | 714 +++++----- .../Stud/7-StudHL-USD-0.05-0.10-201009.txt | 22 +- 78 files changed, 3440 insertions(+), 3440 deletions(-) diff --git a/pyfpdb/regression-test-files/cash/Absolute/Stud/7-StudHL-USD-0.02-0.04-200903.River.with.mucked.txt b/pyfpdb/regression-test-files/cash/Absolute/Stud/7-StudHL-USD-0.02-0.04-200903.River.with.mucked.txt index 3bccf2d9..a902827c 100644 --- a/pyfpdb/regression-test-files/cash/Absolute/Stud/7-StudHL-USD-0.02-0.04-200903.River.with.mucked.txt +++ b/pyfpdb/regression-test-files/cash/Absolute/Stud/7-StudHL-USD-0.02-0.04-200903.River.with.mucked.txt @@ -2,7 +2,7 @@ Stage #1300000000: Seven Card Hi/Lo Normal $0.02/$0.04 - 2009-03-18 19:10:00 (E Seat 1 - PLAYER1 ($0.17 in chips) Seat 2 - PLAYER2 ($0.36 in chips) Seat 3 - PLAYER3 ($3.46 in chips) -Seat 5 - PLAYER4 ($1 in chips) +Seat 5 - Hero ($1 in chips) Seat 6 - PLAYER5 ($1.07 in chips) Seat 7 - PLAYER6 ($2.31 in chips) Seat 8 - PLAYER7 ($0.93 in chips) @@ -12,12 +12,12 @@ PLAYER6 - Ante $0.01 PLAYER3 - Ante $0.01 PLAYER7 - Ante $0.01 PLAYER2 - Ante $0.01 -PLAYER4 - Ante $0.01 +Hero - Ante $0.01 *** 3rd STREET *** Player1 - Pocket [H H Js] PLAYER2 - Pocket [H H 7h] PLAYER3 - Pocket [H H 6s] -PLAYER4 - Pocket [10c 5c 7s] +Hero - Pocket [10c 5c 7s] PLAYER5 - Pocket [H H Qh] PLAYER6 - Pocket [H H 9c] PLAYER7 - Pocket [H H 3s] @@ -25,13 +25,13 @@ PLAYER7 - Bring-In $0.01 Player1 - Calls $0.01 PLAYER2 - Folds PLAYER3 - Calls $0.01 -PLAYER4 - Folds +Hero - Folds PLAYER5 - Folds PLAYER6 - Calls $0.01 *** 4TH STREET *** Player1 - Pocket [H H Js 10d] PLAYER3 - Pocket [H H 6s Ah] -PLAYER4 - Pocket [10c 5c 7s] +Hero - Pocket [10c 5c 7s] PLAYER6 - Pocket [H H 9c Ks] PLAYER7 - Pocket [H H 3s Qc] PLAYER3 - Checks @@ -41,7 +41,7 @@ Player1 - Checks *** 5TH STREET *** Player1 - Pocket [H H Js 10d Kh] PLAYER3 - Pocket [H H 6s Ah 8c] -PLAYER4 - Pocket [10c 5c 7s] +Hero - Pocket [10c 5c 7s] PLAYER6 - Pocket [H H 9c Ks 10s] PLAYER7 - Pocket [H H 3s Qc 6c] PLAYER3 - Bets $0.04 @@ -51,7 +51,7 @@ Player1 - Calls $0.04 *** 6TH STREET *** Player1 - Pocket [H H Js 10d Kh 2c] PLAYER3 - Pocket [H H 6s Ah 8c Jc] -PLAYER4 - Pocket [10c 5c 7s] +Hero - Pocket [10c 5c 7s] PLAYER6 - Pocket [H H 9c Ks 10s 8h] PLAYER7 - Pocket [H H 3s Qc 6c Qs] PLAYER7 - Checks @@ -63,7 +63,7 @@ Player1 - Calls $0.04 *** RIVER *** Player1 - Pocket [H H Js 10d Kh 2c H] PLAYER3 - Pocket [H H 6s Ah 8c Jc H] -PLAYER4 - Pocket [10c 5c 7s] +Hero - Pocket [10c 5c 7s] PLAYER6 - Pocket [H H 9c Ks 10s 8h H] PLAYER7 - Pocket [H H 3s Qc 6c Qs H] PLAYER7 - Checks @@ -82,7 +82,7 @@ Total Pot($0.43) | Rake ($0.04) Seat 1: Player1 HI:lost with Two Pair, jacks and twos [Jh 3h Js 10d Kh 2c 2h - B:Js,P:Jh,P:2h,B:2c,B:Kh] Seat 2: PLAYER2 Folded on the 3rd STREET Seat 3: PLAYER3 won Total ($0.19) HI:with One pair, aces [3d 5d 6s Ah 8c Jc As - P:As,B:Ah,B:Jc,B:8c,B:6s] LO:($0.19) [B:Ah,P:3d,P:5d,B:6s,B:8c] -Seat 5: PLAYER4 Folded on the 3rd STREET +Seat 5: Hero Folded on the 3rd STREET Seat 6: PLAYER5 Folded on the 3rd STREET Seat 7: PLAYER6 won Total ($0.20) HI:($0.20) with Two Pair, kings and tens [Kc 10h 9c Ks 10s 8h 2s - B:Ks,P:Kc,B:10s,P:10h,B:9c] Seat 8: PLAYER7 HI:lost with One pair, queens [5s 8d 3s Qc 6c Qs 9s - B:Qs,B:Qc,P:9s,P:8d,B:6c] diff --git a/pyfpdb/regression-test-files/cash/Betfair/Flop/PLO-6max-USD-0.05-0.10-200909.All.in.river.splitpot.txt b/pyfpdb/regression-test-files/cash/Betfair/Flop/PLO-6max-USD-0.05-0.10-200909.All.in.river.splitpot.txt index c4685742..08ebaed5 100644 --- a/pyfpdb/regression-test-files/cash/Betfair/Flop/PLO-6max-USD-0.05-0.10-200909.All.in.river.splitpot.txt +++ b/pyfpdb/regression-test-files/cash/Betfair/Flop/PLO-6max-USD-0.05-0.10-200909.All.in.river.splitpot.txt @@ -3,7 +3,7 @@ PL $0.05/$0.10 Omaha - Sunday, October 18, 20:00:00 GMT 2009 Table Death 1 6-max (Real Money) Seat 2 is the button Total number of active players : 6 -Seat 1: Player6 ( $1 ) +Seat 1: Hero ( $1 ) Seat 2: Player3 ( $9.38 ) Seat 3: Player2 ( $2.82 ) Seat 4: Player4 ( $4.13 ) @@ -11,18 +11,18 @@ Seat 5: Player5 ( $28.77 ) Seat 6: Player1 ( $6.46 ) Player2 posts small blind [$0.05] Player4 posts big blind [$0.10] -Player6 posts big blind [$0.10] +Hero posts big blind [$0.10] ** Dealing down cards ** -Dealt to Player6 [ 7c, 6c, 5h, Jh ] +Dealt to Hero [ 7c, 6c, 5h, Jh ] Player5 folds Player1 calls [$0.10] -Player6 checks +Hero checks Player3 calls [$0.10] Player2 raises to [$0.30] Player4 calls [$0.20] Player1 calls [$0.20] -Player6 goes all-in -Player6 raises to [$1] +Hero goes all-in +Hero raises to [$1] Player3 calls [$0.90] Player2 calls [$0.70] Player4 calls [$0.70] @@ -43,7 +43,7 @@ Player4 goes all-in Player4 bets [$3.03] Player1 calls [$3.03] ** Showdown ** -Player6 shows [ 7c, 6c, 5h, Jh ] a straight, Seven to Three +Hero shows [ 7c, 6c, 5h, Jh ] a straight, Seven to Three Player4 shows [ 7d, 8c, 3d, 6h ] a straight flush, Seven to Three Player1 shows [ 3h, 4h, Td, 4s ] four of a kind, Fours ** Hand Conclusion ** diff --git a/pyfpdb/regression-test-files/cash/Carbon/Flop/NLHE-9max-USD-0.25-0.50.200810.All.Streets.txt b/pyfpdb/regression-test-files/cash/Carbon/Flop/NLHE-9max-USD-0.25-0.50.200810.All.Streets.txt index 2f47c939..078fd65b 100644 --- a/pyfpdb/regression-test-files/cash/Carbon/Flop/NLHE-9max-USD-0.25-0.50.200810.All.Streets.txt +++ b/pyfpdb/regression-test-files/cash/Carbon/Flop/NLHE-9max-USD-0.25-0.50.200810.All.Streets.txt @@ -2,7 +2,7 @@ <game id="15245216-1000" starttime="20081013150000" numholecards="2" gametype="2" realmoney="true" data="20081013|Niagara Falls (15245216)|15245216|15245216-1000|false"> <players dealer="8"> <player seat="3" nickname="Player1" balance="$34.13" dealtin="true" /> - <player seat="2" nickname="Player2" balance="$49.25" dealtin="true" /> + <player seat="2" nickname="Hero" balance="$49.25" dealtin="true" /> <player seat="1" nickname="Player3" balance="$55.64" dealtin="true" /> <player seat="0" nickname="Player4" balance="$19.72" dealtin="true" /> <player seat="7" nickname="Player5" balance="$25.16" dealtin="true" /> diff --git a/pyfpdb/regression-test-files/cash/Carbon/Flop/NLHE-9max-USD-0.25-0.50.200810.All.Streets.txt.hp b/pyfpdb/regression-test-files/cash/Carbon/Flop/NLHE-9max-USD-0.25-0.50.200810.All.Streets.txt.hp index 84bcaf2d..fff0dbf6 100644 --- a/pyfpdb/regression-test-files/cash/Carbon/Flop/NLHE-9max-USD-0.25-0.50.200810.All.Streets.txt.hp +++ b/pyfpdb/regression-test-files/cash/Carbon/Flop/NLHE-9max-USD-0.25-0.50.200810.All.Streets.txt.hp @@ -92,7 +92,7 @@ 'wonWhenSeenStreet2': 0.0, 'wonWhenSeenStreet3': 0.0, 'wonWhenSeenStreet4': 0.0}, - u'Player2': { 'card1': 13, + u'Hero': { 'card1': 13, 'card2': 46, 'card3': 0, 'card4': 0, diff --git a/pyfpdb/regression-test-files/cash/Everleaf/Flop/NLHE-6max-USD-0.05-0.10-29Aug2010.txt b/pyfpdb/regression-test-files/cash/Everleaf/Flop/NLHE-6max-USD-0.05-0.10-29Aug2010.txt index 2b2d59d6..18c54bea 100644 --- a/pyfpdb/regression-test-files/cash/Everleaf/Flop/NLHE-6max-USD-0.05-0.10-29Aug2010.txt +++ b/pyfpdb/regression-test-files/cash/Everleaf/Flop/NLHE-6max-USD-0.05-0.10-29Aug2010.txt @@ -5,19 +5,19 @@ Table Cortland XIV Seat 6 is the button Total number of players: 6 Seat 1: zlodeu123 ( $ 12.40 USD ) -Seat 2: EricBlade ( $ 5 USD ) +Seat 2: Hero ( $ 5 USD ) Seat 3: gabitzatoade ( $ 5.45 USD ) Seat 5: N0pr3s3n7 ( $ 10.29 USD ) Seat 6: Coolcatcool ( $ 8.30 USD ) zlodeu123: posts small blind [$ 0.05 USD] -EricBlade: posts big blind [$ 0.10 USD] +Hero: posts big blind [$ 0.10 USD] ** Dealing down cards ** -Dealt to EricBlade [ 9h, Qd ] +Dealt to Hero [ 9h, Qd ] gabitzatoade folds N0pr3s3n7 raises [$ 0.35 USD] Coolcatcool folds zlodeu123 folds -EricBlade folds +Hero folds N0pr3s3n7 does not show cards N0pr3s3n7 wins $ 0.25 USD from main pot @@ -30,21 +30,21 @@ Table Cortland XIV Seat 1 is the button Total number of players: 5 Seat 1: zlodeu123 ( $ 12.35 USD ) -Seat 2: EricBlade ( $ 4.90 USD ) +Seat 2: Hero ( $ 4.90 USD ) Seat 3: gabitzatoade ( $ 5.45 USD ) Seat 5: N0pr3s3n7 ( $ 10.44 USD ) Seat 6: Coolcatcool ( $ 8.30 USD ) -EricBlade: posts small blind [$ 0.05 USD] +Hero: posts small blind [$ 0.05 USD] gabitzatoade: posts big blind [$ 0.10 USD] ** Dealing down cards ** -Dealt to EricBlade [ Qd, 9d ] +Dealt to Hero [ Qd, 9d ] N0pr3s3n7 folds Coolcatcool folds zlodeu123 folds -EricBlade raises [$ 0.25 USD] +Hero raises [$ 0.25 USD] gabitzatoade folds -EricBlade does not show cards -EricBlade wins $ 0.20 USD from main pot +Hero does not show cards +Hero wins $ 0.20 USD from main pot @@ -55,7 +55,7 @@ Table Cortland XIV Seat 2 is the button Total number of players: 5 Seat 1: zlodeu123 ( $ 12.35 USD ) -Seat 2: EricBlade ( $ 5 USD ) +Seat 2: Hero ( $ 5 USD ) Seat 3: gabitzatoade ( $ 5.35 USD ) Seat 4: Miazza ( new player ) Seat 5: N0pr3s3n7 ( $ 10.44 USD ) @@ -63,24 +63,24 @@ Seat 6: Coolcatcool ( $ 8.30 USD ) gabitzatoade: posts small blind [$ 0.05 USD] N0pr3s3n7: posts big blind [$ 0.10 USD] ** Dealing down cards ** -Dealt to EricBlade [ 9c, Ac ] +Dealt to Hero [ 9c, Ac ] Coolcatcool folds zlodeu123 folds -EricBlade raises [$ 0.35 USD] +Hero raises [$ 0.35 USD] gabitzatoade calls [$ 0.30 USD] N0pr3s3n7 folds ** Dealing Flop ** [ 4c, Kh, 6h ] gabitzatoade checks -EricBlade: bets [$ 0.40 USD] +Hero: bets [$ 0.40 USD] gabitzatoade calls [$ 0.40 USD] ** Dealing Turn ** [ Qh ] gabitzatoade checks Miazza has joined the table -EricBlade checks +Hero checks ** Dealing River ** [ Qd ] gabitzatoade checks -EricBlade checks -EricBlade shows [ 9c, Ac ] a pair of queens +Hero checks +Hero shows [ 9c, Ac ] a pair of queens gabitzatoade shows [ 4s, 4d ] a full house, fours full of queens gabitzatoade wins $ 1.52 USD from main pot with a full house, fours full of queens [ Qh, Qd, 4s, 4d, 4c ] @@ -93,7 +93,7 @@ Table Cortland XIV Seat 3 is the button Total number of players: 6 Seat 1: zlodeu123 ( $ 12.35 USD ) -Seat 2: EricBlade ( $ 4.25 USD ) +Seat 2: Hero ( $ 4.25 USD ) Seat 3: gabitzatoade ( $ 6.12 USD ) Seat 4: Miazza ( $ 5 USD ) Seat 5: N0pr3s3n7 ( $ 10.34 USD ) @@ -101,18 +101,18 @@ Seat 6: Coolcatcool ( $ 8.30 USD ) N0pr3s3n7: posts small blind [$ 0.05 USD] Coolcatcool: posts big blind [$ 0.10 USD] ** Dealing down cards ** -Dealt to EricBlade [ Kc, Jd ] +Dealt to Hero [ Kc, Jd ] zlodeu123 raises [$ 0.35 USD] -EricBlade calls [$ 0.35 USD] +Hero calls [$ 0.35 USD] gabitzatoade folds N0pr3s3n7 folds Coolcatcool folds ** Dealing Flop ** [ 9s, 3c, Jc ] zlodeu123: bets [$ 0.60 USD] -EricBlade raises [$ 1.80 USD] +Hero raises [$ 1.80 USD] zlodeu123 folds -EricBlade does not show cards -EricBlade wins $ 1.95 USD from main pot +Hero does not show cards +Hero wins $ 1.95 USD from main pot @@ -123,7 +123,7 @@ Table Cortland XIV Seat 5 is the button Total number of players: 6 Seat 1: zlodeu123 ( $ 11.40 USD ) -Seat 2: EricBlade ( $ 5.25 USD ) +Seat 2: Hero ( $ 5.25 USD ) Seat 3: gabitzatoade ( $ 6.12 USD ) Seat 4: Miazza ( $ 5 USD ) Seat 5: N0pr3s3n7 ( $ 10.29 USD ) @@ -132,8 +132,8 @@ Coolcatcool: posts small blind [$ 0.05 USD] zlodeu123: posts big blind [$ 0.10 USD] Miazza sits out ** Dealing down cards ** -Dealt to EricBlade [ 6d, 3d ] -EricBlade folds +Dealt to Hero [ 6d, 3d ] +Hero folds gabitzatoade calls [$ 0.10 USD] N0pr3s3n7 raises [$ 0.30 USD] Coolcatcool folds @@ -155,21 +155,21 @@ Table Cortland XIV Seat 6 is the button Total number of players: 6 Seat 1: zlodeu123 ( $ 11.30 USD ) -Seat 2: EricBlade ( $ 5.25 USD ) +Seat 2: Hero ( $ 5.25 USD ) Seat 3: gabitzatoade ( $ 5.82 USD ) Seat 4: Miazza ( $ 5 USD ) Seat 5: N0pr3s3n7 ( $ 10.71 USD ) Seat 6: Coolcatcool ( $ 8.15 USD ) zlodeu123: posts small blind [$ 0.05 USD] -EricBlade: posts big blind [$ 0.10 USD] +Hero: posts big blind [$ 0.10 USD] ** Dealing down cards ** -Dealt to EricBlade [ Qh, Qd ] +Dealt to Hero [ Qh, Qd ] gabitzatoade folds N0pr3s3n7 folds Coolcatcool folds zlodeu123 folds -EricBlade does not show cards -EricBlade wins $ 0.10 USD from main pot +Hero does not show cards +Hero wins $ 0.10 USD from main pot @@ -180,22 +180,22 @@ Table Cortland XIV Seat 1 is the button Total number of players: 6 Seat 1: zlodeu123 ( $ 11.25 USD ) -Seat 2: EricBlade ( $ 5.30 USD ) +Seat 2: Hero ( $ 5.30 USD ) Seat 3: gabitzatoade ( $ 5.82 USD ) Seat 4: Miazza ( $ 5 USD ) Seat 5: N0pr3s3n7 ( $ 10.71 USD ) Seat 6: Coolcatcool ( $ 8.15 USD ) -EricBlade: posts small blind [$ 0.05 USD] +Hero: posts small blind [$ 0.05 USD] gabitzatoade: posts big blind [$ 0.10 USD] ** Dealing down cards ** -Dealt to EricBlade [ Ts, Ks ] +Dealt to Hero [ Ts, Ks ] N0pr3s3n7 folds Coolcatcool folds zlodeu123 folds -EricBlade raises [$ 0.25 USD] +Hero raises [$ 0.25 USD] gabitzatoade folds -EricBlade does not show cards -EricBlade wins $ 0.20 USD from main pot +Hero does not show cards +Hero wins $ 0.20 USD from main pot @@ -206,7 +206,7 @@ Table Cortland XIV Seat 2 is the button Total number of players: 6 Seat 1: zlodeu123 ( $ 11.25 USD ) -Seat 2: EricBlade ( $ 5.40 USD ) +Seat 2: Hero ( $ 5.40 USD ) Seat 3: gabitzatoade ( $ 5.72 USD ) Seat 4: Miazza ( $ 5 USD ) Seat 5: N0pr3s3n7 ( $ 10.71 USD ) @@ -214,11 +214,11 @@ Seat 6: Coolcatcool ( $ 8.15 USD ) gabitzatoade: posts small blind [$ 0.05 USD] Miazza: posts big blind [$ 0.10 USD] ** Dealing down cards ** -Dealt to EricBlade [ 2c, 4s ] +Dealt to Hero [ 2c, 4s ] N0pr3s3n7 folds Coolcatcool folds zlodeu123 raises [$ 0.35 USD] -EricBlade folds +Hero folds gabitzatoade calls [$ 0.30 USD] Miazza folds ** Dealing Flop ** [ Ad, 6d, 6s ] @@ -245,7 +245,7 @@ Table Cortland XIV Seat 3 is the button Total number of players: 6 Seat 1: zlodeu123 ( $ 11.25 USD ) -Seat 2: EricBlade ( $ 5.40 USD ) +Seat 2: Hero ( $ 5.40 USD ) Seat 3: gabitzatoade ( $ 5.72 USD ) Seat 4: Miazza ( $ 4.90 USD ) Seat 5: N0pr3s3n7 ( $ 10.71 USD ) @@ -253,15 +253,15 @@ Seat 6: Coolcatcool ( $ 8.15 USD ) Miazza: posts small blind [$ 0.05 USD] N0pr3s3n7: posts big blind [$ 0.10 USD] ** Dealing down cards ** -Dealt to EricBlade [ 7d, Kd ] +Dealt to Hero [ 7d, Kd ] Coolcatcool folds zlodeu123 folds -EricBlade raises [$ 0.35 USD] +Hero raises [$ 0.35 USD] gabitzatoade folds Miazza folds N0pr3s3n7 folds -EricBlade does not show cards -EricBlade wins $ 0.25 USD from main pot +Hero does not show cards +Hero wins $ 0.25 USD from main pot @@ -272,7 +272,7 @@ Table Cortland XIV Seat 4 is the button Total number of players: 6 Seat 1: zlodeu123 ( $ 11.25 USD ) -Seat 2: EricBlade ( $ 5.55 USD ) +Seat 2: Hero ( $ 5.55 USD ) Seat 3: gabitzatoade ( $ 5.72 USD ) Seat 4: Miazza ( $ 4.85 USD ) Seat 5: N0pr3s3n7 ( $ 10.61 USD ) @@ -280,9 +280,9 @@ Seat 6: Coolcatcool ( $ 8.15 USD ) N0pr3s3n7: posts small blind [$ 0.05 USD] Coolcatcool: posts big blind [$ 0.10 USD] ** Dealing down cards ** -Dealt to EricBlade [ 6d, Kc ] +Dealt to Hero [ 6d, Kc ] zlodeu123 folds -EricBlade folds +Hero folds gabitzatoade folds Miazza raises [$ 0.35 USD] N0pr3s3n7 folds @@ -300,7 +300,7 @@ Table Cortland XIV Seat 5 is the button Total number of players: 6 Seat 1: zlodeu123 ( $ 11.25 USD ) -Seat 2: EricBlade ( $ 5.55 USD ) +Seat 2: Hero ( $ 5.55 USD ) Seat 3: gabitzatoade ( $ 5.72 USD ) Seat 4: Miazza ( $ 4.50 USD ) Seat 5: N0pr3s3n7 ( $ 10.56 USD ) @@ -308,8 +308,8 @@ Seat 6: Coolcatcool ( $ 8.55 USD ) Coolcatcool: posts small blind [$ 0.05 USD] zlodeu123: posts big blind [$ 0.10 USD] ** Dealing down cards ** -Dealt to EricBlade [ 3h, 9s ] -EricBlade folds +Dealt to Hero [ 3h, 9s ] +Hero folds gabitzatoade folds Miazza folds N0pr3s3n7 folds @@ -326,22 +326,22 @@ Table Cortland XIV Seat 6 is the button Total number of players: 6 Seat 1: zlodeu123 ( $ 11.30 USD ) -Seat 2: EricBlade ( $ 5.55 USD ) +Seat 2: Hero ( $ 5.55 USD ) Seat 3: gabitzatoade ( $ 5.72 USD ) Seat 4: Miazza ( $ 4.50 USD ) Seat 5: N0pr3s3n7 ( $ 10.56 USD ) Seat 6: Coolcatcool ( $ 8.50 USD ) zlodeu123: posts small blind [$ 0.05 USD] -EricBlade: posts big blind [$ 0.10 USD] +Hero: posts big blind [$ 0.10 USD] ** Dealing down cards ** -Dealt to EricBlade [ Kd, 4h ] +Dealt to Hero [ Kd, 4h ] gabitzatoade folds Miazza folds N0pr3s3n7 folds Coolcatcool folds zlodeu123 folds -EricBlade does not show cards -EricBlade wins $ 0.10 USD from main pot +Hero does not show cards +Hero wins $ 0.10 USD from main pot @@ -352,25 +352,25 @@ Table Cortland XIV Seat 1 is the button Total number of players: 6 Seat 1: zlodeu123 ( $ 11.25 USD ) -Seat 2: EricBlade ( $ 5.60 USD ) +Seat 2: Hero ( $ 5.60 USD ) Seat 3: gabitzatoade ( $ 5.72 USD ) Seat 4: Miazza ( $ 4.50 USD ) Seat 5: N0pr3s3n7 ( $ 10.56 USD ) Seat 6: Coolcatcool ( $ 8.50 USD ) -EricBlade: posts small blind [$ 0.05 USD] +Hero: posts small blind [$ 0.05 USD] gabitzatoade: posts big blind [$ 0.10 USD] ** Dealing down cards ** -Dealt to EricBlade [ 9h, Th ] +Dealt to Hero [ 9h, Th ] Miazza folds N0pr3s3n7 folds Coolcatcool folds zlodeu123 folds -EricBlade raises [$ 0.25 USD] +Hero raises [$ 0.25 USD] gabitzatoade calls [$ 0.20 USD] ** Dealing Flop ** [ 3d, 5d, 6c ] -EricBlade checks +Hero checks gabitzatoade: bets [$ 0.40 USD] -EricBlade folds +Hero folds gabitzatoade does not show cards gabitzatoade wins $ 0.57 USD from main pot @@ -383,7 +383,7 @@ Table Cortland XIV Seat 2 is the button Total number of players: 5 Seat 1: zlodeu123 ( $ 11.25 USD ) -Seat 2: EricBlade ( $ 5.30 USD ) +Seat 2: Hero ( $ 5.30 USD ) Seat 3: gabitzatoade ( $ 5.99 USD ) Seat 4: Miazza ( $ 4.50 USD ) Seat 5: N0pr3s3n7 ( $ 10.56 USD ) @@ -391,10 +391,10 @@ Seat 6: SAVCOMP ( new player ) gabitzatoade: posts small blind [$ 0.05 USD] Miazza: posts big blind [$ 0.10 USD] ** Dealing down cards ** -Dealt to EricBlade [ As, 4d ] +Dealt to Hero [ As, 4d ] N0pr3s3n7 folds zlodeu123 raises [$ 0.35 USD] -EricBlade folds +Hero folds gabitzatoade calls [$ 0.30 USD] SAVCOMP has joined the table Miazza folds diff --git a/pyfpdb/regression-test-files/cash/FTP/Flop/FT20100721 Flash - $0.02-$0.05 - No Limit Hold'em - dateformat change.txt b/pyfpdb/regression-test-files/cash/FTP/Flop/FT20100721 Flash - $0.02-$0.05 - No Limit Hold'em - dateformat change.txt index ca823407..45e09282 100644 --- a/pyfpdb/regression-test-files/cash/FTP/Flop/FT20100721 Flash - $0.02-$0.05 - No Limit Hold'em - dateformat change.txt +++ b/pyfpdb/regression-test-files/cash/FTP/Flop/FT20100721 Flash - $0.02-$0.05 - No Limit Hold'em - dateformat change.txt @@ -4,15 +4,15 @@ Seat 2: stark00 ($4.41) Seat 3: T0r3x ($12.97) Seat 4: yrthligar ($15) Seat 5: MANUTD ($8.56) -Seat 6: gimick ($2) +Seat 6: Hero ($2) Seat 7: vision ($2.97) Seat 8: shleekom ($2) Seat 9: proud2Bwhack ($8.77) MANUTD posts the small blind of $0.02 -gimick posts the big blind of $0.05 +Hero posts the big blind of $0.05 The button is in seat #4 *** HOLE CARDS *** -Dealt to gimick [Qs 4d] +Dealt to Hero [Qs 4d] vision folds shleekom folds proud2Bwhack folds @@ -23,9 +23,9 @@ yrthligar has 8 seconds left to act yrthligar has timed out yrthligar folds MANUTD folds -Uncalled bet of $0.03 returned to gimick -gimick mucks -gimick wins the pot ($0.04) +Uncalled bet of $0.03 returned to Hero +Hero mucks +Hero wins the pot ($0.04) *** SUMMARY *** Total pot $0.04 | Rake $0 Seat 1: ronaldd1969 didn't bet (folded) @@ -33,7 +33,7 @@ Seat 2: stark00 didn't bet (folded) Seat 3: T0r3x didn't bet (folded) Seat 4: yrthligar (button) didn't bet (folded) Seat 5: MANUTD (small blind) folded before the Flop -Seat 6: gimick (big blind) collected ($0.04), mucked +Seat 6: Hero (big blind) collected ($0.04), mucked Seat 7: vision didn't bet (folded) Seat 8: shleekom didn't bet (folded) Seat 9: proud2Bwhack didn't bet (folded) diff --git a/pyfpdb/regression-test-files/cash/FTP/Flop/FT20100804 Venice (6 max) - $0.01-$0.02 - singlehand session postBB out of turn.txt b/pyfpdb/regression-test-files/cash/FTP/Flop/FT20100804 Venice (6 max) - $0.01-$0.02 - singlehand session postBB out of turn.txt index 91f29aeb..6680e302 100644 --- a/pyfpdb/regression-test-files/cash/FTP/Flop/FT20100804 Venice (6 max) - $0.01-$0.02 - singlehand session postBB out of turn.txt +++ b/pyfpdb/regression-test-files/cash/FTP/Flop/FT20100804 Venice (6 max) - $0.01-$0.02 - singlehand session postBB out of turn.txt @@ -1,5 +1,5 @@ Full Tilt Poker Game #22821112219: Table Venice (6 max) - $0.01/$0.02 - No Limit Hold'em - 15:42:59 ET - 2010/08/04 -Seat 1: gimick ($0.70) +Seat 1: Hero ($0.70) Seat 2: player2 ($0.70) Seat 3: player1 ($0.98) Seat 4: player3 ($5.14) @@ -7,24 +7,24 @@ Seat 5: player4 ($2) Seat 6: player5 ($0.80) player1 posts the small blind of $0.01 player3 posts the big blind of $0.02 -gimick posts $0.02 +Hero posts $0.02 5 seconds left to act player5 posts $0.02 The button is in seat #2 *** HOLE CARDS *** -Dealt to gimick [Qd Jc] +Dealt to Hero [Qd Jc] player4 folds player5 checks -gimick checks +Hero checks player1 calls $0.01 player3 checks *** FLOP *** [3d As 2h] player1 checks player3 checks player5 bets $0.02 -gimick folds +Hero folds player1 folds -gimick is sitting out +Hero is sitting out player3 calls $0.02 *** TURN *** [3d As 2h] [4h] player3 checks @@ -41,7 +41,7 @@ player5 wins the pot ($0.15) *** SUMMARY *** Total pot $0.16 | Rake $0.01 Board: [3d As 2h 4h 7c] -Seat 1: gimick folded on the Flop +Seat 1: Hero folded on the Flop Seat 2: player2 (button) is sitting out Seat 3: player1 (small blind) folded on the Flop Seat 4: player3 (big blind) folded on the River diff --git a/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-6max-EUR-0.01-0.02.201008.Weird.table.character.txt b/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-6max-EUR-0.01-0.02.201008.Weird.table.character.txt index 6330c44b5e1dd83c621076a473cbac0572d0228f..91535c1e78214cd8983b756865201535d8001836 100644 GIT binary patch delta 92 zcmaFEcY<%j6-IUshE#?khWyD787IQo^-OEwY)j_-@=!Gl3Jhrs`3yM>DGbF7ybN3n RQ1Q*mEVG&58cwq<1OTht7zF?T delta 96 zcmX@X_l9r76-M3wh8%`OhDwH1h9U;j$+sCNqKOnUtwj@2XWl<KikXMebh0P2ETidW OR+iaJXiAo|Ed&7Yw;167 diff --git a/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-6max-EUR-0.01-0.02.201008.Weird.table.character.txt.hp b/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-6max-EUR-0.01-0.02.201008.Weird.table.character.txt.hp index 85683ac1..d4bba5fb 100644 --- a/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-6max-EUR-0.01-0.02.201008.Weird.table.character.txt.hp +++ b/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-6max-EUR-0.01-0.02.201008.Weird.table.character.txt.hp @@ -374,7 +374,7 @@ 'wonWhenSeenStreet2': 0.0, 'wonWhenSeenStreet3': 0.0, 'wonWhenSeenStreet4': 0.0}, - u'Player5': { 'card1': 1, + u'Hero': { 'card1': 1, 'card2': 34, 'card3': 0, 'card4': 0, diff --git a/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt b/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt index ca823407..45e09282 100644 --- a/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt +++ b/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt @@ -4,15 +4,15 @@ Seat 2: stark00 ($4.41) Seat 3: T0r3x ($12.97) Seat 4: yrthligar ($15) Seat 5: MANUTD ($8.56) -Seat 6: gimick ($2) +Seat 6: Hero ($2) Seat 7: vision ($2.97) Seat 8: shleekom ($2) Seat 9: proud2Bwhack ($8.77) MANUTD posts the small blind of $0.02 -gimick posts the big blind of $0.05 +Hero posts the big blind of $0.05 The button is in seat #4 *** HOLE CARDS *** -Dealt to gimick [Qs 4d] +Dealt to Hero [Qs 4d] vision folds shleekom folds proud2Bwhack folds @@ -23,9 +23,9 @@ yrthligar has 8 seconds left to act yrthligar has timed out yrthligar folds MANUTD folds -Uncalled bet of $0.03 returned to gimick -gimick mucks -gimick wins the pot ($0.04) +Uncalled bet of $0.03 returned to Hero +Hero mucks +Hero wins the pot ($0.04) *** SUMMARY *** Total pot $0.04 | Rake $0 Seat 1: ronaldd1969 didn't bet (folded) @@ -33,7 +33,7 @@ Seat 2: stark00 didn't bet (folded) Seat 3: T0r3x didn't bet (folded) Seat 4: yrthligar (button) didn't bet (folded) Seat 5: MANUTD (small blind) folded before the Flop -Seat 6: gimick (big blind) collected ($0.04), mucked +Seat 6: Hero (big blind) collected ($0.04), mucked Seat 7: vision didn't bet (folded) Seat 8: shleekom didn't bet (folded) Seat 9: proud2Bwhack didn't bet (folded) diff --git a/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt.hp b/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt.hp index 01ff416e..d04306a5 100644 --- a/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt.hp +++ b/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt.hp @@ -186,7 +186,7 @@ 'wonWhenSeenStreet2': 0.0, 'wonWhenSeenStreet3': 0.0, 'wonWhenSeenStreet4': 0.0}, - u'gimick': { 'card1': 50, + u'Hero': { 'card1': 50, 'card2': 16, 'card3': 0, 'card4': 0, diff --git a/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-USD-0.05-0.10-201006.Player.sitting.out.but.acting.txt b/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-USD-0.05-0.10-201006.Player.sitting.out.but.acting.txt index 03ff80f2fd7898c5fe6903f67595717010c75d8a..b65c06ca3c066a4b45910c86faaae7365d47fa60 100644 GIT binary patch delta 62 zcmZ1_Hc4zl5F@(>Ln=cNL;mJ?##|;CXYx(vmvHt*7TL{jSne^y1U6si2xbBRGbs{k delta 70 zcmbOvwn}V65F>8@Lk>eCLnT8hLlJ}V=19g|rpXfQJdDPZ&oaN99KZr%DYD3JzQuBn L8BOhej$kGLnN<?K diff --git a/pyfpdb/regression-test-files/cash/FTP/Flop/PLO-6max-USD-0.01-0.02.201003.River.Showdown.txt b/pyfpdb/regression-test-files/cash/FTP/Flop/PLO-6max-USD-0.01-0.02.201003.River.Showdown.txt index 9add8f14a06826893d5869095ecfe653fc0e6946..863e14e58b33825c8b798bf27086aff4dea27d20 100644 GIT binary patch delta 57 tcmdlc*(bSxk==tKm7$0sf3qN?E)$G1*`IkSjJ=tag^>-;5$BrE1OSQy4I%&l delta 97 zcmeB^+$OnzQ81VxpP>i{^BKw+(iln^ayGLw>M~&pPqt=WiYdDJIWr?07UB1t^O*o| C#~1hj diff --git a/pyfpdb/regression-test-files/cash/FTP/Flop/PLO-6max-USD-0.01-0.02.201003.River.Showdown.txt.hp b/pyfpdb/regression-test-files/cash/FTP/Flop/PLO-6max-USD-0.01-0.02.201003.River.Showdown.txt.hp index e84e0d30..fcd3eb6f 100644 --- a/pyfpdb/regression-test-files/cash/FTP/Flop/PLO-6max-USD-0.01-0.02.201003.River.Showdown.txt.hp +++ b/pyfpdb/regression-test-files/cash/FTP/Flop/PLO-6max-USD-0.01-0.02.201003.River.Showdown.txt.hp @@ -280,7 +280,7 @@ 'wonWhenSeenStreet2': 0.0, 'wonWhenSeenStreet3': 0.0, 'wonWhenSeenStreet4': 0.0}, - u'Sorrowful': { 'card1': 15, + u'Hero': { 'card1': 15, 'card2': 10, 'card3': 42, 'card4': 25, diff --git a/pyfpdb/regression-test-files/cash/FTP/Flop/PLO-6max-USD-0.01-0.02.201003.txt b/pyfpdb/regression-test-files/cash/FTP/Flop/PLO-6max-USD-0.01-0.02.201003.txt index d295294b8f906952ec10a08463ad383b68a7caf4..8cc272b0bbe5f84b99a37ab3a69655cf9275e913 100644 GIT binary patch delta 58 rcmbOs_Ca(3BfAGfDnk)N{$@c&b0#<^l9>@9lg-k|0+;#AA<YB;q-72? delta 98 zcmew$Izwy$qhK&YK0^@@<};Ktq%o8-<ZNbVG-tvh?8?lDO|>seBMTPQS2?7a0D9~f A3;+NC diff --git a/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.Button.Failure.txt b/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.Button.Failure.txt index a1c16b74..b8409da7 100644 --- a/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.Button.Failure.txt +++ b/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.Button.Failure.txt @@ -3,12 +3,12 @@ Seat 1: bllodshot ($31), is sitting out Seat 2: kwuiyhw ($62.50) Seat 3: chasrigg ($297.50) Seat 4: goulartarm ($94.50) -Seat 5: ExecDec ($265.50) +Seat 5: Hero ($265.50) Seat 6: arjun1111 ($41.50) Seat 7: thebear666 ($101) Seat 8: FILL A RACK ($128.50) chasrigg antes $0.50 -ExecDec antes $0.50 +Hero antes $0.50 kwuiyhw antes $0.50 arjun1111 antes $0.50 FILL A RACK antes $0.50 @@ -18,7 +18,7 @@ goulartarm antes $0.50 Dealt to kwuiyhw [9c] Dealt to chasrigg [Jh] Dealt to goulartarm [Qs] -Dealt to ExecDec [5s 2h] [Th] +Dealt to Hero [5s 2h] [Th] Dealt to arjun1111 [As] Dealt to thebear666 [7s] Dealt to FILL A RACK [Ad] @@ -31,7 +31,7 @@ chasrigg has 15 seconds left to act shasatipu adds $316 chasrigg folds goulartarm folds -ExecDec folds +Hero folds arjun1111 completes it to $3 thebear666 calls $2 *** 4TH STREET *** @@ -48,7 +48,7 @@ Seat 1: bllodshot is sitting out Seat 2: kwuiyhw folded on 3rd St. Seat 3: chasrigg folded on 3rd St. Seat 4: goulartarm folded on 3rd St. -Seat 5: ExecDec folded on 3rd St. +Seat 5: Hero folded on 3rd St. Seat 6: arjun1111 collected ($9.50), mucked Seat 7: thebear666 folded on 4th St. Seat 8: FILL A RACK folded on 3rd St. diff --git a/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.Button.Failure.txt.hp b/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.Button.Failure.txt.hp index 6ed1d1e1..d02e65c6 100644 --- a/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.Button.Failure.txt.hp +++ b/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.Button.Failure.txt.hp @@ -1,4 +1,4 @@ -{ u'ExecDec': { 'card1': 43, +{ u'Hero': { 'card1': 43, 'card2': 1, 'card3': 9, 'card4': 0, diff --git a/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.CO.Success.txt b/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.CO.Success.txt index 8cb1355c..2752b289 100644 --- a/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.CO.Success.txt +++ b/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.CO.Success.txt @@ -3,13 +3,13 @@ Seat 1: bllodshot ($52.50) Seat 2: kwuiyhw ($48.50) Seat 3: chasrigg ($284) Seat 4: goulartarm ($80) -Seat 5: ExecDec ($223.50) +Seat 5: Hero ($223.50) Seat 7: thebear666 ($87.50) Seat 8: FILL A RACK ($138) kwuiyhw antes $0.50 chasrigg antes $0.50 bllodshot antes $0.50 -ExecDec antes $0.50 +Hero antes $0.50 FILL A RACK antes $0.50 thebear666 antes $0.50 goulartarm antes $0.50 @@ -18,12 +18,12 @@ Dealt to bllodshot [9c] Dealt to kwuiyhw [Kc] Dealt to chasrigg [2s] Dealt to goulartarm [2c] -Dealt to ExecDec [5h 3c] [Td] +Dealt to Hero [5h 3c] [Td] Dealt to thebear666 [3h] Dealt to FILL A RACK [6c] goulartarm is low with [2c] goulartarm brings in for $1 -ExecDec folds +Hero folds thebear666 folds FILL A RACK folds bllodshot folds @@ -39,7 +39,7 @@ Seat 1: bllodshot folded on 3rd St. Seat 2: kwuiyhw collected ($5.50), mucked Seat 3: chasrigg folded on 3rd St. Seat 4: goulartarm folded on 3rd St. -Seat 5: ExecDec folded on 3rd St. +Seat 5: Hero folded on 3rd St. Seat 7: thebear666 folded on 3rd St. Seat 8: FILL A RACK folded on 3rd St. diff --git a/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.HJ.Failure-3bet.by.button.txt b/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.HJ.Failure-3bet.by.button.txt index 11cf6e8a..ef225167 100644 --- a/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.HJ.Failure-3bet.by.button.txt +++ b/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.HJ.Failure-3bet.by.button.txt @@ -3,12 +3,12 @@ Seat 1: bllodshot ($31), is sitting out Seat 2: kwuiyhw ($67) Seat 3: chasrigg ($294.50) Seat 4: goulartarm ($92.50) -Seat 5: ExecDec ($306) +Seat 5: Hero ($306) Seat 6: arjun1111 ($37) Seat 7: thebear666 ($84.50) Seat 8: shasatipu ($293.50) chasrigg antes $0.50 -ExecDec antes $0.50 +Hero antes $0.50 kwuiyhw antes $0.50 thebear666 antes $0.50 arjun1111 antes $0.50 @@ -18,7 +18,7 @@ goulartarm antes $0.50 Dealt to kwuiyhw [Th] Dealt to chasrigg [8h] Dealt to goulartarm [5c] -Dealt to ExecDec [Td Jd] [As] +Dealt to Hero [Td Jd] [As] Dealt to arjun1111 [8c] Dealt to thebear666 [Kc] Dealt to shasatipu [3c] @@ -28,51 +28,51 @@ kwuiyhw folds chasrigg folds kwuiyhw is sitting out goulartarm folds -ExecDec completes it to $3 +Hero completes it to $3 arjun1111 calls $3 thebear666 raises to $6 shasatipu has 15 seconds left to act shasatipu calls $5 -ExecDec calls $3 +Hero calls $3 arjun1111 calls $3 *** 4TH STREET *** -Dealt to ExecDec [Td Jd As] [Jc] +Dealt to Hero [Td Jd As] [Jc] Dealt to arjun1111 [8c] [3h] Dealt to thebear666 [Kc] [2h] Dealt to shasatipu [3c] [2d] -ExecDec checks +Hero checks arjun1111 checks thebear666 has 15 seconds left to act thebear666 bets $3 shasatipu folds -ExecDec raises to $6 +Hero raises to $6 arjun1111 folds thebear666 calls $3 *** 5TH STREET *** -Dealt to ExecDec [Td Jd As Jc] [Js] +Dealt to Hero [Td Jd As Jc] [Js] Dealt to thebear666 [Kc 2h] [3s] -ExecDec bets $6 +Hero bets $6 thebear666 calls $6 *** 6TH STREET *** -Dealt to ExecDec [Td Jd As Jc Js] [7h] +Dealt to Hero [Td Jd As Jc Js] [7h] Dealt to thebear666 [Kc 2h 3s] [4d] -ExecDec bets $6 +Hero bets $6 thebear666 calls $6 *** 7TH STREET *** -Dealt to ExecDec [Td Jd As Jc Js 7h] [2s] -ExecDec bets $6 +Dealt to Hero [Td Jd As Jc Js 7h] [2s] +Hero bets $6 thebear666 calls $6 *** SHOW DOWN *** -ExecDec shows [Jd Td As Jc Js 7h 2s] three of a kind, Jacks +Hero shows [Jd Td As Jc Js 7h 2s] three of a kind, Jacks thebear666 mucks -ExecDec wins the pot ($72.50) with three of a kind, Jacks +Hero wins the pot ($72.50) with three of a kind, Jacks *** SUMMARY *** Total pot $75.50 | Rake $3 Seat 1: bllodshot is sitting out Seat 2: kwuiyhw folded on 3rd St. Seat 3: chasrigg folded on 3rd St. Seat 4: goulartarm folded on 3rd St. -Seat 5: ExecDec showed [Jd Td As Jc Js 7h 2s] and won ($72.50) with three of a kind, Jacks +Seat 5: Hero showed [Jd Td As Jc Js 7h 2s] and won ($72.50) with three of a kind, Jacks Seat 6: arjun1111 folded on 4th St. Seat 7: thebear666 mucked [Kd 7c Kc 2h 3s 4d 5h] - a pair of Kings Seat 8: shasatipu folded on 4th St. diff --git a/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.HJ.Failure.txt b/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.HJ.Failure.txt index 50a7290b..89e8fb0a 100644 --- a/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.HJ.Failure.txt +++ b/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.HJ.Failure.txt @@ -3,13 +3,13 @@ Seat 1: bllodshot ($38) Seat 2: kwuiyhw ($64.50) Seat 3: chasrigg ($298.50) Seat 4: goulartarm ($98.50) -Seat 5: ExecDec ($266.50) +Seat 5: Hero ($266.50) Seat 6: arjun1111 ($42.50) Seat 7: thebear666 ($84) Seat 8: FILL A RACK ($129.50) thebear666 antes $0.50 kwuiyhw antes $0.50 -ExecDec antes $0.50 +Hero antes $0.50 chasrigg antes $0.50 arjun1111 antes $0.50 bllodshot antes $0.50 @@ -20,7 +20,7 @@ Dealt to bllodshot [8h] Dealt to kwuiyhw [4c] Dealt to chasrigg [7c] Dealt to goulartarm [6d] -Dealt to ExecDec [3d 4s] [4d] +Dealt to Hero [3d 4s] [4d] Dealt to arjun1111 [8s] Dealt to thebear666 [Ac] Dealt to FILL A RACK [Jh] @@ -28,8 +28,8 @@ kwuiyhw is low with [4c] kwuiyhw brings in for $1 chasrigg folds goulartarm folds -ExecDec has 15 seconds left to act -ExecDec folds +Hero has 15 seconds left to act +Hero folds arjun1111 folds thebear666 completes it to $3 FILL A RACK folds @@ -55,7 +55,7 @@ Seat 1: bllodshot folded on 5th St. Seat 2: kwuiyhw folded on 3rd St. Seat 3: chasrigg folded on 3rd St. Seat 4: goulartarm folded on 3rd St. -Seat 5: ExecDec folded on 3rd St. +Seat 5: Hero folded on 3rd St. Seat 6: arjun1111 folded on 3rd St. Seat 7: thebear666 collected ($17), mucked Seat 8: FILL A RACK folded on 3rd St. diff --git a/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.HJ.Success.txt b/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.HJ.Success.txt index 3e4d1f0f..eca22607 100644 --- a/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.HJ.Success.txt +++ b/pyfpdb/regression-test-files/cash/FTP/Stud/7-Stud-USD-3-6-20106.Steal.from.HJ.Success.txt @@ -3,11 +3,11 @@ Seat 1: bllodshot ($34) Seat 2: kwuiyhw ($78.50) Seat 3: chasrigg ($299.50) Seat 4: goulartarm ($100.50) -Seat 5: ExecDec ($249.50) +Seat 5: Hero ($249.50) Seat 6: arjun1111 ($43.50) Seat 7: thebear666 ($86) Seat 8: FILL A RACK ($131.50) -ExecDec antes $0.50 +Hero antes $0.50 chasrigg antes $0.50 arjun1111 antes $0.50 bllodshot antes $0.50 @@ -20,13 +20,13 @@ Dealt to bllodshot [Qc] Dealt to kwuiyhw [5d] Dealt to chasrigg [9h] Dealt to goulartarm [3s] -Dealt to ExecDec [4s Jc] [Th] +Dealt to Hero [4s Jc] [Th] Dealt to arjun1111 [Qd] Dealt to thebear666 [8c] Dealt to FILL A RACK [5h] goulartarm is low with [3s] goulartarm brings in for $1 -ExecDec folds +Hero folds arjun1111 folds thebear666 folds FILL A RACK folds @@ -43,7 +43,7 @@ Seat 1: bllodshot collected ($6), mucked Seat 2: kwuiyhw folded on 3rd St. Seat 3: chasrigg folded on 3rd St. Seat 4: goulartarm folded on 3rd St. -Seat 5: ExecDec folded on 3rd St. +Seat 5: Hero folded on 3rd St. Seat 6: arjun1111 folded on 3rd St. Seat 7: thebear666 folded on 3rd St. Seat 8: FILL A RACK folded on 3rd St. diff --git a/pyfpdb/regression-test-files/cash/FTP/Stud/7-StudHL-USD-2-4-201006.Steal.examples.txt b/pyfpdb/regression-test-files/cash/FTP/Stud/7-StudHL-USD-2-4-201006.Steal.examples.txt index 294ba9e3..489c682f 100644 --- a/pyfpdb/regression-test-files/cash/FTP/Stud/7-StudHL-USD-2-4-201006.Steal.examples.txt +++ b/pyfpdb/regression-test-files/cash/FTP/Stud/7-StudHL-USD-2-4-201006.Steal.examples.txt @@ -1,28 +1,28 @@ Full Tilt Poker Game #11111111813: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:14:27 ET - 2010/06/10 Seat 1: Player4 ($7.40) -Seat 2: Player13 ($77.20) -Seat 3: Player1 ($111.80) +Seat 2: Hero3 ($77.20) +Seat 3: Hero ($111.80) Seat 5: Player5 ($118.70) Seat 7: Player6 ($36.30) -Player1 antes $0.40 +Hero antes $0.40 Player4 antes $0.40 -Player13 antes $0.40 +Hero3 antes $0.40 Player5 antes $0.40 Player6 antes $0.40 *** 3RD STREET *** Dealt to Player4 [9c] -Dealt to Player13 [8s] -Dealt to Player1 [Ac 9h] [3s] +Dealt to Hero3 [8s] +Dealt to Hero [Ac 9h] [3s] Dealt to Player5 [3c] Dealt to Player6 [Qs] Player5 is low with [3c] Player5 brings in for $0.50 Player6 folds Player4 completes it to $2 -Player14 sits down -Player13 folds -Player1 folds -Player14 adds $152 +Hero4 sits down +Hero3 folds +Hero folds +Hero4 adds $152 Player5 calls $1.50 *** 4TH STREET *** Dealt to Player4 [9c] [9d] @@ -35,8 +35,8 @@ Player4 wins the pot ($6) *** SUMMARY *** Total pot $6 | Rake $0 Seat 1: Player4 collected ($6), mucked -Seat 2: Player13 folded on 3rd St. -Seat 3: Player1 folded on 3rd St. +Seat 2: Hero3 folded on 3rd St. +Seat 3: Hero folded on 3rd St. Seat 5: Player5 folded on 4th St. Seat 7: Player6 folded on 3rd St. @@ -44,562 +44,562 @@ Seat 7: Player6 folded on 3rd St. Full Tilt Poker Game #11111111538: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:15:56 ET - 2010/06/10 Seat 1: Player4 ($12.60) -Seat 2: Player13 ($89.90) -Seat 3: Player1 ($110.60) +Seat 2: Hero3 ($89.90) +Seat 3: Hero ($110.60) Seat 5: Player5 ($115.50) -Seat 6: Player14 ($138.70) +Seat 6: Hero4 ($138.70) Seat 7: Player6 ($35.10) -Player1 antes $0.40 +Hero antes $0.40 Player4 antes $0.40 -Player13 antes $0.40 +Hero3 antes $0.40 Player5 antes $0.40 -Player14 antes $0.40 +Hero4 antes $0.40 Player6 antes $0.40 *** 3RD STREET *** Dealt to Player4 [Qc] -Dealt to Player13 [5s] -Dealt to Player1 [6c 5d] [3d] +Dealt to Hero3 [5s] +Dealt to Hero [6c 5d] [3d] Dealt to Player5 [9d] -Dealt to Player14 [8h] +Dealt to Hero4 [8h] Dealt to Player6 [Ts] -Player1 is low with [3d] -Player1 brings in for $0.50 +Hero is low with [3d] +Hero brings in for $0.50 Player5 folds -Player14 folds +Hero4 folds Player6 completes it to $2 Player4 folds -Player13 folds -Player1 calls $1.50 +Hero3 folds +Hero calls $1.50 *** 4TH STREET *** -Dealt to Player1 [6c 5d 3d] [7c] +Dealt to Hero [6c 5d 3d] [7c] Dealt to Player6 [Ts] [6d] Player6 bets $2 -Player1 calls $2 +Hero calls $2 *** 5TH STREET *** -Dealt to Player1 [6c 5d 3d 7c] [Qd] +Dealt to Hero [6c 5d 3d 7c] [Qd] Dealt to Player6 [Ts 6d] [9s] -Player1 checks +Hero checks Player6 bets $4 -Player1 folds +Hero folds Uncalled bet of $4 returned to Player6 Player6 mucks Player6 wins the pot ($10.40) *** SUMMARY *** Total pot $10.40 | Rake $0 Seat 1: Player4 folded on 3rd St. -Seat 2: Player13 folded on 3rd St. -Seat 3: Player1 folded on 5th St. +Seat 2: Hero3 folded on 3rd St. +Seat 3: Hero folded on 5th St. Seat 5: Player5 folded on 3rd St. -Seat 6: Player14 folded on 3rd St. +Seat 6: Hero4 folded on 3rd St. Seat 7: Player6 collected ($10.40), mucked Full Tilt Poker Game #11111111649: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:17:24 ET - 2010/06/10 Seat 1: Player4 ($16.30) -Seat 2: Player13 ($88.70) -Seat 3: Player1 ($107.30) +Seat 2: Hero3 ($88.70) +Seat 3: Hero ($107.30) Seat 5: Player5 ($114.30) -Seat 6: Player14 ($135.50) +Seat 6: Hero4 ($135.50) Seat 7: Player6 ($40.30) -Player1 antes $0.40 +Hero antes $0.40 Player4 antes $0.40 -Player13 antes $0.40 +Hero3 antes $0.40 Player5 antes $0.40 -Player14 antes $0.40 +Hero4 antes $0.40 Player6 antes $0.40 *** 3RD STREET *** Dealt to Player4 [9s] -Dealt to Player13 [9h] -Dealt to Player1 [8h Kd] [6s] +Dealt to Hero3 [9h] +Dealt to Hero [8h Kd] [6s] Dealt to Player5 [4c] -Dealt to Player14 [8d] +Dealt to Hero4 [8d] Dealt to Player6 [6c] Player5 is low with [4c] -Player10 sits down -Player10 adds $40 +Hero0 sits down +Hero0 adds $40 Player5 brings in for $0.50 -Player14 folds +Hero4 folds Player6 folds Player4 folds -Player13 completes it to $2 -Player1 folds +Hero3 completes it to $2 +Hero folds Player5 folds -Uncalled bet of $1.50 returned to Player13 -Player13 mucks -Player13 wins the pot ($3.40) +Uncalled bet of $1.50 returned to Hero3 +Hero3 mucks +Hero3 wins the pot ($3.40) *** SUMMARY *** Total pot $3.40 | Rake $0 Seat 1: Player4 folded on 3rd St. -Seat 2: Player13 collected ($3.40), mucked -Seat 3: Player1 folded on 3rd St. +Seat 2: Hero3 collected ($3.40), mucked +Seat 3: Hero folded on 3rd St. Seat 5: Player5 folded on 3rd St. -Seat 6: Player14 folded on 3rd St. +Seat 6: Hero4 folded on 3rd St. Seat 7: Player6 folded on 3rd St. Full Tilt Poker Game #11111112277: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:17:41 ET - 2010/06/10 Seat 1: Player4 ($15.90) -Seat 2: Player13 ($91.20) -Seat 3: Player1 ($106.90) +Seat 2: Hero3 ($91.20) +Seat 3: Hero ($106.90) Seat 5: Player5 ($113.40) -Seat 6: Player14 ($135.10) +Seat 6: Hero4 ($135.10) Seat 7: Player6 ($39.90) -Seat 8: Player10 ($40) -Player1 antes $0.40 +Seat 8: Hero0 ($40) +Hero antes $0.40 Player4 antes $0.40 -Player13 antes $0.40 +Hero3 antes $0.40 Player5 antes $0.40 -Player14 antes $0.40 +Hero4 antes $0.40 Player6 antes $0.40 -Player10 antes $0.40 +Hero0 antes $0.40 *** 3RD STREET *** Dealt to Player4 [Qs] -Dealt to Player13 [8s] -Dealt to Player1 [3h 9c] [Ah] +Dealt to Hero3 [8s] +Dealt to Hero [3h 9c] [Ah] Dealt to Player5 [Qc] -Dealt to Player14 [Kc] +Dealt to Hero4 [Kc] Dealt to Player6 [Jh] -Dealt to Player10 [6d] -Player10 is low with [6d] -Player10 brings in for $0.50 +Dealt to Hero0 [6d] +Hero0 is low with [6d] +Hero0 brings in for $0.50 Player4 folds -Player13 folds -Player1 folds +Hero3 folds +Hero folds Player5 completes it to $2 -Player14 raises to $4 +Hero4 raises to $4 Player6 folds -Player10 calls $3.50 +Hero0 calls $3.50 Player5 calls $2 *** 4TH STREET *** Dealt to Player5 [Qc] [3c] -Dealt to Player14 [Kc] [Kh] -Dealt to Player10 [6d] [Td] -Player14 has 15 seconds left to act -Player14 bets $4 -Player10 folds +Dealt to Hero4 [Kc] [Kh] +Dealt to Hero0 [6d] [Td] +Hero4 has 15 seconds left to act +Hero4 bets $4 +Hero0 folds Player5 folds -Uncalled bet of $4 returned to Player14 -Player14 mucks -Player14 wins the pot ($14.80) +Uncalled bet of $4 returned to Hero4 +Hero4 mucks +Hero4 wins the pot ($14.80) *** SUMMARY *** Total pot $14.80 | Rake $0 Seat 1: Player4 folded on 3rd St. -Seat 2: Player13 folded on 3rd St. -Seat 3: Player1 folded on 3rd St. +Seat 2: Hero3 folded on 3rd St. +Seat 3: Hero folded on 3rd St. Seat 5: Player5 folded on 4th St. -Seat 6: Player14 collected ($14.80), mucked +Seat 6: Hero4 collected ($14.80), mucked Seat 7: Player6 folded on 3rd St. -Seat 8: Player10 folded on 4th St. +Seat 8: Hero0 folded on 4th St. Full Tilt Poker Game #11111110428: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:18:23 ET - 2010/06/10 Seat 1: Player4 ($15.50) -Seat 2: Player13 ($90.80) -Seat 3: Player1 ($106.50) +Seat 2: Hero3 ($90.80) +Seat 3: Hero ($106.50) Seat 5: Player5 ($109) -Seat 6: Player14 ($145.50) +Seat 6: Hero4 ($145.50) Seat 7: Player6 ($39.50) -Seat 8: Player10 ($35.60) -Player10 antes $0.40 -Player13 antes $0.40 -Player1 antes $0.40 +Seat 8: Hero0 ($35.60) +Hero0 antes $0.40 +Hero3 antes $0.40 +Hero antes $0.40 Player4 antes $0.40 Player5 antes $0.40 -Player14 antes $0.40 +Hero4 antes $0.40 Player6 antes $0.40 *** 3RD STREET *** Dealt to Player4 [Th] -Dealt to Player13 [Kc] -Dealt to Player1 [Kh 9c] [5h] +Dealt to Hero3 [Kc] +Dealt to Hero [Kh 9c] [5h] Dealt to Player5 [6h] -Dealt to Player14 [Js] +Dealt to Hero4 [Js] Dealt to Player6 [Ac] -Dealt to Player10 [Ah] -Player1 is low with [5h] -Player1 brings in for $0.50 +Dealt to Hero0 [Ah] +Hero is low with [5h] +Hero brings in for $0.50 Player5 folds -Player14 folds +Hero4 folds Player6 folds -Player10 completes it to $2 +Hero0 completes it to $2 Player4 calls $2 -Player13 folds -Player1 folds +Hero3 folds +Hero folds *** 4TH STREET *** Dealt to Player4 [Th] [4h] -Dealt to Player10 [Ah] [3c] -Player10 bets $2 +Dealt to Hero0 [Ah] [3c] +Hero0 bets $2 Player4 calls $2 *** 5TH STREET *** Dealt to Player4 [Th 4h] [9h] -Dealt to Player10 [Ah 3c] [8h] -Player10 has 15 seconds left to act -Player10 bets $4 +Dealt to Hero0 [Ah 3c] [8h] +Hero0 has 15 seconds left to act +Hero0 bets $4 Player4 raises to $8 -Player10 folds +Hero0 folds Uncalled bet of $4 returned to Player4 Player4 mucks Player4 wins the pot ($19.30) *** SUMMARY *** Total pot $19.30 | Rake $0 Seat 1: Player4 collected ($19.30), mucked -Seat 2: Player13 folded on 3rd St. -Seat 3: Player1 folded on 3rd St. +Seat 2: Hero3 folded on 3rd St. +Seat 3: Hero folded on 3rd St. Seat 5: Player5 folded on 3rd St. -Seat 6: Player14 folded on 3rd St. +Seat 6: Hero4 folded on 3rd St. Seat 7: Player6 folded on 3rd St. -Seat 8: Player10 folded on 5th St. +Seat 8: Hero0 folded on 5th St. Full Tilt Poker Game #11111112961: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:19:27 ET - 2010/06/10 Seat 1: Player4 ($26) -Seat 2: Player13 ($90) -Seat 3: Player1 ($105.20) +Seat 2: Hero3 ($90) +Seat 3: Hero ($105.20) Seat 5: Player5 ($108.20) -Seat 6: Player14 ($144.70) +Seat 6: Hero4 ($144.70) Seat 7: Player6 ($41.50) -Seat 8: Player10 ($26.80) +Seat 8: Hero0 ($26.80) Player4 antes $0.40 -Player13 antes $0.40 -Player1 antes $0.40 +Hero3 antes $0.40 +Hero antes $0.40 Player5 antes $0.40 -Player10 antes $0.40 -Player14 antes $0.40 +Hero0 antes $0.40 +Hero4 antes $0.40 Player6 antes $0.40 *** 3RD STREET *** Dealt to Player4 [9d] -Dealt to Player13 [Qs] -Dealt to Player1 [9h 9s] [5c] +Dealt to Hero3 [Qs] +Dealt to Hero [9h 9s] [5c] Dealt to Player5 [Th] -Dealt to Player14 [6c] +Dealt to Hero4 [6c] Dealt to Player6 [2d] -Dealt to Player10 [Qh] +Dealt to Hero0 [Qh] Player6 is low with [2d] Player6 brings in for $0.50 -Player10 folds +Hero0 folds Player4 folds -Player13 folds -Player1 completes it to $2 +Hero3 folds +Hero completes it to $2 Player5 folds -Player14 folds +Hero4 folds Player6 calls $1.50 *** 4TH STREET *** -Dealt to Player1 [9h 9s 5c] [3s] +Dealt to Hero [9h 9s 5c] [3s] Dealt to Player6 [2d] [Ah] Player6 checks -Player1 bets $2 +Hero bets $2 Player6 calls $2 *** 5TH STREET *** -Dealt to Player1 [9h 9s 5c 3s] [Kh] +Dealt to Hero [9h 9s 5c 3s] [Kh] Dealt to Player6 [2d Ah] [Kc] Player6 checks -Player1 bets $4 +Hero bets $4 Player6 raises to $8 -Player1 calls $4 +Hero calls $4 *** 6TH STREET *** -Dealt to Player1 [9h 9s 5c 3s Kh] [5d] +Dealt to Hero [9h 9s 5c 3s Kh] [5d] Dealt to Player6 [2d Ah Kc] [4d] -Player1 bets $4 +Hero bets $4 Player6 calls $4 *** 7TH STREET *** -Dealt to Player1 [9h 9s 5c 3s Kh 5d] [8s] -Player1 bets $4 +Dealt to Hero [9h 9s 5c 3s Kh 5d] [8s] +Hero bets $4 Player6 calls $4 *** SHOW DOWN *** -Player1 shows [9s 9h 5c 3s Kh 5d 8s] two pair, Nines and Fives +Hero shows [9s 9h 5c 3s Kh 5d 8s] two pair, Nines and Fives Player6 shows [Ad Kd 2d Ah Kc 4d 8h] two pair, Aces and Kings Player6 wins the pot ($40.80) with two pair, Aces and Kings *** SUMMARY *** Total pot $42.80 | Rake $2 Seat 1: Player4 folded on 3rd St. -Seat 2: Player13 folded on 3rd St. -Seat 3: Player1 showed [9s 9h 5c 3s Kh 5d 8s] and lost with two pair, Nines and Fives +Seat 2: Hero3 folded on 3rd St. +Seat 3: Hero showed [9s 9h 5c 3s Kh 5d 8s] and lost with two pair, Nines and Fives Seat 5: Player5 folded on 3rd St. -Seat 6: Player14 folded on 3rd St. +Seat 6: Hero4 folded on 3rd St. Seat 7: Player6 showed [Ad Kd 2d Ah Kc 4d 8h] and won ($40.80) with two pair, Aces and Kings -Seat 8: Player10 folded on 3rd St. +Seat 8: Hero0 folded on 3rd St. Full Tilt Poker Game #11111110018: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:26:21 ET - 2010/06/10 -Seat 1: Player12 ($66.10) -Seat 2: Player13 ($85.50) -Seat 3: Player1 ($81.10) -Seat 4: Player11 ($283.75) +Seat 1: Hero2 ($66.10) +Seat 2: Hero3 ($85.50) +Seat 3: Hero ($81.10) +Seat 4: Hero1 ($283.75) Seat 5: Player5 ($109.40) -Seat 6: Player14 ($140.20) +Seat 6: Hero4 ($140.20) Seat 7: Player6 ($59.80) -Seat 8: Player10 ($62.10) -Player10 antes $0.40 -Player13 antes $0.40 -Player1 antes $0.40 +Seat 8: Hero0 ($62.10) +Hero0 antes $0.40 +Hero3 antes $0.40 +Hero antes $0.40 Player5 antes $0.40 -Player14 antes $0.40 -Player12 antes $0.40 -Player11 antes $0.40 +Hero4 antes $0.40 +Hero2 antes $0.40 +Hero1 antes $0.40 Player6 antes $0.40 *** 3RD STREET *** -Dealt to Player12 [Qh] -Dealt to Player13 [Kd] -Dealt to Player1 [2d Kc] [5h] -Dealt to Player11 [9d] +Dealt to Hero2 [Qh] +Dealt to Hero3 [Kd] +Dealt to Hero [2d Kc] [5h] +Dealt to Hero1 [9d] Dealt to Player5 [6d] -Dealt to Player14 [Ad] +Dealt to Hero4 [Ad] Dealt to Player6 [6h] -Dealt to Player10 [7h] -Player1 is low with [5h] -Player1 brings in for $0.50 -Player11 folds +Dealt to Hero0 [7h] +Hero is low with [5h] +Hero brings in for $0.50 +Hero1 folds Player5 folds -Player14 folds +Hero4 folds Player6 folds -Player10 folds -Player12 folds -Player13 completes it to $2 -Player1 folds -Uncalled bet of $1.50 returned to Player13 -Player13 mucks -Player13 wins the pot ($4.20) +Hero0 folds +Hero2 folds +Hero3 completes it to $2 +Hero folds +Uncalled bet of $1.50 returned to Hero3 +Hero3 mucks +Hero3 wins the pot ($4.20) *** SUMMARY *** Total pot $4.20 | Rake $0 -Seat 1: Player12 folded on 3rd St. -Seat 2: Player13 collected ($4.20), mucked -Seat 3: Player1 folded on 3rd St. -Seat 4: Player11 folded on 3rd St. +Seat 1: Hero2 folded on 3rd St. +Seat 2: Hero3 collected ($4.20), mucked +Seat 3: Hero folded on 3rd St. +Seat 4: Hero1 folded on 3rd St. Seat 5: Player5 folded on 3rd St. -Seat 6: Player14 folded on 3rd St. +Seat 6: Hero4 folded on 3rd St. Seat 7: Player6 folded on 3rd St. -Seat 8: Player10 folded on 3rd St. +Seat 8: Hero0 folded on 3rd St. Full Tilt Poker Game #11111111146: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:26:47 ET - 2010/06/10 -Seat 1: Player12 ($65.70) -Seat 2: Player13 ($88.80) -Seat 3: Player1 ($80.20) -Seat 4: Player11 ($283.35) +Seat 1: Hero2 ($65.70) +Seat 2: Hero3 ($88.80) +Seat 3: Hero ($80.20) +Seat 4: Hero1 ($283.35) Seat 5: Player5 ($109) -Seat 6: Player14 ($139.80) +Seat 6: Hero4 ($139.80) Seat 7: Player6 ($59.40) -Seat 8: Player10 ($61.70) -Player10 antes $0.40 -Player1 antes $0.40 -Player13 antes $0.40 +Seat 8: Hero0 ($61.70) +Hero0 antes $0.40 +Hero antes $0.40 +Hero3 antes $0.40 Player5 antes $0.40 -Player11 antes $0.40 -Player12 antes $0.40 -Player14 antes $0.40 +Hero1 antes $0.40 +Hero2 antes $0.40 +Hero4 antes $0.40 Player6 antes $0.40 *** 3RD STREET *** -Dealt to Player12 [Qd] -Dealt to Player13 [5c] -Dealt to Player1 [4d 3s] [9s] -Dealt to Player11 [Ks] +Dealt to Hero2 [Qd] +Dealt to Hero3 [5c] +Dealt to Hero [4d 3s] [9s] +Dealt to Hero1 [Ks] Dealt to Player5 [2c] -Dealt to Player14 [3d] +Dealt to Hero4 [3d] Dealt to Player6 [2h] -Dealt to Player10 [2d] +Dealt to Hero0 [2d] Player5 is low with [2c] Player5 brings in for $0.50 -Player14 folds +Hero4 folds Player6 folds -Player10 folds -Player12 folds -Player13 folds -Player1 folds -Player11 completes it to $2 +Hero0 folds +Hero2 folds +Hero3 folds +Hero folds +Hero1 completes it to $2 Player5 calls $1.50 *** 4TH STREET *** -Dealt to Player11 [Ks] [Ah] +Dealt to Hero1 [Ks] [Ah] Dealt to Player5 [2c] [5s] -Player11 bets $2 +Hero1 bets $2 Player5 folds -Uncalled bet of $2 returned to Player11 -Player11 mucks -Player11 wins the pot ($7.20) +Uncalled bet of $2 returned to Hero1 +Hero1 mucks +Hero1 wins the pot ($7.20) *** SUMMARY *** Total pot $7.20 | Rake $0 -Seat 1: Player12 folded on 3rd St. -Seat 2: Player13 folded on 3rd St. -Seat 3: Player1 folded on 3rd St. -Seat 4: Player11 collected ($7.20), mucked +Seat 1: Hero2 folded on 3rd St. +Seat 2: Hero3 folded on 3rd St. +Seat 3: Hero folded on 3rd St. +Seat 4: Hero1 collected ($7.20), mucked Seat 5: Player5 folded on 4th St. -Seat 6: Player14 folded on 3rd St. +Seat 6: Hero4 folded on 3rd St. Seat 7: Player6 folded on 3rd St. -Seat 8: Player10 folded on 3rd St. +Seat 8: Hero0 folded on 3rd St. Full Tilt Poker Game #11111111633: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:37:55 ET - 2010/06/10 -Seat 1: Player12 ($72) +Seat 1: Hero2 ($72) Seat 2: Player9 ($40), is sitting out -Seat 3: Player1 ($89.20) +Seat 3: Hero ($89.20) Seat 4: Player2 ($96.10) Seat 5: Player5 ($105.50), is sitting out -Seat 6: Player14 ($131.70) +Seat 6: Hero4 ($131.70) Seat 7: Player6 ($54.70) -Seat 8: Player10 ($96.40) -Player10 antes $0.40 -Player1 antes $0.40 -Player12 antes $0.40 -Player14 antes $0.40 +Seat 8: Hero0 ($96.40) +Hero0 antes $0.40 +Hero antes $0.40 +Hero2 antes $0.40 +Hero4 antes $0.40 Player6 antes $0.40 5 seconds left to act Player2 is sitting out *** 3RD STREET *** -Dealt to Player12 [5c] -Dealt to Player1 [Td 9d] [Kc] -Dealt to Player14 [5h] +Dealt to Hero2 [5c] +Dealt to Hero [Td 9d] [Kc] +Dealt to Hero4 [5h] Dealt to Player6 [4s] -Dealt to Player10 [7s] +Dealt to Hero0 [7s] Player6 is low with [4s] Player2 stands up Player6 brings in for $0.50 -Player10 folds -Player12 folds -Player1 completes it to $2 -Player14 calls $2 +Hero0 folds +Hero2 folds +Hero completes it to $2 +Hero4 calls $2 Player6 folds *** 4TH STREET *** -Dealt to Player1 [Td 9d Kc] [9s] -Dealt to Player14 [5h] [9h] -Player1 bets $2 -Player14 raises to $4 -Player1 calls $2 +Dealt to Hero [Td 9d Kc] [9s] +Dealt to Hero4 [5h] [9h] +Hero bets $2 +Hero4 raises to $4 +Hero calls $2 *** 5TH STREET *** -Dealt to Player1 [Td 9d Kc 9s] [Tc] -Dealt to Player14 [5h 9h] [3d] -Player1 checks -Player14 checks +Dealt to Hero [Td 9d Kc 9s] [Tc] +Dealt to Hero4 [5h 9h] [3d] +Hero checks +Hero4 checks *** 6TH STREET *** -Dealt to Player1 [Td 9d Kc 9s Tc] [9c] -Dealt to Player14 [5h 9h 3d] [Th] -Player1 bets $4 -Player14 calls $4 +Dealt to Hero [Td 9d Kc 9s Tc] [9c] +Dealt to Hero4 [5h 9h 3d] [Th] +Hero bets $4 +Hero4 calls $4 *** 7TH STREET *** -Dealt to Player1 [Td 9d Kc 9s Tc 9c] [7h] -Player1 bets $4 -Player14 calls $4 +Dealt to Hero [Td 9d Kc 9s Tc 9c] [7h] +Hero bets $4 +Hero4 calls $4 *** SHOW DOWN *** -Player1 shows [Td 9d Kc 9s Tc 9c 7h] a full house, Nines full of Tens -Player14 mucks -Player1 wins the pot ($29.50) with a full house, Nines full of Tens +Hero shows [Td 9d Kc 9s Tc 9c 7h] a full house, Nines full of Tens +Hero4 mucks +Hero wins the pot ($29.50) with a full house, Nines full of Tens *** SUMMARY *** Total pot $30.50 | Rake $1 -Seat 1: Player12 folded on 3rd St. +Seat 1: Hero2 folded on 3rd St. Seat 2: Player9 is sitting out -Seat 3: Player1 showed [Td 9d Kc 9s Tc 9c 7h] and won ($29.50) with a full house, Nines full of Tens +Seat 3: Hero showed [Td 9d Kc 9s Tc 9c 7h] and won ($29.50) with a full house, Nines full of Tens Seat 4: Player2 is sitting out Seat 5: Player5 is sitting out -Seat 6: Player14 mucked [8h 6h 5h 9h 3d Th 3h] - a flush, Ten high +Seat 6: Hero4 mucked [8h 6h 5h 9h 3d Th 3h] - a flush, Ten high Seat 7: Player6 folded on 3rd St. -Seat 8: Player10 folded on 3rd St. +Seat 8: Hero0 folded on 3rd St. Full Tilt Poker Game #11111113928: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:39:41 ET - 2010/06/10 -Seat 1: Player12 ($68.70) +Seat 1: Hero2 ($68.70) Seat 2: Player9 ($40), is sitting out -Seat 3: Player1 ($103.90) -Seat 6: Player14 ($116.40) +Seat 3: Hero ($103.90) +Seat 6: Hero4 ($116.40) Seat 7: Player6 ($58.40) -Seat 8: Player10 ($95.60) -Player10 antes $0.40 -Player1 antes $0.40 +Seat 8: Hero0 ($95.60) +Hero0 antes $0.40 +Hero antes $0.40 Player6 antes $0.40 Player3 sits down -Player14 antes $0.40 -Player12 antes $0.40 +Hero4 antes $0.40 +Hero2 antes $0.40 *** 3RD STREET *** -Dealt to Player12 [9c] -Dealt to Player1 [Ts 4h] [9h] -Dealt to Player14 [7c] +Dealt to Hero2 [9c] +Dealt to Hero [Ts 4h] [9h] +Dealt to Hero4 [7c] Dealt to Player6 [7s] -Dealt to Player10 [2h] -Player10 is low with [2h] +Dealt to Hero0 [2h] +Hero0 is low with [2h] Player3 adds $40 -Player10 brings in for $0.50 -Player12 folds -Player1 completes it to $2 -Player14 folds +Hero0 brings in for $0.50 +Hero2 folds +Hero completes it to $2 +Hero4 folds Player6 folds -Player10 folds -Uncalled bet of $1.50 returned to Player1 -Player1 mucks -Player1 wins the pot ($3) +Hero0 folds +Uncalled bet of $1.50 returned to Hero +Hero mucks +Hero wins the pot ($3) *** SUMMARY *** Total pot $3 | Rake $0 -Seat 1: Player12 folded on 3rd St. +Seat 1: Hero2 folded on 3rd St. Seat 2: Player9 is sitting out -Seat 3: Player1 collected ($3), mucked -Seat 6: Player14 folded on 3rd St. +Seat 3: Hero collected ($3), mucked +Seat 6: Hero4 folded on 3rd St. Seat 7: Player6 folded on 3rd St. -Seat 8: Player10 folded on 3rd St. +Seat 8: Hero0 folded on 3rd St. Full Tilt Poker Game #11111111062: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:51:45 ET - 2010/06/10 -Seat 1: Player12 ($83.40) +Seat 1: Hero2 ($83.40) Seat 2: Player9 ($24.35) -Seat 3: Player1 ($147.90) +Seat 3: Hero ($147.90) Seat 4: Player3 ($74.10) Seat 5: Player8 ($63.10) -Seat 6: Player14 ($103) +Seat 6: Hero4 ($103) Seat 7: Player6 ($63.20) Seat 8: Player7 ($48.40) Player7 antes $0.40 -Player1 antes $0.40 +Hero antes $0.40 Player8 antes $0.40 Player3 antes $0.40 Player9 antes $0.40 -Player12 antes $0.40 -Player14 antes $0.40 +Hero2 antes $0.40 +Hero4 antes $0.40 Player6 antes $0.40 *** 3RD STREET *** -Dealt to Player12 [As] +Dealt to Hero2 [As] Dealt to Player9 [7s] -Dealt to Player1 [7h 6s] [8d] +Dealt to Hero [7h 6s] [8d] Dealt to Player3 [2d] Dealt to Player8 [3c] -Dealt to Player14 [7c] +Dealt to Hero4 [7c] Dealt to Player6 [8h] Dealt to Player7 [Qs] Player3 is low with [2d] Player3 brings in for $0.50 Player8 folds -Player14 folds +Hero4 folds Player6 folds Player7 folds -Player12 completes it to $2 +Hero2 completes it to $2 Player9 folds -Player1 calls $2 +Hero calls $2 Player3 calls $1.50 *** 4TH STREET *** -Dealt to Player12 [As] [5d] -Dealt to Player1 [7h 6s 8d] [Qc] +Dealt to Hero2 [As] [5d] +Dealt to Hero [7h 6s 8d] [Qc] Dealt to Player3 [2d] [3h] -Player12 bets $2 -Player1 folds +Hero2 bets $2 +Hero folds Player3 calls $2 *** 5TH STREET *** -Dealt to Player12 [As 5d] [4c] +Dealt to Hero2 [As 5d] [4c] Dealt to Player3 [2d 3h] [5s] -Player12 bets $4 +Hero2 bets $4 Player3 folds -Uncalled bet of $4 returned to Player12 -Player12 mucks -Player12 wins the pot ($13.20) +Uncalled bet of $4 returned to Hero2 +Hero2 mucks +Hero2 wins the pot ($13.20) *** SUMMARY *** Total pot $13.20 | Rake $0 -Seat 1: Player12 collected ($13.20), mucked +Seat 1: Hero2 collected ($13.20), mucked Seat 2: Player9 folded on 3rd St. -Seat 3: Player1 folded on 4th St. +Seat 3: Hero folded on 4th St. Seat 4: Player3 folded on 5th St. Seat 5: Player8 folded on 3rd St. -Seat 6: Player14 folded on 3rd St. +Seat 6: Hero4 folded on 3rd St. Seat 7: Player6 folded on 3rd St. Seat 8: Player7 folded on 3rd St. @@ -607,7 +607,7 @@ Seat 8: Player7 folded on 3rd St. Full Tilt Poker Game #11111115744: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 14:02:17 ET - 2010/06/10 Seat 2: Player0 ($60) -Seat 3: Player1 ($129.30) +Seat 3: Hero ($129.30) Seat 4: Player3 ($125.75) Seat 5: Player8 ($40.10) Seat 7: Player6 ($72) @@ -615,24 +615,24 @@ Seat 8: Player7 ($32.20) Player0 antes $0.40 Player8 antes $0.40 Player7 antes $0.40 -Player1 antes $0.40 +Hero antes $0.40 Player3 antes $0.40 Player6 antes $0.40 *** 3RD STREET *** Dealt to Player0 [Th] -Dealt to Player1 [9s Qc] [7d] +Dealt to Hero [9s Qc] [7d] Dealt to Player3 [Qh] Dealt to Player8 [Kd] Dealt to Player6 [Jd] Dealt to Player7 [Jh] -Player1 is low with [7d] -Player1 brings in for $0.50 +Hero is low with [7d] +Hero brings in for $0.50 Player3 folds Player8 folds Player6 folds Player7 completes it to $2 Player0 calls $2 -Player1 folds +Hero folds *** 4TH STREET *** Dealt to Player0 [Th] [As] Dealt to Player7 [Jh] [8c] @@ -654,7 +654,7 @@ Player0 wins the pot ($10.90) *** SUMMARY *** Total pot $10.90 | Rake $0 Seat 2: Player0 collected ($10.90), mucked -Seat 3: Player1 folded on 3rd St. +Seat 3: Hero folded on 3rd St. Seat 4: Player3 folded on 3rd St. Seat 5: Player8 folded on 3rd St. Seat 7: Player6 folded on 3rd St. diff --git a/pyfpdb/regression-test-files/cash/OnGame/Draw/5-Carddraw-USD-0.05-0.10-201009.Sample.txt b/pyfpdb/regression-test-files/cash/OnGame/Draw/5-Carddraw-USD-0.05-0.10-201009.Sample.txt index 75abdbaa..7bf2e4d9 100644 --- a/pyfpdb/regression-test-files/cash/OnGame/Draw/5-Carddraw-USD-0.05-0.10-201009.Sample.txt +++ b/pyfpdb/regression-test-files/cash/OnGame/Draw/5-Carddraw-USD-0.05-0.10-201009.Sample.txt @@ -1,79 +1,79 @@ ***** History for hand R5-81962116-232 ***** Start hand: Mon Sep 13 00:21:02 GMT+0100 2010 Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money) -User: tchazx +User: Hero Button: seat 3 Players in round: 4 Seat 8: DamonV2 ($0.07) -Seat 10: tchazx ($1) +Seat 10: Hero ($1) Seat 1: x Diabolo666 ($11.23) Seat 3: velabianca ($0.51) DamonV2 posts small blind ($0.02) -tchazx posts big blind ($0.05) +Hero posts big blind ($0.05) --- Dealing pocket cards -Dealing to tchazx: [Tc, 9h, 7c, Ah, Jh] +Dealing to Hero: [Tc, 9h, 7c, Ah, Jh] x Diabolo666 raises $0.10 to $0.10 velabianca folds DamonV2 folds -tchazx calls $0.05 +Hero calls $0.05 --- -tchazx changed 2 cards -New hand for tchazx: [8h, 9h, 6s, Ah, Jh] +Hero changed 2 cards +New hand for Hero: [8h, 9h, 6s, Ah, Jh] x Diabolo666 changed 3 cards -tchazx checks +Hero checks x Diabolo666 checks --- Summary: Main pot: $0.22 won by x Diabolo666 ($0.21) Rake taken: $0.01 Seat 8: DamonV2 ($0.05), net: -$0.02 -Seat 10: tchazx ($0.90), net: -$0.10, [8h, 9h, 6s, Ah, Jh] (HIGH_CARD ACE) +Seat 10: Hero ($0.90), net: -$0.10, [8h, 9h, 6s, Ah, Jh] (HIGH_CARD ACE) Seat 1: x Diabolo666 ($11.34), net: +$0.11, [2c, Ac, Td, As, Qc] (PAIR ACE) Seat 3: velabianca ($0.51) ***** End of hand R5-81962116-232 ***** ***** History for hand R5-81962116-233 ***** Start hand: Mon Sep 13 00:21:42 GMT+0100 2010 Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money) -User: tchazx +User: Hero Button: seat 8 Players in round: 5 -Seat 10: tchazx ($0.90) +Seat 10: Hero ($0.90) Seat 1: x Diabolo666 ($11.34) Seat 3: velabianca ($0.51) Seat 4: grommek ($9.40) Seat 8: DamonV2 ($0.05) -tchazx posts small blind ($0.02) +Hero posts small blind ($0.02) x Diabolo666 posts big blind ($0.05) grommek posts big blind ($0.05) grommek posts dead blind ($0.02) --- Dealing pocket cards -Dealing to tchazx: [Jd, 5s, 8h, 4h, 7d] +Dealing to Hero: [Jd, 5s, 8h, 4h, 7d] velabianca calls $0.05 grommek checks DamonV2 calls $0.05 [all in] -tchazx calls $0.03 +Hero calls $0.03 x Diabolo666 checks --- -tchazx changed 1 cards -New hand for tchazx: [Ah, 5s, 8h, 4h, 7d] +Hero changed 1 cards +New hand for Hero: [Ah, 5s, 8h, 4h, 7d] x Diabolo666 changed 4 cards velabianca changed 2 cards grommek changed 3 cards DamonV2 changed 2 cards -tchazx checks +Hero checks x Diabolo666 checks velabianca bets $0.10 grommek folds -tchazx folds +Hero folds x Diabolo666 folds --- --- Summary: Main pot: $0.27 won by velabianca ($0.26) Rake taken: $0.01 -Seat 10: tchazx ($0.85), net: -$0.05 +Seat 10: Hero ($0.85), net: -$0.05 Seat 1: x Diabolo666 ($11.29), net: -$0.05 Seat 3: velabianca ($0.72), net: +$0.21, [As, 9s, 6s, 6c, 9h] (TWO_PAIR NINE, SIX) Seat 4: grommek ($9.33), net: -$0.07 @@ -82,20 +82,20 @@ Seat 8: DamonV2 ($0), net: -$0.05, [Jh, 2c, Kh, Td, 6h] (HIGH_CARD KING) ***** History for hand R5-81962116-234 ***** Start hand: Mon Sep 13 00:22:36 GMT+0100 2010 Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money) -User: tchazx +User: Hero Button: seat 10 Players in round: 4 Seat 1: x Diabolo666 ($11.29) Seat 3: velabianca ($0.72) Seat 4: grommek ($9.33) -Seat 10: tchazx ($0.85) +Seat 10: Hero ($0.85) x Diabolo666 posts small blind ($0.02) velabianca posts big blind ($0.05) --- Dealing pocket cards -Dealing to tchazx: [Kh, 9d, As, 4s, 7c] +Dealing to Hero: [Kh, 9d, As, 4s, 7c] grommek calls $0.05 -tchazx folds +Hero folds x Diabolo666 folds velabianca checks velabianca changed 3 cards @@ -110,37 +110,37 @@ Rake taken: $0 Seat 1: x Diabolo666 ($11.27), net: -$0.02 Seat 3: velabianca ($0.67), net: -$0.05 Seat 4: grommek ($9.40), net: +$0.07 -Seat 10: tchazx ($0.85) +Seat 10: Hero ($0.85) ***** End of hand R5-81962116-234 ***** ***** History for hand R5-81962116-235 ***** Start hand: Mon Sep 13 00:23:04 GMT+0100 2010 Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money) -User: tchazx +User: Hero Button: seat 1 Players in round: 4 Seat 3: velabianca ($0.67) Seat 4: grommek ($9.40) -Seat 10: tchazx ($0.85) +Seat 10: Hero ($0.85) Seat 1: x Diabolo666 ($11.27) velabianca posts small blind ($0.02) grommek posts big blind ($0.05) --- Dealing pocket cards -Dealing to tchazx: [8d, Td, 2s, 3d, Qd] -tchazx calls $0.05 +Dealing to Hero: [8d, Td, 2s, 3d, Qd] +Hero calls $0.05 x Diabolo666 raises $0.10 to $0.10 velabianca calls $0.08 grommek calls $0.05 -tchazx calls $0.05 +Hero calls $0.05 --- velabianca changed 2 cards grommek changed 2 cards -tchazx changed 1 cards -New hand for tchazx: [8d, Td, 8h, 3d, Qd] +Hero changed 1 cards +New hand for Hero: [8d, Td, 8h, 3d, Qd] x Diabolo666 changed 3 cards velabianca checks grommek checks -tchazx checks +Hero checks x Diabolo666 checks --- Summary: @@ -148,6 +148,6 @@ Main pot: $0.40 won by velabianca ($0.38) Rake taken: $0.02 Seat 3: velabianca ($0.95), net: +$0.28 Seat 4: grommek ($9.30), net: -$0.10 -Seat 10: tchazx ($0.75), net: -$0.10 +Seat 10: Hero ($0.75), net: -$0.10 Seat 1: x Diabolo666 ($11.17), net: -$0.10, [6d, Qc, 4c, Th, Qs] (PAIR QUEEN) ***** End of hand R5-81962116-235 ***** diff --git a/pyfpdb/regression-test-files/cash/OnGame/Flop/LHE-9max-USD-0.50-1.00-201008.All-in.with.showdown.txt b/pyfpdb/regression-test-files/cash/OnGame/Flop/LHE-9max-USD-0.50-1.00-201008.All-in.with.showdown.txt index 79e3a185..9f4399a0 100644 --- a/pyfpdb/regression-test-files/cash/OnGame/Flop/LHE-9max-USD-0.50-1.00-201008.All-in.with.showdown.txt +++ b/pyfpdb/regression-test-files/cash/OnGame/Flop/LHE-9max-USD-0.50-1.00-201008.All-in.with.showdown.txt @@ -1,39 +1,39 @@ ***** History for hand R5-75443872-61 ***** Start hand: Wed Aug 18 19:32:32 GMT+0100 2010 Table: someplace [75443872] (LIMIT TEXAS_HOLDEM 0.50/1, Real money) -User: player3 +User: Hero Button: seat 5 Players in round: 5 Seat 7: player4 (34.70) Seat 9: player5 (1.05) -Seat 1: player3 (23.90) +Seat 1: Hero (23.90) Seat 3: player2 (33.95) Seat 5: player1 (14.20) player4 posts small blind (0.25) player5 posts big blind (0.50) --- Dealing pocket cards -Dealing to player3: [Kd, Ks] -player3 raises 1 to 1 +Dealing to Hero: [Kd, Ks] +Hero raises 1 to 1 player2 folds player1 calls 1 player4 folds player5 raises 0.55 to 1.05 [all in] -player3 calls 0.05 +Hero calls 0.05 player1 calls 0.05 --- Dealing flop [2d, Ad, Th] -player3 bets 0.50 +Hero bets 0.50 player1 folds --- Dealing flop [2d, Ad, Th] --- Dealing turn [8s] --- Dealing river [7d] --- Summary: -Main pot: 3.40 won by player3 (3.25) +Main pot: 3.40 won by Hero (3.25) Rake taken: $0.15 Seat 7: player4 (34.45), net: -0.25 Seat 9: player5 (0), net: -1.05, [Qd, Qh] (PAIR QUEEN) -Seat 1: player3 (26.10), net: +2.20, [Kd, Ks] (PAIR KING) +Seat 1: Hero (26.10), net: +2.20, [Kd, Ks] (PAIR KING) Seat 3: player2 (33.95) Seat 5: player1 (13.15), net: -1.05 ***** End of hand R5-75443872-61 ***** diff --git a/pyfpdb/regression-test-files/cash/OnGame/Flop/LHE-9max-USD-0.50-1.00-201008.All-in.with.showdown.txt.hp b/pyfpdb/regression-test-files/cash/OnGame/Flop/LHE-9max-USD-0.50-1.00-201008.All-in.with.showdown.txt.hp index e7be7273..0c129875 100644 --- a/pyfpdb/regression-test-files/cash/OnGame/Flop/LHE-9max-USD-0.50-1.00-201008.All-in.with.showdown.txt.hp +++ b/pyfpdb/regression-test-files/cash/OnGame/Flop/LHE-9max-USD-0.50-1.00-201008.All-in.with.showdown.txt.hp @@ -186,7 +186,7 @@ 'wonWhenSeenStreet2': 0.0, 'wonWhenSeenStreet3': 0.0, 'wonWhenSeenStreet4': 0.0}, - u'player3': { 'card1': 25, + u'Hero': { 'card1': 25, 'card2': 51, 'card3': 0, 'card4': 0, diff --git a/pyfpdb/regression-test-files/cash/OnGame/Flop/LO-9max-0.05-0.10-201009.Sample.txt b/pyfpdb/regression-test-files/cash/OnGame/Flop/LO-9max-0.05-0.10-201009.Sample.txt index 862b2335..f5096b03 100644 --- a/pyfpdb/regression-test-files/cash/OnGame/Flop/LO-9max-0.05-0.10-201009.Sample.txt +++ b/pyfpdb/regression-test-files/cash/OnGame/Flop/LO-9max-0.05-0.10-201009.Sample.txt @@ -1,66 +1,66 @@ ***** History for hand R5-81867677-656 ***** Start hand: Mon Sep 13 00:26:26 GMT+0100 2010 Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) -User: tchazx +User: Hero Button: seat 8 Players in round: 3 Seat 3: nickgerm ($3.74) -Seat 4: tchazx ($5) +Seat 4: Hero ($5) Seat 8: XYXY26XYXY ($1.79) nickgerm posts small blind ($0.02) -tchazx posts big blind ($0.05) +Hero posts big blind ($0.05) --- Dealing pocket cards -Dealing to tchazx: [Ks, 4s, 6s, Th] +Dealing to Hero: [Ks, 4s, 6s, Th] XYXY26XYXY calls $0.05 nickgerm calls $0.03 -tchazx checks +Hero checks --- Dealing flop [5h, 7d, 2s] nickgerm checks -tchazx checks +Hero checks XYXY26XYXY checks --- Dealing turn [Qs] nickgerm checks -tchazx checks +Hero checks XYXY26XYXY checks --- Dealing river [4d] nickgerm bets $0.10 -tchazx folds +Hero folds XYXY26XYXY folds --- Summary: Main pot: $0.15 won by nickgerm ($0.15) Rake taken: $0 Seat 3: nickgerm ($3.84), net: +$0.10 -Seat 4: tchazx ($4.95), net: -$0.05 +Seat 4: Hero ($4.95), net: -$0.05 Seat 8: XYXY26XYXY ($1.74), net: -$0.05 ***** End of hand R5-81867677-656 ***** ***** History for hand R5-81867677-657 ***** Start hand: Mon Sep 13 00:27:13 GMT+0100 2010 Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) -User: tchazx +User: Hero Button: seat 3 Players in round: 3 -Seat 4: tchazx ($4.95) +Seat 4: Hero ($4.95) Seat 8: XYXY26XYXY ($1.74) Seat 3: nickgerm ($3.84) -tchazx posts small blind ($0.02) +Hero posts small blind ($0.02) XYXY26XYXY posts big blind ($0.05) --- Dealing pocket cards -Dealing to tchazx: [Jd, Td, 8h, Tc] +Dealing to Hero: [Jd, Td, 8h, Tc] nickgerm calls $0.05 -tchazx calls $0.03 +Hero calls $0.03 XYXY26XYXY checks --- Dealing flop [4h, 7c, 2c] -tchazx checks +Hero checks XYXY26XYXY checks nickgerm checks --- Dealing turn [Kc] -tchazx checks +Hero checks XYXY26XYXY checks nickgerm bets $0.10 -tchazx folds +Hero folds XYXY26XYXY calls $0.10 --- Dealing river [3d] XYXY26XYXY checks @@ -70,30 +70,30 @@ XYXY26XYXY calls $0.10 Summary: Main pot: $0.55 won by nickgerm ($0.27), XYXY26XYXY ($0.26) Rake taken: $0.02 -Seat 4: tchazx ($4.90), net: -$0.05 +Seat 4: Hero ($4.90), net: -$0.05 Seat 8: XYXY26XYXY ($1.75), net: +$0.01, [7h, Qs, 9c, Kd] (TWO_PAIR KING, SEVEN) Seat 3: nickgerm ($3.86), net: +$0.02, [7d, 6s, Ks, Jc] (TWO_PAIR KING, SEVEN) ***** End of hand R5-81867677-657 ***** ***** History for hand R5-81867677-658 ***** Start hand: Mon Sep 13 00:28:06 GMT+0100 2010 Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) -User: tchazx +User: Hero Button: seat 4 Players in round: 5 Seat 8: XYXY26XYXY ($1.75) Seat 10: Mandala14 ($3) Seat 1: ANOKATO ($2.33) Seat 3: nickgerm ($3.86) -Seat 4: tchazx ($4.90) +Seat 4: Hero ($4.90) XYXY26XYXY posts small blind ($0.02) Mandala14 posts big blind ($0.05) ANOKATO posts big blind ($0.05) --- Dealing pocket cards -Dealing to tchazx: [Ad, Js, Jc, 9h] +Dealing to Hero: [Ad, Js, Jc, 9h] ANOKATO checks nickgerm raises $0.10 to $0.10 -tchazx calls $0.10 +Hero calls $0.10 XYXY26XYXY calls $0.08 Mandala14 calls $0.05 ANOKATO calls $0.05 @@ -102,24 +102,24 @@ XYXY26XYXY checks Mandala14 checks ANOKATO bets $0.05 nickgerm raises $0.10 to $0.10 -tchazx calls $0.10 +Hero calls $0.10 XYXY26XYXY folds Mandala14 calls $0.10 ANOKATO raises $0.10 to $0.15 nickgerm calls $0.05 -tchazx calls $0.05 +Hero calls $0.05 Mandala14 calls $0.05 --- Dealing turn [Kh] Mandala14 checks ANOKATO bets $0.10 nickgerm calls $0.10 -tchazx calls $0.10 +Hero calls $0.10 Mandala14 calls $0.10 --- Dealing river [Ks] Mandala14 bets $0.10 ANOKATO calls $0.10 nickgerm folds -tchazx calls $0.10 +Hero calls $0.10 --- Summary: Main pot: $1.80 won by Mandala14 ($1.71) @@ -128,26 +128,26 @@ Seat 8: XYXY26XYXY ($1.65), net: -$0.10 Seat 10: Mandala14 ($4.26), net: +$1.26, [As, Ah, 5s, Qs] (TWO_PAIR ACE, KING) Seat 1: ANOKATO ($1.88), net: -$0.45 Seat 3: nickgerm ($3.51), net: -$0.35 -Seat 4: tchazx ($4.45), net: -$0.45 +Seat 4: Hero ($4.45), net: -$0.45 ***** End of hand R5-81867677-658 ***** ***** History for hand R5-81867677-659 ***** Start hand: Mon Sep 13 00:29:21 GMT+0100 2010 Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) -User: tchazx +User: Hero Button: seat 8 Players in round: 5 Seat 10: Mandala14 ($4.26) Seat 1: ANOKATO ($1.88) Seat 3: nickgerm ($3.51) -Seat 4: tchazx ($4.45) +Seat 4: Hero ($4.45) Seat 8: XYXY26XYXY ($1.65) Mandala14 posts small blind ($0.02) ANOKATO posts big blind ($0.05) --- Dealing pocket cards -Dealing to tchazx: [5h, Tc, 9c, 3h] +Dealing to Hero: [5h, Tc, 9c, 3h] nickgerm raises $0.10 to $0.10 -tchazx calls $0.10 +Hero calls $0.10 XYXY26XYXY calls $0.10 Mandala14 calls $0.08 ANOKATO calls $0.05 @@ -155,7 +155,7 @@ ANOKATO calls $0.05 Mandala14 checks ANOKATO checks nickgerm bets $0.05 -tchazx calls $0.05 +Hero calls $0.05 XYXY26XYXY calls $0.05 Mandala14 calls $0.05 ANOKATO calls $0.05 @@ -163,7 +163,7 @@ ANOKATO calls $0.05 Mandala14 checks ANOKATO bets $0.10 nickgerm raises $0.20 to $0.20 -tchazx folds +Hero folds XYXY26XYXY calls $0.20 Mandala14 calls $0.20 ANOKATO raises $0.20 to $0.30 @@ -183,51 +183,51 @@ Rake taken: $0.09 Seat 10: Mandala14 ($3.81), net: -$0.45 Seat 1: ANOKATO ($3.29), net: +$1.41 Seat 3: nickgerm ($3.06), net: -$0.45 -Seat 4: tchazx ($4.30), net: -$0.15 +Seat 4: Hero ($4.30), net: -$0.15 Seat 8: XYXY26XYXY ($1.20), net: -$0.45 ***** End of hand R5-81867677-659 ***** ***** History for hand R5-81867677-660 ***** Start hand: Mon Sep 13 00:30:43 GMT+0100 2010 Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) -User: tchazx +User: Hero Button: seat 10 Players in round: 5 Seat 1: ANOKATO ($3.29) Seat 3: nickgerm ($3.06) -Seat 4: tchazx ($4.30) +Seat 4: Hero ($4.30) Seat 8: XYXY26XYXY ($1.20) Seat 10: Mandala14 ($3.81) ANOKATO posts small blind ($0.02) nickgerm posts big blind ($0.05) --- Dealing pocket cards -Dealing to tchazx: [Qh, 4d, Ts, 9d] -tchazx calls $0.05 +Dealing to Hero: [Qh, 4d, Ts, 9d] +Hero calls $0.05 XYXY26XYXY calls $0.05 Mandala14 calls $0.05 ANOKATO calls $0.03 nickgerm raises $0.05 to $0.10 -tchazx calls $0.05 +Hero calls $0.05 XYXY26XYXY calls $0.05 Mandala14 calls $0.05 ANOKATO calls $0.05 --- Dealing flop [6d, 3c, Qc] ANOKATO checks nickgerm bets $0.05 -tchazx calls $0.05 +Hero calls $0.05 XYXY26XYXY calls $0.05 Mandala14 calls $0.05 ANOKATO calls $0.05 --- Dealing turn [7h] ANOKATO checks nickgerm checks -tchazx checks +Hero checks XYXY26XYXY checks Mandala14 checks --- Dealing river [Jh] ANOKATO bets $0.10 nickgerm folds -tchazx calls $0.10 +Hero calls $0.10 XYXY26XYXY folds Mandala14 folds --- @@ -236,34 +236,34 @@ Main pot: $0.95 won by ANOKATO ($0.91) Rake taken: $0.04 Seat 1: ANOKATO ($3.95), net: +$0.66, [7c, Qd, Ks, 5d] (TWO_PAIR QUEEN, SEVEN) Seat 3: nickgerm ($2.91), net: -$0.15 -Seat 4: tchazx ($4.05), net: -$0.25 +Seat 4: Hero ($4.05), net: -$0.25 Seat 8: XYXY26XYXY ($1.05), net: -$0.15 Seat 10: Mandala14 ($3.66), net: -$0.15 ***** End of hand R5-81867677-660 ***** ***** History for hand R5-81867677-661 ***** Start hand: Mon Sep 13 00:31:54 GMT+0100 2010 Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) -User: tchazx +User: Hero Button: seat 1 Players in round: 5 Seat 3: nickgerm ($2.91) -Seat 4: tchazx ($4.05) +Seat 4: Hero ($4.05) Seat 8: XYXY26XYXY ($1.05) Seat 10: Mandala14 ($3.66) Seat 1: ANOKATO ($3.95) nickgerm posts small blind ($0.02) -tchazx posts big blind ($0.05) +Hero posts big blind ($0.05) --- Dealing pocket cards -Dealing to tchazx: [5d, 9h, 6h, 4h] +Dealing to Hero: [5d, 9h, 6h, 4h] XYXY26XYXY calls $0.05 Mandala14 calls $0.05 ANOKATO calls $0.05 nickgerm calls $0.03 -tchazx checks +Hero checks --- Dealing flop [2d, 4d, Jh] nickgerm bets $0.05 -tchazx folds +Hero folds XYXY26XYXY calls $0.05 Mandala14 folds ANOKATO calls $0.05 @@ -285,7 +285,7 @@ Summary: Main pot: $1.70 won by nickgerm ($1.62) Rake taken: $0.08 Seat 3: nickgerm ($3.93), net: +$1.02, [9c, 4s, Jd, 6c] (FULL_HOUSE JACK, FOUR) -Seat 4: tchazx ($4), net: -$0.05 +Seat 4: Hero ($4), net: -$0.05 Seat 8: XYXY26XYXY ($0.65), net: -$0.40 Seat 10: Mandala14 ($3.61), net: -$0.05 Seat 1: ANOKATO ($3.35), net: -$0.60 @@ -293,23 +293,23 @@ Seat 1: ANOKATO ($3.35), net: -$0.60 ***** History for hand R5-81867677-662 ***** Start hand: Mon Sep 13 00:33:20 GMT+0100 2010 Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) -User: tchazx +User: Hero Button: seat 3 Players in round: 5 -Seat 4: tchazx ($4) +Seat 4: Hero ($4) Seat 8: XYXY26XYXY ($0.65) Seat 10: Mandala14 ($3.61) Seat 1: ANOKATO ($3.35) Seat 3: nickgerm ($3.93) -tchazx posts small blind ($0.02) +Hero posts small blind ($0.02) XYXY26XYXY posts big blind ($0.05) --- Dealing pocket cards -Dealing to tchazx: [5s, 6c, Kc, 3s] +Dealing to Hero: [5s, 6c, Kc, 3s] Mandala14 calls $0.05 ANOKATO calls $0.05 nickgerm raises $0.10 to $0.10 -tchazx folds +Hero folds XYXY26XYXY calls $0.05 Mandala14 calls $0.05 ANOKATO calls $0.05 @@ -335,7 +335,7 @@ nickgerm checks Summary: Main pot: $1.07 won by ANOKATO ($1.02) Rake taken: $0.05 -Seat 4: tchazx ($3.98), net: -$0.02 +Seat 4: Hero ($3.98), net: -$0.02 Seat 8: XYXY26XYXY ($0.50), net: -$0.15 Seat 10: Mandala14 ($3.51), net: -$0.10 Seat 1: ANOKATO ($3.97), net: +$0.62, [Js, 5c, 9c, 2h] (THREE_OF_A_KIND TWO) @@ -344,22 +344,22 @@ Seat 3: nickgerm ($3.53), net: -$0.40 ***** History for hand R5-81867677-663 ***** Start hand: Mon Sep 13 00:34:34 GMT+0100 2010 Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) -User: tchazx +User: Hero Button: seat 4 Players in round: 5 Seat 8: XYXY26XYXY ($0.50) Seat 10: Mandala14 ($3.51) Seat 1: ANOKATO ($3.97) Seat 3: nickgerm ($3.53) -Seat 4: tchazx ($3.98) +Seat 4: Hero ($3.98) XYXY26XYXY posts small blind ($0.02) Mandala14 posts big blind ($0.05) --- Dealing pocket cards -Dealing to tchazx: [Ac, 9h, 6h, Jc] +Dealing to Hero: [Ac, 9h, 6h, Jc] ANOKATO calls $0.05 nickgerm calls $0.05 -tchazx calls $0.05 +Hero calls $0.05 XYXY26XYXY calls $0.03 Mandala14 checks --- Dealing flop [7s, 4c, 8s] @@ -367,7 +367,7 @@ XYXY26XYXY checks Mandala14 checks ANOKATO bets $0.05 nickgerm calls $0.05 -tchazx calls $0.05 +Hero calls $0.05 XYXY26XYXY calls $0.05 Mandala14 calls $0.05 --- Dealing turn [2d] @@ -375,7 +375,7 @@ XYXY26XYXY checks Mandala14 checks ANOKATO bets $0.10 nickgerm raises $0.20 to $0.20 -tchazx calls $0.20 +Hero calls $0.20 XYXY26XYXY calls $0.20 Mandala14 calls $0.20 ANOKATO calls $0.10 @@ -384,7 +384,7 @@ XYXY26XYXY bets $0.10 Mandala14 folds ANOKATO calls $0.10 nickgerm raises $0.20 to $0.20 -tchazx folds +Hero folds XYXY26XYXY calls $0.10 [all in] ANOKATO folds --- @@ -395,26 +395,26 @@ Seat 8: XYXY26XYXY ($1.90), net: +$1.40, [8d, 5c, 4d, 3c] (FULL_HOUSE FOUR, EIGH Seat 10: Mandala14 ($3.21), net: -$0.30 Seat 1: ANOKATO ($3.57), net: -$0.40 Seat 3: nickgerm ($3.03), net: -$0.50, [6s, Th, 3d, 5d] (STRAIGHT EIGHT) -Seat 4: tchazx ($3.68), net: -$0.30 +Seat 4: Hero ($3.68), net: -$0.30 ***** End of hand R5-81867677-663 ***** ***** History for hand R5-81867677-664 ***** Start hand: Mon Sep 13 00:36:21 GMT+0100 2010 Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) -User: tchazx +User: Hero Button: seat 8 Players in round: 5 Seat 10: Mandala14 ($3.21) Seat 1: ANOKATO ($3.57) Seat 3: nickgerm ($3.03) -Seat 4: tchazx ($3.68) +Seat 4: Hero ($3.68) Seat 8: XYXY26XYXY ($1.90) Mandala14 posts small blind ($0.02) ANOKATO posts big blind ($0.05) --- Dealing pocket cards -Dealing to tchazx: [7d, Kh, 4s, Jh] +Dealing to Hero: [7d, Kh, 4s, Jh] nickgerm calls $0.05 -tchazx calls $0.05 +Hero calls $0.05 XYXY26XYXY folds Mandala14 calls $0.03 ANOKATO checks @@ -422,23 +422,23 @@ ANOKATO checks Mandala14 checks ANOKATO folds nickgerm bets $0.05 -tchazx calls $0.05 +Hero calls $0.05 Mandala14 calls $0.05 --- Dealing turn [8c] Mandala14 checks nickgerm checks -tchazx checks +Hero checks --- Dealing river [3d] Mandala14 checks nickgerm checks -tchazx checks +Hero checks --- Summary: -Main pot: $0.35 won by tchazx ($0.34) +Main pot: $0.35 won by Hero ($0.34) Rake taken: $0.01 Seat 10: Mandala14 ($3.11), net: -$0.10, [7h, 4d, Qh, 6d] (PAIR FOUR) Seat 1: ANOKATO ($3.52), net: -$0.05 Seat 3: nickgerm ($2.93), net: -$0.10, [7s, Qd, 6s, Ah] (PAIR ACE) -Seat 4: tchazx ($3.92), net: +$0.24, [7d, Kh, 4s, Jh] (TWO_PAIR JACK, FOUR) +Seat 4: Hero ($3.92), net: +$0.24, [7d, Kh, 4s, Jh] (TWO_PAIR JACK, FOUR) Seat 8: XYXY26XYXY ($1.90) ***** End of hand R5-81867677-664 ***** diff --git a/pyfpdb/regression-test-files/cash/OnGame/Flop/NLHE-9max-USD-0.05-0.10-201008.Betfair.Skin.txt b/pyfpdb/regression-test-files/cash/OnGame/Flop/NLHE-9max-USD-0.05-0.10-201008.Betfair.Skin.txt index b7fa7f7b..74c8c597 100644 --- a/pyfpdb/regression-test-files/cash/OnGame/Flop/NLHE-9max-USD-0.05-0.10-201008.Betfair.Skin.txt +++ b/pyfpdb/regression-test-files/cash/OnGame/Flop/NLHE-9max-USD-0.05-0.10-201008.Betfair.Skin.txt @@ -1,21 +1,21 @@ ***** History for hand R5-70000684-006 ***** Start hand: Wed Aug 11 03:21:00 GMT+0100 2010 Table: Kassel [73910684] (NO_LIMIT TEXAS_HOLDEM 0.05/0.10, Real money) -User: Player3 +User: Hero Button: seat 8 Players in round: 5 Seat 9: Player1 (4.35) Seat 3: Player0 (10.90) Seat 5: Player2 (12.88) -Seat 6: Player3 (14.18) +Seat 6: Hero (14.18) Seat 8: Player4 (9) Player1 posts small blind (0.05) Player0 posts big blind (0.10) --- Dealing pocket cards -Dealing to Player3: [6s, 7h] +Dealing to Hero: [6s, 7h] Player2 folds -Player3 folds +Hero folds Player4 raises 0.30 to 0.30 Player1 calls 0.25 Player0 folds @@ -35,7 +35,7 @@ Rake taken: $0.04 Seat 9: Player1 (4.81), net: +0.46 Seat 3: Player0 (10.80), net: -0.10 Seat 5: Player2 (12.88) -Seat 6: Player3 (14.18) +Seat 6: Hero (14.18) Seat 8: Player4 (8.60), net: -0.40 ***** End of hand R5-73910684-276 ***** diff --git a/pyfpdb/regression-test-files/cash/OnGame/Flop/NLHE-9max-USD-0.05-0.10-201009.Dead.Small.Blind.txt b/pyfpdb/regression-test-files/cash/OnGame/Flop/NLHE-9max-USD-0.05-0.10-201009.Dead.Small.Blind.txt index ccc8a85c..1be15dd7 100644 --- a/pyfpdb/regression-test-files/cash/OnGame/Flop/NLHE-9max-USD-0.05-0.10-201009.Dead.Small.Blind.txt +++ b/pyfpdb/regression-test-files/cash/OnGame/Flop/NLHE-9max-USD-0.05-0.10-201009.Dead.Small.Blind.txt @@ -1,27 +1,27 @@ ***** History for hand R5-79836934-72 ***** Start hand: Sat Sep 4 05:34:19 GMT+0100 2010 Table: Bnei Brak [79836934] (NO_LIMIT TEXAS_HOLDEM $0.05/$0.10, Real money) -User: tchazx +User: Hero Button: seat 10 Players in round: 2 Seat 1: feradf ($6.86) -Seat 10: tchazx ($15.44) -tchazx posts big blind ($0.10) -tchazx posts dead blind ($0.05) +Seat 10: Hero ($15.44) +Hero posts big blind ($0.10) +Hero posts dead blind ($0.05) feradf posts big blind ($0.10) --- Dealing pocket cards -Dealing to tchazx: [Qh, 4h] -tchazx raises $0.20 to $0.30 +Dealing to Hero: [Qh, 4h] +Hero raises $0.20 to $0.30 feradf calls $0.20 --- Dealing flop [6c, Qs, 7h] feradf checks -tchazx bets $0.45 +Hero bets $0.45 feradf folds --- Summary: -Main pot: $0.65 won by tchazx ($0.62) +Main pot: $0.65 won by Hero ($0.62) Rake taken: $0.03 Seat 1: feradf ($6.56), net: -$0.30 -Seat 10: tchazx ($15.71), net: +$0.27 +Seat 10: Hero ($15.71), net: +$0.27 ***** End of hand R5-79836934-72 ***** \ No newline at end of file diff --git a/pyfpdb/regression-test-files/cash/OnGame/Stud/7-Stud-USD-0.10-0.20-201009.Sample.txt b/pyfpdb/regression-test-files/cash/OnGame/Stud/7-Stud-USD-0.10-0.20-201009.Sample.txt index 4a760505..d23c1a81 100644 --- a/pyfpdb/regression-test-files/cash/OnGame/Stud/7-Stud-USD-0.10-0.20-201009.Sample.txt +++ b/pyfpdb/regression-test-files/cash/OnGame/Stud/7-Stud-USD-0.10-0.20-201009.Sample.txt @@ -1,10 +1,10 @@ ***** History for hand R5-82086688-607 ***** Start hand: Mon Sep 13 22:31:30 GMT+0100 2010 Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money) -User: tchazx +User: Hero Players in round: 5 Seat 1: the bAAr ($6.53) -Seat 2: tchazx ($2) +Seat 2: Hero ($2) Seat 6: kueto ($6.30) Seat 8: E6y Ko3y ($2.70) Seat 10: telozver123 ($6.49) @@ -12,11 +12,11 @@ the bAAr posts ante $0.02 kueto posts ante $0.02 E6y Ko3y posts ante $0.02 telozver123 posts ante $0.02 -tchazx posts ante $0.02 +Hero posts ante $0.02 --- Dealing pocket cards Dealing to the bAAr: [-, -, Kh] -Dealing to tchazx: [Jh, 9d, Ac] +Dealing to Hero: [Jh, 9d, Ac] Dealing to kueto: [-, -, 4h] Dealing to E6y Ko3y: [-, -, Ad] Dealing to telozver123: [-, -, 6h] @@ -24,54 +24,54 @@ kueto small bring in $0.05 E6y Ko3y calls $0.05 telozver123 calls $0.05 the bAAr calls $0.05 -tchazx calls $0.05 +Hero calls $0.05 --- Dealing 4th street Dealing to the bAAr: [3h] -Dealing to tchazx: [7h] +Dealing to Hero: [7h] Dealing to kueto: [3d] Dealing to E6y Ko3y: [Qs] Dealing to telozver123: [Ts] E6y Ko3y bets $0.10 telozver123 calls $0.10 the bAAr calls $0.10 -tchazx calls $0.10 +Hero calls $0.10 kueto folds --- Dealing 5th street Dealing to the bAAr: [9s] -Dealing to tchazx: [Js] +Dealing to Hero: [Js] Dealing to E6y Ko3y: [6c] Dealing to telozver123: [Kd] E6y Ko3y checks telozver123 checks the bAAr bets $0.20 -tchazx calls $0.20 +Hero calls $0.20 E6y Ko3y calls $0.20 telozver123 folds --- Dealing 6th street Dealing to the bAAr: [8s] -Dealing to tchazx: [5c] +Dealing to Hero: [5c] Dealing to E6y Ko3y: [5d] E6y Ko3y checks the bAAr bets $0.20 -tchazx calls $0.20 +Hero calls $0.20 E6y Ko3y calls $0.20 --- Dealing river -Dealing to tchazx: [9h] +Dealing to Hero: [9h] E6y Ko3y checks the bAAr checks -tchazx bets $0.20 +Hero bets $0.20 E6y Ko3y folds the bAAr calls $0.20 --- Summary: -Main pot: $2.35 won by tchazx ($2.24) +Main pot: $2.35 won by Hero ($2.24) Rake taken: $0.11 Seat 1: the bAAr ($5.76), net: -$0.77 -Seat 2: tchazx ($3.47), net: +$1.47, [Jh, 9d, Ac, 7h, Js, 5c, 9h] (TWO_PAIR JACK, NINE) +Seat 2: Hero ($3.47), net: +$1.47, [Jh, 9d, Ac, 7h, Js, 5c, 9h] (TWO_PAIR JACK, NINE) Seat 6: kueto ($6.23), net: -$0.07 Seat 8: E6y Ko3y ($2.13), net: -$0.57 Seat 10: telozver123 ($6.32), net: -$0.17 @@ -79,61 +79,61 @@ Seat 10: telozver123 ($6.32), net: -$0.17 ***** History for hand R5-82086688-608 ***** Start hand: Mon Sep 13 22:32:47 GMT+0100 2010 Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money) -User: tchazx +User: Hero Players in round: 5 Seat 1: the bAAr ($5.76) -Seat 2: tchazx ($3.47) +Seat 2: Hero ($3.47) Seat 6: kueto ($6.23) Seat 8: E6y Ko3y ($2.13) Seat 10: telozver123 ($6.32) the bAAr posts ante $0.02 -tchazx posts ante $0.02 +Hero posts ante $0.02 kueto posts ante $0.02 E6y Ko3y posts ante $0.02 telozver123 posts ante $0.02 --- Dealing pocket cards Dealing to the bAAr: [-, -, 4s] -Dealing to tchazx: [8h, Ks, Qd] +Dealing to Hero: [8h, Ks, Qd] Dealing to kueto: [-, -, 5h] Dealing to E6y Ko3y: [-, -, 2h] Dealing to telozver123: [-, -, 3c] E6y Ko3y small bring in $0.05 telozver123 folds the bAAr calls $0.05 -tchazx calls $0.05 +Hero calls $0.05 kueto folds --- Dealing 4th street Dealing to the bAAr: [Ad] -Dealing to tchazx: [8d] +Dealing to Hero: [8d] Dealing to E6y Ko3y: [Qh] the bAAr bets $0.10 -tchazx calls $0.10 +Hero calls $0.10 E6y Ko3y folds --- Dealing 5th street Dealing to the bAAr: [4c] -Dealing to tchazx: [Ah] +Dealing to Hero: [Ah] the bAAr bets $0.20 -tchazx calls $0.20 +Hero calls $0.20 --- Dealing 6th street Dealing to the bAAr: [3d] -Dealing to tchazx: [Jh] +Dealing to Hero: [Jh] the bAAr checks -tchazx checks +Hero checks --- Dealing river -Dealing to tchazx: [Kh] +Dealing to Hero: [Kh] the bAAr bets $0.20 -tchazx calls $0.20 +Hero calls $0.20 --- Summary: -Main pot: $1.25 won by tchazx ($1.19) +Main pot: $1.25 won by Hero ($1.19) Rake taken: $0.06 Seat 1: the bAAr ($5.19), net: -$0.57, [6s, 9s, 4s, Ad, 4c, 3d, 3h] (TWO_PAIR FOUR, THREE) -Seat 2: tchazx ($4.09), net: +$0.62, [8h, Ks, Qd, 8d, Ah, Jh, Kh] (TWO_PAIR KING, EIGHT) +Seat 2: Hero ($4.09), net: +$0.62, [8h, Ks, Qd, 8d, Ah, Jh, Kh] (TWO_PAIR KING, EIGHT) Seat 6: kueto ($6.21), net: -$0.02 Seat 8: E6y Ko3y ($2.06), net: -$0.07 Seat 10: telozver123 ($6.30), net: -$0.02 @@ -141,60 +141,60 @@ Seat 10: telozver123 ($6.30), net: -$0.02 ***** History for hand R5-82086688-609 ***** Start hand: Mon Sep 13 22:33:42 GMT+0100 2010 Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money) -User: tchazx +User: Hero Players in round: 5 Seat 1: the bAAr ($5.19) -Seat 2: tchazx ($4.09) +Seat 2: Hero ($4.09) Seat 6: kueto ($6.21) Seat 8: E6y Ko3y ($2.06) Seat 10: telozver123 ($6.30) the bAAr posts ante $0.02 -tchazx posts ante $0.02 +Hero posts ante $0.02 kueto posts ante $0.02 E6y Ko3y posts ante $0.02 telozver123 posts ante $0.02 --- Dealing pocket cards Dealing to the bAAr: [-, -, 5c] -Dealing to tchazx: [Ad, As, Kh] +Dealing to Hero: [Ad, As, Kh] Dealing to kueto: [-, -, Qs] Dealing to E6y Ko3y: [-, -, 8s] Dealing to telozver123: [-, -, Tc] the bAAr small bring in $0.05 -tchazx bets $0.10 +Hero bets $0.10 kueto calls $0.10 E6y Ko3y folds telozver123 folds the bAAr folds --- Dealing 4th street -Dealing to tchazx: [Ks] +Dealing to Hero: [Ks] Dealing to kueto: [Qd] -tchazx bets $0.10 +Hero bets $0.10 kueto calls $0.10 --- Dealing 5th street -Dealing to tchazx: [8c] +Dealing to Hero: [8c] Dealing to kueto: [7s] -tchazx bets $0.20 +Hero bets $0.20 kueto calls $0.20 --- Dealing 6th street -Dealing to tchazx: [7d] +Dealing to Hero: [7d] Dealing to kueto: [5s] -tchazx bets $0.20 +Hero bets $0.20 kueto calls $0.20 --- Dealing river -Dealing to tchazx: [7h] -tchazx bets $0.20 +Dealing to Hero: [7h] +Hero bets $0.20 kueto calls $0.20 --- Summary: Main pot: $1.75 won by kueto ($1.67) Rake taken: $0.08 Seat 1: the bAAr ($5.12), net: -$0.07 -Seat 2: tchazx ($3.27), net: -$0.82, [Ad, As, Kh, Ks, 8c, 7d, 7h] (TWO_PAIR ACE, KING) +Seat 2: Hero ($3.27), net: -$0.82, [Ad, As, Kh, Ks, 8c, 7d, 7h] (TWO_PAIR ACE, KING) Seat 6: kueto ($7.06), net: +$0.85, [Qc, 6c, Qs, Qd, 7s, 5s, 3c] (THREE_OF_A_KIND QUEEN) Seat 8: E6y Ko3y ($2.04), net: -$0.02 Seat 10: telozver123 ($6.28), net: -$0.02 @@ -202,68 +202,68 @@ Seat 10: telozver123 ($6.28), net: -$0.02 ***** History for hand R5-82086688-610 ***** Start hand: Mon Sep 13 22:34:25 GMT+0100 2010 Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money) -User: tchazx +User: Hero Players in round: 5 Seat 1: the bAAr ($5.12) -Seat 2: tchazx ($3.27) +Seat 2: Hero ($3.27) Seat 6: kueto ($7.06) Seat 8: E6y Ko3y ($2.04) Seat 10: telozver123 ($6.28) the bAAr posts ante $0.02 -tchazx posts ante $0.02 +Hero posts ante $0.02 kueto posts ante $0.02 E6y Ko3y posts ante $0.02 telozver123 posts ante $0.02 --- Dealing pocket cards Dealing to the bAAr: [-, -, Ts] -Dealing to tchazx: [9s, 6s, 7s] +Dealing to Hero: [9s, 6s, 7s] Dealing to kueto: [-, -, Qs] Dealing to E6y Ko3y: [-, -, 3s] Dealing to telozver123: [-, -, 9d] E6y Ko3y small bring in $0.05 telozver123 folds the bAAr calls $0.05 -tchazx calls $0.05 +Hero calls $0.05 kueto calls $0.05 --- Dealing 4th street Dealing to the bAAr: [Qd] -Dealing to tchazx: [Ah] +Dealing to Hero: [Ah] Dealing to kueto: [7h] Dealing to E6y Ko3y: [Th] -tchazx checks +Hero checks kueto checks E6y Ko3y checks the bAAr bets $0.10 -tchazx calls $0.10 +Hero calls $0.10 kueto folds E6y Ko3y folds --- Dealing 5th street Dealing to the bAAr: [Jh] -Dealing to tchazx: [5c] -tchazx checks +Dealing to Hero: [5c] +Hero checks the bAAr bets $0.20 -tchazx calls $0.20 +Hero calls $0.20 --- Dealing 6th street Dealing to the bAAr: [7d] -Dealing to tchazx: [7c] -tchazx checks +Dealing to Hero: [7c] +Hero checks the bAAr bets $0.20 -tchazx calls $0.20 +Hero calls $0.20 --- Dealing river -Dealing to tchazx: [5h] -tchazx checks +Dealing to Hero: [5h] +Hero checks the bAAr checks --- Summary: Main pot: $1.30 won by the bAAr ($1.24) Rake taken: $0.06 Seat 1: the bAAr ($5.79), net: +$0.67, [Tc, 9h, Ts, Qd, Jh, 7d, 9c] (TWO_PAIR TEN, NINE) -Seat 2: tchazx ($2.70), net: -$0.57, [9s, 6s, 7s, Ah, 5c, 7c, 5h] (TWO_PAIR SEVEN, FIVE) +Seat 2: Hero ($2.70), net: -$0.57, [9s, 6s, 7s, Ah, 5c, 7c, 5h] (TWO_PAIR SEVEN, FIVE) Seat 6: kueto ($6.99), net: -$0.07 Seat 8: E6y Ko3y ($1.97), net: -$0.07 Seat 10: telozver123 ($6.26), net: -$0.02 diff --git a/pyfpdb/regression-test-files/cash/OnGame/Stud/7-StudHL-USD-0.25-0.50-201008.All.streets.txt b/pyfpdb/regression-test-files/cash/OnGame/Stud/7-StudHL-USD-0.25-0.50-201008.All.streets.txt index 53757eab..f25a8259 100644 --- a/pyfpdb/regression-test-files/cash/OnGame/Stud/7-StudHL-USD-0.25-0.50-201008.All.streets.txt +++ b/pyfpdb/regression-test-files/cash/OnGame/Stud/7-StudHL-USD-0.25-0.50-201008.All.streets.txt @@ -1,9 +1,9 @@ ***** History for hand R5-78227816-62 ***** Start hand: Sat Aug 28 20:33:38 GMT+0300 2010 Table: Taegu [78227816] (LIMIT SEVEN_CARD_STUD_HI_LO $0.25/$0.50, ante: $0.05, Real money) -User: XMAN1 +User: Hero Players in round: 8 -Seat 1: XMAN1 ($25) +Seat 1: Hero ($25) Seat 3: boneos56 ($27.78) Seat 5: grumset2007 ($3.48) Seat 6: mylonas77 ($40.73) @@ -18,10 +18,10 @@ Lee Clayton posts ante $0.05 guggi_cool posts ante $0.05 HangEv posts ante $0.05 mylonas77 posts ante $0.05 -XMAN1 posts ante $0.05 +Hero posts ante $0.05 --- Dealing pocket cards -Dealing to XMAN1: [8d, 8s, 4d] +Dealing to Hero: [8d, 8s, 4d] Dealing to boneos56: [-, -, Kd] Dealing to grumset2007: [-, -, Ks] Dealing to mylonas77: [-, -, 5c] @@ -29,7 +29,7 @@ Dealing to YMAN1: [-, -, As] Dealing to Lee Clayton: [-, -, Js] Dealing to guggi_cool: [-, -, 9s] Dealing to HangEv: [-, -, 6s] -XMAN1 small bring in $0.12 +Hero small bring in $0.12 boneos56 folds grumset2007 folds mylonas77 calls $0.12 @@ -39,33 +39,33 @@ guggi_cool folds HangEv folds --- Dealing 4th street -Dealing to XMAN1: [3h] +Dealing to Hero: [3h] Dealing to mylonas77: [2h] mylonas77 bets $0.25 -XMAN1 calls $0.25 +Hero calls $0.25 --- Dealing 5th street -Dealing to XMAN1: [8c] +Dealing to Hero: [8c] Dealing to mylonas77: [Kh] mylonas77 bets $0.50 -XMAN1 raises $1 to $1.37 +Hero raises $1 to $1.37 mylonas77 calls $0.50 --- Dealing 6th street -Dealing to XMAN1: [4c] +Dealing to Hero: [4c] Dealing to mylonas77: [Qh] -XMAN1 bets $0.50 +Hero bets $0.50 mylonas77 calls $0.50 --- Dealing river -Dealing to XMAN1: [5h] -XMAN1 bets $0.50 +Dealing to Hero: [5h] +Hero bets $0.50 mylonas77 calls $0.50 --- Summary: -Main pot: $5.14 won by XMAN1 ($4.89) +Main pot: $5.14 won by Hero ($4.89) Rake taken: $0.25 -Seat 1: XMAN1 ($27.47), net: +$2.47, [8d, 8s, 4d, 3h, 8c, 4c, 5h] (FULL_HOUSE EIGHT, FOUR) +Seat 1: Hero ($27.47), net: +$2.47, [8d, 8s, 4d, 3h, 8c, 4c, 5h] (FULL_HOUSE EIGHT, FOUR) Seat 3: boneos56 ($27.73), net: -$0.05 Seat 5: grumset2007 ($3.43), net: -$0.05 Seat 6: mylonas77 ($38.31), net: -$2.42 diff --git a/pyfpdb/regression-test-files/cash/PKR/Flop/NLHE-2max-USD-0.02-0.04-200903.All-in.on.turn.txt b/pyfpdb/regression-test-files/cash/PKR/Flop/NLHE-2max-USD-0.02-0.04-200903.All-in.on.turn.txt index 4da14181..a312e783 100644 --- a/pyfpdb/regression-test-files/cash/PKR/Flop/NLHE-2max-USD-0.02-0.04-200903.All-in.on.turn.txt +++ b/pyfpdb/regression-test-files/cash/PKR/Flop/NLHE-2max-USD-0.02-0.04-200903.All-in.on.turn.txt @@ -13,17 +13,17 @@ Seat 2: Player2 - $5.28 Seat 3: Player3 - $1.80 Seat 4: allout96 - $3.99 Seat 5: Player4 - $1.47 -Seat 6: Player5 - $4 +Seat 6: Hero - $4 Moving Button to seat 1 Player2 posts small blind ($0.02) Player3 posts big blind ($0.04) -Player5 posts $0.04 +Hero posts $0.04 Shuffling Deck Dealing Cards -Dealing [Ad 8h] to Player5 +Dealing [Ad 8h] to Hero allout96 folds Player4 calls $0.04 -Player5 checks +Hero checks Player1 folds Player2 calls $0.04 Player3 checks @@ -31,7 +31,7 @@ Dealing Flop [9s Ac 5s] Player2 bets $0.08 Player3 calls $0.08 Player4 calls $0.08 -Player5 raises to $0.16 +Hero raises to $0.16 Player2 calls $0.16 Player3 calls $0.16 Player4 calls $0.16 @@ -39,11 +39,11 @@ Dealing Turn [4s] Player2 checks Player3 bets $0.04 Player4 calls $0.04 -Player5 raises to $0.72 +Hero raises to $0.72 Player2 folds Player3 raises to $1.40 Player4 calls $1.27 (all-in) -Player5 folds +Hero folds Returning $0.13 to Player3 uncalled Player3 shows [2h 3d] Player4 shows [4d 9c] @@ -56,6 +56,6 @@ Seat 2: Player2 - $5.08 Seat 3: Player3 - $3.99 Seat 4: allout96 - $3.99 Seat 5: Player4 - $0 -Seat 6: Player5 - $3.08 +Seat 6: Hero - $3.08 End Of Hand #746382682 diff --git a/pyfpdb/regression-test-files/cash/PKR/Flop/NLHE-2max-USD-0.02-0.04-200903.All-in.on.turn.txt.hp b/pyfpdb/regression-test-files/cash/PKR/Flop/NLHE-2max-USD-0.02-0.04-200903.All-in.on.turn.txt.hp index 32020879..02238e95 100644 --- a/pyfpdb/regression-test-files/cash/PKR/Flop/NLHE-2max-USD-0.02-0.04-200903.All-in.on.turn.txt.hp +++ b/pyfpdb/regression-test-files/cash/PKR/Flop/NLHE-2max-USD-0.02-0.04-200903.All-in.on.turn.txt.hp @@ -374,7 +374,7 @@ 'wonWhenSeenStreet2': 0.0, 'wonWhenSeenStreet3': 0.0, 'wonWhenSeenStreet4': 0.0}, - u'Player5': { 'card1': 26, + u'Hero': { 'card1': 26, 'card2': 7, 'card3': 0, 'card4': 0, diff --git a/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-20100712.emailedHistory.txt b/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-20100712.emailedHistory.txt index 2267fa45..a711e033 100644 --- a/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-20100712.emailedHistory.txt +++ b/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-20100712.emailedHistory.txt @@ -6,7 +6,7 @@ Seat 1: Player1 ($0.95) Seat 2: Player2 ($0.57) Seat 3: Player3 ($0.86) Seat 4: Player4 ($1.71) -Seat 5: Player5 ($1.76) +Seat 5: Hero ($1.76) Seat 6: Player6 ($0.44) Seat 7: Player7 ($0.76) Seat 8: Player8 ($0.68) @@ -14,8 +14,8 @@ Seat 9: Player9 ($0.38) Player2 posts small blind (0.01) Player3 posts big blind (0.02) ** Dealing down cards ** -Dealt to Player5 [ Tc, 9d ] -Player5 folds +Dealt to Hero [ Tc, 9d ] +Hero folds Player6 calls (0.02) Player8 folds Player9 folds @@ -34,7 +34,7 @@ Player1 balance $0.95, didn't bet (folded) Player2 balance $0.55, lost $0.02 (folded) Player3 balance $0.96, bet $0.21, collected $0.31, net +$0.1 Player4 balance $1.71, sits out -Player5 balance $1.76, didn't bet (folded) +Hero balance $1.76, didn't bet (folded) Player6 balance $0.36, lost $0.08 (folded) Player7 balance $0.76, sits out Player8 balance $0.68, didn't bet (folded) diff --git a/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-20100731.bigBlindIsForcedAllIn.txt b/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-20100731.bigBlindIsForcedAllIn.txt index 89c06d75..45a05b9e 100644 --- a/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-20100731.bigBlindIsForcedAllIn.txt +++ b/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-20100731.bigBlindIsForcedAllIn.txt @@ -6,28 +6,28 @@ $0.80 USD NL Texas Hold'em - Saturday, July 31, 13:52:16 EDT 2010 Table 20BB Min Speed #1770998 (Real Money) Seat 1 is the button Total number of players : 4/9 -Seat 3: Player1 ( $1.64 USD ) +Seat 3: Hero ( $1.64 USD ) Seat 5: Player2 ( $0.01 USD ) Seat 9: Player3 ( $1.02 USD ) Seat 1: Player4 ( $1.20 USD ) -Player1 posts small blind [$0.01 USD]. +Hero posts small blind [$0.01 USD]. Player2 posts big blind [$0.01 USD]. ** Dealing down cards ** -Dealt to Player1 [ 8h Kc ] +Dealt to Hero [ 8h Kc ] Player3 folds Player4 calls [$0.02 USD] -Player1 calls [$0.01 USD] +Hero calls [$0.01 USD] ** Dealing Flop ** [ Td, 7c, 9h ] -Player1 checks +Hero checks Player4 checks ** Dealing Turn ** [ 3h ] -Player1 checks +Hero checks Player4 checks ** Dealing River ** [ Jc ] -Player1 bets [$0.04 USD] +Hero bets [$0.04 USD] Player4 folds -Player1 shows [ 8h, Kc ]a straight, Seven to Jack. +Hero shows [ 8h, Kc ]a straight, Seven to Jack. Player2 doesn't show [ Ts, Jd ]two pairs, Jacks and Tens. -Player1 wins $0.06 USD from the side pot 1 with a straight, Seven to Jack. -Player1 wins $0.03 USD from the main pot with a straight, Seven to Jack. +Hero wins $0.06 USD from the side pot 1 with a straight, Seven to Jack. +Hero wins $0.03 USD from the main pot with a straight, Seven to Jack. Player2 has left the table. diff --git a/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-201008.Sample.txt b/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-201008.Sample.txt index b55ca77262d5cb9ffc5ff971d108fe16b77c2ff3..bfa3e814e24f3fe05fa7544780ea057eb3885115 100644 GIT binary patch delta 79 zcmeC>{L8Vyosq>OwJ3kGFXL<o;~k?Dgki>%1z{{>@`NzHGUY=US<L1T#&Tu@2;(mE F1^`Ee8{Gf^ delta 95 zcmey%(aX8PoslggwKONcWU@EoY#8$uqZ5p2z?21J&SUa~F<&#~!<cc*<}l_=W&;@W HEb|5coHHZ6 diff --git a/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-201008.Sample.txt.hp b/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-201008.Sample.txt.hp index c67b6c5f..ec224560 100644 --- a/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-201008.Sample.txt.hp +++ b/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-201008.Sample.txt.hp @@ -186,7 +186,7 @@ 'wonWhenSeenStreet2': 0.0, 'wonWhenSeenStreet3': 0.0, 'wonWhenSeenStreet4': 0.0}, - u'heulot': { 'card1': 49, + u'Hero': { 'card1': 49, 'card2': 9, 'card3': 0, 'card4': 0, diff --git a/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-20100807.newPlayerWithZeroStack.txt b/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-20100807.newPlayerWithZeroStack.txt index 3e9785bd..850f0862 100644 --- a/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-20100807.newPlayerWithZeroStack.txt +++ b/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.01-0.02-20100807.newPlayerWithZeroStack.txt @@ -8,7 +8,7 @@ Seat 3 is the button Total number of players : 9/9 Seat 9: Player1 ( $1.60 USD ) Seat 4: Player2 ( $1.98 USD ) -Seat 7: Player3 ( $2.90 USD ) +Seat 7: Hero ( $2.90 USD ) Seat 3: Player4 ( $1.97 USD ) Seat 8: Player5 ( $2.43 USD ) Seat 6: Player6 ( $2 USD ) @@ -20,9 +20,9 @@ Player2 posts small blind [$0.01 USD]. Player7 posts big blind [$0.02 USD]. Player8 posts big blind [$0.02 USD]. ** Dealing down cards ** -Dealt to Player3 [ 7c 6c ] +Dealt to Hero [ 7c 6c ] Player6 calls [$0.02 USD] -Player3 calls [$0.02 USD] +Hero calls [$0.02 USD] Player5 calls [$0.02 USD] Player1 folds Player9 folds @@ -34,12 +34,12 @@ Player7 checks Player2 checks Player7 bets [$0.09 USD] Player6 folds -Player3 calls [$0.09 USD] +Hero calls [$0.09 USD] Player5 folds Player8 folds Player2 folds ** Dealing Turn ** [ Kd ] Player7 bets [$0.21 USD] -Player3 folds +Hero folds Player7 does not show cards. Player7 wins $0.50 USD \ No newline at end of file diff --git a/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.02-0.04-20100804.smallBlindIsForcedAllIn.txt b/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.02-0.04-20100804.smallBlindIsForcedAllIn.txt index d59ab400..bace1b28 100644 --- a/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.02-0.04-20100804.smallBlindIsForcedAllIn.txt +++ b/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.02-0.04-20100804.smallBlindIsForcedAllIn.txt @@ -8,13 +8,13 @@ Seat 2 is the button Total number of players : 5/6 Seat 5: Player1 ( $1.60 USD ) Seat 1: Player2 ( $2.45 USD ) -Seat 4: Player3 ( $2.18 USD ) +Seat 4: Hero ( $2.18 USD ) Seat 2: Player4 ( $2.80 USD ) Seat 3: Player5 ( $0.01 USD ) Player5 posts small blind [$0.01 USD]. -Player3 posts big blind [$0.04 USD]. +Hero posts big blind [$0.04 USD]. ** Dealing down cards ** -Dealt to Player3 [ 6s 2c ] +Dealt to Hero [ 6s 2c ] Player1 folds Player2 folds Player4 folds @@ -22,7 +22,7 @@ Player4 folds ** Dealing Turn ** [ Js ] ** Dealing River ** [ Kc ] Player5 shows [ 5h, 5s ]a pair of Fives. -Player3 shows [ 6s, 2c ]high card Ace. -Player3 wins $0.03 USD from the side pot 1 with high card, Ace. +Hero shows [ 6s, 2c ]high card Ace. +Hero wins $0.03 USD from the side pot 1 with high card, Ace. Player5 wins $0.02 USD from the main pot with a pair of Fives. Player5 has left the table. diff --git a/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.02-0.04-20100811.unseatedPlayerActions.txt b/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.02-0.04-20100811.unseatedPlayerActions.txt index 795165e5..bf6c2a1f 100644 --- a/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.02-0.04-20100811.unseatedPlayerActions.txt +++ b/pyfpdb/regression-test-files/cash/PartyPoker/Flop/NLHE-USD-0.02-0.04-20100811.unseatedPlayerActions.txt @@ -6,7 +6,7 @@ $4 USD NL Texas Hold'em - Wednesday, August 11, 23:21:44 CEST 2010 Table Table 178011 (Real Money) Seat 4 is the button Total number of players : 6/9 -Seat 6: Player1 ( $4 USD ) +Seat 6: Hero ( $4 USD ) Seat 7: Player2 ( $2.92 USD ) Seat 5: Player3 ( $0.74 USD ) Seat 3: Player4 ( $4 USD ) @@ -14,25 +14,25 @@ Seat 4: Player5 ( $2.97 USD ) Seat 8: Player6 ( $2 USD ) Player3 posts small blind [$0.02 USD]. Player7 has joined the table. -Player1 posts big blind [$0.04 USD]. +Hero posts big blind [$0.04 USD]. Player2 posts big blind [$0.04 USD]. Player7 posts big blind [$0.04 USD]. ** Dealing down cards ** -Dealt to Player1 [ Ad 4c ] +Dealt to Hero [ Ad 4c ] Player8 has joined the table. Player2 checks Player9 has joined the table. Player7 checks Player5 folds Player3 calls [$0.02 USD] -Player1 checks +Hero checks ** Dealing Flop ** [ 4h, Tc, 3s ] Player3 checks -Player1 checks +Hero checks Player2 checks Player7 bets [$0.12 USD] Player3 folds -Player1 folds +Hero folds Player2 folds Player7 does not show cards. Player7 wins $0.28 USD diff --git a/pyfpdb/regression-test-files/cash/PartyPoker/Stud/7-StudHL-USD-0.50-1.00-201008.txt b/pyfpdb/regression-test-files/cash/PartyPoker/Stud/7-StudHL-USD-0.50-1.00-201008.txt index 317a942a..5f20721f 100644 --- a/pyfpdb/regression-test-files/cash/PartyPoker/Stud/7-StudHL-USD-0.50-1.00-201008.txt +++ b/pyfpdb/regression-test-files/cash/PartyPoker/Stud/7-StudHL-USD-0.50-1.00-201008.txt @@ -6,7 +6,7 @@ $0.50/$1 USD 7 Card Stud Hi-Lo - Monday, August 30, 20:20:17 EEST 2010 Table Table 136403 (Real Money) Seat 0 is the button Total number of players : 7/8 -Seat 3: XMAN1 ( $24.95 USD ) +Seat 3: Hero ( $24.95 USD ) Seat 5: ISqzUSqueal ( $31.02 USD ) Seat 7: PPPPPositive ( $4.20 USD ) Seat 8: Unladylike ( $19 USD ) @@ -15,20 +15,20 @@ Seat 2: strandalleen ( $17.55 USD ) Seat 1: tubby09 ( $24.20 USD ) tubby09 posts ante [$0.05 USD] strandalleen posts ante [$0.05 USD] -XMAN1 posts ante [$0.05 USD] +Hero posts ante [$0.05 USD] ISqzUSqueal posts ante [$0.05 USD] YMAN1 posts ante [$0.05 USD] PPPPPositive posts ante [$0.05 USD] Unladylike posts ante [$0.05 USD] ** Dealing ** -Dealt to XMAN1 [ Td 5s 3c ] +Dealt to Hero [ Td 5s 3c ] YMAN1 opens YMAN1 bring-ins [$0.25 USD] PPPPPositive completes [$0.50 USD] Unladylike folds tubby09 folds strandalleen calls [$0.50 USD] -XMAN1 folds +Hero folds ISqzUSqueal folds YMAN1 calls [$0.25 USD] ** Dealing Fourth street ** 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 index 3417d4e9..9771bff1 100644 --- 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 @@ -1,21 +1,21 @@ 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 1: Hero ($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 +Hero: posts big blind $0.10 *** DEALING HANDS *** -Dealt to s0rrow [8s Ts 8h 2s 3s] +Dealt to Hero [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 +Hero: folds rumble1111: calls $0.20 cypis28: raises $0.10 to $0.40 Betting is capped @@ -45,7 +45,7 @@ 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 1: Hero (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 @@ -56,49 +56,49 @@ 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 1: Hero ($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 +Hero: posts small blind $0.05 rumble1111: posts big blind $0.10 *** DEALING HANDS *** -Dealt to s0rrow [Kh Th 3d Tc 7c] +Dealt to Hero [Kh Th 3d Tc 7c] Eisenherz73: folds cypis28: folds bakter9: calls $0.10 TheLabman: folds -s0rrow: calls $0.05 +Hero: calls $0.05 rumble1111: checks *** FIRST DRAW *** -s0rrow: discards 2 cards [Kh Th] -Dealt to s0rrow [3d Tc 7c] [5c Qs] +Hero: discards 2 cards [Kh Th] +Dealt to Hero [3d Tc 7c] [5c Qs] rumble1111: discards 2 cards bakter9: discards 2 cards -s0rrow: checks +Hero: checks rumble1111: bets $0.10 bakter9: folds -s0rrow: calls $0.10 +Hero: calls $0.10 *** SECOND DRAW *** -s0rrow: discards 2 cards [Qs Tc] -Dealt to s0rrow [3d 7c 5c] [4c 2s] +Hero: discards 2 cards [Qs Tc] +Dealt to Hero [3d 7c 5c] [4c 2s] rumble1111: stands pat -s0rrow: bets $0.20 +Hero: bets $0.20 rumble1111: calls $0.20 *** THIRD DRAW *** -s0rrow: stands pat on [3d 7c 5c 4c 2s] +Hero: stands pat on [3d 7c 5c 4c 2s] rumble1111: discards 1 card -s0rrow: bets $0.20 +Hero: bets $0.20 rumble1111: calls $0.20 *** SHOW DOWN *** -s0rrow: shows [5c 4c 3d 2s 7c] (Lo: 7,5,4,3,2) +Hero: shows [5c 4c 3d 2s 7c] (Lo: 7,5,4,3,2) rumble1111: mucks hand -s0rrow collected $1.24 from pot +Hero 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 1: Hero (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) @@ -109,7 +109,7 @@ 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 1: Hero ($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) @@ -118,18 +118,18 @@ 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] +Dealt to Hero [Tc 9s Qc 8h 3d] cypis28: folds bakter9: folds TheLabman: folds -s0rrow: folds +Hero: 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 1: Hero (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) @@ -140,7 +140,7 @@ 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 1: Hero ($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) @@ -149,10 +149,10 @@ 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] +Dealt to Hero [Js 3d Qc 9s 5h] bakter9: raises $0.10 to $0.20 TheLabman: folds -s0rrow: folds +Hero: folds rumble1111: folds Eisenherz73: folds cypis28: raises $0.10 to $0.30 @@ -178,7 +178,7 @@ 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 1: Hero 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 @@ -189,7 +189,7 @@ 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 1: Hero ($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) @@ -197,9 +197,9 @@ 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] +Dealt to Hero [2c 3c Ts Jc Kc] cypis28 leaves the table -s0rrow: folds +Hero: folds rumble1111: folds Eisenherz73: folds bakter9: calls $0.05 @@ -226,7 +226,7 @@ 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 1: Hero 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 @@ -236,67 +236,67 @@ Seat 6: TheLabman (big blind) showed [3h 6d 7h 5h 8d] and won ($0.58) with Lo: 8 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 1: Hero ($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 +Hero: posts big blind $0.10 tom1206: posts big blind $0.10 *** DEALING HANDS *** -Dealt to s0rrow [5d Js 7d Jd 4d] +Dealt to Hero [5d Js 7d Jd 4d] rumble1111: calls $0.10 Eisenherz73: calls $0.10 tom1206: checks bakter9: folds TheLabman: calls $0.05 -s0rrow: checks +Hero: checks *** FIRST DRAW *** TheLabman: discards 3 cards -s0rrow: discards 2 cards [Js Jd] -Dealt to s0rrow [5d 7d 4d] [6d 2s] +Hero: discards 2 cards [Js Jd] +Dealt to Hero [5d 7d 4d] [6d 2s] rumble1111: discards 2 cards Eisenherz73: discards 2 cards tom1206: discards 2 cards TheLabman: checks -s0rrow: checks +Hero: checks rumble1111: checks Eisenherz73: checks tom1206: checks *** SECOND DRAW *** TheLabman: discards 3 cards -s0rrow: stands pat on [5d 7d 4d 6d 2s] +Hero: stands pat on [5d 7d 4d 6d 2s] rumble1111: discards 2 cards Eisenherz73: discards 1 card tom1206: discards 2 cards TheLabman: checks -s0rrow: checks +Hero: checks rumble1111: checks Eisenherz73: checks tom1206: checks *** THIRD DRAW *** TheLabman: discards 2 cards -s0rrow: stands pat on [5d 7d 4d 6d 2s] +Hero: 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 +Hero: 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 +Uncalled bet ($0.20) returned to Hero X USN-USMC joins the table at seat #3 -s0rrow collected $0.48 from pot +Hero collected $0.48 from pot *** SUMMARY *** Total pot $0.50 | Rake $0.02 -Seat 1: s0rrow (big blind) collected ($0.48) +Seat 1: Hero (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 @@ -307,24 +307,24 @@ 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 1: Hero ($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 +Hero: 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] +Dealt to Hero [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 +Hero: folds tom1206 has returned rumble1111: checks *** FIRST DRAW *** @@ -357,7 +357,7 @@ 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 1: Hero (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) @@ -368,7 +368,7 @@ 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 1: Hero ($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) @@ -377,11 +377,11 @@ 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] +Dealt to Hero [9s Kh 2d Ks 4c] tom1206: raises $0.10 to $0.20 bakter9: folds TheLabman: folds -s0rrow: folds +Hero: folds rumble1111: calls $0.15 X USN-USMC: calls $0.10 *** FIRST DRAW *** @@ -414,7 +414,7 @@ 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 1: Hero (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] @@ -425,7 +425,7 @@ 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 1: Hero ($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) @@ -434,10 +434,10 @@ 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] +Dealt to Hero [8c 3s Tc Ac Qd] bakter9: calls $0.10 TheLabman: calls $0.10 -s0rrow: folds +Hero: folds rumble1111: calls $0.10 X USN-USMC: calls $0.05 tom1206: checks @@ -480,7 +480,7 @@ 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 1: Hero 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 @@ -491,7 +491,7 @@ 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 1: Hero ($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) @@ -500,53 +500,53 @@ 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] +Dealt to Hero [3d 7h 7c Jh 5s] TheLabman: folds -s0rrow: calls $0.10 +Hero: 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 +Hero: 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] +Hero: discards 2 cards [7c Jh] +Dealt to Hero [3d 7h 5s] [9h Ad] tom1206: checks bakter9: bets $0.10 -s0rrow: calls $0.10 +Hero: 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] +Hero: discards 1 card [9h] +Dealt to Hero [3d 7h 5s Ad] [4c] tom1206: bets $0.20 bakter9: raises $0.20 to $0.40 bakter9 said, "zzzzzzzzzzzzzzzzzzz" -s0rrow: calls $0.40 +Hero: 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] +Hero: stands pat on [3d 7h 5s Ad 4c] tom1206: checks bakter9: bets $0.20 -s0rrow: calls $0.20 +Hero: calls $0.20 tom1206: raises $0.20 to $0.40 bakter9: calls $0.20 -s0rrow: calls $0.20 +Hero: 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 +Hero: 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 1: Hero 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 @@ -557,7 +557,7 @@ 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 1: Hero ($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) @@ -565,38 +565,38 @@ 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] +Dealt to Hero [Ah 7s Ad 5d As] bakter9 said, "ty" -s0rrow: raises $0.10 to $0.20 +Hero: 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] +Hero: discards 2 cards [7s Ad] +Dealt to Hero [Ah 5d As] [5h 8s] TheLabman: checks Mamega joins the table at seat #2 -s0rrow: bets $0.10 +Hero: bets $0.10 TheLabman: calls $0.10 *** SECOND DRAW *** TheLabman: discards 1 card -s0rrow: stands pat on [Ah 5d As 5h 8s] +Hero: stands pat on [Ah 5d As 5h 8s] TheLabman: checks -s0rrow: bets $0.20 +Hero: bets $0.20 TheLabman: calls $0.20 *** THIRD DRAW *** TheLabman: discards 1 card -s0rrow: stands pat on [Ah 5d As 5h 8s] +Hero: stands pat on [Ah 5d As 5h 8s] TheLabman: checks -s0rrow: bets $0.20 +Hero: bets $0.20 TheLabman: folds -Uncalled bet ($0.20) returned to s0rrow -s0rrow collected $1 from pot +Uncalled bet ($0.20) returned to Hero +Hero collected $1 from pot *** SUMMARY *** Total pot $1.05 | Rake $0.05 -Seat 1: s0rrow collected ($1) +Seat 1: Hero 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 @@ -606,33 +606,33 @@ 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 1: Hero ($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 +Hero: posts big blind $0.10 Mamega: sits out *** DEALING HANDS *** -Dealt to s0rrow [3h 6d 9s 5s Kc] +Dealt to Hero [3h 6d 9s 5s Kc] X USN-USMC: calls $0.10 tom1206: calls $0.10 bakter9: folds TheLabman: calls $0.05 -s0rrow: checks +Hero: checks *** FIRST DRAW *** TheLabman: discards 1 card -s0rrow: discards 1 card [Kc] -Dealt to s0rrow [3h 6d 9s 5s] [Jh] +Hero: discards 1 card [Kc] +Dealt to Hero [3h 6d 9s 5s] [Jh] X USN-USMC: discards 2 cards tom1206: discards 2 cards TheLabman: checks -s0rrow: checks +Hero: checks X USN-USMC: bets $0.10 tom1206: raises $0.10 to $0.20 TheLabman: calls $0.20 -s0rrow: folds +Hero: folds X USN-USMC: calls $0.10 *** SECOND DRAW *** TheLabman: discards 1 card @@ -662,7 +662,7 @@ 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 1: Hero (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) @@ -672,22 +672,22 @@ 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 1: Hero ($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 +Hero: 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] +Dealt to Hero [5c Kc Js Ts Jc] X USN-USMC: calls $0.10 tom1206: calls $0.10 LumBita: checks TheLabman: folds -s0rrow: folds +Hero: folds Mamega: checks *** FIRST DRAW *** Mamega: stands pat @@ -722,7 +722,7 @@ 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 1: Hero (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] @@ -733,7 +733,7 @@ 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 1: Hero ($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) @@ -742,11 +742,11 @@ 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] +Dealt to Hero [2c Ah 3h 8h 5s] tom1206: calls $0.10 LumBita: calls $0.10 TheLabman: folds -s0rrow: raises $0.10 to $0.20 +Hero: raises $0.10 to $0.20 Mamega: folds X USN-USMC: folds tom1206: calls $0.10 @@ -754,37 +754,37 @@ 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] +Hero: discards 1 card [8h] +Dealt to Hero [2c Ah 3h 5s] [8d] tom1206: checks LumBita: checks -s0rrow: bets $0.10 +Hero: 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] +Hero: discards 1 card [8d] +Dealt to Hero [2c Ah 3h 5s] [2s] tom1206: checks LumBita: bets $0.20 -s0rrow: calls $0.20 +Hero: 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] +Hero: discards 1 card [2s] +Dealt to Hero [2c Ah 3h 5s] [Qd] tom1206: checks LumBita: bets $0.10 and is all-in -s0rrow: folds +Hero: 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 1: Hero (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 @@ -795,7 +795,7 @@ 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 1: Hero ($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) @@ -804,10 +804,10 @@ 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] +Dealt to Hero [Jd 5c 2s 5h Qs] LumBita: calls $0.10 TheLabman: folds -s0rrow: folds +Hero: folds Mamega: folds X USN-USMC: calls $0.05 tom1206: checks @@ -838,7 +838,7 @@ 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 1: Hero 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] @@ -849,7 +849,7 @@ 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 1: Hero ($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) @@ -858,37 +858,37 @@ 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] +Dealt to Hero [Qd 2d 5s Ah 8d] TheLabman: folds -s0rrow: calls $0.10 +Hero: 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] +Hero: discards 2 cards [Qd 8d] +Dealt to Hero [2d 5s Ah] [Jc 8h] LumBita: checks -s0rrow: checks +Hero: checks *** SECOND DRAW *** LumBita: discards 2 cards -s0rrow: discards 1 card [Jc] -Dealt to s0rrow [2d 5s Ah 8h] [9s] +Hero: discards 1 card [Jc] +Dealt to Hero [2d 5s Ah 8h] [9s] LumBita: bets $0.20 -s0rrow: calls $0.20 +Hero: calls $0.20 *** THIRD DRAW *** LumBita: stands pat -s0rrow: stands pat on [2d 5s Ah 8h 9s] +Hero: stands pat on [2d 5s Ah 8h 9s] LumBita: checks -s0rrow: checks +Hero: checks *** SHOW DOWN *** LumBita: shows [7h 2s 5c 8c 6c] (Lo: 8,7,6,5,2) -s0rrow: mucks hand +Hero: 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 1: Hero 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 @@ -899,7 +899,7 @@ 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 1: Hero ($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) @@ -908,8 +908,8 @@ 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 +Dealt to Hero [Jd As 8h 3s 7c] +Hero: calls $0.10 Mamega: folds X USN-USMC: folds tom1206: calls $0.10 @@ -918,49 +918,49 @@ 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] +Hero: discards 1 card [Jd] +Dealt to Hero [As 8h 3s 7c] [4h] tom1206: discards 2 cards LumBita: checks TheLabman: bets $0.10 -s0rrow: calls $0.10 +Hero: calls $0.10 tom1206: raises $0.10 to $0.20 LumBita: calls $0.20 TheLabman: calls $0.10 -s0rrow: calls $0.10 +Hero: 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] +Hero: discards 1 card [8h] +Dealt to Hero [As 3s 7c 4h] [8d] tom1206: stands pat LumBita: checks TheLabman: checks -s0rrow: checks +Hero: checks tom1206: bets $0.20 LumBita: calls $0.20 TheLabman: calls $0.20 -s0rrow: calls $0.20 +Hero: calls $0.20 *** THIRD DRAW *** LumBita: discards 1 card TheLabman: discards 1 card -s0rrow: stands pat on [As 3s 7c 4h 8d] +Hero: stands pat on [As 3s 7c 4h 8d] tom1206: stands pat LumBita: checks TheLabman: checks -s0rrow: checks +Hero: checks tom1206: bets $0.17 and is all-in LumBita: calls $0.17 TheLabman: folds -s0rrow: calls $0.17 +Hero: calls $0.17 *** SHOW DOWN *** tom1206: shows [5c 6c 4d 2h 8c] (Lo: 8,6,5,4,2) LumBita: mucks hand -s0rrow: mucks hand +Hero: 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 1: Hero 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 diff --git a/pyfpdb/regression-test-files/cash/Stars/Draw/5-Carddraw-NL-USD-0.25-0.50.Sample.txt b/pyfpdb/regression-test-files/cash/Stars/Draw/5-Carddraw-NL-USD-0.25-0.50.Sample.txt index 7f610238..b8aeaff0 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Draw/5-Carddraw-NL-USD-0.25-0.50.Sample.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Draw/5-Carddraw-NL-USD-0.25-0.50.Sample.txt @@ -4,25 +4,25 @@ Seat 1: Player1 ($27.95 in chips) Seat 2: Player2 ($7.50 in chips) Seat 3: Player3 ($12.15 in chips) Seat 4: Player4 ($9.25 in chips) -Seat 5: Player5 ($20 in chips) +Seat 5: Hero ($20 in chips) Player4: posts small blind $0.25 -Player5: posts big blind $0.50 +Hero: posts big blind $0.50 vega104: sits out *** DEALING HANDS *** -Dealt to Player5 [4d 7d 4c 5c Tc] +Dealt to Hero [4d 7d 4c 5c Tc] Player1: folds Player2: folds Player3: folds Player4: calls $0.25 -Player5: checks +Hero: checks Player4: discards 1 card -Player5: discards 1 card [4c] -Dealt to Player5 [4d 7d 5c Tc] [Ad] +Hero: discards 1 card [4c] +Dealt to Hero [4d 7d 5c Tc] [Ad] Player4: checks -Player5: checks +Hero: checks *** SHOW DOWN *** Player4: shows [6d Js As Jd 6c] (two pair, Jacks and Sixes) -Player5: mucks hand +Hero: mucks hand Player4 collected $0.95 from pot *** SUMMARY *** Total pot $1 | Rake $0.05 @@ -30,7 +30,7 @@ Seat 1: Player1 folded before the Draw (didn't bet) Seat 2: Player2 folded before the Draw (didn't bet) Seat 3: Player3 (button) folded before the Draw (didn't bet) Seat 4: Player4 (small blind) showed [6d Js As Jd 6c] and won ($0.95) with two pair, Jacks and Sixes -Seat 5: Player5 (big blind) mucked [4d 7d Ad 5c Tc] +Seat 5: Hero (big blind) mucked [4d 7d Ad 5c Tc] diff --git a/pyfpdb/regression-test-files/cash/Stars/Draw/5-Carddraw-PL-USD-0.50-1.00.201009.Sample.txt b/pyfpdb/regression-test-files/cash/Stars/Draw/5-Carddraw-PL-USD-0.50-1.00.201009.Sample.txt index a17be5cb..cdab0aa3 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Draw/5-Carddraw-PL-USD-0.50-1.00.201009.Sample.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Draw/5-Carddraw-PL-USD-0.50-1.00.201009.Sample.txt @@ -2,30 +2,30 @@ Table 'Table II' 6-max Seat #3 is the button Seat 1: Player1 ($106.80 in chips) Seat 3: Player2 ($34.95 in chips) -Seat 4: Player3 ($40 in chips) -Player3: posts small blind $0.50 +Seat 4: Hero ($40 in chips) +Hero: posts small blind $0.50 Player1: posts big blind $1 *** DEALING HANDS *** -Dealt to Player3 [6s Jh 7d 2h 3s] +Dealt to Hero [6s Jh 7d 2h 3s] Player2: raises $2 to $3 -Player3: calls $2.50 +Hero: calls $2.50 Player1: calls $2 -Player3: discards 1 card [Jh] -Dealt to Player3 [6s 7d 2h 3s] [Qs] +Hero: discards 1 card [Jh] +Dealt to Hero [6s 7d 2h 3s] [Qs] Player1: discards 1 card Player2: discards 3 cards -Player3: bets $5 +Hero: bets $5 Player1: folds Player2: calls $5 *** SHOW DOWN *** -Player3: shows [6s Qs 7d 2h 3s] (high card Queen) +Hero: shows [6s Qs 7d 2h 3s] (high card Queen) Player2: shows [4d Ad Ks Kd 3h] (a pair of Kings) Player2 collected $18.10 from pot *** SUMMARY *** Total pot $19 | Rake $0.90 Seat 1: Player1 (big blind) folded after the Draw Seat 3: Player2 (button) showed [4d Ad Ks Kd 3h] and won ($18.10) with a pair of Kings -Seat 4: Player3 (small blind) showed [6s Qs 7d 2h 3s] and lost with high card Queen +Seat 4: Hero (small blind) showed [6s Qs 7d 2h 3s] and lost with high card Queen 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 index 22fc786f..f43ad201 100644 --- 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 @@ -3,24 +3,24 @@ 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 4: Hero ($4 in chips) Seat 6: Postman15 ($1 in chips) dantho: posts small blind $0.05 -s0rrow: posts big blind $0.10 +Hero: posts big blind $0.10 *** DEALING HANDS *** -Dealt to s0rrow [Td Th 6h 4h 2s] +Dealt to Hero [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] +Hero: calls $0.10 +Hero: discards 1 card [2s] +Dealt to Hero [Td Th 6h 4h] [Ks] vatt110: discards 3 cards -s0rrow: checks +Hero: checks vatt110: checks *** SHOW DOWN *** -s0rrow: shows [Td Th 6h 4h Ks] (a pair of Tens) +Hero: 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 *** @@ -28,7 +28,7 @@ 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 4: Hero (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) @@ -38,16 +38,16 @@ 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 4: Hero ($3.80 in chips) Seat 6: Postman15 ($1 in chips) -s0rrow: posts small blind $0.05 +Hero: posts small blind $0.05 Postman15: posts big blind $0.10 *** DEALING HANDS *** -Dealt to s0rrow [4s 2d 8s 7c 5h] +Dealt to Hero [4s 2d 8s 7c 5h] francois 712: folds vatt110: folds dantho: raises $0.10 to $0.20 -s0rrow: folds +Hero: folds Postman15: folds Uncalled bet ($0.10) returned to dantho dantho collected $0.25 from pot @@ -57,7 +57,7 @@ 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 4: Hero (small blind) folded before the Draw Seat 6: Postman15 (big blind) folded before the Draw @@ -67,25 +67,25 @@ 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 4: Hero ($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] +Dealt to Hero [8h 7h Tc 4h Qd] vatt110: folds dantho: raises $0.10 to $0.20 -s0rrow: calls $0.20 +Hero: 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] +Hero: discards 2 cards [Tc Qd] +Dealt to Hero [8h 7h 4h] [Kd 5s] dantho: checks -s0rrow: bets $0.20 +Hero: bets $0.20 dantho: calls $0.20 *** SHOW DOWN *** -s0rrow: shows [8h 7h Kd 4h 5s] (high card King) +Hero: 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 *** @@ -93,7 +93,7 @@ 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 4: Hero (button) showed [8h 7h Kd 4h 5s] and lost with high card King Seat 6: Postman15 (small blind) folded before the Draw @@ -103,14 +103,14 @@ 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 4: Hero ($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] +Dealt to Hero [6d 8s 2c Td 5c] dantho: folds -s0rrow: folds +Hero: folds Postman15: folds francois 712: calls $0.05 vatt110: checks @@ -127,7 +127,7 @@ 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 4: Hero folded before the Draw (didn't bet) Seat 6: Postman15 (button) folded before the Draw (didn't bet) @@ -137,13 +137,13 @@ 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 4: Hero ($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 +Dealt to Hero [8d 8h 7h 2d 3h] +Hero: folds Postman15: folds francois 712: folds vatt110: folds @@ -155,7 +155,7 @@ 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 4: Hero folded before the Draw (didn't bet) Seat 6: Postman15 folded before the Draw (didn't bet) @@ -165,17 +165,17 @@ 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 4: Hero ($3.35 in chips) Seat 6: Postman15 ($0.85 in chips) dantho: posts small blind $0.05 -s0rrow: posts big blind $0.10 +Hero: posts big blind $0.10 *** DEALING HANDS *** -Dealt to s0rrow [Jc 9h Ks 7h 3h] +Dealt to Hero [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 +Hero: folds Postman15: calls $0.10 Postman15: discards 3 cards francois 712: discards 1 card @@ -192,7 +192,7 @@ 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 4: Hero (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 @@ -202,16 +202,16 @@ 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 4: Hero ($3.25 in chips) Seat 6: Postman15 ($1.55 in chips) -s0rrow: posts small blind $0.05 +Hero: posts small blind $0.05 Postman15: posts big blind $0.10 *** DEALING HANDS *** -Dealt to s0rrow [4c Qh 4d 2h Kd] +Dealt to Hero [4c Qh 4d 2h Kd] francois 712: raises $0.10 to $0.20 vatt110: folds dantho: folds -s0rrow: folds +Hero: folds Postman15: calls $0.10 Postman15: discards 1 card francois 712: discards 3 cards @@ -227,7 +227,7 @@ 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 4: Hero (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 @@ -237,36 +237,36 @@ 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 4: Hero ($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] +Dealt to Hero [8c 4h Ks Kd 7c] vatt110: folds dantho: folds -s0rrow: calls $0.10 +Hero: 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] +Hero: discards 3 cards [8c 4h 7c] +Dealt to Hero [Ks Kd] [Qd 5d 2h] Postman15: checks francois 712: checks -s0rrow: bets $0.20 +Hero: bets $0.20 Postman15: folds francois 712: folds -Uncalled bet ($0.20) returned to s0rrow -s0rrow collected $0.29 from pot +Uncalled bet ($0.20) returned to Hero +Hero 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 4: Hero (button) collected ($0.29) Seat 6: Postman15 (small blind) folded after the Draw @@ -276,26 +276,26 @@ 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 4: Hero ($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] +Dealt to Hero [9c 9d 4s 3d Jh] dantho: folds -s0rrow: raises $0.10 to $0.20 +Hero: 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 +Uncalled bet ($0.10) returned to Hero +Hero 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 4: Hero collected ($0.25) Seat 6: Postman15 (button) folded before the Draw (didn't bet) @@ -305,34 +305,34 @@ 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 4: Hero ($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 +Dealt to Hero [7s 6c Qh 6d 7h] +Hero: raises $0.10 to $0.20 Postman15: folds francois 712: folds vatt110: folds dantho: raises $0.10 to $0.30 -s0rrow: calls $0.10 +Hero: calls $0.10 dantho: stands pat -s0rrow: discards 1 card [Qh] -Dealt to s0rrow [7s 6c 6d 7h] [8c] +Hero: discards 1 card [Qh] +Dealt to Hero [7s 6c 6d 7h] [8c] dantho: bets $0.20 -s0rrow: calls $0.20 +Hero: calls $0.20 *** SHOW DOWN *** dantho: shows [3s Js 5s 6s 2s] (a flush, Jack high) -s0rrow: mucks hand +Hero: 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 4: Hero mucked [7s 6c 8c 6d 7h] Seat 6: Postman15 folded before the Draw (didn't bet) @@ -342,27 +342,27 @@ 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 4: Hero ($3.04 in chips) Seat 6: Postman15 ($1.86 in chips) dantho: posts small blind $0.05 -s0rrow: posts big blind $0.10 +Hero: posts big blind $0.10 Jana50: sits out *** DEALING HANDS *** -Dealt to s0rrow [3h 4s 7h 8c 6d] +Dealt to Hero [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] +Hero: checks +Hero: discards 1 card [3h] +Dealt to Hero [4s 7h 8c 6d] [6s] francois 712: discards 1 card vatt110: discards 3 cards -s0rrow: checks +Hero: checks francois 712: checks vatt110: checks *** SHOW DOWN *** -s0rrow: shows [6s 4s 7h 8c 6d] (a pair of Sixes) +Hero: 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 @@ -371,7 +371,7 @@ 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 4: Hero (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) @@ -381,32 +381,32 @@ 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 4: Hero ($2.94 in chips) Seat 5: Jana50 ($4 in chips) Seat 6: Postman15 ($1.86 in chips) -s0rrow: posts small blind $0.05 +Hero: posts small blind $0.05 Jana50: posts big blind $0.10 *** DEALING HANDS *** -Dealt to s0rrow [Ad 2c Ts 4s Tc] +Dealt to Hero [Ad 2c Ts 4s Tc] Postman15: folds francois 712: folds vatt110: folds dantho: folds -s0rrow: calls $0.05 +Hero: calls $0.05 Jana50: checks -s0rrow: discards 2 cards [2c 4s] -Dealt to s0rrow [Ad Ts Tc] [Ac Jc] +Hero: discards 2 cards [2c 4s] +Dealt to Hero [Ad Ts Tc] [Ac Jc] Jana50: discards 1 card -s0rrow: bets $0.20 +Hero: bets $0.20 Jana50: folds -Uncalled bet ($0.20) returned to s0rrow -s0rrow collected $0.19 from pot +Uncalled bet ($0.20) returned to Hero +Hero 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 4: Hero (small blind) collected ($0.19) Seat 5: Jana50 (big blind) folded after the Draw Seat 6: Postman15 folded before the Draw (didn't bet) @@ -417,30 +417,30 @@ 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 4: Hero ($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] +Dealt to Hero [6s Kc Qh Kh 5h] francois 712: calls $0.10 vatt110: folds dantho: folds -s0rrow: calls $0.10 +Hero: 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] +Hero: discards 3 cards [6s Qh 5h] +Dealt to Hero [Kc Kh] [Tc 7c 8h] Postman15: checks francois 712: checks -s0rrow: bets $0.20 +Hero: bets $0.20 Postman15: calls $0.20 francois 712: folds *** SHOW DOWN *** -s0rrow: shows [Tc Kc 7c Kh 8h] (a pair of Kings) +Hero: 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 *** @@ -448,7 +448,7 @@ 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 4: Hero (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 @@ -459,16 +459,16 @@ 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 4: Hero ($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] +Dealt to Hero [2c 4h 9c Qs 3d] vatt110: raises $0.10 to $0.20 dantho: folds -s0rrow: folds +Hero: folds Jana50: folds Postman15: folds francois 712: calls $0.10 @@ -485,7 +485,7 @@ 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 4: Hero 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 @@ -495,14 +495,14 @@ PokerStars Game #35839303429: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 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 4: Hero ($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 +Dealt to Hero [Qd Ah Js 3s 5c] +Hero: folds Jana50: calls $0.10 francois 712 leaves the table Postman15: calls $0.10 @@ -522,7 +522,7 @@ dantho collected $0.72 from pot 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 4: Hero folded before the Draw (didn't bet) Seat 5: Jana50 mucked [3d 2h As 4h 2s] Seat 6: Postman15 (button) folded after the Draw @@ -532,30 +532,30 @@ PokerStars Game #35839326969: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 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 4: Hero ($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 +Hero: posts big blind $0.10 *** DEALING HANDS *** -Dealt to s0rrow [8s Td 5h 5d Jd] +Dealt to Hero [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] +Hero: checks +Hero: discards 3 cards [8s Td Jd] +Dealt to Hero [5h 5d] [3c 5c 9c] vatt110: discards 3 cards -s0rrow: bets $0.20 +Hero: bets $0.20 vatt110: folds -Uncalled bet ($0.20) returned to s0rrow -s0rrow collected $0.24 from pot +Uncalled bet ($0.20) returned to Hero +Hero 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 4: Hero (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) @@ -565,17 +565,17 @@ PokerStars Game #35839348926: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 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 4: Hero ($2.87 in chips) Seat 5: Jana50 ($3.55 in chips) Seat 6: Postman15 ($2.13 in chips) -s0rrow: posts small blind $0.05 +Hero: posts small blind $0.05 Jana50: posts big blind $0.10 *** DEALING HANDS *** -Dealt to s0rrow [4s 6c 2d 7c 8h] +Dealt to Hero [4s 6c 2d 7c 8h] Postman15: folds vatt110: folds dantho: raises $0.10 to $0.20 -s0rrow: folds +Hero: folds Jana50: folds Uncalled bet ($0.10) returned to dantho dantho collected $0.25 from pot @@ -584,7 +584,7 @@ dantho: doesn't show hand 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 4: Hero (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) @@ -594,26 +594,26 @@ PokerStars Game #35839361919: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 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 4: Hero ($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] +Dealt to Hero [Kh 4d Th 9d 2c] vatt110: folds dantho: folds -s0rrow: raises $0.10 to $0.20 +Hero: 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 +Uncalled bet ($0.10) returned to Hero +Hero 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 4: Hero (button) collected ($0.25) Seat 5: Jana50 (small blind) folded before the Draw Seat 6: Postman15 (big blind) folded before the Draw @@ -624,16 +624,16 @@ 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 4: Hero ($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] +Dealt to Hero [Qh 7s 4c Jh Tc] vatt110: folds dantho: calls $0.10 -s0rrow: folds +Hero: folds Jana50: folds Postman15: calls $0.05 vatt110 leaves the table @@ -656,7 +656,7 @@ 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 4: Hero 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 @@ -666,34 +666,34 @@ PokerStars Game #35839401421: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 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 4: Hero ($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 +Dealt to Hero [8h Tc 9d 9s Td] +Hero: 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] +Hero: discards 1 card [8h] +Dealt to Hero [Tc 9d 9s Td] [8c] dantho: checks -s0rrow: bets $0.20 +Hero: bets $0.20 dantho: raises $0.20 to $0.40 -s0rrow: calls $0.20 +Hero: calls $0.20 *** SHOW DOWN *** dantho: shows [5s 9h 7c 6c 8s] (a straight, Five to Nine) -s0rrow: mucks hand +Hero: 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 4: Hero 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) @@ -703,34 +703,34 @@ PokerStars Game #35839419390: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 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 4: Hero ($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 +Hero: posts big blind $0.10 *** DEALING HANDS *** -Dealt to s0rrow [9c Tc 2c 7h Qs] +Dealt to Hero [9c Tc 2c 7h Qs] Jana50: folds Jana50 leaves the table Postman15: folds triggerbks: folds dantho: calls $0.05 -s0rrow: checks +Hero: 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] +Hero: discards 2 cards [2c 7h] +Dealt to Hero [9c Tc Qs] [Jd 3c] dantho: checks -s0rrow: checks +Hero: checks *** SHOW DOWN *** dantho: shows [8s 4s 2d Ah 8d] (a pair of Eights) -s0rrow: mucks hand +Hero: 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 4: Hero (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) @@ -740,32 +740,32 @@ PokerStars Game #35839446861: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 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 4: Hero ($2.27 in chips) Seat 6: Postman15 ($2.59 in chips) -s0rrow: posts small blind $0.05 +Hero: posts small blind $0.05 Postman15: posts big blind $0.10 trixr4dough: sits out *** DEALING HANDS *** -Dealt to s0rrow [Td 7c 3s Tc 4d] +Dealt to Hero [Td 7c 3s Tc 4d] triggerbks: folds dantho: folds gigoulu joins the table at seat #5 -s0rrow: calls $0.05 +Hero: calls $0.05 Postman15: checks -s0rrow: discards 3 cards [7c 3s 4d] -Dealt to s0rrow [Td Tc] [Js Qc 6c] +Hero: discards 3 cards [7c 3s 4d] +Dealt to Hero [Td Tc] [Js Qc 6c] Postman15: discards 3 cards -s0rrow: checks +Hero: checks Postman15: checks *** SHOW DOWN *** -s0rrow: shows [Td Js Qc Tc 6c] (a pair of Tens) +Hero: 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 4: Hero (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 @@ -774,34 +774,34 @@ PokerStars Game #35839465638: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 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 4: Hero ($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] +Dealt to Hero [Qh Js Tc Qd 9d] dantho: calls $0.10 -s0rrow: calls $0.10 +Hero: 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] +Hero: discards 3 cards [Js Tc 9d] +Dealt to Hero [Qh Qd] [Qc 5c 7d] triggerbks: checks dantho: checks -s0rrow: bets $0.20 +Hero: bets $0.20 triggerbks: folds dantho: folds -Uncalled bet ($0.20) returned to s0rrow -s0rrow collected $0.34 from pot +Uncalled bet ($0.20) returned to Hero +Hero 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 4: Hero (button) collected ($0.34) Seat 6: Postman15 (small blind) folded before the Draw @@ -811,16 +811,16 @@ 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 4: Hero ($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] +Dealt to Hero [Kc 3d 2c Ks 4d] dantho: folds -s0rrow: calls $0.10 +Hero: calls $0.10 gigoulu: checks Postman15 has timed out Postman15: folds @@ -828,17 +828,17 @@ Postman15 is sitting out triggerbks: calls $0.05 trixr4dough: raises $0.10 to $0.20 Postman15 has returned -s0rrow: calls $0.10 +Hero: 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] +Hero: discards 3 cards [3d 2c 4d] +Dealt to Hero [Kc Ks] [7c 4c 3c] gigoulu: discards 4 cards triggerbks: checks trixr4dough: bets $0.20 -s0rrow: folds +Hero: folds gigoulu: folds triggerbks: folds Uncalled bet ($0.20) returned to trixr4dough @@ -849,7 +849,7 @@ 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 4: Hero folded after the Draw Seat 5: gigoulu folded after the Draw Seat 6: Postman15 (button) folded before the Draw (didn't bet) @@ -860,14 +860,14 @@ 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 4: Hero ($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 +Dealt to Hero [7h Js 9c Qc Ah] +Hero: folds gigoulu: calls $0.10 Postman15: folds triggerbks: folds @@ -888,7 +888,7 @@ 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 4: Hero folded before the Draw (didn't bet) Seat 5: gigoulu collected ($0.29) Seat 6: Postman15 folded before the Draw (didn't bet) @@ -899,32 +899,32 @@ 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 4: Hero ($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 +Hero: posts big blind $0.10 *** DEALING HANDS *** -Dealt to s0rrow [Th Ah Kd Td Js] +Dealt to Hero [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 +Hero: checks dantho: discards 1 card -s0rrow: discards 2 cards [Kd Js] -Dealt to s0rrow [Th Ah Td] [2c 6c] +Hero: discards 2 cards [Kd Js] +Dealt to Hero [Th Ah Td] [2c 6c] gigoulu: discards 3 cards triggerbks: discards 3 cards trixr4dough: discards 3 cards dantho: checks -s0rrow: checks +Hero: checks gigoulu: bets $0.20 triggerbks: folds trixr4dough: folds dantho: folds -s0rrow: folds +Hero: folds Uncalled bet ($0.20) returned to gigoulu gigoulu collected $0.48 from pot *** SUMMARY *** @@ -932,7 +932,7 @@ 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 4: Hero (big blind) folded after the Draw Seat 5: gigoulu collected ($0.48) Seat 6: Postman15 folded before the Draw (didn't bet) @@ -943,19 +943,19 @@ 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 4: Hero ($2.11 in chips) Seat 5: gigoulu ($5.87 in chips) Seat 6: Postman15 ($2.63 in chips) -s0rrow: posts small blind $0.05 +Hero: posts small blind $0.05 gigoulu: posts big blind $0.10 *** DEALING HANDS *** -Dealt to s0rrow [8c 4h Td 9s 8s] +Dealt to Hero [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 +Hero: folds gigoulu: checks gigoulu: discards 1 card Postman15: discards 3 cards @@ -974,7 +974,7 @@ 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 4: Hero (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 @@ -984,16 +984,16 @@ PokerStars Game #35839634910: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 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 4: Hero ($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] +Dealt to Hero [8d 3d Kd 2h Js] trixr4dough: raises $0.10 to $0.20 dantho: folds -s0rrow: folds +Hero: folds gigoulu: calls $0.15 Postman15: folds gigoulu: discards 3 cards @@ -1009,7 +1009,7 @@ trixr4dough collected $0.86 from pot 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 4: Hero (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 @@ -1019,15 +1019,15 @@ PokerStars Game #35839661301: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 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 4: Hero ($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] +Dealt to Hero [Th 5d Js Jd Kd] dantho: calls $0.10 -s0rrow: raises $0.10 to $0.20 +Hero: raises $0.10 to $0.20 gigoulu: folds Postman15: calls $0.15 trixr4dough: calls $0.10 @@ -1035,23 +1035,23 @@ 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] +Hero: discards 2 cards [Th 5d] +Dealt to Hero [Js Jd Kd] [Ac 3h] Postman15: checks trixr4dough: checks dantho: checks -s0rrow: checks +Hero: checks *** SHOW DOWN *** Postman15: shows [8d 8s 7c 8h Ah] (three of a kind, Eights) trixr4dough: mucks hand dantho: mucks hand -s0rrow: mucks hand +Hero: 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 4: Hero 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 @@ -1060,35 +1060,35 @@ Seat 6: Postman15 (small blind) showed [8d 8s 7c 8h Ah] and won ($0.76) with thr 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 4: Hero ($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 +Hero: posts big blind $0.10 *** DEALING HANDS *** -Dealt to s0rrow [8s 2h Jh 4d Ac] +Dealt to Hero [8s 2h Jh 4d Ac] dantho leaves the table gigoulu: calls $0.10 Postman15: folds trixr4dough: calls $0.05 -s0rrow: checks +Hero: checks trixr4dough: discards 4 cards -s0rrow: discards 4 cards [8s 2h Jh 4d] -Dealt to s0rrow [Ac] [6c Qh 8h 9d] +Hero: discards 4 cards [8s 2h Jh 4d] +Dealt to Hero [Ac] [6c Qh 8h 9d] gigoulu: discards 1 card trixr4dough: checks -s0rrow: checks +Hero: checks gigoulu: bets $0.20 KAAGEE joins the table at seat #1 trixr4dough: folds -s0rrow: folds +Hero: 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 4: Hero (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/Draw/Badugi-USD-0.25-0.50-201009.txt b/pyfpdb/regression-test-files/cash/Stars/Draw/Badugi-USD-0.25-0.50-201009.txt index a00ce637..b0680721 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Draw/Badugi-USD-0.25-0.50-201009.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Draw/Badugi-USD-0.25-0.50-201009.txt @@ -1,17 +1,17 @@ PokerStars Game #49164202872: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:32:15 ET Table 'Benkoela V' 8-max Seat #8 is the button Seat 1: Lino19 ($6.80 in chips) -Seat 2: s0rrow ($5 in chips) +Seat 2: Hero ($5 in chips) Seat 3: jodarin ($0.70 in chips) Seat 4: Scorpio2000 ($3.40 in chips) Seat 5: buddyboy3399 ($8.25 in chips) Seat 6: JDANIELDC ($8.75 in chips) Seat 8: Kula91 ($3.80 in chips) Lino19: posts small blind $0.10 -s0rrow: posts big blind $0.25 +Hero: posts big blind $0.25 cuchiku: sits out *** DEALING HANDS *** -Dealt to s0rrow [As 3h 8h 6s] +Dealt to Hero [As 3h 8h 6s] jodarin: calls $0.25 Scorpio2000: calls $0.25 buddyboy3399: calls $0.25 @@ -19,16 +19,16 @@ JDANIELDC: folds Kula91: folds Kula91 leaves the table Lino19: calls $0.15 -s0rrow: checks +Hero: checks *** FIRST DRAW *** Lino19: discards 1 card -s0rrow: discards 2 cards [8h 6s] -Dealt to s0rrow [As 3h] [5h Ks] +Hero: discards 2 cards [8h 6s] +Dealt to Hero [As 3h] [5h Ks] jodarin: discards 2 cards Scorpio2000: discards 1 card buddyboy3399: discards 2 cards Lino19: bets $0.25 -s0rrow: folds +Hero: folds jodarin: calls $0.25 Scorpio2000: calls $0.25 buddyboy3399: raises $0.25 to $0.50 @@ -63,7 +63,7 @@ jodarin leaves the table *** SUMMARY *** Total pot $5.70 Main pot $2.90. Side pot $2.55. | Rake $0.25 Seat 1: Lino19 (small blind) folded after the 3rd Draw -Seat 2: s0rrow (big blind) folded after the 1st Draw +Seat 2: Hero (big blind) folded after the 1st Draw Seat 3: jodarin mucked [Ad Td Qc 2s] Seat 4: Scorpio2000 showed [8c 5d 7s Th] and lost with a Badugi: T,8,7,5 Seat 5: buddyboy3399 showed [8s 3d Ac 4h] and won ($5.45) with a Badugi: 8,4,3,A @@ -75,28 +75,28 @@ Seat 8: Kula91 (button) folded before the Draw (didn't bet) PokerStars Game #49164247462: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:33:25 ET Table 'Benkoela V' 8-max Seat #1 is the button Seat 1: Lino19 ($5.55 in chips) -Seat 2: s0rrow ($4.75 in chips) +Seat 2: Hero ($4.75 in chips) Seat 4: Scorpio2000 ($1.65 in chips) Seat 5: buddyboy3399 ($11.95 in chips) Seat 6: JDANIELDC ($8.75 in chips) -s0rrow: posts small blind $0.10 +Hero: posts small blind $0.10 Scorpio2000: posts big blind $0.25 cuchiku: sits out *** DEALING HANDS *** -Dealt to s0rrow [3h Tc Kc Ad] +Dealt to Hero [3h Tc Kc Ad] oooDestroyoo joins the table at seat #3 kallexx1 joins the table at seat #8 buddyboy3399: folds JDANIELDC: folds Lino19: folds -s0rrow: folds +Hero: folds Uncalled bet ($0.15) returned to Scorpio2000 Scorpio2000 collected $0.20 from pot Scorpio2000: doesn't show hand *** SUMMARY *** Total pot $0.20 | Rake $0 Seat 1: Lino19 (button) folded before the Draw (didn't bet) -Seat 2: s0rrow (small blind) folded before the Draw +Seat 2: Hero (small blind) folded before the Draw Seat 4: Scorpio2000 (big blind) collected ($0.20) Seat 5: buddyboy3399 folded before the Draw (didn't bet) Seat 6: JDANIELDC folded before the Draw (didn't bet) @@ -106,7 +106,7 @@ Seat 6: JDANIELDC folded before the Draw (didn't bet) PokerStars Game #49164255772: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:33:38 ET Table 'Benkoela V' 8-max Seat #2 is the button Seat 1: Lino19 ($5.55 in chips) -Seat 2: s0rrow ($4.65 in chips) +Seat 2: Hero ($4.65 in chips) Seat 4: Scorpio2000 ($1.75 in chips) Seat 5: buddyboy3399 ($11.95 in chips) Seat 6: JDANIELDC ($8.75 in chips) @@ -117,11 +117,11 @@ buddyboy3399: posts big blind $0.25 cuchiku: sits out kallexx1: posts big blind $0.25 *** DEALING HANDS *** -Dealt to s0rrow [4s 8s Kc 3h] +Dealt to Hero [4s 8s Kc 3h] JDANIELDC: calls $0.25 kallexx1: checks Lino19: folds -s0rrow: folds +Hero: folds Scorpio2000: calls $0.15 cuchiku leaves the table buddyboy3399: raises $0.25 to $0.50 @@ -152,7 +152,7 @@ kallexx1 collected $4.05 from pot *** SUMMARY *** Total pot $4.25 | Rake $0.20 Seat 1: Lino19 folded before the Draw (didn't bet) -Seat 2: s0rrow (button) folded before the Draw (didn't bet) +Seat 2: Hero (button) folded before the Draw (didn't bet) Seat 4: Scorpio2000 (small blind) folded before the Draw Seat 5: buddyboy3399 (big blind) showed [Tc 3s 2s 7h] and lost with a 3-card: T,7,2 Seat 6: JDANIELDC folded after the 1st Draw @@ -163,7 +163,7 @@ Seat 8: kallexx1 showed [4c 4d 5s 6h] and won ($4.05) with a 3-card: 6,5,4 PokerStars Game #49164287914: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:34:29 ET Table 'Benkoela V' 8-max Seat #4 is the button Seat 1: Lino19 ($5.55 in chips) -Seat 2: s0rrow ($4.65 in chips) +Seat 2: Hero ($4.65 in chips) Seat 3: oooDestroyoo ($20 in chips) Seat 4: Scorpio2000 ($1.50 in chips) Seat 5: buddyboy3399 ($10.20 in chips) @@ -173,11 +173,11 @@ buddyboy3399: posts small blind $0.10 JDANIELDC: posts big blind $0.25 oooDestroyoo: posts big blind $0.25 *** DEALING HANDS *** -Dealt to s0rrow [2h 5c Kd 7h] +Dealt to Hero [2h 5c Kd 7h] kallexx1: folds kallexx1 leaves the table Lino19: folds -s0rrow: folds +Hero: folds oooDestroyoo: checks Scorpio2000: calls $0.25 buddyboy3399: calls $0.15 @@ -214,7 +214,7 @@ JDANIELDC collected $5.95 from pot *** SUMMARY *** Total pot $6.25 | Rake $0.30 Seat 1: Lino19 folded before the Draw (didn't bet) -Seat 2: s0rrow folded before the Draw (didn't bet) +Seat 2: Hero folded before the Draw (didn't bet) Seat 3: oooDestroyoo mucked [9d 3d 2s 7c] Seat 4: Scorpio2000 (button) folded after the 1st Draw Seat 5: buddyboy3399 (small blind) mucked [Qh 3s 4c Td] diff --git a/pyfpdb/regression-test-files/cash/Stars/Draw/NLSDraw-USD-0.25-0.50-201009.Mucked.cards.txt b/pyfpdb/regression-test-files/cash/Stars/Draw/NLSDraw-USD-0.25-0.50-201009.Mucked.cards.txt index fef0e475..dfc5f2d0 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Draw/NLSDraw-USD-0.25-0.50-201009.Mucked.cards.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Draw/NLSDraw-USD-0.25-0.50-201009.Mucked.cards.txt @@ -5,27 +5,27 @@ Seat 2: barbus533 ($21.15 in chips) Seat 3: @sker86 ($82.60 in chips) Seat 4: nl pokerr ($49.15 in chips) Seat 5: heliodorus ($73.45 in chips) -Seat 6: s0rrow ($20 in chips) +Seat 6: Hero ($20 in chips) Seat 7: KBH7 ($14 in chips) heliodorus: posts small blind $0.25 -s0rrow: posts big blind $0.50 +Hero: posts big blind $0.50 *** DEALING HANDS *** -Dealt to s0rrow [2s 7d 4d 6d 8s] +Dealt to Hero [2s 7d 4d 6d 8s] KBH7: folds Philippus40: folds barbus533: folds @sker86: raises $1.50 to $2 nl pokerr: folds heliodorus: folds -s0rrow: calls $1.50 -s0rrow: stands pat on [2s 7d 4d 6d 8s] +Hero: calls $1.50 +Hero: stands pat on [2s 7d 4d 6d 8s] @sker86: discards 1 card -s0rrow: checks +Hero: checks @sker86: checks *** SHOW DOWN *** -s0rrow: shows [2s 7d 4d 6d 8s] (Lo: 8,7,6,4,2) +Hero: shows [2s 7d 4d 6d 8s] (Lo: 8,7,6,4,2) @sker86: mucks hand -s0rrow collected $4.05 from pot +Hero collected $4.05 from pot *** SUMMARY *** Total pot $4.25 | Rake $0.20 Seat 1: Philippus40 folded before Flop (didn't bet) @@ -33,7 +33,7 @@ Seat 2: barbus533 folded before Flop (didn't bet) Seat 3: @sker86 mucked [2h 8d 7h 7s 4s] Seat 4: nl pokerr (button) folded before Flop (didn't bet) Seat 5: heliodorus (small blind) folded before Flop -Seat 6: s0rrow (big blind) showed [2s 7d 4d 6d 8s] and won ($4.05) with Lo: 8,7,6,4,2 +Seat 6: Hero (big blind) showed [2s 7d 4d 6d 8s] and won ($4.05) with Lo: 8,7,6,4,2 Seat 7: KBH7 folded before Flop (didn't bet) diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10max-USD-0.05-0.10-PF_all_fold_to_BB.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10max-USD-0.05-0.10-PF_all_fold_to_BB.txt index d06de0e5..2ea279d7 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10max-USD-0.05-0.10-PF_all_fold_to_BB.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10max-USD-0.05-0.10-PF_all_fold_to_BB.txt @@ -1,6 +1,6 @@ PokerStars Game #46290540537: Hold'em Limit ($0.05/$0.10 USD) - 2010/07/03 14:46:30 CET [2010/07/03 8:46:30 ET] Table 'Elektra II' 10-max Seat #6 is the button -Seat 1: steffen780 ($2.77 in chips) +Seat 1: Hero ($2.77 in chips) Seat 2: ialexiv ($1.93 in chips) Seat 4: seregaserg ($2.80 in chips) Seat 5: GREEN373 ($2.38 in chips) @@ -13,9 +13,9 @@ Tora-Usagi: is sitting out bigsergv: posts big blind $0.05 Ted the Mad: sits out *** HOLE CARDS *** -Dealt to steffen780 [8h 3c] +Dealt to Hero [8h 3c] garikoitz_22: folds -steffen780: folds +Hero: folds ialexiv: folds seregaserg: folds GREEN373: folds @@ -26,7 +26,7 @@ bigsergv collected $0.04 from pot bigsergv: doesn't show hand *** SUMMARY *** Total pot $0.04 | Rake $0 -Seat 1: steffen780 folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: ialexiv folded before Flop (didn't bet) Seat 4: seregaserg folded before Flop (didn't bet) Seat 5: GREEN373 folded before Flop (didn't bet) diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10max-USD-1.00-2.00-No_max_seats.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10max-USD-1.00-2.00-No_max_seats.txt index 173da216..468b4798 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10max-USD-1.00-2.00-No_max_seats.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-10max-USD-1.00-2.00-No_max_seats.txt @@ -7,20 +7,20 @@ Seat 4: sososolid ($147.75 in chips) Seat 5: DRILHER ($48.25 in chips) Seat 6: Naughtychic ($60 in chips) Seat 7: Terps78 ($71.50 in chips) -Seat 8: ChazDazzle ($69.25 in chips) +Seat 8: Hero ($69.25 in chips) Seat 9: alekos ($55 in chips) Seat 10: BigNards84 ($64.25 in chips) Naughtychic: posts small blind $0.50 Terps78: posts big blind $1 *** HOLE CARDS *** -Dealt to ChazDazzle [8c Kd] -ChazDazzle: folds +Dealt to Hero [8c Kd] +Hero: folds alekos: folds BigNards84: raises $1 to $2 Frankson34: folds webb22: folds eric_mtx: folds -ChazDazzle leaves the table +Hero leaves the table sososolid: folds DRILHER: folds cdhender joins the table at seat #8 @@ -37,6 +37,6 @@ Seat 4: sososolid folded before Flop (didn't bet) Seat 5: DRILHER (button) folded before Flop (didn't bet) Seat 6: Naughtychic (small blind) folded before Flop Seat 7: Terps78 (big blind) folded before Flop -Seat 8: ChazDazzle folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 9: alekos folded before Flop (didn't bet) Seat 10: BigNards84 collected ($2.50) diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/LO8-6max-USD-0.05-0.10-20090315.Hand-cancelled.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/LO8-6max-USD-0.05-0.10-20090315.Hand-cancelled.txt index 9959180c..27b11bef 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/LO8-6max-USD-0.05-0.10-20090315.Hand-cancelled.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/LO8-6max-USD-0.05-0.10-20090315.Hand-cancelled.txt @@ -1,11 +1,11 @@ PokerStars Game #25979907808: Omaha Pot Limit ($0.05/$0.10 USD) - 2009/03/15 6:20:33 ET Table 'Waterman' 6-max Seat #1 is the button -Seat 1: s0rrow ($11.65 in chips) -s0rrow: posts small blind $0.05 +Seat 1: Hero ($11.65 in chips) +Hero: posts small blind $0.05 ritalinIV: is sitting out Hand cancelled *** SUMMARY *** -Seat 1: s0rrow (button) collected ($0) +Seat 1: Hero (button) collected ($0) diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt index a7be25b2..07e450b1 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt @@ -1,137 +1,137 @@ PokerStars Game #14732633821: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:39:16 WET [2010/05/23 17:39:16 ET] Table '99999999 II' 2-max Seat #1 is the button -Seat 1: Player0 ($20 in chips) +Seat 1: Hero ($20 in chips) Seat 2: Player1 ($50.50 in chips) -Player0: posts small blind $0.25 +Hero: posts small blind $0.25 Player1: posts big blind $0.50 *** HOLE CARDS *** -Dealt to Player0 [2h Th] -Player0: calls $0.25 +Dealt to Hero [2h Th] +Hero: calls $0.25 Player1: checks *** FLOP *** [4c 8c Ac] Player1: checks -Player0: checks +Hero: checks *** TURN *** [4c 8c Ac] [7s] Player1: checks -Player0: bets $1 +Hero: bets $1 Player1: folds -Uncalled bet ($1) returned to Player0 -Player0 collected $0.95 from pot -Player0: doesn't show hand +Uncalled bet ($1) returned to Hero +Hero collected $0.95 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $1 | Rake $0.05 Board [4c 8c Ac 7s] -Seat 1: Player0 (button) (small blind) collected ($0.95) +Seat 1: Hero (button) (small blind) collected ($0.95) Seat 2: Player1 (big blind) folded on the Turn PokerStars Game #28140199921: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:39:59 WET [2010/05/23 17:39:59 ET] Table '99999999 II' 2-max Seat #2 is the button -Seat 1: Player0 ($20.45 in chips) +Seat 1: Hero ($20.45 in chips) Seat 2: Player1 ($50 in chips) Player1: posts small blind $0.25 -Player0: posts big blind $0.50 +Hero: posts big blind $0.50 *** HOLE CARDS *** -Dealt to Player0 [7h Kh] +Dealt to Hero [7h Kh] Player1: raises $1 to $1.50 -Player0: folds +Hero: folds Uncalled bet ($1) returned to Player1 Player1 collected $1 from pot Player1: doesn't show hand *** SUMMARY *** Total pot $1 | Rake $0 -Seat 1: Player0 (big blind) folded before Flop +Seat 1: Hero (big blind) folded before Flop Seat 2: Player1 (button) (small blind) collected ($1) PokerStars Game #29402240709: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:40:22 WET [2010/05/23 17:40:22 ET] Table '99999999 II' 2-max Seat #1 is the button -Seat 1: Player0 ($19.95 in chips) +Seat 1: Hero ($19.95 in chips) Seat 2: Player1 ($50.50 in chips) -Player0: posts small blind $0.25 +Hero: posts small blind $0.25 Player1: posts big blind $0.50 *** HOLE CARDS *** -Dealt to Player0 [5c 8c] -Player0: folds +Dealt to Hero [5c 8c] +Hero: folds Uncalled bet ($0.25) returned to Player1 Player1 collected $0.50 from pot Player1: doesn't show hand *** SUMMARY *** Total pot $0.50 | Rake $0 -Seat 1: Player0 (button) (small blind) folded before Flop +Seat 1: Hero (button) (small blind) folded before Flop Seat 2: Player1 (big blind) collected ($0.50) PokerStars Game #31842149327: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:40:29 WET [2010/05/23 17:40:29 ET] Table '99999999 II' 2-max Seat #2 is the button -Seat 1: Player0 ($19.70 in chips) +Seat 1: Hero ($19.70 in chips) Seat 2: Player1 ($50.75 in chips) Player1: posts small blind $0.25 -Player0: posts big blind $0.50 +Hero: posts big blind $0.50 *** HOLE CARDS *** -Dealt to Player0 [Ks 9c] +Dealt to Hero [Ks 9c] Player1: raises $1 to $1.50 -Player0: calls $1 +Hero: calls $1 *** FLOP *** [3d As 4s] -Player0: checks +Hero: checks Player1: bets $2 -Player0: calls $2 +Hero: calls $2 *** TURN *** [3d As 4s] [Jd] -Player0: checks +Hero: checks Player1: checks *** RIVER *** [3d As 4s Jd] [3h] -Player0: checks +Hero: checks Player1: checks *** SHOW DOWN *** -Player0: shows [Ks 9c] (a pair of Threes) +Hero: shows [Ks 9c] (a pair of Threes) Player1: mucks hand -Player0 collected $6.70 from pot +Hero collected $6.70 from pot *** SUMMARY *** Total pot $7 | Rake $0.30 Board [3d As 4s Jd 3h] -Seat 1: Player0 (big blind) showed [Ks 9c] and won ($6.70) with a pair of Threes +Seat 1: Hero (big blind) showed [Ks 9c] and won ($6.70) with a pair of Threes Seat 2: Player1 (button) (small blind) mucked [6c 5s] PokerStars Game #10697227103: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:41:10 WET [2010/05/23 17:41:10 ET] Table '99999999 II' 2-max Seat #1 is the button -Seat 1: Player0 ($22.90 in chips) +Seat 1: Hero ($22.90 in chips) Seat 2: Player1 ($50 in chips) -Player0: posts small blind $0.25 +Hero: posts small blind $0.25 Player1: posts big blind $0.50 *** HOLE CARDS *** -Dealt to Player0 [Ts 3d] -Player0: folds +Dealt to Hero [Ts 3d] +Hero: folds Uncalled bet ($0.25) returned to Player1 Player1 collected $0.50 from pot Player1: doesn't show hand *** SUMMARY *** Total pot $0.50 | Rake $0 -Seat 1: Player0 (button) (small blind) folded before Flop +Seat 1: Hero (button) (small blind) folded before Flop Seat 2: Player1 (big blind) collected ($0.50) PokerStars Game #27159326072: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:41:17 WET [2010/05/23 17:41:17 ET] Table '99999999 II' 2-max Seat #2 is the button -Seat 1: Player0 ($22.65 in chips) +Seat 1: Hero ($22.65 in chips) Seat 2: Player1 ($50.25 in chips) Player1: posts small blind $0.25 -Player0: posts big blind $0.50 +Hero: posts big blind $0.50 *** HOLE CARDS *** -Dealt to Player0 [4h Ks] +Dealt to Hero [4h Ks] Player1: raises $1 to $1.50 -Player0: folds +Hero: folds Uncalled bet ($1) returned to Player1 Player1 collected $1 from pot Player1: doesn't show hand *** SUMMARY *** Total pot $1 | Rake $0 -Seat 1: Player0 (big blind) folded before Flop +Seat 1: Hero (big blind) folded before Flop Seat 2: Player1 (button) (small blind) collected ($1) 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 index ea47ebdf..fc5ff6b7 100644 --- 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 @@ -3,32 +3,32 @@ 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 4: Hero (€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 +Hero: posts big blind €0.10 rico4429: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [Js 3d] +Dealt to Hero [Js 3d] Poptart74: folds PokerMill100: calls €0.10 rico4429: checks HomerrrJay: folds joycer01: calls €0.05 -s0rrow: checks +Hero: checks *** FLOP *** [8h Jh Kh] joycer01: checks -s0rrow: checks +Hero: checks PokerMill100: checks rico4429: checks *** TURN *** [8h Jh Kh] [Ah] joycer01: checks -s0rrow: checks +Hero: checks PokerMill100: checks rico4429: bets €0.50 joycer01: folds -s0rrow: folds +Hero: folds PokerMill100: folds Uncalled bet (€0.50) returned to rico4429 rico4429 collected €0.38 from pot @@ -39,7 +39,7 @@ 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 4: Hero (big blind) folded on the Turn Seat 5: Poptart74 folded before Flop (didn't bet) Seat 6: PokerMill100 folded on the Turn @@ -50,29 +50,29 @@ 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 4: Hero (€1.90 in chips) Seat 5: Poptart74 (€2.34 in chips) Seat 6: PokerMill100 (€7.50 in chips) -s0rrow: posts small blind €0.05 +Hero: posts small blind €0.05 Poptart74: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [Th Td] +Dealt to Hero [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 +Hero: 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 +Uncalled bet (€1.60) returned to Hero +Hero 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 4: Hero (small blind) collected (€1) Seat 5: Poptart74 (big blind) folded before Flop Seat 6: PokerMill100 folded before Flop @@ -83,29 +83,29 @@ 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 4: Hero (€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] +Dealt to Hero [Qh Js] rico4429: calls €0.10 HomerrrJay: folds joycer01: folds -s0rrow: calls €0.10 +Hero: calls €0.10 Poptart74: calls €0.05 PokerMill100: checks *** FLOP *** [7s 3c 7h] Poptart74: checks PokerMill100: checks rico4429: checks -s0rrow: checks +Hero: checks *** TURN *** [7s 3c 7h] [2c] Poptart74: checks PokerMill100: checks rico4429: bets €0.40 -s0rrow: folds +Hero: folds Poptart74: folds PokerMill100: folds Uncalled bet (€0.40) returned to rico4429 @@ -117,7 +117,7 @@ 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 4: Hero (button) folded on the Turn Seat 5: Poptart74 (small blind) folded on the Turn Seat 6: PokerMill100 (big blind) folded on the Turn @@ -128,16 +128,16 @@ 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 4: Hero (€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] +Dealt to Hero [Kh 8h] HomerrrJay: folds joycer01: calls €0.10 -s0rrow: raises €0.30 to €0.40 +Hero: raises €0.30 to €0.40 Poptart74: calls €0.40 PokerMill100: folds rico4429: calls €0.30 @@ -145,7 +145,7 @@ joycer01: calls €0.30 *** FLOP *** [2d Ad 6d] rico4429: checks joycer01: bets €0.60 -s0rrow: folds +Hero: folds Poptart74: calls €0.60 rico4429: calls €0.60 *** TURN *** [2d Ad 6d] [9s] @@ -165,7 +165,7 @@ 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 4: Hero 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 @@ -176,15 +176,15 @@ 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 4: Hero (€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] +Dealt to Hero [5s 2h] joycer01: folds -s0rrow: folds +Hero: folds Poptart74: calls €0.10 PokerMill100: calls €0.10 rico4429: calls €0.05 @@ -215,7 +215,7 @@ 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 4: Hero 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 @@ -226,14 +226,14 @@ 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 4: Hero (€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 +Dealt to Hero [2c Jc] +Hero: folds Poptart74: calls €0.10 PokerMill100: raises €0.30 to €0.40 rico4429: folds @@ -255,7 +255,7 @@ 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 4: Hero folded before Flop (didn't bet) Seat 5: Poptart74 folded on the Turn Seat 6: PokerMill100 collected (€0.91) @@ -266,26 +266,26 @@ 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 4: Hero (€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 +Hero: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [3c 6s] +Dealt to Hero [3c 6s] Poptart74: folds PokerMill100: calls €0.10 rico4429: calls €0.10 HomerrrJay: folds joycer01: calls €0.05 -s0rrow: checks +Hero: checks *** FLOP *** [Kd Qh 6c] joycer01: checks -s0rrow: checks +Hero: checks PokerMill100: checks rico4429: bets €0.60 joycer01: folds -s0rrow: folds +Hero: folds PokerMill100: folds Uncalled bet (€0.60) returned to rico4429 rico4429 collected €0.38 from pot @@ -295,7 +295,7 @@ 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 4: Hero (big blind) folded on the Flop Seat 5: Poptart74 folded before Flop (didn't bet) Seat 6: PokerMill100 folded on the Flop @@ -306,18 +306,18 @@ 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 4: Hero (€2 in chips) Seat 5: Poptart74 (€2.56 in chips) Seat 6: PokerMill100 (€9.91 in chips) -s0rrow: posts small blind €0.05 +Hero: posts small blind €0.05 Poptart74: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [2d Ts] +Dealt to Hero [2d Ts] PokerMill100: folds rico4429: calls €0.10 HomerrrJay: folds joycer01: raises €0.30 to €0.40 -s0rrow: folds +Hero: folds Poptart74: folds rico4429: calls €0.30 *** FLOP *** [Jc 8d Ah] @@ -332,7 +332,7 @@ 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 4: Hero (small blind) folded before Flop Seat 5: Poptart74 (big blind) folded before Flop Seat 6: PokerMill100 folded before Flop (didn't bet) @@ -343,17 +343,17 @@ 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 4: Hero (€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] +Dealt to Hero [2c 8h] rico4429: raises €0.10 to €0.20 HomerrrJay: folds joycer01: folds -s0rrow: folds +Hero: folds Poptart74: calls €0.15 PokerMill100: calls €0.10 *** FLOP *** [7c 3c 2d] @@ -373,7 +373,7 @@ 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 4: Hero (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 @@ -383,15 +383,15 @@ PokerStars Game #35602140774: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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] +Dealt to Hero [7h Jh] joycer01: raises €0.30 to €0.40 -s0rrow: folds +Hero: folds rico4429 leaves the table Poptart74: folds PokerMill100: folds @@ -402,7 +402,7 @@ joycer01 collected €0.25 from pot 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 4: Hero folded before Flop (didn't bet) Seat 5: Poptart74 (button) folded before Flop (didn't bet) Seat 6: PokerMill100 (small blind) folded before Flop @@ -412,15 +412,15 @@ PokerStars Game #35602147145: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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] +Dealt to Hero [9h 2d] Oswood joins the table at seat #1 -s0rrow: folds +Hero: folds Poptart74: calls €0.10 PokerMill100: folds HomerrrJay: folds @@ -435,7 +435,7 @@ 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 4: Hero folded before Flop (didn't bet) Seat 5: Poptart74 folded on the Flop Seat 6: PokerMill100 (button) folded before Flop (didn't bet) @@ -446,20 +446,20 @@ 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 4: Hero (€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 +Hero: posts big blind €0.10 Oswood: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [2h 8d] +Dealt to Hero [2h 8d] Poptart74: calls €0.10 PokerMill100: raises €0.20 to €0.30 Oswood: calls €0.20 HomerrrJay: folds joycer01: folds -s0rrow: folds +Hero: folds Poptart74: calls €0.20 *** FLOP *** [4h Ac 7h] Poptart74: checks @@ -474,7 +474,7 @@ 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 4: Hero (big blind) folded before Flop Seat 5: Poptart74 folded on the Flop Seat 6: PokerMill100 collected (€1) @@ -485,34 +485,34 @@ 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 4: Hero (€1.85 in chips) Seat 5: Poptart74 (€3.80 in chips) Seat 6: PokerMill100 (€10.36 in chips) -s0rrow: posts small blind €0.05 +Hero: posts small blind €0.05 Poptart74: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [Qh 9d] +Dealt to Hero [Qh 9d] PokerMill100: folds Oswood: folds HomerrrJay: folds joycer01: folds -s0rrow: raises €0.20 to €0.30 +Hero: raises €0.20 to €0.30 Poptart74: calls €0.20 *** FLOP *** [6c Ks Td] -s0rrow: checks +Hero: checks Poptart74: checks *** TURN *** [6c Ks Td] [Qs] -s0rrow: bets €0.50 +Hero: bets €0.50 Poptart74: folds -Uncalled bet (€0.50) returned to s0rrow -s0rrow collected €0.57 from pot +Uncalled bet (€0.50) returned to Hero +Hero 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 4: Hero (small blind) collected (€0.57) Seat 5: Poptart74 (big blind) folded on the Turn Seat 6: PokerMill100 folded before Flop (didn't bet) @@ -523,17 +523,17 @@ 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 4: Hero (€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] +Dealt to Hero [Ad 4c] Oswood: folds HomerrrJay: raises €0.20 to €0.30 joycer01: calls €0.30 -s0rrow: folds +Hero: folds Poptart74: folds PokerMill100: folds *** FLOP *** [Tc 6d 4d] @@ -548,7 +548,7 @@ 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 4: Hero (button) folded before Flop (didn't bet) Seat 5: Poptart74 (small blind) folded before Flop Seat 6: PokerMill100 (big blind) folded before Flop @@ -559,16 +559,16 @@ 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 4: Hero (€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] +Dealt to Hero [Td 7d] HomerrrJay: folds joycer01: raises €0.20 to €0.30 -s0rrow: folds +Hero: folds Poptart74: folds PokerMill100: folds Oswood: folds @@ -579,7 +579,7 @@ 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 4: Hero folded before Flop (didn't bet) Seat 5: Poptart74 (button) folded before Flop (didn't bet) Seat 6: PokerMill100 (small blind) folded before Flop @@ -590,15 +590,15 @@ 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 4: Hero (€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] +Dealt to Hero [6c 4s] joycer01: raises €0.30 to €0.40 -s0rrow: folds +Hero: folds Poptart74: folds PokerMill100: calls €0.40 Oswood: calls €0.35 @@ -623,7 +623,7 @@ 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 4: Hero folded before Flop (didn't bet) Seat 5: Poptart74 folded before Flop (didn't bet) Seat 6: PokerMill100 (button) folded on the Flop @@ -633,19 +633,19 @@ PokerStars Game #35602222776: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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 +Hero: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [Ad 4h] +Dealt to Hero [Ad 4h] Poptart74: folds joycer01 has returned PokerMill100: folds Oswood: folds HomerrrJay: raises €0.20 to €0.30 -s0rrow: folds +Hero: folds Uncalled bet (€0.20) returned to HomerrrJay HomerrrJay collected €0.20 from pot joycer01 leaves the table @@ -654,7 +654,7 @@ HomerrrJay: doesn't show hand 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 4: Hero (big blind) folded before Flop Seat 5: Poptart74 folded before Flop (didn't bet) Seat 6: PokerMill100 folded before Flop (didn't bet) @@ -664,37 +664,37 @@ PokerStars Game #35602228303: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€2.02 in chips) Seat 5: Poptart74 (€3.45 in chips) Seat 6: PokerMill100 (€9.21 in chips) -s0rrow: posts small blind €0.05 +Hero: posts small blind €0.05 Poptart74: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [5s Ad] +Dealt to Hero [5s Ad] PokerMill100: folds Oswood: folds HomerrrJay: folds -s0rrow: raises €0.20 to €0.30 +Hero: raises €0.20 to €0.30 Poptart74: calls €0.20 *** FLOP *** [6c 3d 5h] -s0rrow: bets €0.40 +Hero: bets €0.40 Poptart74: calls €0.40 *** TURN *** [6c 3d 5h] [Qc] -s0rrow: checks +Hero: checks Poptart74: bets €0.60 -s0rrow: calls €0.60 +Hero: calls €0.60 *** RIVER *** [6c 3d 5h Qc] [6h] andi661 joins the table at seat #3 -s0rrow: bets €0.72 and is all-in +Hero: bets €0.72 and is all-in Poptart74: folds -Uncalled bet (€0.72) returned to s0rrow -s0rrow collected €2.48 from pot +Uncalled bet (€0.72) returned to Hero +Hero 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 4: Hero (small blind) collected (€2.48) Seat 5: Poptart74 (big blind) folded on the River Seat 6: PokerMill100 folded before Flop (didn't bet) @@ -705,18 +705,18 @@ 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 4: Hero (€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] +Dealt to Hero [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 +Hero: raises €2.70 to €3.20 and is all-in Poptart74: folds PokerMill100: folds HomerrrJay: raises €2.70 to €5.90 @@ -727,15 +727,15 @@ Uncalled bet (€2.70) returned to HomerrrJay *** 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 +Hero: shows [Tc Td] (a full house, Tens full of Sixes) +Hero 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 4: Hero (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 @@ -746,16 +746,16 @@ 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 4: Hero (€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] +Dealt to Hero [2d Kh] HomerrrJay: folds andi661: calls €0.10 -s0rrow: folds +Hero: folds Poptart74: folds PokerMill100: calls €0.05 Oswood: checks @@ -781,7 +781,7 @@ 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 4: Hero 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 @@ -792,15 +792,15 @@ 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 4: Hero (€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] +Dealt to Hero [Ac 9c] andi661: folds -s0rrow: raises €0.20 to €0.30 +Hero: raises €0.20 to €0.30 Poptart74 is disconnected Poptart74 is connected Poptart74: folds @@ -809,17 +809,17 @@ Oswood: calls €0.25 HomerrrJay: folds *** FLOP *** [Ah Qd 9s] Oswood: checks -s0rrow: bets €0.50 +Hero: bets €0.50 Oswood: folds -Uncalled bet (€0.50) returned to s0rrow -s0rrow collected €0.67 from pot +Uncalled bet (€0.50) returned to Hero +Hero 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 4: Hero collected (€0.67) Seat 5: Poptart74 folded before Flop (didn't bet) Seat 6: PokerMill100 (button) folded before Flop (didn't bet) @@ -830,14 +830,14 @@ 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 4: Hero (€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 +Dealt to Hero [4s 3d] +Hero: folds Poptart74: folds PokerMill100: raises €0.20 to €0.30 Oswood: folds @@ -850,7 +850,7 @@ 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 4: Hero folded before Flop (didn't bet) Seat 5: Poptart74 folded before Flop (didn't bet) Seat 6: PokerMill100 collected (€0.25) @@ -861,31 +861,31 @@ 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 4: Hero (€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 +Hero: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [As 8h] +Dealt to Hero [As 8h] Poptart74: folds PokerMill100: folds Oswood: folds HomerrrJay: folds andi661: calls €0.05 -s0rrow: checks +Hero: checks *** FLOP *** [5s Jd 2c] andi661: checks -s0rrow: checks +Hero: checks *** TURN *** [5s Jd 2c] [8s] andi661: bets €0.30 -s0rrow: calls €0.30 +Hero: calls €0.30 *** RIVER *** [5s Jd 2c 8s] [7s] andi661: bets €0.50 -s0rrow: calls €0.50 +Hero: calls €0.50 *** SHOW DOWN *** andi661: shows [6s 9d] (a straight, Five to Nine) -s0rrow: mucks hand +Hero: mucks hand andi661 collected €1.72 from pot *** SUMMARY *** Total pot €1.80 | Rake €0.08 @@ -893,7 +893,7 @@ 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 4: Hero (big blind) mucked [As 8h] Seat 5: Poptart74 folded before Flop (didn't bet) Seat 6: PokerMill100 folded before Flop (didn't bet) @@ -904,28 +904,28 @@ 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 4: Hero (€6.17 in chips) Seat 5: Poptart74 (€2.10 in chips) Seat 6: PokerMill100 (€9.26 in chips) -s0rrow: posts small blind €0.05 +Hero: posts small blind €0.05 Poptart74: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [7s 6d] +Dealt to Hero [7s 6d] PokerMill100: folds Oswood: folds HomerrrJay: folds andi661: calls €0.10 -s0rrow: calls €0.05 +Hero: calls €0.05 Poptart74: checks *** FLOP *** [3h Ad Js] -s0rrow: checks +Hero: checks Poptart74: checks andi661: checks *** TURN *** [3h Ad Js] [Jc] -s0rrow: checks +Hero: checks Poptart74: checks andi661: bets €0.30 -s0rrow: folds +Hero: folds Poptart74: folds Uncalled bet (€0.30) returned to andi661 andi661 collected €0.29 from pot @@ -935,7 +935,7 @@ 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 4: Hero (small blind) folded on the Turn Seat 5: Poptart74 (big blind) folded on the Turn Seat 6: PokerMill100 folded before Flop (didn't bet) @@ -946,17 +946,17 @@ 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 4: Hero (€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] +Dealt to Hero [Kd 7h] Oswood: folds HomerrrJay: raises €0.20 to €0.30 andi661: folds -s0rrow: folds +Hero: folds Poptart74: folds PokerMill100: calls €0.20 *** FLOP *** [7c Qc 6c] @@ -980,7 +980,7 @@ 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 4: Hero (button) folded before Flop (didn't bet) Seat 5: Poptart74 (small blind) folded before Flop Seat 6: PokerMill100 (big blind) folded on the River @@ -991,16 +991,16 @@ 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 4: Hero (€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] +Dealt to Hero [6d Ac] HomerrrJay: folds andi661: calls €0.10 -s0rrow: folds +Hero: folds Poptart74: folds PokerMill100: calls €0.05 Oswood: checks @@ -1020,7 +1020,7 @@ 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 4: Hero folded before Flop (didn't bet) Seat 5: Poptart74 (button) folded before Flop (didn't bet) Seat 6: PokerMill100 (small blind) collected (€0.48) @@ -1031,37 +1031,37 @@ 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 4: Hero (€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] +Dealt to Hero [Qs Qc] andi661: folds -s0rrow: raises €0.20 to €0.30 +Hero: 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 +Hero: raises €1.60 to €2.40 PokerMill100: calls €1.60 *** FLOP *** [5c 8c 7c] -s0rrow: bets €3.67 and is all-in +Hero: 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) +Hero: shows [Qs Qc] (a pair of Queens) PokerMill100: shows [Qd Ac] (high card Ace) -s0rrow collected €11.69 from pot +Hero 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 4: Hero 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 @@ -1072,24 +1072,24 @@ 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 4: Hero (€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 +Dealt to Hero [As 8s] +Hero: 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 +Hero: calls €0.30 *** FLOP *** [2h 7h Qc] -s0rrow: checks +Hero: checks PokerMill100: bets €0.50 -s0rrow: folds +Hero: folds Uncalled bet (€0.50) returned to PokerMill100 PokerMill100 collected €1.29 from pot PokerMill100: doesn't show hand @@ -1099,7 +1099,7 @@ 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 4: Hero folded on the Flop Seat 5: Poptart74 folded before Flop (didn't bet) Seat 6: PokerMill100 collected (€1.29) @@ -1110,13 +1110,13 @@ 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 4: Hero (€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 +Hero: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [9h 9d] +Dealt to Hero [9h 9d] Poptart74: folds PokerMill100: folds Oswood has timed out @@ -1125,21 +1125,21 @@ Oswood is sitting out Oswood has returned HomerrrJay: raises €0.20 to €0.30 andi661: folds -s0rrow: calls €0.20 +Hero: calls €0.20 *** FLOP *** [4h 9s Qc] -s0rrow: checks +Hero: checks HomerrrJay: bets €0.40 -s0rrow: raises €1 to €1.40 +Hero: raises €1 to €1.40 HomerrrJay: folds -Uncalled bet (€1) returned to s0rrow -s0rrow collected €1.38 from pot +Uncalled bet (€1) returned to Hero +Hero 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 4: Hero (big blind) collected (€1.38) Seat 5: Poptart74 folded before Flop (didn't bet) Seat 6: PokerMill100 folded before Flop (didn't bet) @@ -1150,20 +1150,20 @@ 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 4: Hero (€11.77 in chips) Seat 5: Poptart74 (€1.95 in chips) Seat 6: PokerMill100 (€3.16 in chips) -s0rrow: posts small blind €0.05 +Hero: posts small blind €0.05 Poptart74: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [Qd 3s] +Dealt to Hero [Qd 3s] PokerMill100: folds Oswood has timed out Oswood: folds Oswood is sitting out HomerrrJay: folds andi661: calls €0.10 -s0rrow: folds +Hero: folds Poptart74: checks *** FLOP *** [7d Kd 6h] Poptart74: checks @@ -1177,7 +1177,7 @@ 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 4: Hero (small blind) folded before Flop Seat 5: Poptart74 (big blind) folded on the Flop Seat 6: PokerMill100 folded before Flop (didn't bet) @@ -1187,16 +1187,16 @@ PokerStars Game #35602435059: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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] +Dealt to Hero [9h Tc] HomerrrJay: raises €0.30 to €0.40 andi661: calls €0.40 -s0rrow: folds +Hero: folds Poptart74: folds PokerMill100: folds *** FLOP *** [Kc Kh As] @@ -1213,7 +1213,7 @@ 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 4: Hero (button) folded before Flop (didn't bet) Seat 5: Poptart74 (small blind) folded before Flop Seat 6: PokerMill100 (big blind) folded before Flop @@ -1223,15 +1223,15 @@ PokerStars Game #35602449190: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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] +Dealt to Hero [4d Ac] andi661: raises €0.10 to €0.20 -s0rrow: folds +Hero: folds Poptart74: folds PokerMill100: folds HomerrrJay: folds @@ -1241,7 +1241,7 @@ andi661 collected €0.25 from pot 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 4: Hero folded before Flop (didn't bet) Seat 5: Poptart74 (button) folded before Flop (didn't bet) Seat 6: PokerMill100 (small blind) folded before Flop @@ -1251,14 +1251,14 @@ PokerStars Game #35602454945: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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 +Dealt to Hero [Qh 3c] +Hero: folds Poptart74: calls €0.10 PokerMill100: calls €0.10 HomerrrJay: calls €0.05 @@ -1283,7 +1283,7 @@ 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 4: Hero folded before Flop (didn't bet) Seat 5: Poptart74 folded on the Flop Seat 6: PokerMill100 (button) folded on the Flop @@ -1293,39 +1293,39 @@ PokerStars Game #35602472519: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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 +Hero: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [Ah Th] +Dealt to Hero [Ah Th] Poptart74: calls €0.10 PokerMill100: folds HomerrrJay: folds andi661: calls €0.05 -s0rrow: checks +Hero: checks *** FLOP *** [As Js 8s] andi661: checks -s0rrow: checks +Hero: checks Poptart74: checks *** TURN *** [As Js 8s] [8c] andi661: bets €0.20 -s0rrow: calls €0.20 +Hero: calls €0.20 Poptart74: folds *** RIVER *** [As Js 8s 8c] [3c] andi661: bets €0.50 -s0rrow: calls €0.50 +Hero: 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 +Hero: shows [Ah Th] (two pair, Aces and Eights) +Hero 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 4: Hero (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) @@ -1335,23 +1335,23 @@ PokerStars Game #35602487338: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€12.54 in chips) Seat 5: Poptart74 (€1.60 in chips) Seat 6: PokerMill100 (€2.91 in chips) -s0rrow: posts small blind €0.05 +Hero: posts small blind €0.05 Poptart74: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [Qd Td] +Dealt to Hero [Qd Td] PokerMill100: folds HomerrrJay: folds andi661: calls €0.10 -s0rrow: calls €0.05 +Hero: calls €0.05 Poptart74: checks *** FLOP *** [4s 8d 6h] -s0rrow: checks +Hero: checks Poptart74: checks andi661: bets €0.20 -s0rrow: folds +Hero: folds Poptart74: calls €0.20 *** TURN *** [4s 8d 6h] [Kc] Poptart74: checks @@ -1370,7 +1370,7 @@ 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 4: Hero (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) @@ -1380,16 +1380,16 @@ PokerStars Game #35602509002: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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] +Dealt to Hero [Kd 5d] HomerrrJay: folds andi661: calls €0.10 -s0rrow: folds +Hero: folds Poptart74: calls €0.05 PokerMill100: checks *** FLOP *** [Ts 8c Qc] @@ -1412,7 +1412,7 @@ 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 4: Hero (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 @@ -1422,15 +1422,15 @@ PokerStars Game #35602528089: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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] +Dealt to Hero [7d Th] andi661: folds -s0rrow: folds +Hero: folds Poptart74: folds PokerMill100: folds Uncalled bet (€0.05) returned to HomerrrJay @@ -1440,7 +1440,7 @@ HomerrrJay: doesn't show hand 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 4: Hero folded before Flop (didn't bet) Seat 5: Poptart74 (button) folded before Flop (didn't bet) Seat 6: PokerMill100 (small blind) folded before Flop @@ -1450,14 +1450,14 @@ PokerStars Game #35602532574: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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 +Dealt to Hero [6d Qh] +Hero: folds Poptart74: folds PokerMill100: folds HomerrrJay: folds @@ -1467,7 +1467,7 @@ andi661 collected €0.10 from pot 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 4: Hero 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) @@ -1477,18 +1477,18 @@ PokerStars Game #35602538264: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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 +Hero: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [4h Jh] +Dealt to Hero [4h Jh] Poptart74: folds PokerMill100: raises €0.20 to €0.30 HomerrrJay: folds andi661: folds -s0rrow: folds +Hero: folds Uncalled bet (€0.20) returned to PokerMill100 PokerMill100 collected €0.25 from pot PokerMill100: doesn't show hand @@ -1496,7 +1496,7 @@ PokerMill100: doesn't show hand 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 4: Hero (big blind) folded before Flop Seat 5: Poptart74 folded before Flop (didn't bet) Seat 6: PokerMill100 collected (€0.25) @@ -1506,17 +1506,17 @@ PokerStars Game #35602543794: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€12.34 in chips) Seat 5: Poptart74 (€0.99 in chips) Seat 6: PokerMill100 (€2.91 in chips) -s0rrow: posts small blind €0.05 +Hero: posts small blind €0.05 Poptart74: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [Qs 4c] +Dealt to Hero [Qs 4c] PokerMill100: raises €0.30 to €0.40 HomerrrJay: folds andi661: folds -s0rrow: folds +Hero: folds Poptart74: folds Uncalled bet (€0.30) returned to PokerMill100 PokerMill100 collected €0.25 from pot @@ -1524,7 +1524,7 @@ PokerMill100 collected €0.25 from pot 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 4: Hero (small blind) folded before Flop Seat 5: Poptart74 (big blind) folded before Flop Seat 6: PokerMill100 collected (€0.25) @@ -1534,16 +1534,16 @@ PokerStars Game #35602548453: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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] +Dealt to Hero [Jh 6c] HomerrrJay: folds andi661: calls €0.10 -s0rrow: folds +Hero: folds Poptart74: calls €0.05 PokerMill100: checks *** FLOP *** [Td 9s Kc] @@ -1569,7 +1569,7 @@ 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 4: Hero (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 @@ -1579,15 +1579,15 @@ PokerStars Game #35602569251: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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] +Dealt to Hero [Jh 5s] andi661: folds -s0rrow: folds +Hero: folds Poptart74: calls €0.10 PokerMill100: raises €0.30 to €0.40 HomerrrJay: folds @@ -1598,7 +1598,7 @@ PokerMill100 collected €0.30 from pot 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 4: Hero folded before Flop (didn't bet) Seat 5: Poptart74 (button) folded before Flop Seat 6: PokerMill100 (small blind) collected (€0.30) @@ -1608,14 +1608,14 @@ PokerStars Game #35602575727: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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 +Dealt to Hero [4d 2c] +Hero: folds Poptart74: raises €0.20 to €0.30 PokerMill100: calls €0.30 HomerrrJay: folds @@ -1641,7 +1641,7 @@ 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 4: Hero folded before Flop (didn't bet) Seat 5: Poptart74 folded on the River Seat 6: PokerMill100 (button) collected (€1.48) @@ -1651,23 +1651,23 @@ PokerStars Game #35602599492: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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 +Hero: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [5d 6d] +Dealt to Hero [5d 6d] Poptart74: raises €0.55 to €0.65 and is all-in PokerMill100: folds HomerrrJay: folds andi661: folds -s0rrow: calls €0.55 +Hero: 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) +Hero: shows [5d 6d] (a pair of Jacks) Poptart74: shows [7h Kh] (two pair, Jacks and Sevens) Poptart74 collected €1.29 from pot *** SUMMARY *** @@ -1675,7 +1675,7 @@ 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 4: Hero (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) @@ -1685,17 +1685,17 @@ PokerStars Game #35602610521: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€11.64 in chips) Seat 5: Poptart74 (€1.29 in chips) Seat 6: PokerMill100 (€4.04 in chips) -s0rrow: posts small blind €0.05 +Hero: posts small blind €0.05 Poptart74: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [5h Jc] +Dealt to Hero [5h Jc] PokerMill100: folds HomerrrJay: folds andi661: folds -s0rrow: folds +Hero: folds Uncalled bet (€0.05) returned to Poptart74 Poptart74 collected €0.10 from pot Poptart74: doesn't show hand @@ -1703,7 +1703,7 @@ Poptart74: doesn't show hand 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 4: Hero (small blind) folded before Flop Seat 5: Poptart74 (big blind) collected (€0.10) Seat 6: PokerMill100 folded before Flop (didn't bet) @@ -1713,16 +1713,16 @@ PokerStars Game #35602613846: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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] +Dealt to Hero [Td 5c] HomerrrJay: folds andi661: folds -s0rrow: folds +Hero: folds Poptart74: calls €0.05 PokerMill100: raises €0.20 to €0.30 Poptart74: folds @@ -1732,7 +1732,7 @@ PokerMill100 collected €0.20 from pot 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 4: Hero (button) folded before Flop (didn't bet) Seat 5: Poptart74 (small blind) folded before Flop Seat 6: PokerMill100 (big blind) collected (€0.20) @@ -1742,15 +1742,15 @@ PokerStars Game #35602622054: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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] +Dealt to Hero [3s Qd] andi661: raises €0.20 to €0.30 -s0rrow: folds +Hero: folds Poptart74: calls €0.30 PokerMill100: calls €0.25 HomerrrJay: calls €0.20 @@ -1778,7 +1778,7 @@ 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 4: Hero folded before Flop (didn't bet) Seat 5: Poptart74 (button) mucked [Tc Kd] Seat 6: PokerMill100 (small blind) folded on the Flop @@ -1788,14 +1788,14 @@ PokerStars Game #35602639577: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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 +Dealt to Hero [3d 7d] +Hero: folds PokerMill100: folds Poptart74 leaves the table HomerrrJay: raises €0.20 to €0.30 @@ -1814,7 +1814,7 @@ 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 4: Hero folded before Flop (didn't bet) Seat 6: PokerMill100 (button) folded before Flop (didn't bet) @@ -1823,22 +1823,22 @@ PokerStars Game #35602648744: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€11.59 in chips) Seat 6: PokerMill100 (€3.84 in chips) andi661: posts small blind €0.05 -s0rrow: posts big blind €0.10 +Hero: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [6c Qc] +Dealt to Hero [6c Qc] PokerMill100: folds HomerrrJay: folds andi661: calls €0.05 -s0rrow: checks +Hero: checks *** FLOP *** [5d Ac 3d] andi661: checks -s0rrow: checks +Hero: checks *** TURN *** [5d Ac 3d] [Td] andi661: bets €0.20 -s0rrow: folds +Hero: folds Uncalled bet (€0.20) returned to andi661 andi661 collected €0.19 from pot *** SUMMARY *** @@ -1846,7 +1846,7 @@ 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 4: Hero (big blind) folded on the Turn Seat 6: PokerMill100 folded before Flop (didn't bet) @@ -1855,15 +1855,15 @@ PokerStars Game #35602658421: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€11.49 in chips) Seat 6: PokerMill100 (€3.84 in chips) -s0rrow: posts small blind €0.05 +Hero: posts small blind €0.05 PokerMill100: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [9s 2s] +Dealt to Hero [9s 2s] HomerrrJay: folds andi661: calls €0.10 -s0rrow: folds +Hero: folds PokerMill100: checks *** FLOP *** [Jh Qs Js] PokerMill100: checks @@ -1876,7 +1876,7 @@ 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 4: Hero (small blind) folded before Flop Seat 6: PokerMill100 (big blind) folded on the Flop @@ -1885,14 +1885,14 @@ PokerStars Game #35602664558: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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] +Dealt to Hero [9h 4h] andi661: folds -s0rrow: folds +Hero: folds PokerMill100: calls €0.05 HomerrrJay: checks *** FLOP *** [6h Qd 9s] @@ -1914,7 +1914,7 @@ 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 4: Hero (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 @@ -1923,28 +1923,28 @@ PokerStars Game #35602675399: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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 +Dealt to Hero [Ts Th] +Hero: 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 +Hero: calls €0.97 HomerrrJay: calls €0.17 *** FLOP *** [2h 8c Qd] HomerrrJay: checks -s0rrow: checks +Hero: checks *** TURN *** [2h 8c Qd] [8h] HomerrrJay: checks -s0rrow: checks +Hero: checks *** RIVER *** [2h 8c Qd 8h] [Ah] HomerrrJay: bets €2 -s0rrow: folds +Hero: folds Uncalled bet (€2) returned to HomerrrJay *** SHOW DOWN *** HomerrrJay: shows [Kd As] (two pair, Aces and Eights) @@ -1956,7 +1956,7 @@ 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 4: Hero folded on the River Seat 6: PokerMill100 (button) folded before Flop (didn't bet) @@ -1964,25 +1964,25 @@ 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 4: Hero (€10.17 in chips) Seat 5: Frenchmeistr (€2 in chips) Seat 6: PokerMill100 (€4.02 in chips) -s0rrow: posts small blind €0.05 +Hero: posts small blind €0.05 Frenchmeistr: posts big blind €0.10 terpoox: sits out *** HOLE CARDS *** -Dealt to s0rrow [8h Qs] +Dealt to Hero [8h Qs] PokerMill100: folds andi661 leaves the table HomerrrJay: folds -s0rrow: folds +Hero: 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 4: Hero (small blind) folded before Flop Seat 5: Frenchmeistr (big blind) collected (€0.10) Seat 6: PokerMill100 folded before Flop (didn't bet) @@ -1991,16 +1991,16 @@ 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 4: Hero (€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] +Dealt to Hero [8s 4h] HomerrrJay: folds -s0rrow: folds +Hero: folds Frenchmeistr: calls €0.05 PokerMill100: raises €0.30 to €0.40 Frenchmeistr: calls €0.30 @@ -2016,7 +2016,7 @@ PokerMill100: doesn't show hand 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 4: Hero (button) folded before Flop (didn't bet) Seat 5: Frenchmeistr (small blind) folded on the Flop Seat 6: PokerMill100 (big blind) collected (€0.76) @@ -2026,20 +2026,20 @@ PokerStars Game #35602703765: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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] +Dealt to Hero [8s Jc] HomerrrJay: folds -s0rrow: raises €0.20 to €0.30 +Hero: raises €0.20 to €0.30 Frenchmeistr: raises €1.35 to €1.65 and is all-in PokerMill100: folds terpoox: folds -s0rrow: folds +Hero: folds Uncalled bet (€1.35) returned to Frenchmeistr Frenchmeistr collected €0.75 from pot Frenchmeistr: doesn't show hand @@ -2047,7 +2047,7 @@ Frenchmeistr: doesn't show hand 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 4: Hero folded before Flop Seat 5: Frenchmeistr (button) collected (€0.75) Seat 6: PokerMill100 (small blind) folded before Flop @@ -2057,22 +2057,22 @@ PokerStars Game #35602710852: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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 +Dealt to Hero [As Kd] +Hero: 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 +Hero: folds Frenchmeistr: folds Uncalled bet (€1.60) returned to terpoox terpoox collected €0.95 from pot @@ -2082,7 +2082,7 @@ 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 4: Hero folded on the Flop Seat 5: Frenchmeistr folded on the Flop Seat 6: PokerMill100 (button) folded before Flop (didn't bet) @@ -2093,14 +2093,14 @@ 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 4: Hero (€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 +Dealt to Hero [8c 7h] +Hero: folds Frenchmeistr: calls €0.10 PokerMill100: calls €0.10 terpoox: folds @@ -2131,7 +2131,7 @@ 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 4: Hero 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 @@ -2142,19 +2142,19 @@ 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 4: Hero (€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 +Hero: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [Jd 3d] +Dealt to Hero [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 +Hero: folds Frenchmeistr: calls €0.30 *** FLOP *** [6d 3c 4d] Oswood: checks @@ -2175,7 +2175,7 @@ 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 4: Hero (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 @@ -2186,18 +2186,18 @@ 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 4: Hero (€9.42 in chips) Seat 5: Frenchmeistr (€3.71 in chips) Seat 6: PokerMill100 (€4.54 in chips) -s0rrow: posts small blind €0.05 +Hero: posts small blind €0.05 Frenchmeistr: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [4d Jh] +Dealt to Hero [4d Jh] PokerMill100: folds terpoox: raises €0.20 to €0.30 HomerrrJay: raises €0.80 to €1.10 Oswood: folds -s0rrow: folds +Hero: folds Frenchmeistr: folds terpoox: folds Uncalled bet (€0.80) returned to HomerrrJay @@ -2208,7 +2208,7 @@ 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 4: Hero (small blind) folded before Flop Seat 5: Frenchmeistr (big blind) folded before Flop Seat 6: PokerMill100 folded before Flop (didn't bet) @@ -2219,17 +2219,17 @@ 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 4: Hero (€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] +Dealt to Hero [5d 9h] terpoox: calls €0.10 HomerrrJay: raises €0.40 to €0.50 Oswood: calls €0.50 -s0rrow: folds +Hero: folds Frenchmeistr: folds PokerMill100: calls €0.40 terpoox: calls €0.40 @@ -2255,7 +2255,7 @@ 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 4: Hero (button) folded before Flop (didn't bet) Seat 5: Frenchmeistr (small blind) folded before Flop Seat 6: PokerMill100 (big blind) folded on the Turn @@ -2265,15 +2265,15 @@ PokerStars Game #35602783606: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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] +Dealt to Hero [7s Kh] Oswood: raises €0.20 to €0.30 -s0rrow: folds +Hero: folds Frenchmeistr: calls €0.30 PokerMill100: calls €0.25 HomerrrJay: folds @@ -2296,7 +2296,7 @@ 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 4: Hero 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 @@ -2306,13 +2306,13 @@ PokerStars Game #35602802439: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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 +Dealt to Hero [9s Qc] +Hero: folds PokerMill100: folds HomerrrJay: folds Uncalled bet (€0.05) returned to Oswood @@ -2322,7 +2322,7 @@ Oswood collected €0.10 from pot 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 4: Hero folded before Flop (didn't bet) Seat 6: PokerMill100 (button) folded before Flop (didn't bet) @@ -2331,37 +2331,37 @@ PokerStars Game #35602807096: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€9.37 in chips) Seat 6: PokerMill100 (€7.63 in chips) Oswood: posts small blind €0.05 -s0rrow: posts big blind €0.10 +Hero: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [7d 9h] +Dealt to Hero [7d 9h] PokerMill100: folds smokin_hot08 joins the table at seat #1 HomerrrJay: folds Oswood: calls €0.05 -s0rrow: checks +Hero: checks *** FLOP *** [2h Ts Th] Oswood: checks -s0rrow: checks +Hero: checks *** TURN *** [2h Ts Th] [2d] Oswood: checks -s0rrow: checks +Hero: checks *** RIVER *** [2h Ts Th 2d] [As] Oswood: checks -s0rrow: checks +Hero: checks *** SHOW DOWN *** Oswood: shows [5s Qs] (two pair, Tens and Deuces) -s0rrow: shows [7d 9h] (two pair, Tens and Deuces) +Hero: shows [7d 9h] (two pair, Tens and Deuces) Oswood collected €0.10 from pot -s0rrow collected €0.09 from pot +Hero 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 4: Hero (big blind) showed [7d 9h] and won (€0.09) with two pair, Tens and Deuces Seat 6: PokerMill100 folded before Flop (didn't bet) @@ -2371,17 +2371,17 @@ 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 4: Hero (€9.36 in chips) Seat 6: PokerMill100 (€7.63 in chips) -s0rrow: posts small blind €0.05 +Hero: 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] +Dealt to Hero [5c 8d] smokin_hot08: raises €0.50 to €0.60 HomerrrJay: folds Oswood: folds -s0rrow: folds +Hero: folds PokerMill100: calls €0.50 *** FLOP *** [Th Qh 2h] PokerMill100: checks @@ -2399,7 +2399,7 @@ 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 4: Hero (small blind) folded before Flop Seat 6: PokerMill100 (big blind) showed [Ah Jc] and won (€3.86) with a flush, Ace high @@ -2408,15 +2408,15 @@ PokerStars Game #35602834956: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 4: Hero (€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] +Dealt to Hero [4s 5d] smokin_hot08 leaves the table Oswood: folds -s0rrow: folds +Hero: folds PokerMill100: calls €0.05 HomerrrJay: checks *** FLOP *** [Kh 7d Jc] @@ -2438,7 +2438,7 @@ 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 4: Hero (button) folded before Flop (didn't bet) Seat 6: PokerMill100 (small blind) showed [5s 6d] and lost with a pair of Kings @@ -2447,21 +2447,21 @@ PokerStars Game #35602844425: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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) +Seat 4: Hero (€9.31 in chips) PokerMill100 leaves the table Oswood: posts small blind €0.05 -s0rrow: posts big blind €0.10 +Hero: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [9s Jd] +Dealt to Hero [9s Jd] HomerrrJay: folds Oswood: folds -Uncalled bet (€0.05) returned to s0rrow -s0rrow collected €0.10 from pot +Uncalled bet (€0.05) returned to Hero +Hero 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) +Seat 4: Hero (big blind) collected (€0.10) @@ -2469,62 +2469,62 @@ PokerStars Game #35602847618: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/ 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 +Seat 4: Hero (€9.36 in chips) +Hero: posts small blind €0.05 HomerrrJay: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [Ad Th] +Dealt to Hero [Ad Th] Oswood: folds Oswood leaves the table -s0rrow: raises €0.20 to €0.30 +Hero: raises €0.20 to €0.30 HomerrrJay: folds -Uncalled bet (€0.20) returned to s0rrow -s0rrow collected €0.20 from pot +Uncalled bet (€0.20) returned to Hero +Hero 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) +Seat 4: Hero (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) +Seat 4: Hero (€9.46 in chips) HomerrrJay: posts small blind €0.05 -s0rrow: posts big blind €0.10 +Hero: posts big blind €0.10 *** HOLE CARDS *** -Dealt to s0rrow [4s Qd] +Dealt to Hero [4s Qd] HomerrrJay: raises €0.20 to €0.30 -s0rrow: folds +Hero: 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 +Seat 4: Hero (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 +Seat 4: Hero (€9.36 in chips) +Hero: 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 +Dealt to Hero [Ad 8d] +Hero: raises €0.20 to €0.30 HomerrrJay: folds -Uncalled bet (€0.20) returned to s0rrow +Uncalled bet (€0.20) returned to Hero HomerrrJay leaves the table -s0rrow collected €0.20 from pot +Hero 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) +Seat 4: Hero (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 index 37c319a8..661ca915 100644 --- 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 @@ -3,16 +3,16 @@ 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) +Seat 6: Hero ($10 in chips) k1tt9nM1nd: posts small blind $0.05 -s0rrow: posts big blind $0.10 +Hero: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [4c 8h] +Dealt to Hero [4c 8h] shaunsaville joins the table at seat #2 Gles65: folds Pho3nix.two: folds k1tt9nM1nd: raises $0.20 to $0.30 -s0rrow: folds +Hero: folds Uncalled bet ($0.20) returned to k1tt9nM1nd k1tt9nM1nd collected $0.20 from pot *** SUMMARY *** @@ -20,7 +20,7 @@ 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 +Seat 6: Hero (big blind) folded before Flop @@ -30,16 +30,16 @@ 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 +Seat 6: Hero ($9.90 in chips) +Hero: posts small blind $0.05 Gles65: posts big blind $0.10 shaunsaville: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [9s 6h] +Dealt to Hero [9s 6h] shaunsaville: checks Pho3nix.two: calls $0.10 k1tt9nM1nd: folds -s0rrow: folds +Hero: folds Gles65: checks *** FLOP *** [Jh 2c Qc] Gles65: checks @@ -57,7 +57,7 @@ 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 +Seat 6: Hero (small blind) folded before Flop @@ -67,15 +67,15 @@ 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) +Seat 6: Hero ($9.85 in chips) Gles65: posts small blind $0.05 shaunsaville: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [7h 3s] +Dealt to Hero [7h 3s] Pho3nix.two: calls $0.10 DSOR65 joins the table at seat #5 k1tt9nM1nd: folds -s0rrow: folds +Hero: folds Gles65: folds shaunsaville: checks *** FLOP *** [3h 9s Th] @@ -97,7 +97,7 @@ 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) +Seat 6: Hero (button) folded before Flop (didn't bet) @@ -108,15 +108,15 @@ 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) +Seat 6: Hero ($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] +Dealt to Hero [9d 3c] k1tt9nM1nd: raises $0.30 to $0.40 DSOR65: calls $0.30 -s0rrow: folds +Hero: folds Gles65: folds shaunsaville: raises $2.05 to $2.45 and is all-in Pho3nix.two: folds @@ -137,7 +137,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -147,12 +147,12 @@ 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) +Seat 6: Hero ($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 +Dealt to Hero [5h Ts] +Hero: folds shaunsaville leaves the table Gles65: folds Pho3nix.two: folds @@ -170,7 +170,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -180,34 +180,34 @@ 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) +Seat 6: Hero ($9.85 in chips) DSOR65: posts small blind $0.05 -s0rrow: posts big blind $0.10 +Hero: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [3d 3h] +Dealt to Hero [3d 3h] Gles65: folds Pho3nix.two: raises $0.20 to $0.30 k1tt9nM1nd: folds DSOR65: calls $0.25 -s0rrow: calls $0.20 +Hero: calls $0.20 *** FLOP *** [9d 9h 2d] DSOR65: checks -s0rrow: checks +Hero: checks Pho3nix.two: bets $0.40 DSOR65: folds -s0rrow: calls $0.40 +Hero: calls $0.40 *** TURN *** [9d 9h 2d] [8d] -s0rrow: checks +Hero: checks Dragsta03 joins the table at seat #2 Pho3nix.two: bets $0.80 -s0rrow: calls $0.80 +Hero: calls $0.80 *** RIVER *** [9d 9h 2d 8d] [Js] -s0rrow: checks +Hero: checks Pho3nix.two: bets $1 -s0rrow: calls $1 +Hero: calls $1 *** SHOW DOWN *** Pho3nix.two: shows [Ac As] (two pair, Aces and Nines) -s0rrow: mucks hand +Hero: mucks hand Pho3nix.two collected $5.05 from pot *** SUMMARY *** Total pot $5.30 | Rake $0.25 @@ -216,7 +216,7 @@ 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] +Seat 6: Hero (big blind) mucked [3d 3h] @@ -227,17 +227,17 @@ 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 +Seat 6: Hero ($7.35 in chips) +Hero: posts small blind $0.05 Gles65: posts big blind $0.10 Dragsta03: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Jd Qs] +Dealt to Hero [Jd Qs] Dragsta03: checks Pho3nix.two: calls $0.10 k1tt9nM1nd: raises $0.50 to $0.60 DSOR65: folds -s0rrow: folds +Hero: folds Gles65: folds Dragsta03: folds Pho3nix.two: folds @@ -250,7 +250,7 @@ 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 +Seat 6: Hero (small blind) folded before Flop @@ -261,15 +261,15 @@ 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) +Seat 6: Hero ($7.30 in chips) Gles65: posts small blind $0.05 Dragsta03: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [9c 8h] +Dealt to Hero [9c 8h] Pho3nix.two: folds k1tt9nM1nd: folds DSOR65: calls $0.10 -s0rrow: folds +Hero: folds Gles65: folds Dragsta03: checks *** FLOP *** [Ac Qd 7s] @@ -289,7 +289,7 @@ 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) +Seat 6: Hero (button) folded before Flop (didn't bet) @@ -300,14 +300,14 @@ 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) +Seat 6: Hero ($7.30 in chips) Dragsta03: posts small blind $0.05 Pho3nix.two: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [3d 6h] +Dealt to Hero [3d 6h] k1tt9nM1nd: folds DSOR65: folds -s0rrow: folds +Hero: folds Gles65: folds Dragsta03: calls $0.05 Pho3nix.two: checks @@ -332,7 +332,7 @@ Seat 2: Dragsta03 (small blind) showed [7s Ah] and won ($0.20) with high card Ac 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -343,19 +343,19 @@ 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) +Seat 6: Hero ($7.30 in chips) Pho3nix.two: posts small blind $0.05 k1tt9nM1nd: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Ah 4h] +Dealt to Hero [Ah 4h] DSOR65: folds -s0rrow: raises $0.20 to $0.30 +Hero: 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 +Uncalled bet ($0.20) returned to Hero +Hero collected $0.25 from pot *** SUMMARY *** Total pot $0.25 | Rake $0 Seat 1: Gles65 folded before Flop (didn't bet) @@ -363,7 +363,7 @@ 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) +Seat 6: Hero collected ($0.25) @@ -374,12 +374,12 @@ 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) +Seat 6: Hero ($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 +Dealt to Hero [9s Ac] +Hero: folds Gles65: folds Dragsta03: folds Pho3nix.two: raises $0.20 to $0.30 @@ -395,7 +395,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -406,31 +406,31 @@ 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) +Seat 6: Hero ($7.45 in chips) DSOR65: posts small blind $0.05 -s0rrow: posts big blind $0.10 +Hero: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [6s 2c] +Dealt to Hero [6s 2c] Gles65: folds Dragsta03: folds Pho3nix.two: folds Pho3nix.two is sitting out k1tt9nM1nd: folds DSOR65: calls $0.05 -s0rrow: checks +Hero: checks *** FLOP *** [Kc 2h 7s] DSOR65: checks -s0rrow: bets $0.20 +Hero: bets $0.20 DSOR65: calls $0.20 *** TURN *** [Kc 2h 7s] [5h] DSOR65: checks -s0rrow: checks +Hero: checks *** RIVER *** [Kc 2h 7s 5h] [8c] DSOR65: bets $0.70 -s0rrow: calls $0.70 +Hero: calls $0.70 *** SHOW DOWN *** DSOR65: shows [6c Kd] (a pair of Kings) -s0rrow: mucks hand +Hero: mucks hand DSOR65 collected $1.90 from pot *** SUMMARY *** Total pot $2 | Rake $0.10 @@ -440,7 +440,7 @@ 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] +Seat 6: Hero (big blind) mucked [6s 2c] @@ -450,32 +450,32 @@ 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 +Seat 6: Hero ($6.45 in chips) +Hero: posts small blind $0.05 Gles65: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Kc 9c] +Dealt to Hero [Kc 9c] Dragsta03: folds k1tt9nM1nd: folds DSOR65: calls $0.10 -s0rrow: raises $0.20 to $0.30 +Hero: raises $0.20 to $0.30 Pho3nix.two has returned Gles65: folds DSOR65: calls $0.20 *** FLOP *** [Td 7c Jc] -s0rrow: bets $0.50 +Hero: bets $0.50 DSOR65: calls $0.50 *** TURN *** [Td 7c Jc] [9s] -s0rrow: checks +Hero: checks DSOR65: bets $1 -s0rrow: calls $1 +Hero: calls $1 *** RIVER *** [Td 7c Jc 9s] [Qs] -s0rrow: checks +Hero: checks DSOR65: checks *** SHOW DOWN *** -s0rrow: shows [Kc 9c] (a straight, Nine to King) +Hero: shows [Kc 9c] (a straight, Nine to King) DSOR65: mucks hand -s0rrow collected $3.55 from pot +Hero collected $3.55 from pot *** SUMMARY *** Total pot $3.70 | Rake $0.15 Board [Td 7c Jc 9s Qs] @@ -483,7 +483,7 @@ 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 +Seat 6: Hero (small blind) showed [Kc 9c] and won ($3.55) with a straight, Nine to King @@ -494,15 +494,15 @@ 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) +Seat 6: Hero ($8.20 in chips) Gles65: posts small blind $0.05 Dragsta03: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [8s 9s] +Dealt to Hero [8s 9s] Pho3nix.two: calls $0.10 k1tt9nM1nd: folds DSOR65: calls $0.10 -s0rrow: raises $0.30 to $0.40 +Hero: raises $0.30 to $0.40 Gles65: calls $0.35 Dragsta03: folds Pho3nix.two: calls $0.30 @@ -511,7 +511,7 @@ DSOR65: calls $0.30 Gles65: checks Pho3nix.two: checks DSOR65: bets $0.40 -s0rrow: folds +Hero: folds Gles65: folds Pho3nix.two: calls $0.40 *** TURN *** [Ah Tc 2d] [Ks] @@ -528,7 +528,7 @@ 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 +Seat 6: Hero (button) folded on the Flop @@ -539,14 +539,14 @@ 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) +Seat 6: Hero ($7.80 in chips) Dragsta03: posts small blind $0.05 Pho3nix.two: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [7h Kh] +Dealt to Hero [7h Kh] k1tt9nM1nd: folds DSOR65: calls $0.10 -s0rrow: folds +Hero: folds Gles65: folds Dragsta03: calls $0.05 Pho3nix.two: checks @@ -570,7 +570,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -580,12 +580,12 @@ 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) +Seat 6: Hero ($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 +Dealt to Hero [5d 6h] +Hero: folds Gles65: folds Dragsta03: calls $0.10 k1tt9nM1nd: folds @@ -605,7 +605,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -615,22 +615,22 @@ 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) +Seat 6: Hero ($7.80 in chips) DSOR65: posts small blind $0.05 -s0rrow: posts big blind $0.10 +Hero: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [7d Qd] +Dealt to Hero [7d Qd] Gles65: folds Dragsta03: folds k1tt9nM1nd: folds DSOR65: calls $0.05 -s0rrow: checks +Hero: checks *** FLOP *** [Jh 7s Qh] DSOR65: checks -s0rrow: bets $0.20 +Hero: bets $0.20 DSOR65: folds -Uncalled bet ($0.20) returned to s0rrow -s0rrow collected $0.20 from pot +Uncalled bet ($0.20) returned to Hero +Hero collected $0.20 from pot *** SUMMARY *** Total pot $0.20 | Rake $0 Board [Jh 7s Qh] @@ -638,7 +638,7 @@ 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) +Seat 6: Hero (big blind) collected ($0.20) @@ -648,22 +648,22 @@ 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 +Seat 6: Hero ($7.90 in chips) +Hero: posts small blind $0.05 Gles65: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [9h Ah] +Dealt to Hero [9h Ah] Dragsta03: folds k1tt9nM1nd: folds DSOR65: calls $0.10 -s0rrow: calls $0.05 +Hero: calls $0.05 Gles65: checks *** FLOP *** [6c 6h 2c] -s0rrow: checks +Hero: checks Pho3nix.two has returned Gles65: bets $0.30 DSOR65: folds -s0rrow: folds +Hero: folds Uncalled bet ($0.30) returned to Gles65 Gles65 collected $0.30 from pot Gles65: doesn't show hand @@ -674,7 +674,7 @@ 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 +Seat 6: Hero (small blind) folded on the Flop @@ -684,23 +684,23 @@ 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) +Seat 6: Hero ($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] +Dealt to Hero [7h 7s] k1tt9nM1nd: folds DSOR65: folds -s0rrow: raises $0.20 to $0.30 +Hero: raises $0.20 to $0.30 Gles65: folds Dragsta03: calls $0.20 *** FLOP *** [8d 9h Jh] Dragsta03: checks -s0rrow: bets $0.50 +Hero: bets $0.50 Dragsta03: folds -Uncalled bet ($0.50) returned to s0rrow -s0rrow collected $0.65 from pot +Uncalled bet ($0.50) returned to Hero +Hero collected $0.65 from pot *** SUMMARY *** Total pot $0.65 | Rake $0 Board [8d 9h Jh] @@ -708,7 +708,7 @@ 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) +Seat 6: Hero (button) collected ($0.65) @@ -717,15 +717,15 @@ 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) +Seat 6: Hero ($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 +Dealt to Hero [Tc 2c] +Hero: folds Gles65: folds Swiss777 joins the table at seat #2 k1tt9nM1nd: folds @@ -736,7 +736,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -745,36 +745,36 @@ 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) +Seat 6: Hero ($8.15 in chips) DSOR65: posts small blind $0.05 -s0rrow: posts big blind $0.10 +Hero: posts big blind $0.10 Swiss777: sits out Pho3nix.two: sits out *** HOLE CARDS *** -Dealt to s0rrow [4d Js] +Dealt to Hero [4d Js] Gles65: folds k1tt9nM1nd: folds DSOR65: calls $0.05 -s0rrow: checks +Hero: checks *** FLOP *** [Qd 2c 5d] DSOR65: checks -s0rrow: checks +Hero: checks *** TURN *** [Qd 2c 5d] [6s] DSOR65: checks -s0rrow: checks +Hero: checks *** RIVER *** [Qd 2c 5d 6s] [3s] DSOR65: checks -s0rrow: bets $0.30 +Hero: bets $0.30 DSOR65: folds -Uncalled bet ($0.30) returned to s0rrow -s0rrow collected $0.20 from pot +Uncalled bet ($0.30) returned to Hero +Hero 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) +Seat 6: Hero (big blind) collected ($0.20) @@ -783,16 +783,16 @@ 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 +Seat 6: Hero ($8.25 in chips) +Hero: 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] +Dealt to Hero [7h 2h] k1tt9nM1nd: folds DSOR65: folds -s0rrow: folds +Hero: folds Uncalled bet ($0.05) returned to Gles65 Gles65 collected $0.10 from pot Gles65: doesn't show hand @@ -801,7 +801,7 @@ 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 +Seat 6: Hero (small blind) folded before Flop @@ -811,27 +811,27 @@ 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) +Seat 6: Hero ($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] +Dealt to Hero [Qd Qs] k1tt9nM1nd: folds DSOR65: folds -s0rrow: raises $0.20 to $0.30 +Hero: raises $0.20 to $0.30 Gles65: raises $0.60 to $0.90 Swiss777: folds -s0rrow: calls $0.60 +Hero: calls $0.60 *** FLOP *** [8d Ks 3s] Gles65: bets $1.30 -s0rrow: calls $1.30 +Hero: calls $1.30 *** TURN *** [8d Ks 3s] [4s] Gles65: checks -s0rrow: bets $6 and is all-in +Hero: bets $6 and is all-in Gles65: folds -Uncalled bet ($6) returned to s0rrow -s0rrow collected $4.30 from pot +Uncalled bet ($6) returned to Hero +Hero collected $4.30 from pot *** SUMMARY *** Total pot $4.50 | Rake $0.20 Board [8d Ks 3s 4s] @@ -839,7 +839,7 @@ 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) +Seat 6: Hero (button) collected ($4.30) @@ -850,14 +850,14 @@ 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) +Seat 6: Hero ($10.30 in chips) Swiss777: posts small blind $0.05 Pho3nix.two: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Qc Ad] +Dealt to Hero [Qc Ad] k1tt9nM1nd: raises $0.30 to $0.40 DSOR65: calls $0.40 -s0rrow: calls $0.40 +Hero: calls $0.40 Gles65 has timed out Gles65: folds Gles65 is sitting out @@ -867,20 +867,20 @@ Pho3nix.two: folds *** FLOP *** [Td 8c Ac] k1tt9nM1nd: bets $1 DSOR65: calls $1 -s0rrow: calls $1 +Hero: calls $1 *** TURN *** [Td 8c Ac] [6h] k1tt9nM1nd: checks DSOR65: checks -s0rrow: checks +Hero: checks *** RIVER *** [Td 8c Ac 6h] [Tc] k1tt9nM1nd: checks DSOR65: checks -s0rrow: checks +Hero: 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 +Hero: shows [Qc Ad] (two pair, Aces and Tens - Queen kicker) +Hero collected $4.15 from pot *** SUMMARY *** Total pot $4.35 | Rake $0.20 Board [Td 8c Ac 6h Tc] @@ -889,7 +889,7 @@ 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 +Seat 6: Hero showed [Qc Ad] and won ($4.15) with two pair, Aces and Tens @@ -900,13 +900,13 @@ 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) +Seat 6: Hero ($13.05 in chips) Pho3nix.two: posts small blind $0.05 k1tt9nM1nd: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Qh 9h] +Dealt to Hero [Qh 9h] DSOR65: calls $0.10 -s0rrow: calls $0.10 +Hero: calls $0.10 Gles65 has timed out Gles65: folds Gles65 is sitting out @@ -918,12 +918,12 @@ k1tt9nM1nd: checks Pho3nix.two: checks k1tt9nM1nd: checks DSOR65: checks -s0rrow: checks +Hero: checks *** TURN *** [3c 4s 7h] [Kc] Pho3nix.two: checks k1tt9nM1nd: bets $0.40 DSOR65: folds -s0rrow: folds +Hero: folds Pho3nix.two: folds Uncalled bet ($0.40) returned to k1tt9nM1nd k1tt9nM1nd collected $0.40 from pot @@ -935,7 +935,7 @@ 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 +Seat 6: Hero folded on the Turn @@ -946,12 +946,12 @@ 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) +Seat 6: Hero ($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 +Dealt to Hero [7d Ac] +Hero: folds Gles65: folds Swiss777: folds Pho3nix.two: raises $0.20 to $0.30 @@ -980,7 +980,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -991,29 +991,29 @@ 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) +Seat 6: Hero ($12.95 in chips) DSOR65: posts small blind $0.05 -s0rrow: posts big blind $0.10 +Hero: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [4c 5c] +Dealt to Hero [4c 5c] Gles65: folds Swiss777: folds Pho3nix.two: folds k1tt9nM1nd: folds DSOR65: calls $0.05 -s0rrow: checks +Hero: checks *** FLOP *** [5s 5d 5h] DSOR65: checks -s0rrow: checks +Hero: checks *** TURN *** [5s 5d 5h] [6c] DSOR65: bets $0.10 -s0rrow: calls $0.10 +Hero: calls $0.10 *** RIVER *** [5s 5d 5h 6c] [2h] DSOR65: bets $0.10 -s0rrow: raises $0.30 to $0.40 +Hero: raises $0.30 to $0.40 DSOR65: folds -Uncalled bet ($0.30) returned to s0rrow -s0rrow collected $0.60 from pot +Uncalled bet ($0.30) returned to Hero +Hero collected $0.60 from pot *** SUMMARY *** Total pot $0.60 | Rake $0 Board [5s 5d 5h 6c 2h] @@ -1022,7 +1022,7 @@ 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) +Seat 6: Hero (big blind) collected ($0.60) @@ -1033,16 +1033,16 @@ 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 +Seat 6: Hero ($13.25 in chips) +Hero: posts small blind $0.05 Gles65: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [4h Qh] +Dealt to Hero [4h Qh] Swiss777: folds Pho3nix.two: calls $0.10 k1tt9nM1nd: raises $0.40 to $0.50 DSOR65: folds -s0rrow: folds +Hero: folds Gles65: folds Pho3nix.two: calls $0.40 *** FLOP *** [9h 8s 3c] @@ -1066,7 +1066,7 @@ 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 +Seat 6: Hero (small blind) folded before Flop @@ -1076,15 +1076,15 @@ 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) +Seat 6: Hero ($13.20 in chips) Gles65: posts small blind $0.05 Swiss777: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [3c Qc] +Dealt to Hero [3c Qc] k1tt9nM1nd: folds Pho3nix.two leaves the table DSOR65: calls $0.10 -s0rrow: folds +Hero: folds Gles65: calls $0.05 Dashornman joins the table at seat #3 Swiss777: checks @@ -1111,7 +1111,7 @@ Seat 1: Gles65 (small blind) showed [9d Qh] and won ($4.30) with a straight, Eig 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) +Seat 6: Hero (button) folded before Flop (didn't bet) @@ -1122,14 +1122,14 @@ 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) +Seat 6: Hero ($13.20 in chips) Swiss777: posts small blind $0.05 Dashornman: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [4c Qh] +Dealt to Hero [4c Qh] k1tt9nM1nd: folds DSOR65: folds -s0rrow: folds +Hero: folds Gles65: folds Swiss777: folds Uncalled bet ($0.05) returned to Dashornman @@ -1142,7 +1142,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -1153,34 +1153,34 @@ 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) +Seat 6: Hero ($13.20 in chips) Dashornman: posts small blind $0.05 k1tt9nM1nd: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Qd Qh] +Dealt to Hero [Qd Qh] DSOR65: folds -s0rrow: raises $0.20 to $0.30 +Hero: raises $0.20 to $0.30 Gles65: calls $0.30 Swiss777: calls $0.30 Dashornman: folds k1tt9nM1nd: folds *** FLOP *** [4h Td Qs] -s0rrow: checks +Hero: checks Gles65: bets $1 Swiss777: folds -s0rrow: calls $1 +Hero: calls $1 *** TURN *** [4h Td Qs] [7h] -s0rrow: checks +Hero: checks Gles65: bets $3 -s0rrow: calls $3 +Hero: calls $3 *** RIVER *** [4h Td Qs 7h] [6c] -s0rrow: bets $8.90 and is all-in +Hero: bets $8.90 and is all-in Gles65: calls $7.70 and is all-in -Uncalled bet ($1.20) returned to s0rrow +Uncalled bet ($1.20) returned to Hero *** SHOW DOWN *** -s0rrow: shows [Qd Qh] (three of a kind, Queens) +Hero: shows [Qd Qh] (three of a kind, Queens) Gles65: shows [Ad Ac] (a pair of Aces) -s0rrow collected $23.25 from pot +Hero collected $23.25 from pot *** SUMMARY *** Total pot $24.45 | Rake $1.20 Board [4h Td Qs 7h 6c] @@ -1189,7 +1189,7 @@ 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 +Seat 6: Hero showed [Qd Qh] and won ($23.25) with three of a kind, Queens @@ -1200,12 +1200,12 @@ 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) +Seat 6: Hero ($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 +Dealt to Hero [4s 9c] +Hero: folds Gles65: folds Swiss777: folds Dashornman: folds @@ -1220,7 +1220,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -1230,16 +1230,16 @@ 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) +Seat 6: Hero ($24.45 in chips) DSOR65: posts small blind $0.05 -s0rrow: posts big blind $0.10 +Hero: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [6d 5h] +Dealt to Hero [6d 5h] Gles65: calls $0.10 Swiss777: folds k1tt9nM1nd: raises $0.40 to $0.50 DSOR65: calls $0.45 -s0rrow: folds +Hero: folds Gles65: calls $0.40 *** FLOP *** [3s 6h 8s] DSOR65: checks @@ -1256,7 +1256,7 @@ 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 +Seat 6: Hero (big blind) folded before Flop @@ -1266,15 +1266,15 @@ 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 +Seat 6: Hero ($24.35 in chips) +Hero: posts small blind $0.05 Gles65: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Td 5h] +Dealt to Hero [Td 5h] Swiss777: folds k1tt9nM1nd: folds DSOR65: folds -s0rrow: folds +Hero: folds Uncalled bet ($0.05) returned to Gles65 Gles65 collected $0.10 from pot Gles65: doesn't show hand @@ -1284,7 +1284,7 @@ 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 +Seat 6: Hero (small blind) folded before Flop @@ -1294,16 +1294,16 @@ 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) +Seat 6: Hero ($24.30 in chips) Gles65: posts small blind $0.05 Swiss777: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Jh 5s] +Dealt to Hero [Jh 5s] k1tt9nM1nd: folds DSOR65 has timed out DSOR65: folds DSOR65 is sitting out -s0rrow: folds +Hero: folds Gles65: folds Uncalled bet ($0.05) returned to Swiss777 Swiss777 collected $0.10 from pot @@ -1314,7 +1314,7 @@ 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) +Seat 6: Hero (button) folded before Flop (didn't bet) @@ -1323,12 +1323,12 @@ 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) +Seat 6: Hero ($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 +Dealt to Hero [Kd 8s] +Hero: folds DSOR65 has returned Gles65: folds Swiss777: folds @@ -1339,7 +1339,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -1349,12 +1349,12 @@ 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) +Seat 6: Hero ($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 +Dealt to Hero [6d Qc] +Hero: folds Gles65: folds Swiss777: raises $0.30 to $0.40 k1tt9nM1nd: folds @@ -1382,7 +1382,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -1392,12 +1392,12 @@ 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) +Seat 6: Hero ($24.30 in chips) DSOR65: posts small blind $0.05 -s0rrow: posts big blind $0.10 +Hero: posts big blind $0.10 StifflerPL: sits out *** HOLE CARDS *** -Dealt to s0rrow [Js 9c] +Dealt to Hero [Js 9c] Gles65 has timed out Gles65: folds Gles65 is sitting out @@ -1405,7 +1405,7 @@ Gles65 has returned Swiss777: folds k1tt9nM1nd: raises $0.20 to $0.30 DSOR65: calls $0.25 -s0rrow: folds +Hero: folds *** FLOP *** [4s Jc 4c] DSOR65: checks k1tt9nM1nd: checks @@ -1421,7 +1421,7 @@ 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 +Seat 6: Hero (big blind) folded before Flop @@ -1432,28 +1432,28 @@ 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 +Seat 6: Hero ($24.20 in chips) +Hero: posts small blind $0.05 Gles65: posts big blind $0.10 StifflerPL: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Ah 7d] +Dealt to Hero [Ah 7d] Swiss777: folds StifflerPL: checks k1tt9nM1nd: folds DSOR65: folds -s0rrow: calls $0.05 +Hero: calls $0.05 Gles65: checks *** FLOP *** [5d Td Ac] -s0rrow: checks +Hero: checks Gles65: checks StifflerPL: checks *** TURN *** [5d Td Ac] [4s] -s0rrow: bets $0.20 +Hero: bets $0.20 Gles65: folds StifflerPL: folds -Uncalled bet ($0.20) returned to s0rrow -s0rrow collected $0.30 from pot +Uncalled bet ($0.20) returned to Hero +Hero collected $0.30 from pot *** SUMMARY *** Total pot $0.30 | Rake $0 Board [5d Td Ac 4s] @@ -1462,7 +1462,7 @@ 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) +Seat 6: Hero (small blind) collected ($0.30) @@ -1473,31 +1473,31 @@ 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) +Seat 6: Hero ($24.40 in chips) Gles65: posts small blind $0.05 Swiss777: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [9s 7s] +Dealt to Hero [9s 7s] StifflerPL: folds k1tt9nM1nd: folds DSOR65: calls $0.10 -s0rrow: raises $0.20 to $0.30 +Hero: 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 +Hero: bets $0.60 Gles65: calls $0.60 DSOR65: folds *** TURN *** [3c Qc Js] [Kd] Gles65: checks -s0rrow: bets $1.50 +Hero: bets $1.50 Gles65: calls $1.50 *** RIVER *** [3c Qc Js Kd] [3s] Gles65: bets $7 and is all-in -s0rrow: folds +Hero: folds Uncalled bet ($7) returned to Gles65 Gles65 collected $4.95 from pot Gles65: doesn't show hand @@ -1509,7 +1509,7 @@ 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 +Seat 6: Hero (button) folded on the River @@ -1520,14 +1520,14 @@ 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) +Seat 6: Hero ($22 in chips) Swiss777: posts small blind $0.05 StifflerPL: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Qh 4h] +Dealt to Hero [Qh 4h] k1tt9nM1nd: folds DSOR65: calls $0.10 -s0rrow: folds +Hero: folds Gles65: folds Swiss777: folds StifflerPL: checks @@ -1551,7 +1551,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -1562,13 +1562,13 @@ 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) +Seat 6: Hero ($22 in chips) StifflerPL: posts small blind $0.05 k1tt9nM1nd: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Qh 5d] +Dealt to Hero [Qh 5d] DSOR65: calls $0.10 -s0rrow: folds +Hero: folds Gles65: folds Swiss777: raises $0.40 to $0.50 StifflerPL: folds @@ -1584,7 +1584,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -1595,12 +1595,12 @@ 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) +Seat 6: Hero ($22 in chips) k1tt9nM1nd: posts small blind $0.05 DSOR65: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Kd 5c] -s0rrow: folds +Dealt to Hero [Kd 5c] +Hero: folds Gles65: folds Swiss777: folds StifflerPL: folds @@ -1614,7 +1614,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -1625,23 +1625,23 @@ 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) +Seat 6: Hero ($22 in chips) DSOR65: posts small blind $0.05 -s0rrow: posts big blind $0.10 +Hero: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [3c Jc] +Dealt to Hero [3c Jc] Gles65: folds Swiss777: folds StifflerPL: calls $0.10 k1tt9nM1nd: folds DSOR65: calls $0.05 -s0rrow: checks +Hero: checks *** FLOP *** [Ah Ts 2d] DSOR65: checks -s0rrow: checks +Hero: checks StifflerPL: bets $0.20 DSOR65: folds -s0rrow: folds +Hero: folds Uncalled bet ($0.20) returned to StifflerPL StifflerPL collected $0.30 from pot StifflerPL: doesn't show hand @@ -1653,7 +1653,7 @@ 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 +Seat 6: Hero (big blind) folded on the Flop @@ -1664,16 +1664,16 @@ 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 +Seat 6: Hero ($21.90 in chips) +Hero: posts small blind $0.05 Gles65: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Kh 4d] +Dealt to Hero [Kh 4d] Swiss777: folds StifflerPL: folds k1tt9nM1nd: folds DSOR65: folds -s0rrow: folds +Hero: folds Uncalled bet ($0.05) returned to Gles65 Gles65 collected $0.10 from pot Gles65: doesn't show hand @@ -1684,7 +1684,7 @@ 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 +Seat 6: Hero (small blind) folded before Flop @@ -1695,19 +1695,19 @@ 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) +Seat 6: Hero ($21.85 in chips) Gles65: posts small blind $0.05 Swiss777: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Ac 5h] +Dealt to Hero [Ac 5h] StifflerPL: folds k1tt9nM1nd: folds DSOR65: folds -s0rrow: raises $0.20 to $0.30 +Hero: raises $0.20 to $0.30 Gles65: folds Swiss777: folds -Uncalled bet ($0.20) returned to s0rrow -s0rrow collected $0.25 from pot +Uncalled bet ($0.20) returned to Hero +Hero collected $0.25 from pot *** SUMMARY *** Total pot $0.25 | Rake $0 Seat 1: Gles65 (small blind) folded before Flop @@ -1715,7 +1715,7 @@ 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) +Seat 6: Hero (button) collected ($0.25) @@ -1726,14 +1726,14 @@ 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) +Seat 6: Hero ($22 in chips) Swiss777: posts small blind $0.05 StifflerPL: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [3s Js] +Dealt to Hero [3s Js] k1tt9nM1nd: folds DSOR65: folds -s0rrow: folds +Hero: folds Gles65: folds Swiss777: folds Uncalled bet ($0.05) returned to StifflerPL @@ -1747,7 +1747,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -1757,12 +1757,12 @@ 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) +Seat 6: Hero ($22 in chips) k1tt9nM1nd: posts small blind $0.05 DSOR65: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [6h 9h] -s0rrow: folds +Dealt to Hero [6h 9h] +Hero: folds Gles65: folds Swiss777: folds k1tt9nM1nd: folds @@ -1774,7 +1774,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -1784,23 +1784,23 @@ 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) +Seat 6: Hero ($22 in chips) DSOR65: posts small blind $0.05 -s0rrow: posts big blind $0.10 +Hero: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Kc 9s] +Dealt to Hero [Kc 9s] Gles65: folds Swiss777: folds k1tt9nM1nd: raises $0.20 to $0.30 DSOR65: calls $0.25 -s0rrow: calls $0.20 +Hero: calls $0.20 *** FLOP *** [6h Ad 5h] ChrVo joins the table at seat #3 DSOR65: checks -s0rrow: checks +Hero: checks k1tt9nM1nd: bets $0.70 DSOR65: folds -s0rrow: folds +Hero: folds Uncalled bet ($0.70) returned to k1tt9nM1nd k1tt9nM1nd collected $0.90 from pot *** SUMMARY *** @@ -1810,7 +1810,7 @@ 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 +Seat 6: Hero (big blind) folded on the Flop @@ -1821,17 +1821,17 @@ 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 +Seat 6: Hero ($21.70 in chips) +Hero: posts small blind $0.05 Gles65: posts big blind $0.10 ChrVo: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [9c Ts] +Dealt to Hero [9c Ts] Swiss777: folds ChrVo: checks k1tt9nM1nd: folds DSOR65: calls $0.10 -s0rrow: folds +Hero: folds Gles65: checks *** FLOP *** [8s Ks 4c] Gles65: checks @@ -1853,7 +1853,7 @@ 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 +Seat 6: Hero (small blind) folded before Flop @@ -1864,21 +1864,21 @@ 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) +Seat 6: Hero ($21.65 in chips) Gles65: posts small blind $0.05 Swiss777: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Qs 9h] +Dealt to Hero [Qs 9h] ChrVo: calls $0.10 k1tt9nM1nd: folds DSOR65: folds -s0rrow: raises $0.20 to $0.30 +Hero: raises $0.20 to $0.30 Gles65: folds Swiss777: folds ChrVo: calls $0.20 *** FLOP *** [8h Ad Kh] ChrVo: bets $0.60 -s0rrow: folds +Hero: folds Uncalled bet ($0.60) returned to ChrVo ChrVo collected $0.75 from pot ChrVo: doesn't show hand @@ -1890,7 +1890,7 @@ 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 +Seat 6: Hero (button) folded on the Flop @@ -1901,14 +1901,14 @@ 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) +Seat 6: Hero ($21.35 in chips) Swiss777: posts small blind $0.05 ChrVo: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Ks Jc] +Dealt to Hero [Ks Jc] k1tt9nM1nd: folds DSOR65: folds -s0rrow: folds +Hero: folds Gles65 has timed out Gles65: folds Gles65 is sitting out @@ -1924,7 +1924,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -1935,13 +1935,13 @@ 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) +Seat 6: Hero ($21.35 in chips) ChrVo: posts small blind $0.05 k1tt9nM1nd: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Qs Js] +Dealt to Hero [Qs Js] DSOR65: folds -s0rrow: raises $0.20 to $0.30 +Hero: raises $0.20 to $0.30 DSOR65 leaves the table Gles65: calls $0.30 Swiss777: folds @@ -1949,18 +1949,18 @@ ChrVo: calls $0.25 k1tt9nM1nd: folds *** FLOP *** [Ad Qd 3h] ChrVo: bets $0.50 -s0rrow: calls $0.50 +Hero: calls $0.50 Gles65: folds *** TURN *** [Ad Qd 3h] [Ts] ChrVo: bets $1.30 -s0rrow: calls $1.30 +Hero: calls $1.30 *** RIVER *** [Ad Qd 3h Ts] [3s] ChrVo: bets $3.30 -s0rrow: calls $3.30 +Hero: 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 +Hero: shows [Qs Js] (two pair, Queens and Threes) +Hero collected $10.65 from pot *** SUMMARY *** Total pot $11.20 | Rake $0.55 Board [Ad Qd 3h Ts 3s] @@ -1969,7 +1969,7 @@ 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 +Seat 6: Hero showed [Qs Js] and won ($10.65) with two pair, Queens and Threes @@ -1979,16 +1979,16 @@ 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) +Seat 6: Hero ($26.60 in chips) k1tt9nM1nd: posts small blind $0.05 -s0rrow: posts big blind $0.10 +Hero: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Ac 5h] +Dealt to Hero [Ac 5h] Gles65: folds Swiss777: raises $0.30 to $0.40 ChrVo: folds k1tt9nM1nd: folds -s0rrow: folds +Hero: folds Uncalled bet ($0.30) returned to Swiss777 Swiss777 collected $0.25 from pot Swiss777: doesn't show hand @@ -1998,7 +1998,7 @@ 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 +Seat 6: Hero (big blind) folded before Flop @@ -2008,29 +2008,29 @@ 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 +Seat 6: Hero ($26.50 in chips) +Hero: posts small blind $0.05 Gles65: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [As Kc] +Dealt to Hero [As Kc] Swiss777: folds ChrVo: raises $0.20 to $0.30 k1tt9nM1nd: folds -s0rrow: raises $0.70 to $1 +Hero: raises $0.70 to $1 Gles65: folds ChrVo: calls $0.70 *** FLOP *** [4s 2c 2s] -s0rrow: checks +Hero: checks ChrVo: bets $1.70 -s0rrow: raises $2.40 to $4.10 +Hero: raises $2.40 to $4.10 ChrVo: calls $2.30 and is all-in -Uncalled bet ($0.10) returned to s0rrow +Uncalled bet ($0.10) returned to Hero *** TURN *** [4s 2c 2s] [Js] *** RIVER *** [4s 2c 2s Js] [4c] *** SHOW DOWN *** -s0rrow: shows [As Kc] (two pair, Fours and Deuces) +Hero: shows [As Kc] (two pair, Fours and Deuces) ChrVo: shows [Ah 3h] (two pair, Fours and Deuces) -s0rrow collected $4.80 from pot +Hero collected $4.80 from pot ChrVo collected $4.80 from pot ChrVo leaves the table *** SUMMARY *** @@ -2040,7 +2040,7 @@ 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 +Seat 6: Hero (small blind) showed [As Kc] and won ($4.80) with two pair, Fours and Deuces @@ -2049,23 +2049,23 @@ 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) +Seat 6: Hero ($26.30 in chips) Gles65: posts small blind $0.05 Swiss777: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Qd Js] +Dealt to Hero [Qd Js] k1tt9nM1nd: folds -s0rrow: raises $0.20 to $0.30 +Hero: raises $0.20 to $0.30 Gles65: folds Swiss777: folds -Uncalled bet ($0.20) returned to s0rrow -s0rrow collected $0.25 from pot +Uncalled bet ($0.20) returned to Hero +Hero 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) +Seat 6: Hero (button) collected ($0.25) @@ -2074,12 +2074,12 @@ 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) +Seat 6: Hero ($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 +Dealt to Hero [6d 3d] +Hero: folds Gles65: folds Swiss777: folds Uncalled bet ($0.05) returned to k1tt9nM1nd @@ -2089,7 +2089,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -2098,20 +2098,20 @@ 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) +Seat 6: Hero ($26.45 in chips) k1tt9nM1nd: posts small blind $0.05 -s0rrow: posts big blind $0.10 +Hero: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [2c 5s] +Dealt to Hero [2c 5s] Gles65: calls $0.10 Swiss777: folds k1tt9nM1nd: folds -s0rrow: checks +Hero: checks *** FLOP *** [Js Ac 4c] Patman01 joins the table at seat #5 -s0rrow: checks +Hero: checks Gles65: bets $0.20 -s0rrow: folds +Hero: folds Uncalled bet ($0.20) returned to Gles65 Sr Radío joins the table at seat #3 Gles65 collected $0.25 from pot @@ -2122,7 +2122,7 @@ 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 +Seat 6: Hero (big blind) folded on the Flop @@ -2131,16 +2131,16 @@ 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) +Seat 6: Hero ($26.35 in chips) Patman01 will be allowed to play after the button -s0rrow: posts small blind $0.05 +Hero: posts small blind $0.05 Gles65: posts big blind $0.10 Sr Radío: sits out *** HOLE CARDS *** -Dealt to s0rrow [7c As] +Dealt to Hero [7c As] Swiss777: raises $0.30 to $0.40 k1tt9nM1nd: raises $0.90 to $1.30 -s0rrow: folds +Hero: folds Gles65: folds Swiss777: folds Uncalled bet ($0.90) returned to k1tt9nM1nd @@ -2150,7 +2150,7 @@ 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 +Seat 6: Hero (small blind) folded before Flop @@ -2159,15 +2159,15 @@ 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) +Seat 6: Hero ($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] +Dealt to Hero [3h 5d] k1tt9nM1nd: folds -s0rrow: folds +Hero: folds Gles65: calls $0.05 Swiss777: checks *** FLOP *** [8s 6c Qh] @@ -2185,7 +2185,7 @@ 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) +Seat 6: Hero (button) folded before Flop (didn't bet) @@ -2195,14 +2195,14 @@ 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) +Seat 6: Hero ($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] +Dealt to Hero [Jh 6d] k1tt9nM1nd: folds -s0rrow: folds +Hero: folds Gles65: folds Swiss777: folds Uncalled bet ($0.05) returned to Sr Radío @@ -2214,7 +2214,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -2224,13 +2224,13 @@ 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) +Seat 6: Hero ($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 +Dealt to Hero [7c Qh] +Hero: folds Gles65: folds Swiss777: folds Sr Radío: calls $0.05 @@ -2256,7 +2256,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -2267,12 +2267,12 @@ 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) +Seat 6: Hero ($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 +Dealt to Hero [Qd 7c] +Hero: folds Gles65: folds Swiss777: folds Sr Radío: raises $0.15 to $0.25 @@ -2288,7 +2288,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -2299,27 +2299,27 @@ 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) +Seat 6: Hero ($26.30 in chips) Patman01: posts small blind $0.05 -s0rrow: posts big blind $0.10 +Hero: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Qh 8h] +Dealt to Hero [Qh 8h] Gles65: folds Swiss777: folds Sr Radío: folds k1tt9nM1nd: folds Patman01: calls $0.05 -s0rrow: checks +Hero: checks *** FLOP *** [9d Qs 3h] k1tt9nM1nd leaves the table Patman01: checks -s0rrow: checks +Hero: checks *** TURN *** [9d Qs 3h] [Kc] Patman01: checks -s0rrow: bets $0.20 +Hero: bets $0.20 Patman01: folds -Uncalled bet ($0.20) returned to s0rrow -s0rrow collected $0.20 from pot +Uncalled bet ($0.20) returned to Hero +Hero collected $0.20 from pot *** SUMMARY *** Total pot $0.20 | Rake $0 Board [9d Qs 3h Kc] @@ -2328,7 +2328,7 @@ 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) +Seat 6: Hero (big blind) collected ($0.20) @@ -2338,15 +2338,15 @@ 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 +Seat 6: Hero ($26.40 in chips) +Hero: posts small blind $0.05 Gles65: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [7h 8d] +Dealt to Hero [7h 8d] Swiss777: raises $0.30 to $0.40 Sr Radío: folds Patman01: folds -s0rrow: folds +Hero: folds Gles65: folds Uncalled bet ($0.30) returned to Swiss777 Swiss777 collected $0.25 from pot @@ -2357,7 +2357,7 @@ 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 +Seat 6: Hero (small blind) folded before Flop @@ -2367,14 +2367,14 @@ 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) +Seat 6: Hero ($26.35 in chips) Gles65: posts small blind $0.05 Swiss777: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [4d 6h] +Dealt to Hero [4d 6h] Sr Radío: raises $0.15 to $0.25 Patman01: folds -s0rrow: folds +Hero: folds Gles65: folds Swiss777: folds Uncalled bet ($0.15) returned to Sr Radío @@ -2386,7 +2386,7 @@ 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) +Seat 6: Hero (button) folded before Flop (didn't bet) @@ -2396,13 +2396,13 @@ 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) +Seat 6: Hero ($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] +Dealt to Hero [Ts 5c] Patman01: folds -s0rrow: folds +Hero: folds Gles65: folds Swiss777: folds Uncalled bet ($0.05) returned to Sr Radío @@ -2414,7 +2414,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -2424,12 +2424,12 @@ 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) +Seat 6: Hero ($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 +Dealt to Hero [9h Ts] +Hero: folds Gles65: folds Swiss777: folds Sr Radío: folds @@ -2442,7 +2442,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -2452,11 +2452,11 @@ 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) +Seat 6: Hero ($26.35 in chips) Patman01: posts small blind $0.05 -s0rrow: posts big blind $0.10 +Hero: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [4s Qd] +Dealt to Hero [4s Qd] espanol63 joins the table at seat #4 Gles65 has timed out Gles65: folds @@ -2465,7 +2465,7 @@ Swiss777: folds Gles65 has returned Sr Radío: raises $0.15 to $0.25 Patman01: folds -s0rrow: folds +Hero: 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 @@ -2475,7 +2475,7 @@ 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 +Seat 6: Hero (big blind) folded before Flop @@ -2485,25 +2485,25 @@ 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 +Seat 6: Hero ($26.25 in chips) +Hero: posts small blind $0.05 Gles65: posts big blind $0.10 espanol63: sits out *** HOLE CARDS *** -Dealt to s0rrow [9d Qc] +Dealt to Hero [9d Qc] Swiss777: folds Sr Radío: folds Patman01: folds -s0rrow: calls $0.05 +Hero: calls $0.05 Gles65: checks *** FLOP *** [9h 5c Jd] -s0rrow: checks +Hero: checks Gles65: checks *** TURN *** [9h 5c Jd] [5d] -s0rrow: bets $0.30 +Hero: bets $0.30 Gles65: folds -Uncalled bet ($0.30) returned to s0rrow -s0rrow collected $0.20 from pot +Uncalled bet ($0.30) returned to Hero +Hero collected $0.20 from pot *** SUMMARY *** Total pot $0.20 | Rake $0 Board [9h 5c Jd 5d] @@ -2511,7 +2511,7 @@ 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) +Seat 6: Hero (small blind) collected ($0.20) @@ -2521,15 +2521,15 @@ 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) +Seat 6: Hero ($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] +Dealt to Hero [3s 2d] Sr Radío: folds Patman01: folds -s0rrow: folds +Hero: folds Gles65: calls $0.05 Swiss777: checks *** FLOP *** [Ad 7h Jh] @@ -2552,7 +2552,7 @@ Seat 1: Gles65 (small blind) showed [9c Kc] and won ($0.20) with a pair of Seven 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) +Seat 6: Hero (button) folded before Flop (didn't bet) @@ -2562,14 +2562,14 @@ 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) +Seat 6: Hero ($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] +Dealt to Hero [8c Qd] Patman01: folds -s0rrow: folds +Hero: folds Sr Radío has returned Sr Radío leaves the table Gles65: raises $0.30 to $0.40 @@ -2597,7 +2597,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -2607,30 +2607,30 @@ 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) +Seat 6: Hero ($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 +Dealt to Hero [5s 5d] +Hero: raises $0.20 to $0.30 Gles65: raises $0.60 to $0.90 Swiss777: folds espanol63: folds Patman01: folds -s0rrow: calls $0.60 +Hero: calls $0.60 *** FLOP *** [Tc Td Ad] -s0rrow: checks +Hero: checks Gles65: checks *** TURN *** [Tc Td Ad] [7h] -s0rrow: checks +Hero: checks Gles65: bets $1.20 -s0rrow: calls $1.20 +Hero: calls $1.20 *** RIVER *** [Tc Td Ad 7h] [6s] -s0rrow: checks +Hero: checks Gles65: checks *** SHOW DOWN *** -s0rrow: shows [5s 5d] (two pair, Tens and Fives) +Hero: shows [5s 5d] (two pair, Tens and Fives) Gles65: shows [Jh Js] (two pair, Jacks and Tens) Gles65 collected $4.15 from pot *** SUMMARY *** @@ -2640,7 +2640,7 @@ 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 +Seat 6: Hero showed [5s 5d] and lost with two pair, Tens and Fives @@ -2651,33 +2651,33 @@ 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) +Seat 6: Hero ($24.25 in chips) Patman01: posts small blind $0.05 -s0rrow: posts big blind $0.10 +Hero: posts big blind $0.10 Andrey_UKRNA: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [Kc 4h] +Dealt to Hero [Kc 4h] Gles65: folds Swiss777: folds Andrey_UKRNA: checks espanol63: folds Patman01: folds -s0rrow: checks +Hero: checks *** FLOP *** [3h 6d 5c] -s0rrow: bets $0.20 +Hero: bets $0.20 Andrey_UKRNA: raises $0.20 to $0.40 -s0rrow: calls $0.20 +Hero: calls $0.20 *** TURN *** [3h 6d 5c] [Ts] -s0rrow: checks +Hero: checks Andrey_UKRNA: bets $0.40 -s0rrow: calls $0.40 +Hero: calls $0.40 *** RIVER *** [3h 6d 5c Ts] [Ks] -s0rrow: checks +Hero: checks Andrey_UKRNA: bets $0.40 -s0rrow: calls $0.40 +Hero: calls $0.40 *** SHOW DOWN *** Andrey_UKRNA: shows [2s 4d] (a straight, Deuce to Six) -s0rrow: mucks hand +Hero: mucks hand Andrey_UKRNA collected $2.55 from pot *** SUMMARY *** Total pot $2.65 | Rake $0.10 @@ -2687,7 +2687,7 @@ 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] +Seat 6: Hero (big blind) mucked [Kc 4h] @@ -2698,26 +2698,26 @@ 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 +Seat 6: Hero ($22.95 in chips) +Hero: posts small blind $0.05 Gles65: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [7d 7h] +Dealt to Hero [7d 7h] Swiss777: folds Andrey_UKRNA: folds espanol63: folds Patman01: folds -s0rrow: raises $0.20 to $0.30 +Hero: raises $0.20 to $0.30 Gles65: raises $0.60 to $0.90 -s0rrow: calls $0.60 +Hero: calls $0.60 *** FLOP *** [4d 5s Qc] -s0rrow: checks +Hero: checks Gles65: checks *** TURN *** [4d 5s Qc] [3c] -s0rrow: bets $1.60 +Hero: bets $1.60 Gles65: folds -Uncalled bet ($1.60) returned to s0rrow -s0rrow collected $1.75 from pot +Uncalled bet ($1.60) returned to Hero +Hero collected $1.75 from pot *** SUMMARY *** Total pot $1.80 | Rake $0.05 Board [4d 5s Qc 3c] @@ -2726,7 +2726,7 @@ 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) +Seat 6: Hero (small blind) collected ($1.75) @@ -2737,15 +2737,15 @@ 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) +Seat 6: Hero ($23.80 in chips) Gles65: posts small blind $0.05 Swiss777: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [4h 2c] +Dealt to Hero [4h 2c] Andrey_UKRNA: folds espanol63: raises $0.30 to $0.40 Patman01: folds -s0rrow: folds +Hero: folds Gles65: folds Swiss777: folds Uncalled bet ($0.30) returned to espanol63 @@ -2758,7 +2758,7 @@ 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) +Seat 6: Hero (button) folded before Flop (didn't bet) @@ -2769,14 +2769,14 @@ 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) +Seat 6: Hero ($23.80 in chips) Swiss777: posts small blind $0.05 Andrey_UKRNA: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [8h Tc] +Dealt to Hero [8h Tc] espanol63: calls $0.10 Patman01: raises $0.20 to $0.30 -s0rrow: folds +Hero: folds Gles65: folds Swiss777: folds Andrey_UKRNA: folds @@ -2804,7 +2804,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) @@ -2815,13 +2815,13 @@ 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) +Seat 6: Hero ($23.80 in chips) Andrey_UKRNA: posts small blind $0.05 espanol63: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [9h 2d] +Dealt to Hero [9h 2d] Patman01: folds -s0rrow: folds +Hero: folds Gles65: folds Swiss777: raises $0.30 to $0.40 Andrey_UKRNA: folds @@ -2837,7 +2837,7 @@ 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) +Seat 6: Hero folded before Flop (didn't bet) diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-6max-USD-0.05-0.10-200912.Allin-pre.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-6max-USD-0.05-0.10-200912.Allin-pre.txt index 6c3ba7d3..674267d2 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-6max-USD-0.05-0.10-200912.Allin-pre.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-6max-USD-0.05-0.10-200912.Allin-pre.txt @@ -4,28 +4,28 @@ Seat 1: Blåveis ($55.10 in chips) Seat 2: Kinewma ($31.40 in chips) Seat 3: AAALISAAAA ($20.20 in chips) Seat 4: Arbaz ($25 in chips) -Seat 5: s0rrow ($29.85 in chips) +Seat 5: Hero ($29.85 in chips) Seat 6: bys7 ($41.35 in chips) AAALISAAAA: posts small blind $0.10 Arbaz: posts big blind $0.25 *** HOLE CARDS *** -Dealt to s0rrow [Ac As] -s0rrow: raises $0.50 to $0.75 +Dealt to Hero [Ac As] +Hero: raises $0.50 to $0.75 bys7: calls $0.75 Blåveis: folds Kinewma: folds AAALISAAAA: raises $1.50 to $2.25 Arbaz: folds -s0rrow: raises $3.50 to $5.75 +Hero: raises $3.50 to $5.75 bys7: folds AAALISAAAA: raises $14.45 to $20.20 and is all-in -s0rrow: calls $14.45 +Hero: calls $14.45 *** FLOP *** [3d 7h Kh] *** TURN *** [3d 7h Kh] [Ts] *** RIVER *** [3d 7h Kh Ts] [5c] *** SHOW DOWN *** AAALISAAAA: shows [Kd 5d] (two pair, Kings and Fives) -s0rrow: shows [Ac As] (a pair of Aces) +Hero: shows [Ac As] (a pair of Aces) AAALISAAAA collected $39.35 from pot *** SUMMARY *** Total pot $41.40 | Rake $2.05 @@ -34,7 +34,7 @@ Seat 1: Blåveis folded before Flop (didn't bet) Seat 2: Kinewma (button) folded before Flop (didn't bet) Seat 3: AAALISAAAA (small blind) showed [Kd 5d] and won ($39.35) with two pair, Kings and Fives Seat 4: Arbaz (big blind) folded before Flop -Seat 5: s0rrow showed [Ac As] and lost with a pair of Aces +Seat 5: Hero showed [Ac As] and lost with a pair of Aces Seat 6: bys7 folded before Flop diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-6max-USD-0.05-0.10-200912.Allin-pre.txt.hp b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-6max-USD-0.05-0.10-200912.Allin-pre.txt.hp index bbc87a77..a073d0c1 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-6max-USD-0.05-0.10-200912.Allin-pre.txt.hp +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-6max-USD-0.05-0.10-200912.Allin-pre.txt.hp @@ -468,7 +468,7 @@ 'wonWhenSeenStreet2': 0.0, 'wonWhenSeenStreet3': 0.0, 'wonWhenSeenStreet4': 0.0}, - u's0rrow': { 'card1': 39, + u'Hero': { 'card1': 39, 'card2': 52, 'card3': 0, 'card4': 0, diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-6max-USD-0.05-0.10-200912.Stats-comparision.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-6max-USD-0.05-0.10-200912.Stats-comparision.txt index 5f140759..3b9f503f 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-6max-USD-0.05-0.10-200912.Stats-comparision.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-6max-USD-0.05-0.10-200912.Stats-comparision.txt @@ -1,6 +1,6 @@ PokerStars Game #36185273365: Hold'em No Limit ($0.05/$0.10 USD) - 2009/12/03 9:16:10 ET Table 'Eurynome IV' 6-max Seat #3 is the button -Seat 1: s0rrow ($16.10 in chips) +Seat 1: Hero ($16.10 in chips) Seat 2: chrisbiz ($9.45 in chips) Seat 3: papajohn77 ($6.55 in chips) Seat 4: WSOFish ($21.05 in chips) @@ -9,30 +9,30 @@ Seat 6: garegerret ($10.60 in chips) WSOFish: posts small blind $0.05 drefron: posts big blind $0.10 *** HOLE CARDS *** -Dealt to s0rrow [5s As] +Dealt to Hero [5s As] garegerret: folds -s0rrow: raises $0.20 to $0.30 +Hero: raises $0.20 to $0.30 chrisbiz: calls $0.30 papajohn77: folds WSOFish: folds drefron: folds *** FLOP *** [8c 4c 4d] -s0rrow: checks +Hero: checks chrisbiz: bets $0.40 -s0rrow: raises $1 to $1.40 +Hero: raises $1 to $1.40 chrisbiz: calls $1 *** TURN *** [8c 4c 4d] [Kc] -s0rrow: bets $3.20 +Hero: bets $3.20 chrisbiz: calls $3.20 *** RIVER *** [8c 4c 4d Kc] [2s] -s0rrow: bets $11.20 and is all-in +Hero: bets $11.20 and is all-in chrisbiz: folds -Uncalled bet ($11.20) returned to s0rrow -s0rrow collected $9.50 from pot +Uncalled bet ($11.20) returned to Hero +Hero collected $9.50 from pot *** SUMMARY *** Total pot $9.95 | Rake $0.45 Board [8c 4c 4d Kc 2s] -Seat 1: s0rrow collected ($9.50) +Seat 1: Hero collected ($9.50) Seat 2: chrisbiz folded on the River Seat 3: papajohn77 (button) folded before Flop (didn't bet) Seat 4: WSOFish (small blind) folded before Flop diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt index df2f01aa..e6d88926 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt @@ -1,7 +1,7 @@ PokerStars Game #42738187409: Hold'em No Limit ($0.01/$0.02 USD) - 2010/04/16 11:14:06 WET [2010/04/16 6:14:06 ET] Table 'Circinus V' 9-max Seat #4 is the button Seat 1: Player2 ($4.26 in chips) -Seat 2: Player1 ($0.35 in chips) +Seat 2: Hero ($0.35 in chips) Seat 3: Player7 ($8.34 in chips) Seat 4: Player5 ($3.70 in chips) Seat 5: Player6 ($4.98 in chips) @@ -12,13 +12,13 @@ Player6: posts small blind $0.01 Alehta: is sitting out Player3: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player1 [3d Ks] +Dealt to Hero [3d Ks] Alehta leaves the table Player0: calls $0.02 Player4: raises $0.06 to $0.08 Player2: raises $0.16 to $0.24 AFMAT joins the table at seat #6 -Player1: folds +Hero: folds Player7: folds Player5: folds Player6: folds @@ -38,7 +38,7 @@ Player4 collected $2.79 from pot Total pot $2.89 | Rake $0.10 Board [7c Ac 6s 5d Qh] Seat 1: Player2 showed [Jc Jd] and lost with a pair of Jacks -Seat 2: Player1 folded before Flop (didn't bet) +Seat 2: Hero folded before Flop (didn't bet) Seat 3: Player7 folded before Flop (didn't bet) Seat 4: Player5 (button) folded before Flop (didn't bet) Seat 5: Player6 (small blind) folded before Flop diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt.hp b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt.hp index e4b0a096..50638df3 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt.hp +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt.hp @@ -92,7 +92,7 @@ 'wonWhenSeenStreet2': 0.0, 'wonWhenSeenStreet3': 0.0, 'wonWhenSeenStreet4': 0.0}, - u'Player1': { 'card1': 15, + u'Hero': { 'card1': 15, 'card2': 51, 'card3': 0, 'card4': 0, diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt index 1843bbf5..419d9ef7 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt @@ -2,7 +2,7 @@ Table '99999999' 9-max Seat #5 is the button Seat 2: Player14 ($0.97 in chips) Seat 3: Player23 ($1.53 in chips) -Seat 4: Player17 ($1.60 in chips) +Seat 4: Hero ($1.60 in chips) Seat 5: Player5 ($2.91 in chips) Seat 6: Player22 ($2.45 in chips) Seat 7: Player19 ($2.56 in chips) @@ -10,14 +10,14 @@ Seat 8: Player3 ($3.01 in chips) Seat 9: Player21 ($0.58 in chips) Player22: posts small blind $0.01 Player19: posts big blind $0.02 -Player17: posts big blind $0.02 +Hero: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [2d Kc] +Dealt to Hero [2d Kc] Player3: folds Player21: folds Player14: calls $0.02 Player23: calls $0.02 -Player17: checks +Hero: checks Player5: folds Player22: calls $0.01 Player19: checks @@ -26,7 +26,7 @@ Player22: bets $0.06 Player19: folds Player14: calls $0.06 Player23: folds -Player17: folds +Hero: folds *** TURN *** [Qh 8d 7s] [3s] Player22: bets $0.30 Player14: folds @@ -38,7 +38,7 @@ Total pot $0.22 | Rake $0 Board [Qh 8d 7s 3s] Seat 2: Player14 folded on the Turn Seat 3: Player23 folded on the Flop -Seat 4: Player17 folded on the Flop +Seat 4: Hero folded on the Flop Seat 5: Player5 (button) folded before Flop (didn't bet) Seat 6: Player22 (small blind) collected ($0.22) Seat 7: Player19 (big blind) folded on the Flop @@ -51,7 +51,7 @@ PokerStars Game #85321652824: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #6 is the button Seat 2: Player14 ($0.89 in chips) Seat 3: Player23 ($1.51 in chips) -Seat 4: Player17 ($1.58 in chips) +Seat 4: Hero ($1.58 in chips) Seat 5: Player5 ($2.91 in chips) Seat 6: Player22 ($2.59 in chips) Seat 7: Player19 ($2.54 in chips) @@ -60,11 +60,11 @@ Seat 9: Player21 ($0.58 in chips) Player19: posts small blind $0.01 Player3: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [3h Td] +Dealt to Hero [3h Td] Player21: folds Player14: folds Player23: folds -Player17: folds +Hero: folds Player5: raises $0.10 to $0.12 Player22: calls $0.12 Player11 joins the table at seat #1 @@ -82,7 +82,7 @@ Total pot $0.27 | Rake $0 Board [Js Qh 9s] Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player5 folded on the Flop Seat 6: Player22 (button) collected ($0.27) Seat 7: Player19 (small blind) folded before Flop @@ -95,7 +95,7 @@ PokerStars Game #30102275294: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #7 is the button Seat 2: Player14 ($0.89 in chips) Seat 3: Player23 ($1.51 in chips) -Seat 4: Player17 ($1.58 in chips) +Seat 4: Hero ($1.58 in chips) Seat 5: Player5 ($2.79 in chips) Seat 6: Player22 ($2.74 in chips) Seat 7: Player19 ($2.53 in chips) @@ -105,23 +105,23 @@ Player3: posts small blind $0.01 Player21: posts big blind $0.02 Player11: sits out *** HOLE CARDS *** -Dealt to Player17 [Qc 5d] +Dealt to Hero [Qc 5d] Player14: folds Player23: folds -Player17: raises $0.04 to $0.06 +Hero: raises $0.04 to $0.06 Player5: folds Player22: folds Player19: folds Player3: folds Player21: folds -Uncalled bet ($0.04) returned to Player17 -Player17 collected $0.05 from pot -Player17: doesn't show hand +Uncalled bet ($0.04) returned to Hero +Hero collected $0.05 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $0.05 | Rake $0 Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.05) +Seat 4: Hero collected ($0.05) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 (button) folded before Flop (didn't bet) @@ -135,7 +135,7 @@ Table '99999999' 9-max Seat #8 is the button Seat 1: Player11 ($1.60 in chips) Seat 2: Player14 ($0.89 in chips) Seat 3: Player23 ($1.51 in chips) -Seat 4: Player17 ($1.61 in chips) +Seat 4: Hero ($1.61 in chips) Seat 5: Player5 ($2.79 in chips) Seat 6: Player22 ($2.74 in chips) Seat 7: Player19 ($2.53 in chips) @@ -144,10 +144,10 @@ Seat 9: Player21 ($0.56 in chips) Player21: posts small blind $0.01 Player11: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [5d Qc] +Dealt to Hero [5d Qc] Player14: folds Player23: folds -Player17: folds +Hero: folds Player5: folds Player22: folds Player19: folds @@ -166,7 +166,7 @@ Board [7s 3s Kd] Seat 1: Player11 (big blind) folded on the Flop Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 folded before Flop (didn't bet) @@ -180,7 +180,7 @@ Table '99999999' 9-max Seat #9 is the button Seat 1: Player11 ($1.58 in chips) Seat 2: Player14 ($0.89 in chips) Seat 3: Player23 ($1.51 in chips) -Seat 4: Player17 ($1.61 in chips) +Seat 4: Hero ($1.61 in chips) Seat 5: Player5 ($2.79 in chips) Seat 6: Player22 ($2.74 in chips) Seat 7: Player19 ($2.53 in chips) @@ -189,9 +189,9 @@ Seat 9: Player21 ($0.58 in chips) Player11: posts small blind $0.01 Player14: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [8d 7d] +Dealt to Hero [8d 7d] Player23: folds -Player17: calls $0.02 +Hero: calls $0.02 Player5: folds Player22: folds Player19: calls $0.02 @@ -202,16 +202,16 @@ Player14: checks *** FLOP *** [5s 9c 4c] Player11: bets $0.08 Player14: calls $0.08 -Player17: calls $0.08 +Hero: calls $0.08 Player19: folds *** TURN *** [5s 9c 4c] [Td] Player11: bets $0.04 Player14: calls $0.04 -Player17: calls $0.04 +Hero: calls $0.04 *** RIVER *** [5s 9c 4c Td] [Kh] Player11: checks Player14: bets $0.10 -Player17: folds +Hero: folds Player11: folds Uncalled bet ($0.10) returned to Player14 Player14 collected $0.44 from pot @@ -221,7 +221,7 @@ Board [5s 9c 4c Td Kh] Seat 1: Player11 (small blind) folded on the River Seat 2: Player14 (big blind) collected ($0.44) Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded on the River +Seat 4: Hero folded on the River Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 folded on the Flop @@ -235,7 +235,7 @@ Table '99999999' 9-max Seat #1 is the button Seat 1: Player11 ($1.44 in chips) Seat 2: Player14 ($1.19 in chips) Seat 3: Player23 ($1.51 in chips) -Seat 4: Player17 ($1.47 in chips) +Seat 4: Hero ($1.47 in chips) Seat 5: Player5 ($2.79 in chips) Seat 6: Player22 ($2.74 in chips) Seat 7: Player19 ($2.51 in chips) @@ -244,8 +244,8 @@ Seat 9: Player21 ($0.58 in chips) Player14: posts small blind $0.01 Player23: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [3s 5d] -Player17: folds +Dealt to Hero [3s 5d] +Hero: folds Player5: folds Player22: raises $0.02 to $0.04 Player19: folds @@ -269,7 +269,7 @@ Board [4h 6d 4s] Seat 1: Player11 (button) collected ($0.55) Seat 2: Player14 (small blind) folded before Flop Seat 3: Player23 (big blind) folded on the Flop -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 folded on the Flop Seat 7: Player19 folded before Flop (didn't bet) @@ -283,16 +283,16 @@ Table '99999999' 9-max Seat #2 is the button Seat 1: Player11 ($1.81 in chips) Seat 2: Player14 ($1.18 in chips) Seat 3: Player23 ($2.13 in chips) -Seat 4: Player17 ($1.47 in chips) +Seat 4: Hero ($1.47 in chips) Seat 5: Player5 ($2.79 in chips) Seat 6: Player22 ($2.56 in chips) Seat 7: Player19 ($2.51 in chips) Seat 8: Player3 ($3 in chips) Seat 9: Player21 ($0.58 in chips) Player23: posts small blind $0.01 -Player17: posts big blind $0.02 +Hero: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [2c 5d] +Dealt to Hero [2c 5d] Player5: folds Player22: folds Player19: folds @@ -301,21 +301,21 @@ Player21: folds Player11: folds Player14: calls $0.02 Player23: calls $0.01 -Player17: checks +Hero: checks *** FLOP *** [8s 4s Ah] Player23: checks -Player17: checks +Hero: checks Player14: bets $0.06 Player23: folds -Player17: calls $0.06 +Hero: calls $0.06 *** TURN *** [8s 4s Ah] [Qs] -Player17: bets $0.10 +Hero: bets $0.10 Player14: calls $0.10 *** RIVER *** [8s 4s Ah Qs] [9h] -Player17: checks +Hero: checks Player14: checks *** SHOW DOWN *** -Player17: shows [2c 5d] (high card Ace) +Hero: shows [2c 5d] (high card Ace) Player14: shows [Ac Jc] (a pair of Aces) Player14 collected $0.38 from pot *** SUMMARY *** @@ -324,7 +324,7 @@ Board [8s 4s Ah Qs 9h] Seat 1: Player11 folded before Flop (didn't bet) Seat 2: Player14 (button) showed [Ac Jc] and won ($0.38) with a pair of Aces Seat 3: Player23 (small blind) folded on the Flop -Seat 4: Player17 (big blind) showed [2c 5d] and lost with high card Ace +Seat 4: Hero (big blind) showed [2c 5d] and lost with high card Ace Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 folded before Flop (didn't bet) @@ -338,16 +338,16 @@ Table '99999999' 9-max Seat #3 is the button Seat 1: Player11 ($1.81 in chips) Seat 2: Player14 ($1.38 in chips) Seat 3: Player23 ($2.11 in chips) -Seat 4: Player17 ($1.29 in chips) +Seat 4: Hero ($1.29 in chips) Seat 5: Player5 ($2.79 in chips) Seat 6: Player22 ($2.56 in chips) Seat 7: Player19 ($2.51 in chips) Seat 8: Player3 ($3 in chips) Seat 9: Player21 ($0.58 in chips) -Player17: posts small blind $0.01 +Hero: posts small blind $0.01 Player5: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [4h Qh] +Dealt to Hero [4h Qh] Player22: folds Player19: folds Player3: folds @@ -355,13 +355,13 @@ Player21: folds Player11: folds Player14: folds Player23: raises $0.04 to $0.06 -Player17: calls $0.05 +Hero: calls $0.05 Player5: calls $0.04 *** FLOP *** [7s 3s Ah] -Player17: bets $0.20 +Hero: bets $0.20 Player5: folds Player23: raises $1.85 to $2.05 and is all-in -Player17: folds +Hero: folds Uncalled bet ($1.85) returned to Player23 Player23 collected $0.58 from pot Player23: doesn't show hand @@ -371,7 +371,7 @@ Board [7s 3s Ah] Seat 1: Player11 folded before Flop (didn't bet) Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player23 (button) collected ($0.58) -Seat 4: Player17 (small blind) folded on the Flop +Seat 4: Hero (small blind) folded on the Flop Seat 5: Player5 (big blind) folded on the Flop Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 folded before Flop (didn't bet) @@ -385,7 +385,7 @@ Table '99999999' 9-max Seat #4 is the button Seat 1: Player11 ($1.81 in chips) Seat 2: Player14 ($1.38 in chips) Seat 3: Player23 ($2.43 in chips) -Seat 4: Player17 ($1.03 in chips) +Seat 4: Hero ($1.03 in chips) Seat 5: Player5 ($2.73 in chips) Seat 6: Player22 ($2.56 in chips) Seat 7: Player19 ($2.51 in chips) @@ -394,14 +394,14 @@ Seat 9: Player21 ($0.58 in chips) Player5: posts small blind $0.01 Player22: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Tc 4s] +Dealt to Hero [Tc 4s] Player19: folds Player3: folds Player21: folds Player11: folds Player14: folds Player23: raises $0.04 to $0.06 -Player17: folds +Hero: folds Player5: folds Player22: calls $0.04 *** FLOP *** [2h 7d 3s] @@ -419,7 +419,7 @@ Board [2h 7d 3s Ks] Seat 1: Player11 folded before Flop (didn't bet) Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player23 folded on the Turn -Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 4: Hero (button) folded before Flop (didn't bet) Seat 5: Player5 (small blind) folded before Flop Seat 6: Player22 (big blind) collected ($0.13) Seat 7: Player19 folded before Flop (didn't bet) @@ -433,7 +433,7 @@ Table '99999999' 9-max Seat #5 is the button Seat 1: Player11 ($1.81 in chips) Seat 2: Player14 ($1.38 in chips) Seat 3: Player23 ($2.37 in chips) -Seat 4: Player17 ($1.83 in chips) +Seat 4: Hero ($1.83 in chips) Seat 5: Player5 ($2.72 in chips) Seat 6: Player22 ($2.63 in chips) Seat 7: Player19 ($2.51 in chips) @@ -442,34 +442,34 @@ Seat 9: Player21 ($0.58 in chips) Player22: posts small blind $0.01 Player19: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Ad 3s] +Dealt to Hero [Ad 3s] Player3: folds Player21: folds Player11: folds Player14 has timed out Player14: folds Player23: folds -Player17: raises $0.06 to $0.08 +Hero: raises $0.06 to $0.08 Player5: folds Player22: folds Player19: calls $0.06 *** FLOP *** [6d Jd 7c] Player19: bets $0.04 -Player17: calls $0.04 +Hero: calls $0.04 *** TURN *** [6d Jd 7c] [Js] Player19: checks -Player17: bets $0.26 +Hero: bets $0.26 Player19: folds -Uncalled bet ($0.26) returned to Player17 -Player17 collected $0.25 from pot -Player17: doesn't show hand +Uncalled bet ($0.26) returned to Hero +Hero collected $0.25 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $0.25 | Rake $0 Board [6d Jd 7c Js] Seat 1: Player11 folded before Flop (didn't bet) Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.25) +Seat 4: Hero collected ($0.25) Seat 5: Player5 (button) folded before Flop (didn't bet) Seat 6: Player22 (small blind) folded before Flop Seat 7: Player19 (big blind) folded on the Turn @@ -483,7 +483,7 @@ Table '99999999' 9-max Seat #6 is the button Seat 1: Player11 ($1.81 in chips) Seat 2: Player14 ($1.38 in chips) Seat 3: Player23 ($2.37 in chips) -Seat 4: Player17 ($1.96 in chips) +Seat 4: Hero ($1.96 in chips) Seat 5: Player5 ($2.72 in chips) Seat 6: Player22 ($2.62 in chips) Seat 7: Player19 ($2.39 in chips) @@ -492,12 +492,12 @@ Seat 9: Player21 ($0.58 in chips) Player19: posts small blind $0.01 Player3: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [2c 8c] +Dealt to Hero [2c 8c] Player21: raises $0.06 to $0.08 Player11: raises $0.10 to $0.18 Player14: folds Player23: folds -Player17: folds +Hero: folds Player5: folds Player22: folds Player19: folds @@ -517,7 +517,7 @@ Board [Qs Jh 6h Jc 4h] Seat 1: Player11 showed [Ac Qd] and lost with two pair, Queens and Jacks Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 (button) folded before Flop (didn't bet) Seat 7: Player19 (small blind) folded before Flop @@ -531,7 +531,7 @@ Table '99999999' 9-max Seat #7 is the button Seat 1: Player11 ($1.23 in chips) Seat 2: Player14 ($1.38 in chips) Seat 3: Player23 ($2.37 in chips) -Seat 4: Player17 ($1.96 in chips) +Seat 4: Hero ($1.96 in chips) Seat 5: Player5 ($2.72 in chips) Seat 6: Player22 ($2.62 in chips) Seat 7: Player19 ($2.38 in chips) @@ -540,23 +540,23 @@ Seat 9: Player21 ($1.14 in chips) Player3: posts small blind $0.01 Player21: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [9c 4h] +Dealt to Hero [9c 4h] Player11: raises $0.04 to $0.06 Player14: folds Player23: folds -Player17: calls $0.06 +Hero: calls $0.06 Player5: calls $0.06 Player22: calls $0.06 Player19: raises $0.18 to $0.24 Player3: folds Player21: folds Player11: calls $0.18 -Player17: calls $0.18 +Hero: calls $0.18 Player5: folds Player22: folds *** FLOP *** [Th 7c 5s] Player11: bets $0.23 -Player17: folds +Hero: folds Player19: raises $1.91 to $2.14 and is all-in Player11: calls $0.76 and is all-in Uncalled bet ($1.15) returned to Player19 @@ -572,7 +572,7 @@ Board [Th 7c 5s Td 4s] Seat 1: Player11 showed [Kh Qh] and lost with a pair of Tens Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Flop +Seat 4: Hero folded on the Flop Seat 5: Player5 folded before Flop Seat 6: Player22 folded before Flop Seat 7: Player19 (button) showed [As Ac] and won ($2.75) with two pair, Aces and Tens @@ -585,7 +585,7 @@ PokerStars Game #27226323531: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #8 is the button Seat 2: Player14 ($1.38 in chips) Seat 3: Player23 ($2.37 in chips) -Seat 4: Player17 ($1.72 in chips) +Seat 4: Hero ($1.72 in chips) Seat 5: Player5 ($2.66 in chips) Seat 6: Player22 ($2.56 in chips) Seat 7: Player19 ($3.90 in chips) @@ -594,9 +594,9 @@ Seat 9: Player21 ($1.12 in chips) Player21: posts small blind $0.01 Player14: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [3d 4d] +Dealt to Hero [3d 4d] Player23: folds -Player17: calls $0.02 +Hero: calls $0.02 Player11 leaves the table Player5: folds Player22: folds @@ -606,11 +606,11 @@ Player21: folds Player14: checks *** FLOP *** [8s Ad 8h] Player14: checks -Player17: checks +Hero: checks Player3: checks *** TURN *** [8s Ad 8h] [8c] Player14: bets $0.06 -Player17: folds +Hero: folds Player3: folds Uncalled bet ($0.06) returned to Player14 Player14 collected $0.07 from pot @@ -619,7 +619,7 @@ Total pot $0.07 | Rake $0 Board [8s Ad 8h 8c] Seat 2: Player14 (big blind) collected ($0.07) Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Turn +Seat 4: Hero folded on the Turn Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 folded before Flop (didn't bet) @@ -632,7 +632,7 @@ PokerStars Game #32657659628: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #9 is the button Seat 2: Player14 ($1.43 in chips) Seat 3: Player23 ($2.37 in chips) -Seat 4: Player17 ($1.70 in chips) +Seat 4: Hero ($1.70 in chips) Seat 5: Player5 ($2.66 in chips) Seat 6: Player22 ($2.56 in chips) Seat 7: Player19 ($3.90 in chips) @@ -641,8 +641,8 @@ Seat 9: Player21 ($1.11 in chips) Player14: posts small blind $0.01 Player23: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Ad Kd] -Player17: calls $0.02 +Dealt to Hero [Ad Kd] +Hero: calls $0.02 Player5: folds Player22: folds Player19: folds @@ -653,16 +653,16 @@ Player23: checks *** FLOP *** [5c 9s Kh] Player14: checks Player23: checks -Player17: checks +Hero: checks *** TURN *** [5c 9s Kh] [7s] Player14: bets $0.04 Player23: calls $0.04 Player21 leaves the table -Player17: calls $0.04 +Hero: calls $0.04 *** RIVER *** [5c 9s Kh 7s] [3s] Player14: bets $0.04 Player23: raises $0.04 to $0.08 -Player17: folds +Hero: folds Player18 joins the table at seat #1 Player14: calls $0.04 *** SHOW DOWN *** @@ -674,7 +674,7 @@ Total pot $0.34 | Rake $0 Board [5c 9s Kh 7s 3s] Seat 2: Player14 (small blind) mucked [Kc Td] Seat 3: Player23 (big blind) showed [Qs Ts] and won ($0.34) with a flush, Queen high -Seat 4: Player17 folded on the River +Seat 4: Hero folded on the River Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 folded before Flop (didn't bet) @@ -687,34 +687,34 @@ PokerStars Game #22479236161: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #2 is the button Seat 2: Player14 ($1.29 in chips) Seat 3: Player23 ($2.57 in chips) -Seat 4: Player17 ($1.64 in chips) +Seat 4: Hero ($1.64 in chips) Seat 5: Player5 ($2.66 in chips) Seat 6: Player22 ($2.56 in chips) Seat 7: Player19 ($3.90 in chips) Seat 8: Player3 ($3 in chips) Player23: posts small blind $0.01 -Player17: posts big blind $0.02 +Hero: posts big blind $0.02 Player18: sits out *** HOLE CARDS *** -Dealt to Player17 [4c Js] +Dealt to Hero [4c Js] Player5: folds Player22: calls $0.02 Player19: folds Player3: folds Player14: calls $0.02 Player23: calls $0.01 -Player17: raises $0.12 to $0.14 +Hero: raises $0.12 to $0.14 Player22: folds Player14: folds Player23: folds -Uncalled bet ($0.12) returned to Player17 -Player17 collected $0.08 from pot -Player17: doesn't show hand +Uncalled bet ($0.12) returned to Hero +Hero collected $0.08 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $0.08 | Rake $0 Seat 2: Player14 (button) folded before Flop Seat 3: Player23 (small blind) folded before Flop -Seat 4: Player17 (big blind) collected ($0.08) +Seat 4: Hero (big blind) collected ($0.08) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop Seat 7: Player19 folded before Flop (didn't bet) @@ -726,32 +726,32 @@ PokerStars Game #12335306021: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #3 is the button Seat 2: Player14 ($1.27 in chips) Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($1.70 in chips) +Seat 4: Hero ($1.70 in chips) Seat 5: Player5 ($2.66 in chips) Seat 6: Player22 ($2.54 in chips) Seat 7: Player19 ($3.90 in chips) Seat 8: Player3 ($3 in chips) -Player17: posts small blind $0.01 +Hero: posts small blind $0.01 Player5: posts big blind $0.02 Player18: sits out *** HOLE CARDS *** -Dealt to Player17 [Ts Qc] +Dealt to Hero [Ts Qc] Player9 joins the table at seat #9 Player22: folds Player19: folds Player3: folds Player14: folds Player23: folds -Player17: raises $0.06 to $0.08 +Hero: raises $0.06 to $0.08 Player5: folds -Uncalled bet ($0.06) returned to Player17 -Player17 collected $0.04 from pot -Player17: doesn't show hand +Uncalled bet ($0.06) returned to Hero +Hero collected $0.04 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $0.04 | Rake $0 Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player23 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) collected ($0.04) +Seat 4: Hero (small blind) collected ($0.04) Seat 5: Player5 (big blind) folded before Flop Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 folded before Flop (didn't bet) @@ -763,7 +763,7 @@ PokerStars Game #10841092831: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #4 is the button Seat 2: Player14 ($1.27 in chips) Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($1.72 in chips) +Seat 4: Hero ($1.72 in chips) Seat 5: Player5 ($2.64 in chips) Seat 6: Player22 ($2.54 in chips) Seat 7: Player19 ($3.90 in chips) @@ -774,29 +774,29 @@ Player22: posts big blind $0.02 Player9: posts big blind $0.02 Player18: sits out *** HOLE CARDS *** -Dealt to Player17 [6d Ac] +Dealt to Hero [6d Ac] Player19: folds Player3: folds Player9: checks Player14: folds Player23: folds -Player17: calls $0.02 +Hero: calls $0.02 Player5: folds Player22: checks *** FLOP *** [7s 2d 3h] Player22: checks Player9: checks -Player17: bets $0.04 +Hero: bets $0.04 Player22: calls $0.04 Player9: folds *** TURN *** [7s 2d 3h] [5d] Player22: checks -Player17: checks +Hero: checks *** RIVER *** [7s 2d 3h 5d] [7c] Player22: bets $0.02 -Player17: raises $0.06 to $0.08 +Hero: raises $0.06 to $0.08 Player22: raises $0.06 to $0.14 -Player17: folds +Hero: folds Uncalled bet ($0.06) returned to Player22 Player22 collected $0.31 from pot Player22: doesn't show hand @@ -805,7 +805,7 @@ Total pot $0.31 | Rake $0 Board [7s 2d 3h 5d 7c] Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded on the River +Seat 4: Hero (button) folded on the River Seat 5: Player5 (small blind) folded before Flop Seat 6: Player22 (big blind) collected ($0.31) Seat 7: Player19 folded before Flop (didn't bet) @@ -818,7 +818,7 @@ PokerStars Game #13957140902: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #5 is the button Seat 2: Player14 ($1.27 in chips) Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($1.58 in chips) +Seat 4: Hero ($1.58 in chips) Seat 5: Player5 ($2.63 in chips) Seat 6: Player22 ($2.71 in chips) Seat 7: Player19 ($3.90 in chips) @@ -828,12 +828,12 @@ Player22: posts small blind $0.01 Player19: posts big blind $0.02 Player18: sits out *** HOLE CARDS *** -Dealt to Player17 [9s Kd] +Dealt to Hero [9s Kd] Player3: folds Player9: calls $0.02 Player14: folds Player23: folds -Player17: folds +Hero: folds Player5: folds Player22: calls $0.01 Player19: checks @@ -857,7 +857,7 @@ Total pot $0.90 | Rake $0 Board [9c Qh Tc 5h 2c] Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player5 (button) folded before Flop (didn't bet) Seat 6: Player22 (small blind) mucked [Js 8c] Seat 7: Player19 (big blind) folded on the Flop @@ -870,7 +870,7 @@ PokerStars Game #91692634264: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #6 is the button Seat 2: Player14 ($1.27 in chips) Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($1.58 in chips) +Seat 4: Hero ($1.58 in chips) Seat 5: Player5 ($2.63 in chips) Seat 6: Player22 ($2.27 in chips) Seat 7: Player19 ($3.88 in chips) @@ -880,11 +880,11 @@ Player19: posts small blind $0.01 Player3: posts big blind $0.02 Player18: sits out *** HOLE CARDS *** -Dealt to Player17 [Ts 9h] +Dealt to Hero [Ts 9h] Player9: calls $0.02 Player14: folds Player23: folds -Player17: raises $0.06 to $0.08 +Hero: raises $0.06 to $0.08 Player5: folds Player22: calls $0.08 Player19: folds @@ -892,18 +892,18 @@ Player3: folds Player9: calls $0.06 *** FLOP *** [Ad 8s Js] Player9: checks -Player17: checks +Hero: checks Player22: bets $0.08 Player9: folds -Player17: calls $0.08 +Hero: calls $0.08 *** TURN *** [Ad 8s Js] [3s] -Player17: checks +Hero: checks Player22: bets $0.08 -Player17: calls $0.08 +Hero: calls $0.08 *** RIVER *** [Ad 8s Js 3s] [Jh] -Player17: checks +Hero: checks Player22: bets $0.25 -Player17: folds +Hero: folds Uncalled bet ($0.25) returned to Player22 Player22 collected $0.59 from pot Player22: doesn't show hand @@ -912,7 +912,7 @@ Total pot $0.59 | Rake $0 Board [Ad 8s Js 3s Jh] Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded on the River +Seat 4: Hero folded on the River Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 (button) collected ($0.59) Seat 7: Player19 (small blind) folded before Flop @@ -925,7 +925,7 @@ PokerStars Game #18556118881: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #7 is the button Seat 2: Player14 ($1.27 in chips) Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($1.34 in chips) +Seat 4: Hero ($1.34 in chips) Seat 5: Player5 ($2.63 in chips) Seat 6: Player22 ($2.62 in chips) Seat 7: Player19 ($3.87 in chips) @@ -935,10 +935,10 @@ Player3: posts small blind $0.01 Player9: posts big blind $0.02 Player18: sits out *** HOLE CARDS *** -Dealt to Player17 [3c Tc] +Dealt to Hero [3c Tc] Player14: folds Player23: folds -Player17: folds +Hero: folds Player5: folds Player22: raises $0.04 to $0.06 Player19: folds @@ -951,7 +951,7 @@ Player22: doesn't show hand Total pot $0.05 | Rake $0 Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 collected ($0.05) Seat 7: Player19 (button) folded before Flop (didn't bet) @@ -965,7 +965,7 @@ Table '99999999' 9-max Seat #8 is the button Seat 1: Player18 ($0.80 in chips) Seat 2: Player14 ($1.27 in chips) Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($1.34 in chips) +Seat 4: Hero ($1.34 in chips) Seat 5: Player5 ($2.63 in chips) Seat 6: Player22 ($2.65 in chips) Seat 7: Player19 ($3.87 in chips) @@ -974,25 +974,25 @@ Seat 9: Player9 ($2.19 in chips) Player9: posts small blind $0.01 Player18: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [6c Qs] +Dealt to Hero [6c Qs] Player14: folds Player23: folds -Player17: raises $0.04 to $0.06 +Hero: raises $0.04 to $0.06 Player5: folds Player22: folds Player19: folds Player3: folds Player9: folds Player18: folds -Uncalled bet ($0.04) returned to Player17 -Player17 collected $0.05 from pot -Player17: doesn't show hand +Uncalled bet ($0.04) returned to Hero +Hero collected $0.05 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $0.05 | Rake $0 Seat 1: Player18 (big blind) folded before Flop Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.05) +Seat 4: Hero collected ($0.05) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 folded before Flop (didn't bet) @@ -1006,7 +1006,7 @@ Table '99999999' 9-max Seat #9 is the button Seat 1: Player18 ($0.78 in chips) Seat 2: Player14 ($1.27 in chips) Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($2.17 in chips) +Seat 4: Hero ($2.17 in chips) Seat 5: Player5 ($2.63 in chips) Seat 6: Player22 ($2.65 in chips) Seat 7: Player19 ($3.87 in chips) @@ -1015,9 +1015,9 @@ Seat 9: Player9 ($2.18 in chips) Player18: posts small blind $0.01 Player14: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [6c Ac] +Dealt to Hero [6c Ac] Player23: folds -Player17: calls $0.02 +Hero: calls $0.02 Player5: folds Player22: calls $0.02 Player19: calls $0.02 @@ -1028,7 +1028,7 @@ Player14: checks *** FLOP *** [3s 7s Qh] Player18: checks Player14: checks -Player17: checks +Hero: checks Player22: checks Player19: checks Player9: checks @@ -1036,14 +1036,14 @@ Player9: checks Player23 leaves the table Player18: checks Player14: checks -Player17: checks +Hero: checks Player22: checks Player19: checks Player9: bets $0.02 Player18: calls $0.02 Player24 joins the table at seat #3 Player14: calls $0.02 -Player17: folds +Hero: folds Player22: folds Player19: folds *** RIVER *** [3s 7s Qh Ah] [5d] @@ -1060,7 +1060,7 @@ Board [3s 7s Qh Ah 5d] Seat 1: Player18 (small blind) folded on the River Seat 2: Player14 (big blind) folded on the River Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Turn +Seat 4: Hero folded on the Turn Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 folded on the Turn Seat 7: Player19 folded on the Turn @@ -1074,7 +1074,7 @@ Table '99999999' 9-max Seat #1 is the button Seat 1: Player18 ($0.74 in chips) Seat 2: Player14 ($1.23 in chips) Seat 3: Player24 ($2 in chips) -Seat 4: Player17 ($2.15 in chips) +Seat 4: Hero ($2.15 in chips) Seat 5: Player5 ($2.63 in chips) Seat 6: Player22 ($2.63 in chips) Seat 7: Player19 ($3.85 in chips) @@ -1083,8 +1083,8 @@ Seat 9: Player9 ($2.32 in chips) Player14: posts small blind $0.01 Player24: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [2c Qc] -Player17: calls $0.02 +Dealt to Hero [2c Qc] +Hero: calls $0.02 Player5: folds Player22: calls $0.02 Player19: calls $0.02 @@ -1096,7 +1096,7 @@ Player24: checks *** FLOP *** [5d 2s 3c] Player14: checks Player24: checks -Player17: bets $0.08 +Hero: bets $0.08 Player22: folds Player19: folds Player3: folds @@ -1104,14 +1104,14 @@ Player14: calls $0.08 Player24: folds *** TURN *** [5d 2s 3c] [9d] Player14: checks -Player17: bets $0.20 +Hero: bets $0.20 Player14: calls $0.20 *** RIVER *** [5d 2s 3c 9d] [Jc] Player14: checks -Player17: checks +Hero: checks *** SHOW DOWN *** Player14: shows [4c 4s] (a pair of Fours) -Player17: mucks hand +Hero: mucks hand Player14 collected $0.68 from pot *** SUMMARY *** Total pot $0.68 | Rake $0 @@ -1119,7 +1119,7 @@ Board [5d 2s 3c 9d Jc] Seat 1: Player18 (button) folded before Flop (didn't bet) Seat 2: Player14 (small blind) showed [4c 4s] and won ($0.68) with a pair of Fours Seat 3: Player24 (big blind) folded on the Flop -Seat 4: Player17 mucked [2c Qc] +Seat 4: Hero mucked [2c Qc] Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 folded on the Flop Seat 7: Player19 folded on the Flop @@ -1133,16 +1133,16 @@ Table '99999999' 9-max Seat #2 is the button Seat 1: Player18 ($0.74 in chips) Seat 2: Player14 ($1.61 in chips) Seat 3: Player24 ($1.98 in chips) -Seat 4: Player17 ($1.85 in chips) +Seat 4: Hero ($1.85 in chips) Seat 5: Player5 ($2.63 in chips) Seat 6: Player22 ($2.61 in chips) Seat 7: Player19 ($3.83 in chips) Seat 8: Player3 ($3 in chips) Seat 9: Player9 ($2.32 in chips) Player24: posts small blind $0.01 -Player17: posts big blind $0.02 +Hero: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Tc Td] +Dealt to Hero [Tc Td] Player5: folds Player22: folds Player19: raises $0.06 to $0.08 @@ -1151,25 +1151,25 @@ Player9: folds Player18: folds Player14: folds Player24: calls $0.07 -Player17: raises $0.40 to $0.48 +Hero: raises $0.40 to $0.48 Player19: raises $3.35 to $3.83 and is all-in Player24: folds -Player17: calls $1.37 and is all-in +Hero: calls $1.37 and is all-in Uncalled bet ($1.98) returned to Player19 *** FLOP *** [3s 5c 7c] *** TURN *** [3s 5c 7c] [Th] *** RIVER *** [3s 5c 7c Th] [Jh] *** SHOW DOWN *** -Player17: shows [Tc Td] (three of a kind, Tens) +Hero: shows [Tc Td] (three of a kind, Tens) Player19: shows [Ac As] (a pair of Aces) -Player17 collected $3.63 from pot +Hero collected $3.63 from pot *** SUMMARY *** Total pot $3.78 | Rake $0.15 Board [3s 5c 7c Th Jh] Seat 1: Player18 folded before Flop (didn't bet) Seat 2: Player14 (button) folded before Flop (didn't bet) Seat 3: Player24 (small blind) folded before Flop -Seat 4: Player17 (big blind) showed [Tc Td] and won ($3.63) with three of a kind, Tens +Seat 4: Hero (big blind) showed [Tc Td] and won ($3.63) with three of a kind, Tens Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 showed [Ac As] and lost with a pair of Aces @@ -1183,16 +1183,16 @@ Table '99999999' 9-max Seat #3 is the button Seat 1: Player18 ($0.74 in chips) Seat 2: Player14 ($1.61 in chips) Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.63 in chips) +Seat 4: Hero ($3.63 in chips) Seat 5: Player5 ($2.63 in chips) Seat 6: Player22 ($2.61 in chips) Seat 7: Player19 ($1.98 in chips) Seat 8: Player3 ($3 in chips) Seat 9: Player9 ($2.32 in chips) -Player17: posts small blind $0.01 +Hero: posts small blind $0.01 Player5: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Ad 2s] +Dealt to Hero [Ad 2s] Player22: folds Player19: folds Player3: folds @@ -1200,23 +1200,23 @@ Player9: calls $0.02 Player18: folds Player14: folds Player24: folds -Player17: calls $0.01 +Hero: calls $0.01 Player5: checks *** FLOP *** [6d 7h 3s] -Player17: bets $0.06 +Hero: bets $0.06 Player5: folds Player9: calls $0.06 *** TURN *** [6d 7h 3s] [Kc] -Player17: checks +Hero: checks Player9: bets $0.04 -Player17: calls $0.04 +Hero: calls $0.04 *** RIVER *** [6d 7h 3s Kc] [5d] -Player17: checks +Hero: checks Player9: bets $0.04 -Player17: raises $0.22 to $0.26 +Hero: raises $0.22 to $0.26 Player9: calls $0.22 *** SHOW DOWN *** -Player17: shows [Ad 2s] (high card Ace) +Hero: shows [Ad 2s] (high card Ace) Player9: shows [Jc Js] (a pair of Jacks) Player9 collected $0.78 from pot *** SUMMARY *** @@ -1225,7 +1225,7 @@ Board [6d 7h 3s Kc 5d] Seat 1: Player18 folded before Flop (didn't bet) Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) showed [Ad 2s] and lost with high card Ace +Seat 4: Hero (small blind) showed [Ad 2s] and lost with high card Ace Seat 5: Player5 (big blind) folded on the Flop Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 folded before Flop (didn't bet) @@ -1239,7 +1239,7 @@ Table '99999999' 9-max Seat #4 is the button Seat 1: Player18 ($0.74 in chips) Seat 2: Player14 ($1.61 in chips) Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.25 in chips) +Seat 4: Hero ($3.25 in chips) Seat 5: Player5 ($2.61 in chips) Seat 6: Player22 ($2.61 in chips) Seat 7: Player19 ($1.98 in chips) @@ -1248,22 +1248,22 @@ Seat 9: Player9 ($2.72 in chips) Player5: posts small blind $0.01 Player22: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Ad 3s] +Dealt to Hero [Ad 3s] Player19: folds Player3: folds Player9: calls $0.02 Player18: folds Player14: folds Player24: folds -Player17: calls $0.02 +Hero: calls $0.02 Player5: raises $0.10 to $0.12 Player22: folds Player9: calls $0.10 -Player17: calls $0.10 +Hero: calls $0.10 *** FLOP *** [6h 2c Jd] Player5: bets $0.29 Player9: folds -Player17: folds +Hero: folds Uncalled bet ($0.29) returned to Player5 Player5 collected $0.38 from pot Player5: doesn't show hand @@ -1273,7 +1273,7 @@ Board [6h 2c Jd] Seat 1: Player18 folded before Flop (didn't bet) Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded on the Flop +Seat 4: Hero (button) folded on the Flop Seat 5: Player5 (small blind) collected ($0.38) Seat 6: Player22 (big blind) folded before Flop Seat 7: Player19 folded before Flop (didn't bet) @@ -1287,7 +1287,7 @@ Table '99999999' 9-max Seat #5 is the button Seat 1: Player18 ($0.74 in chips) Seat 2: Player14 ($1.61 in chips) Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.13 in chips) +Seat 4: Hero ($3.13 in chips) Seat 5: Player5 ($2.87 in chips) Seat 6: Player22 ($2.59 in chips) Seat 7: Player19 ($1.98 in chips) @@ -1296,26 +1296,26 @@ Seat 9: Player9 ($2.60 in chips) Player22: posts small blind $0.01 Player19: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Kd Th] +Dealt to Hero [Kd Th] Player3: folds Player9 said, "tu pua madre farolero" Player9: folds Player18: folds Player14: folds Player24: folds -Player17: raises $0.06 to $0.08 +Hero: raises $0.06 to $0.08 Player5: folds Player22: folds Player19: folds -Uncalled bet ($0.06) returned to Player17 -Player17 collected $0.05 from pot -Player17: doesn't show hand +Uncalled bet ($0.06) returned to Hero +Hero collected $0.05 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $0.05 | Rake $0 Seat 1: Player18 folded before Flop (didn't bet) Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.05) +Seat 4: Hero collected ($0.05) Seat 5: Player5 (button) folded before Flop (didn't bet) Seat 6: Player22 (small blind) folded before Flop Seat 7: Player19 (big blind) folded before Flop @@ -1329,7 +1329,7 @@ Table '99999999' 9-max Seat #6 is the button Seat 1: Player18 ($0.74 in chips) Seat 2: Player14 ($1.61 in chips) Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.16 in chips) +Seat 4: Hero ($3.16 in chips) Seat 5: Player5 ($2.87 in chips) Seat 6: Player22 ($2.58 in chips) Seat 7: Player19 ($1.96 in chips) @@ -1338,13 +1338,13 @@ Seat 9: Player9 ($2.60 in chips) Player19: posts small blind $0.01 Player3: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Ks 4h] +Dealt to Hero [Ks 4h] Player9 has timed out Player9: folds Player18: folds Player14: folds Player24: folds -Player17: folds +Hero: folds Player5: folds Player22: raises $0.02 to $0.04 Player19: folds @@ -1357,7 +1357,7 @@ Total pot $0.05 | Rake $0 Seat 1: Player18 folded before Flop (didn't bet) Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 (button) collected ($0.05) Seat 7: Player19 (small blind) folded before Flop @@ -1371,7 +1371,7 @@ Table '99999999' 9-max Seat #7 is the button Seat 1: Player18 ($0.74 in chips) Seat 2: Player14 ($1.61 in chips) Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.16 in chips) +Seat 4: Hero ($3.16 in chips) Seat 5: Player5 ($2.87 in chips) Seat 6: Player22 ($2.61 in chips) Seat 7: Player19 ($1.95 in chips) @@ -1380,11 +1380,11 @@ Seat 9: Player9 ($2.60 in chips) Player3: posts small blind $0.01 Player9: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Jd Th] +Dealt to Hero [Jd Th] Player18: folds Player14: folds Player24: calls $0.02 -Player17: calls $0.02 +Hero: calls $0.02 Player5: folds Player22: folds Player19: folds @@ -1393,23 +1393,23 @@ Player9: checks *** FLOP *** [4d 7d Kh] Player9: checks Player24: checks -Player17: checks +Hero: checks *** TURN *** [4d 7d Kh] [3c] Player9: checks Player24: checks -Player17: bets $0.06 +Hero: bets $0.06 Player9: folds Player24: folds -Uncalled bet ($0.06) returned to Player17 -Player17 collected $0.07 from pot -Player17: doesn't show hand +Uncalled bet ($0.06) returned to Hero +Hero collected $0.07 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $0.07 | Rake $0 Board [4d 7d Kh 3c] Seat 1: Player18 folded before Flop (didn't bet) Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 folded on the Turn -Seat 4: Player17 collected ($0.07) +Seat 4: Hero collected ($0.07) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 (button) folded before Flop (didn't bet) @@ -1423,7 +1423,7 @@ Table '99999999' 9-max Seat #8 is the button Seat 1: Player18 ($0.74 in chips) Seat 2: Player14 ($1.61 in chips) Seat 3: Player24 ($1.88 in chips) -Seat 4: Player17 ($3.21 in chips) +Seat 4: Hero ($3.21 in chips) Seat 5: Player5 ($2.87 in chips) Seat 6: Player22 ($2.61 in chips) Seat 7: Player19 ($1.95 in chips) @@ -1432,10 +1432,10 @@ Seat 9: Player9 ($2.58 in chips) Player9: posts small blind $0.01 Player18: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [9s 3d] +Dealt to Hero [9s 3d] Player14: folds Player24: folds -Player17: folds +Hero: folds Player5: folds Player22: folds Player19: folds @@ -1456,7 +1456,7 @@ Board [3c Ac Kc Qc] Seat 1: Player18 (big blind) folded on the Turn Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 folded before Flop (didn't bet) @@ -1470,7 +1470,7 @@ Table '99999999' 9-max Seat #9 is the button Seat 1: Player18 ($0.70 in chips) Seat 2: Player14 ($1.61 in chips) Seat 3: Player24 ($1.88 in chips) -Seat 4: Player17 ($3.21 in chips) +Seat 4: Hero ($3.21 in chips) Seat 5: Player5 ($2.87 in chips) Seat 6: Player22 ($2.61 in chips) Seat 7: Player19 ($1.95 in chips) @@ -1479,9 +1479,9 @@ Seat 9: Player9 ($2.62 in chips) Player18: posts small blind $0.01 Player14: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [6h 5c] +Dealt to Hero [6h 5c] Player24: folds -Player17: calls $0.02 +Hero: calls $0.02 Player5: folds Player22: calls $0.02 Player19: folds @@ -1491,23 +1491,23 @@ Player18: folds Player14: checks *** FLOP *** [4c 7c 6s] Player14: checks -Player17: bets $0.08 +Hero: bets $0.08 Player22: folds Player9: calls $0.08 Player14: folds *** TURN *** [4c 7c 6s] [Th] -Player17: bets $0.32 +Hero: bets $0.32 Player9: folds -Uncalled bet ($0.32) returned to Player17 -Player17 collected $0.25 from pot -Player17: doesn't show hand +Uncalled bet ($0.32) returned to Hero +Hero collected $0.25 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $0.25 | Rake $0 Board [4c 7c 6s Th] Seat 1: Player18 (small blind) folded before Flop Seat 2: Player14 (big blind) folded on the Flop Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.25) +Seat 4: Hero collected ($0.25) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 folded on the Flop Seat 7: Player19 folded before Flop (didn't bet) @@ -1521,7 +1521,7 @@ Table '99999999' 9-max Seat #1 is the button Seat 1: Player18 ($0.69 in chips) Seat 2: Player14 ($1.59 in chips) Seat 3: Player24 ($1.88 in chips) -Seat 4: Player17 ($3.36 in chips) +Seat 4: Hero ($3.36 in chips) Seat 5: Player5 ($2.87 in chips) Seat 6: Player22 ($2.59 in chips) Seat 7: Player19 ($1.95 in chips) @@ -1530,8 +1530,8 @@ Seat 9: Player9 ($2.52 in chips) Player14: posts small blind $0.01 Player24: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [7c Tc] -Player17: calls $0.02 +Dealt to Hero [7c Tc] +Hero: calls $0.02 Player5: raises $0.10 to $0.12 Player22: calls $0.12 Player19: folds @@ -1540,25 +1540,25 @@ Player9: folds Player18: folds Player14: folds Player24: folds -Player17: calls $0.10 +Hero: calls $0.10 *** FLOP *** [Jh 6c 5d] -Player17: checks +Hero: checks Player5: bets $0.29 Player22: folds -Player17: calls $0.29 +Hero: calls $0.29 *** TURN *** [Jh 6c 5d] [9d] -Player17: bets $0.32 +Hero: bets $0.32 Player5: folds -Uncalled bet ($0.32) returned to Player17 -Player17 collected $0.97 from pot -Player17: doesn't show hand +Uncalled bet ($0.32) returned to Hero +Hero collected $0.97 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $0.97 | Rake $0 Board [Jh 6c 5d 9d] Seat 1: Player18 (button) folded before Flop (didn't bet) Seat 2: Player14 (small blind) folded before Flop Seat 3: Player24 (big blind) folded before Flop -Seat 4: Player17 collected ($0.97) +Seat 4: Hero collected ($0.97) Seat 5: Player5 folded on the Turn Seat 6: Player22 folded on the Flop Seat 7: Player19 folded before Flop (didn't bet) @@ -1572,16 +1572,16 @@ Table '99999999' 9-max Seat #2 is the button Seat 1: Player18 ($0.69 in chips) Seat 2: Player14 ($1.58 in chips) Seat 3: Player24 ($1.86 in chips) -Seat 4: Player17 ($3.92 in chips) +Seat 4: Hero ($3.92 in chips) Seat 5: Player5 ($2.46 in chips) Seat 6: Player22 ($2.47 in chips) Seat 7: Player19 ($1.95 in chips) Seat 8: Player3 ($3 in chips) Seat 9: Player9 ($2.52 in chips) Player24: posts small blind $0.01 -Player17: posts big blind $0.02 +Hero: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [9c 3s] +Dealt to Hero [9c 3s] Player5: folds Player22: folds Player19: folds @@ -1590,10 +1590,10 @@ Player9: calls $0.02 Player18: folds Player14: folds Player24: calls $0.01 -Player17: checks +Hero: checks *** FLOP *** [2s Jd Qd] Player24: checks -Player17: folds +Hero: folds Player9: checks *** TURN *** [2s Jd Qd] [7h] Player24: bets $0.06 @@ -1606,7 +1606,7 @@ Board [2s Jd Qd 7h] Seat 1: Player18 folded before Flop (didn't bet) Seat 2: Player14 (button) folded before Flop (didn't bet) Seat 3: Player24 (small blind) collected ($0.06) -Seat 4: Player17 (big blind) folded on the Flop +Seat 4: Hero (big blind) folded on the Flop Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 folded before Flop (didn't bet) @@ -1620,16 +1620,16 @@ Table '99999999' 9-max Seat #3 is the button Seat 1: Player18 ($0.69 in chips) Seat 2: Player14 ($1.58 in chips) Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.90 in chips) +Seat 4: Hero ($3.90 in chips) Seat 5: Player5 ($2.46 in chips) Seat 6: Player22 ($2.47 in chips) Seat 7: Player19 ($1.95 in chips) Seat 8: Player3 ($3 in chips) Seat 9: Player9 ($2.50 in chips) -Player17: posts small blind $0.01 +Hero: posts small blind $0.01 Player5: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [As 3c] +Dealt to Hero [As 3c] Player22: calls $0.02 Player19: folds Player3: folds @@ -1637,7 +1637,7 @@ Player9: calls $0.02 Player18: folds Player14: folds Player24: folds -Player17: folds +Hero: folds Player5: checks *** FLOP *** [6s Js 9d] Player5: checks @@ -1653,7 +1653,7 @@ Board [6s Js 9d] Seat 1: Player18 folded before Flop (didn't bet) Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) folded before Flop +Seat 4: Hero (small blind) folded before Flop Seat 5: Player5 (big blind) folded on the Flop Seat 6: Player22 collected ($0.07) Seat 7: Player19 folded before Flop (didn't bet) @@ -1667,7 +1667,7 @@ Table '99999999' 9-max Seat #4 is the button Seat 1: Player18 ($0.69 in chips) Seat 2: Player14 ($1.58 in chips) Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.89 in chips) +Seat 4: Hero ($3.89 in chips) Seat 5: Player5 ($2.44 in chips) Seat 6: Player22 ($2.52 in chips) Seat 7: Player19 ($1.95 in chips) @@ -1676,25 +1676,25 @@ Seat 9: Player9 ($2.48 in chips) Player5: posts small blind $0.01 Player22: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [8d 6h] +Dealt to Hero [8d 6h] Player19: raises $0.04 to $0.06 Player3: folds Player9: folds Player18: folds Player14: folds Player24: folds -Player17: calls $0.06 +Hero: calls $0.06 Player5: folds Player22: folds *** FLOP *** [5c 4h 3h] Player19: bets $0.08 -Player17: calls $0.08 +Hero: calls $0.08 *** TURN *** [5c 4h 3h] [5s] Player19: bets $0.10 -Player17: calls $0.10 +Hero: calls $0.10 *** RIVER *** [5c 4h 3h 5s] [9s] Player19: bets $0.14 -Player17: folds +Hero: folds Uncalled bet ($0.14) returned to Player19 Player19 collected $0.51 from pot Player19: doesn't show hand @@ -1704,7 +1704,7 @@ Board [5c 4h 3h 5s 9s] Seat 1: Player18 folded before Flop (didn't bet) Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded on the River +Seat 4: Hero (button) folded on the River Seat 5: Player5 (small blind) folded before Flop Seat 6: Player22 (big blind) folded before Flop Seat 7: Player19 collected ($0.51) @@ -1718,7 +1718,7 @@ Table '99999999' 9-max Seat #5 is the button Seat 1: Player18 ($0.69 in chips) Seat 2: Player14 ($1.58 in chips) Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.65 in chips) +Seat 4: Hero ($3.65 in chips) Seat 5: Player5 ($2.43 in chips) Seat 6: Player22 ($2.50 in chips) Seat 7: Player19 ($2.22 in chips) @@ -1727,13 +1727,13 @@ Seat 9: Player9 ($2.48 in chips) Player22: posts small blind $0.01 Player19: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [2s 4c] +Dealt to Hero [2s 4c] Player3: folds Player9: calls $0.02 Player18: folds Player14: folds Player24: calls $0.02 -Player17: calls $0.02 +Hero: calls $0.02 Player5: folds Player22: folds Player19: checks @@ -1741,17 +1741,17 @@ Player19: checks Player19: checks Player9: checks Player24: checks -Player17: checks +Hero: checks *** TURN *** [Jh 9h Ac] [2d] Player19: checks Player9: bets $0.02 Player24: calls $0.02 -Player17: calls $0.02 +Hero: calls $0.02 Player19: folds *** RIVER *** [Jh 9h Ac 2d] [Kd] Player9: bets $0.02 Player24: calls $0.02 -Player17: folds +Hero: folds *** SHOW DOWN *** Player9: shows [Qc Qd] (a pair of Queens) Player24: shows [7d Ad] (a pair of Aces) @@ -1762,7 +1762,7 @@ Board [Jh 9h Ac 2d Kd] Seat 1: Player18 folded before Flop (didn't bet) Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 showed [7d Ad] and won ($0.19) with a pair of Aces -Seat 4: Player17 folded on the River +Seat 4: Hero folded on the River Seat 5: Player5 (button) folded before Flop (didn't bet) Seat 6: Player22 (small blind) folded before Flop Seat 7: Player19 (big blind) folded on the Turn @@ -1776,7 +1776,7 @@ Table '99999999' 9-max Seat #6 is the button Seat 1: Player18 ($0.69 in chips) Seat 2: Player14 ($1.58 in chips) Seat 3: Player24 ($2.03 in chips) -Seat 4: Player17 ($3.61 in chips) +Seat 4: Hero ($3.61 in chips) Seat 5: Player5 ($2.43 in chips) Seat 6: Player22 ($2.49 in chips) Seat 7: Player19 ($2.20 in chips) @@ -1785,12 +1785,12 @@ Seat 9: Player9 ($2.42 in chips) Player19: posts small blind $0.01 Player3: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Kd 9d] +Dealt to Hero [Kd 9d] Player9: calls $0.02 Player18: folds Player14: folds Player24: folds -Player17: raises $0.04 to $0.06 +Hero: raises $0.04 to $0.06 Player5: calls $0.06 Player22: folds Player19: folds @@ -1798,23 +1798,23 @@ Player3: folds Player9: calls $0.04 *** FLOP *** [Tc Ts 8s] Player9: checks -Player17: checks +Hero: checks Player5: checks *** TURN *** [Tc Ts 8s] [Jh] Player9: checks -Player17: bets $0.12 +Hero: bets $0.12 Player5: folds Player9: folds -Uncalled bet ($0.12) returned to Player17 -Player17 collected $0.21 from pot -Player17: doesn't show hand +Uncalled bet ($0.12) returned to Hero +Hero collected $0.21 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $0.21 | Rake $0 Board [Tc Ts 8s Jh] Seat 1: Player18 folded before Flop (didn't bet) Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.21) +Seat 4: Hero collected ($0.21) Seat 5: Player5 folded on the Turn Seat 6: Player22 (button) folded before Flop (didn't bet) Seat 7: Player19 (small blind) folded before Flop @@ -1828,7 +1828,7 @@ Table '99999999' 9-max Seat #7 is the button Seat 1: Player18 ($0.69 in chips) Seat 2: Player14 ($1.58 in chips) Seat 3: Player24 ($2.03 in chips) -Seat 4: Player17 ($3.76 in chips) +Seat 4: Hero ($3.76 in chips) Seat 5: Player5 ($2.37 in chips) Seat 6: Player22 ($2.49 in chips) Seat 7: Player19 ($2.19 in chips) @@ -1837,26 +1837,26 @@ Seat 9: Player9 ($2.36 in chips) Player3: posts small blind $0.01 Player9: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Ah Ad] +Dealt to Hero [Ah Ad] Player18: folds Player14: folds Player24: folds -Player17: raises $0.06 to $0.08 +Hero: raises $0.06 to $0.08 Player5: folds Player5 leaves the table Player22: folds Player19: folds Player3: folds Player9: folds -Uncalled bet ($0.06) returned to Player17 -Player17 collected $0.05 from pot -Player17: doesn't show hand +Uncalled bet ($0.06) returned to Hero +Hero collected $0.05 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $0.05 | Rake $0 Seat 1: Player18 folded before Flop (didn't bet) Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.05) +Seat 4: Hero collected ($0.05) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 (button) folded before Flop (didn't bet) @@ -1870,7 +1870,7 @@ Table '99999999' 9-max Seat #8 is the button Seat 1: Player18 ($0.69 in chips) Seat 2: Player14 ($1.58 in chips) Seat 3: Player24 ($2.03 in chips) -Seat 4: Player17 ($3.79 in chips) +Seat 4: Hero ($3.79 in chips) Seat 6: Player22 ($2.49 in chips) Seat 7: Player19 ($2.19 in chips) Seat 8: Player3 ($3 in chips) @@ -1878,10 +1878,10 @@ Seat 9: Player9 ($2.34 in chips) Player9: posts small blind $0.01 Player18: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [8h 8s] +Dealt to Hero [8h 8s] Player14: folds Player24: folds -Player17: calls $0.02 +Hero: calls $0.02 Player22: folds Player19: folds Player3: calls $0.02 @@ -1891,31 +1891,31 @@ Player18: checks Player0 joins the table at seat #5 Player9: checks Player18: checks -Player17: checks +Hero: checks Player3: checks *** TURN *** [Ts 5c 5h] [9h] Player9: checks Player18: checks -Player17: checks +Hero: checks Player3: checks *** RIVER *** [Ts 5c 5h 9h] [2d] Player9: checks Player18: checks -Player17: checks +Hero: checks Player3: checks *** SHOW DOWN *** Player9: shows [8d Qh] (a pair of Fives) Player18: mucks hand -Player17: shows [8h 8s] (two pair, Eights and Fives) +Hero: shows [8h 8s] (two pair, Eights and Fives) Player3: mucks hand -Player17 collected $0.08 from pot +Hero collected $0.08 from pot *** SUMMARY *** Total pot $0.08 | Rake $0 Board [Ts 5c 5h 9h 2d] Seat 1: Player18 (big blind) mucked [Js 3h] Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 showed [8h 8s] and won ($0.08) with two pair, Eights and Fives +Seat 4: Hero showed [8h 8s] and won ($0.08) with two pair, Eights and Fives Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 folded before Flop (didn't bet) Seat 8: Player3 (button) mucked [Ac 3c] @@ -1928,7 +1928,7 @@ Table '99999999' 9-max Seat #9 is the button Seat 1: Player18 ($0.67 in chips) Seat 2: Player14 ($1.58 in chips) Seat 3: Player24 ($2.03 in chips) -Seat 4: Player17 ($3.85 in chips) +Seat 4: Hero ($3.85 in chips) Seat 5: Player0 ($1.60 in chips) Seat 6: Player22 ($2.49 in chips) Seat 7: Player19 ($2.19 in chips) @@ -1938,9 +1938,9 @@ Player18: posts small blind $0.01 Player14: posts big blind $0.02 Player0: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [9h Kc] +Dealt to Hero [9h Kc] Player24: folds -Player17: folds +Hero: folds Player0: raises $0.04 to $0.06 Player22: calls $0.06 Player19: folds @@ -1975,7 +1975,7 @@ Board [As 4s Js 4c Jc] Seat 1: Player18 (small blind) folded before Flop Seat 2: Player14 (big blind) folded on the Flop Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player0 folded on the Flop Seat 6: Player22 showed [Ks Qd] and lost with two pair, Jacks and Fours Seat 7: Player19 folded before Flop (didn't bet) @@ -1989,7 +1989,7 @@ Table '99999999' 9-max Seat #1 is the button Seat 1: Player18 ($0.66 in chips) Seat 2: Player14 ($1.52 in chips) Seat 3: Player24 ($2.03 in chips) -Seat 4: Player17 ($3.85 in chips) +Seat 4: Hero ($3.85 in chips) Seat 5: Player0 ($1.54 in chips) Seat 6: Player22 ($1.65 in chips) Seat 7: Player19 ($2.19 in chips) @@ -1998,8 +1998,8 @@ Seat 9: Player9 ($3.24 in chips) Player14: posts small blind $0.01 Player24: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [6h 8d] -Player17: folds +Dealt to Hero [6h 8d] +Hero: folds Player0: raises $0.02 to $0.04 Player22: raises $0.04 to $0.08 Player19: calls $0.08 @@ -2023,7 +2023,7 @@ Board [4d Td 4s] Seat 1: Player18 (button) folded before Flop (didn't bet) Seat 2: Player14 (small blind) folded before Flop Seat 3: Player24 (big blind) folded before Flop -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player0 collected ($0.35) Seat 6: Player22 folded on the Flop Seat 7: Player19 folded on the Flop @@ -2037,16 +2037,16 @@ Table '99999999' 9-max Seat #2 is the button Seat 1: Player18 ($0.66 in chips) Seat 2: Player14 ($1.51 in chips) Seat 3: Player24 ($2.01 in chips) -Seat 4: Player17 ($3.85 in chips) +Seat 4: Hero ($3.85 in chips) Seat 5: Player0 ($1.81 in chips) Seat 6: Player22 ($1.57 in chips) Seat 7: Player19 ($2.11 in chips) Seat 8: Player3 ($3 in chips) Seat 9: Player9 ($3.16 in chips) Player24: posts small blind $0.01 -Player17: posts big blind $0.02 +Hero: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [8d Jd] +Dealt to Hero [8d Jd] Player0: folds Player22: calls $0.02 Player19: folds @@ -2055,28 +2055,28 @@ Player9: calls $0.02 Player18: folds Player14: folds Player24: calls $0.01 -Player17: raises $0.02 to $0.04 +Hero: raises $0.02 to $0.04 Player22: calls $0.02 Player3: calls $0.02 Player9: calls $0.02 Player24: calls $0.02 *** FLOP *** [6d 9s 3d] Player24: checks -Player17: bets $0.02 +Hero: bets $0.02 Player22: folds Player3: folds Player9: calls $0.02 Player24: calls $0.02 *** TURN *** [6d 9s 3d] [3c] Player24: checks -Player17: bets $0.02 +Hero: bets $0.02 Player9: calls $0.02 Player24: folds *** RIVER *** [6d 9s 3d 3c] [5c] -Player17: bets $0.02 +Hero: bets $0.02 Player9: calls $0.02 *** SHOW DOWN *** -Player17: shows [8d Jd] (a pair of Threes) +Hero: shows [8d Jd] (a pair of Threes) Player9: shows [Ts 6s] (two pair, Sixes and Threes) Player9 collected $0.34 from pot *** SUMMARY *** @@ -2085,7 +2085,7 @@ Board [6d 9s 3d 3c 5c] Seat 1: Player18 folded before Flop (didn't bet) Seat 2: Player14 (button) folded before Flop (didn't bet) Seat 3: Player24 (small blind) folded on the Turn -Seat 4: Player17 (big blind) showed [8d Jd] and lost with a pair of Threes +Seat 4: Hero (big blind) showed [8d Jd] and lost with a pair of Threes Seat 5: Player0 folded before Flop (didn't bet) Seat 6: Player22 folded on the Flop Seat 7: Player19 folded before Flop (didn't bet) @@ -2099,16 +2099,16 @@ Table '99999999' 9-max Seat #3 is the button Seat 1: Player18 ($0.66 in chips) Seat 2: Player14 ($1.51 in chips) Seat 3: Player24 ($1.95 in chips) -Seat 4: Player17 ($3.75 in chips) +Seat 4: Hero ($3.75 in chips) Seat 5: Player0 ($1.81 in chips) Seat 6: Player22 ($1.53 in chips) Seat 7: Player19 ($2.11 in chips) Seat 8: Player3 ($3 in chips) Seat 9: Player9 ($3.40 in chips) -Player17: posts small blind $0.01 +Hero: posts small blind $0.01 Player0: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [5c As] +Dealt to Hero [5c As] Player22: folds Player19: folds Player3: folds @@ -2116,27 +2116,27 @@ Player9: calls $0.02 Player18: folds Player14: calls $0.02 Player24: folds -Player17: calls $0.01 +Hero: calls $0.01 Player0: checks *** FLOP *** [3s 2c 5s] -Player17: checks +Hero: checks Player0: bets $0.04 Player9: calls $0.04 Player14: folds -Player17: raises $0.22 to $0.26 +Hero: raises $0.22 to $0.26 Player0: raises $0.22 to $0.48 Player9: folds -Player17: calls $0.22 +Hero: calls $0.22 *** TURN *** [3s 2c 5s] [2h] -Player17: bets $0.36 +Hero: bets $0.36 Player0: calls $0.36 *** RIVER *** [3s 2c 5s 2h] [3d] -Player17: bets $0.90 +Hero: bets $0.90 Player0: raises $0.05 to $0.95 and is all-in -Player17: calls $0.05 +Hero: calls $0.05 *** SHOW DOWN *** Player0: shows [5d 3h] (a full house, Threes full of Fives) -Player17: shows [5c As] (two pair, Fives and Threes) +Hero: shows [5c As] (two pair, Fives and Threes) Player0 collected $3.55 from pot *** SUMMARY *** Total pot $3.70 | Rake $0.15 @@ -2144,7 +2144,7 @@ Board [3s 2c 5s 2h 3d] Seat 1: Player18 folded before Flop (didn't bet) Seat 2: Player14 folded on the Flop Seat 3: Player24 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) showed [5c As] and lost with two pair, Fives and Threes +Seat 4: Hero (small blind) showed [5c As] and lost with two pair, Fives and Threes Seat 5: Player0 (big blind) showed [5d 3h] and won ($3.55) with a full house, Threes full of Fives Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 folded before Flop (didn't bet) @@ -2158,7 +2158,7 @@ Table '99999999' 9-max Seat #4 is the button Seat 1: Player18 ($0.66 in chips) Seat 2: Player14 ($1.49 in chips) Seat 3: Player24 ($1.95 in chips) -Seat 4: Player17 ($1.94 in chips) +Seat 4: Hero ($1.94 in chips) Seat 5: Player0 ($3.55 in chips) Seat 6: Player22 ($1.53 in chips) Seat 7: Player19 ($2.11 in chips) @@ -2167,14 +2167,14 @@ Seat 9: Player9 ($3.34 in chips) Player0: posts small blind $0.01 Player22: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Kc 9d] +Dealt to Hero [Kc 9d] Player19: folds Player3: folds Player9: calls $0.02 Player18: folds Player14: folds Player24: folds -Player17: folds +Hero: folds Player0: calls $0.01 Player22: checks *** FLOP *** [6h 2s Ad] @@ -2202,7 +2202,7 @@ Board [6h 2s Ad 9s Jh] Seat 1: Player18 folded before Flop (didn't bet) Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 4: Hero (button) folded before Flop (didn't bet) Seat 5: Player0 (small blind) folded on the River Seat 6: Player22 (big blind) showed [As 5d] and won ($0.24) with a pair of Aces Seat 7: Player19 folded before Flop (didn't bet) @@ -2216,7 +2216,7 @@ Table '99999999' 9-max Seat #5 is the button Seat 1: Player18 ($0.66 in chips) Seat 2: Player14 ($1.49 in chips) Seat 3: Player24 ($1.95 in chips) -Seat 4: Player17 ($3.54 in chips) +Seat 4: Hero ($3.54 in chips) Seat 5: Player0 ($3.51 in chips) Seat 6: Player22 ($1.67 in chips) Seat 7: Player19 ($2.11 in chips) @@ -2225,13 +2225,13 @@ Seat 9: Player9 ($3.24 in chips) Player22: posts small blind $0.01 Player19: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [5d 6c] +Dealt to Hero [5d 6c] Player3: folds Player9: calls $0.02 Player18: folds Player14: folds Player24: folds -Player17: calls $0.02 +Hero: calls $0.02 Player0: calls $0.02 Player22: calls $0.01 Player19: checks @@ -2239,18 +2239,18 @@ Player19: checks Player22: checks Player19: checks Player9: checks -Player17: bets $0.06 +Hero: bets $0.06 Player0: calls $0.06 Player22: folds Player19: folds Player9: calls $0.06 *** TURN *** [Jh 7d 8h] [Qc] Player9: checks -Player17: checks +Hero: checks Player0: checks *** RIVER *** [Jh 7d 8h Qc] [5c] Player9: bets $0.04 -Player17: folds +Hero: folds Player0: calls $0.04 *** SHOW DOWN *** Player9: shows [Ah Kh] (high card Ace) @@ -2262,7 +2262,7 @@ Board [Jh 7d 8h Qc 5c] Seat 1: Player18 folded before Flop (didn't bet) Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded on the River +Seat 4: Hero folded on the River Seat 5: Player0 (button) showed [As 8s] and won ($0.36) with a pair of Eights Seat 6: Player22 (small blind) folded on the Flop Seat 7: Player19 (big blind) folded on the Flop @@ -2276,7 +2276,7 @@ Table '99999999' 9-max Seat #6 is the button Seat 1: Player18 ($0.66 in chips) Seat 2: Player14 ($1.49 in chips) Seat 3: Player24 ($1.95 in chips) -Seat 4: Player17 ($3.46 in chips) +Seat 4: Hero ($3.46 in chips) Seat 5: Player0 ($3.75 in chips) Seat 6: Player22 ($1.65 in chips) Seat 7: Player19 ($2.09 in chips) @@ -2285,41 +2285,41 @@ Seat 9: Player9 ($3.12 in chips) Player19: posts small blind $0.01 Player3: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Kh 2h] +Dealt to Hero [Kh 2h] Player9: folds Player18: folds Player14: folds Player24: calls $0.02 -Player17: calls $0.02 +Hero: calls $0.02 Player0: raises $0.04 to $0.06 Player22: folds Player19: folds Player3: folds Player24: calls $0.04 -Player17: calls $0.04 +Hero: calls $0.04 *** FLOP *** [2s 2d Kc] Player24: checks -Player17: bets $0.06 +Hero: bets $0.06 Player0: calls $0.06 Player24: folds *** TURN *** [2s 2d Kc] [7h] -Player17: bets $0.20 +Hero: bets $0.20 Player0: calls $0.20 *** RIVER *** [2s 2d Kc 7h] [5s] -Player17: bets $3.04 +Hero: bets $3.04 Player0 said, "lol" Player0 said, "such bs" Player0: folds -Uncalled bet ($3.04) returned to Player17 -Player17 collected $0.73 from pot -Player17: doesn't show hand +Uncalled bet ($3.04) returned to Hero +Hero collected $0.73 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $0.73 | Rake $0 Board [2s 2d Kc 7h 5s] Seat 1: Player18 folded before Flop (didn't bet) Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 folded on the Flop -Seat 4: Player17 collected ($0.73) +Seat 4: Hero collected ($0.73) Seat 5: Player0 folded on the River Seat 6: Player22 (button) folded before Flop (didn't bet) Seat 7: Player19 (small blind) folded before Flop @@ -2333,7 +2333,7 @@ Table '99999999' 9-max Seat #7 is the button Seat 1: Player18 ($0.66 in chips) Seat 2: Player14 ($1.49 in chips) Seat 3: Player24 ($1.89 in chips) -Seat 4: Player17 ($3.87 in chips) +Seat 4: Hero ($3.87 in chips) Seat 5: Player0 ($3.43 in chips) Seat 6: Player22 ($1.65 in chips) Seat 7: Player19 ($2.08 in chips) @@ -2342,11 +2342,11 @@ Seat 9: Player9 ($3.12 in chips) Player3: posts small blind $0.01 Player9: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [2c Ad] +Dealt to Hero [2c Ad] Player18: folds Player14: folds Player24: folds -Player17: folds +Hero: folds Player0: folds Player22: folds Player19: calls $0.02 @@ -2364,7 +2364,7 @@ Board [2h Kd 8d] Seat 1: Player18 folded before Flop (didn't bet) Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player0 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 (button) folded on the Flop @@ -2378,7 +2378,7 @@ Table '99999999' 9-max Seat #8 is the button Seat 1: Player18 ($0.66 in chips) Seat 2: Player14 ($1.49 in chips) Seat 3: Player24 ($1.89 in chips) -Seat 4: Player17 ($3.87 in chips) +Seat 4: Hero ($3.87 in chips) Seat 6: Player22 ($1.65 in chips) Seat 7: Player19 ($2.06 in chips) Seat 8: Player3 ($3 in chips) @@ -2386,20 +2386,20 @@ Seat 9: Player9 ($3.15 in chips) Player9: posts small blind $0.01 Player18: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [4h Ah] +Dealt to Hero [4h Ah] Player14: folds Player24: folds -Player17: raises $0.04 to $0.06 +Hero: raises $0.04 to $0.06 Player22: calls $0.06 Player19: calls $0.06 Player3: folds Player9: folds Player18: folds *** FLOP *** [Qs 5c Qc] -Player17: checks +Hero: checks Player22: bets $0.09 Player19: folds -Player17: folds +Hero: folds Uncalled bet ($0.09) returned to Player22 Player22 collected $0.21 from pot Player22: doesn't show hand @@ -2409,7 +2409,7 @@ Board [Qs 5c Qc] Seat 1: Player18 (big blind) folded before Flop Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Flop +Seat 4: Hero folded on the Flop Seat 6: Player22 collected ($0.21) Seat 7: Player19 folded on the Flop Seat 8: Player3 (button) folded before Flop (didn't bet) @@ -2422,7 +2422,7 @@ Table '99999999' 9-max Seat #9 is the button Seat 1: Player18 ($0.64 in chips) Seat 2: Player14 ($1.49 in chips) Seat 3: Player24 ($1.89 in chips) -Seat 4: Player17 ($3.81 in chips) +Seat 4: Hero ($3.81 in chips) Seat 6: Player22 ($1.80 in chips) Seat 7: Player19 ($2 in chips) Seat 8: Player3 ($3 in chips) @@ -2430,9 +2430,9 @@ Seat 9: Player9 ($3.14 in chips) Player18: posts small blind $0.01 Player14: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Kd 6c] +Dealt to Hero [Kd 6c] Player24: folds -Player17: raises $0.06 to $0.08 +Hero: raises $0.06 to $0.08 Player22: folds Player19: calls $0.08 Player3: folds @@ -2440,11 +2440,11 @@ Player9: calls $0.08 Player18: folds Player14: folds *** FLOP *** [8s 3d 7h] -Player17: bets $0.18 +Hero: bets $0.18 Player15 joins the table at seat #5 Player19: raises $0.18 to $0.36 Player9: folds -Player17: folds +Hero: folds Uncalled bet ($0.18) returned to Player19 Player19 collected $0.63 from pot Player19: doesn't show hand @@ -2454,7 +2454,7 @@ Board [8s 3d 7h] Seat 1: Player18 (small blind) folded before Flop Seat 2: Player14 (big blind) folded before Flop Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Flop +Seat 4: Hero folded on the Flop Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 collected ($0.63) Seat 8: Player3 folded before Flop (didn't bet) @@ -2467,7 +2467,7 @@ Table '99999999' 9-max Seat #1 is the button Seat 1: Player18 ($0.63 in chips) Seat 2: Player14 ($1.47 in chips) Seat 3: Player24 ($1.89 in chips) -Seat 4: Player17 ($3.55 in chips) +Seat 4: Hero ($3.55 in chips) Seat 6: Player22 ($1.80 in chips) Seat 7: Player19 ($2.37 in chips) Seat 8: Player3 ($3 in chips) @@ -2476,8 +2476,8 @@ Player14: posts small blind $0.01 Player24: posts big blind $0.02 Player15: sits out *** HOLE CARDS *** -Dealt to Player17 [5d Ks] -Player17: folds +Dealt to Hero [5d Ks] +Hero: folds Player22: folds Player19: calls $0.02 Player3: folds @@ -2504,7 +2504,7 @@ Board [3h Kh 2c Jd] Seat 1: Player18 (button) folded before Flop (didn't bet) Seat 2: Player14 (small blind) folded before Flop Seat 3: Player24 (big blind) folded on the Flop -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 folded on the Turn Seat 8: Player3 folded before Flop (didn't bet) @@ -2516,29 +2516,29 @@ PokerStars Game #19663159832: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #2 is the button Seat 2: Player14 ($1.46 in chips) Seat 3: Player24 ($1.87 in chips) -Seat 4: Player17 ($3.55 in chips) +Seat 4: Hero ($3.55 in chips) Seat 6: Player22 ($1.80 in chips) Seat 7: Player19 ($2.33 in chips) Seat 8: Player3 ($3 in chips) Seat 9: Player9 ($3.13 in chips) Player24: posts small blind $0.01 -Player17: posts big blind $0.02 +Hero: posts big blind $0.02 Player15: sits out *** HOLE CARDS *** -Dealt to Player17 [8s 2h] +Dealt to Hero [8s 2h] Player22: folds Player19: folds Player3: folds Player9: folds Player14: calls $0.02 Player24: calls $0.01 -Player17: raises $0.12 to $0.14 +Hero: raises $0.12 to $0.14 Player14: calls $0.12 Player24: folds *** FLOP *** [3h As 7h] -Player17: checks +Hero: checks Player14: bets $0.20 -Player17: folds +Hero: folds Uncalled bet ($0.20) returned to Player14 Player14 collected $0.30 from pot *** SUMMARY *** @@ -2546,7 +2546,7 @@ Total pot $0.30 | Rake $0 Board [3h As 7h] Seat 2: Player14 (button) collected ($0.30) Seat 3: Player24 (small blind) folded before Flop -Seat 4: Player17 (big blind) folded on the Flop +Seat 4: Hero (big blind) folded on the Flop Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 folded before Flop (didn't bet) Seat 8: Player3 folded before Flop (didn't bet) @@ -2558,33 +2558,33 @@ PokerStars Game #32364377323: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #3 is the button Seat 2: Player14 ($1.62 in chips) Seat 3: Player24 ($1.85 in chips) -Seat 4: Player17 ($3.41 in chips) +Seat 4: Hero ($3.41 in chips) Seat 5: Player15 ($1 in chips) Seat 6: Player22 ($1.80 in chips) Seat 7: Player19 ($2.33 in chips) Seat 8: Player3 ($3 in chips) Seat 9: Player9 ($3.13 in chips) -Player17: posts small blind $0.01 +Hero: posts small blind $0.01 Player15: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Ad Qh] +Dealt to Hero [Ad Qh] Player22: calls $0.02 Player19: folds Player3: folds Player9: folds Player14: folds Player24: folds -Player17: raises $0.92 to $0.94 +Hero: raises $0.92 to $0.94 Player15: folds Player22: folds -Uncalled bet ($0.92) returned to Player17 -Player17 collected $0.06 from pot -Player17: doesn't show hand +Uncalled bet ($0.92) returned to Hero +Hero collected $0.06 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $0.06 | Rake $0 Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) collected ($0.06) +Seat 4: Hero (small blind) collected ($0.06) Seat 5: Player15 (big blind) folded before Flop Seat 6: Player22 folded before Flop Seat 7: Player19 folded before Flop (didn't bet) @@ -2597,7 +2597,7 @@ PokerStars Game #23073312602: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #4 is the button Seat 2: Player14 ($1.62 in chips) Seat 3: Player24 ($1.85 in chips) -Seat 4: Player17 ($3.45 in chips) +Seat 4: Hero ($3.45 in chips) Seat 5: Player15 ($0.98 in chips) Seat 6: Player22 ($1.78 in chips) Seat 7: Player19 ($2.33 in chips) @@ -2606,13 +2606,13 @@ Seat 9: Player9 ($3.13 in chips) Player15: posts small blind $0.01 Player22: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [3h Qh] +Dealt to Hero [3h Qh] Player19: folds Player3: folds Player9: calls $0.02 Player14: folds Player24: calls $0.02 -Player17: raises $0.04 to $0.06 +Hero: raises $0.04 to $0.06 Player15: folds Player22: folds Player9: calls $0.04 @@ -2620,22 +2620,22 @@ Player24: calls $0.04 *** FLOP *** [3c 4s 7h] Player9: checks Player24: checks -Player17: checks +Hero: checks *** TURN *** [3c 4s 7h] [3s] Player9: checks Player24: checks -Player17: bets $0.14 +Hero: bets $0.14 Player9: folds Player24: folds -Uncalled bet ($0.14) returned to Player17 -Player17 collected $0.21 from pot -Player17: doesn't show hand +Uncalled bet ($0.14) returned to Hero +Hero collected $0.21 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $0.21 | Rake $0 Board [3c 4s 7h 3s] Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 folded on the Turn -Seat 4: Player17 (button) collected ($0.21) +Seat 4: Hero (button) collected ($0.21) Seat 5: Player15 (small blind) folded before Flop Seat 6: Player22 (big blind) folded before Flop Seat 7: Player19 folded before Flop (didn't bet) @@ -2648,7 +2648,7 @@ PokerStars Game #89372402099: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #5 is the button Seat 2: Player14 ($1.62 in chips) Seat 3: Player24 ($1.79 in chips) -Seat 4: Player17 ($3.60 in chips) +Seat 4: Hero ($3.60 in chips) Seat 5: Player15 ($0.97 in chips) Seat 6: Player22 ($1.76 in chips) Seat 7: Player19 ($2.33 in chips) @@ -2657,12 +2657,12 @@ Seat 9: Player9 ($3.07 in chips) Player22: posts small blind $0.01 Player19: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Td 8d] +Dealt to Hero [Td 8d] Player3: folds Player9: calls $0.02 Player14: folds Player24: calls $0.02 -Player17: raises $0.16 to $0.18 +Hero: raises $0.16 to $0.18 Player15: folds Player22: folds Player19: folds @@ -2671,18 +2671,18 @@ Player24: calls $0.16 *** FLOP *** [2d 9s Ts] Player9: checks Player24: checks -Player17: bets $0.42 +Hero: bets $0.42 Player9: folds Player24: folds -Uncalled bet ($0.42) returned to Player17 -Player17 collected $0.57 from pot -Player17: doesn't show hand +Uncalled bet ($0.42) returned to Hero +Hero collected $0.57 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $0.57 | Rake $0 Board [2d 9s Ts] Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 folded on the Flop -Seat 4: Player17 collected ($0.57) +Seat 4: Hero collected ($0.57) Seat 5: Player15 (button) folded before Flop (didn't bet) Seat 6: Player22 (small blind) folded before Flop Seat 7: Player19 (big blind) folded before Flop @@ -2695,7 +2695,7 @@ PokerStars Game #27215384828: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #6 is the button Seat 2: Player14 ($1.62 in chips) Seat 3: Player24 ($1.61 in chips) -Seat 4: Player17 ($3.99 in chips) +Seat 4: Hero ($3.99 in chips) Seat 5: Player15 ($0.97 in chips) Seat 6: Player22 ($1.75 in chips) Seat 7: Player19 ($2.31 in chips) @@ -2704,12 +2704,12 @@ Seat 9: Player9 ($2.89 in chips) Player19: posts small blind $0.01 Player3: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [5s 7d] +Dealt to Hero [5s 7d] Player20 joins the table at seat #1 Player9: calls $0.02 Player14: folds Player24: folds -Player17: folds +Hero: folds Player15: folds Player15 leaves the table Player22: calls $0.02 @@ -2738,7 +2738,7 @@ Total pot $1.54 | Rake $0.05 Board [8d Jh 7c 5c Qc] Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player15 folded before Flop (didn't bet) Seat 6: Player22 (button) folded on the Turn Seat 7: Player19 (small blind) folded on the River @@ -2751,7 +2751,7 @@ PokerStars Game #32706209671: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #7 is the button Seat 2: Player14 ($1.62 in chips) Seat 3: Player24 ($1.61 in chips) -Seat 4: Player17 ($3.99 in chips) +Seat 4: Hero ($3.99 in chips) Seat 5: Player12 ($1 in chips) Seat 6: Player22 ($1.59 in chips) Seat 7: Player19 ($1.63 in chips) @@ -2762,23 +2762,23 @@ Player9: posts big blind $0.02 Player20: sits out Player12: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [9c 2c] +Dealt to Hero [9c 2c] Player14: folds Player24: folds -Player17: raises $0.04 to $0.06 +Hero: raises $0.04 to $0.06 Player12: folds Player22: folds Player19: folds Player3: folds Player9: folds -Uncalled bet ($0.04) returned to Player17 -Player17 collected $0.07 from pot -Player17: doesn't show hand +Uncalled bet ($0.04) returned to Hero +Hero collected $0.07 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $0.07 | Rake $0 Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.07) +Seat 4: Hero collected ($0.07) Seat 5: Player12 folded before Flop Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 (button) folded before Flop (didn't bet) @@ -2792,7 +2792,7 @@ Table '99999999' 9-max Seat #8 is the button Seat 1: Player20 ($5 in chips) Seat 2: Player14 ($1.62 in chips) Seat 3: Player24 ($1.61 in chips) -Seat 4: Player17 ($4.04 in chips) +Seat 4: Hero ($4.04 in chips) Seat 5: Player12 ($0.98 in chips) Seat 6: Player22 ($1.59 in chips) Seat 7: Player19 ($1.63 in chips) @@ -2801,11 +2801,11 @@ Seat 9: Player9 ($3.68 in chips) Player9: posts small blind $0.01 Player20: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [9d Tc] +Dealt to Hero [9d Tc] Player14: folds Player24: folds Player14 leaves the table -Player17: folds +Hero: folds Player12: folds Player22: calls $0.02 Player19: folds @@ -2835,7 +2835,7 @@ Board [7d 4h Qs 3c Kd] Seat 1: Player20 (big blind) folded on the River Seat 2: Player14 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player12 folded before Flop (didn't bet) Seat 6: Player22 showed [Ts Kh] and won ($0.30) with a pair of Kings Seat 7: Player19 folded before Flop (didn't bet) @@ -2848,7 +2848,7 @@ PokerStars Game #23826224249: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #9 is the button Seat 1: Player20 ($4.96 in chips) Seat 3: Player24 ($1.61 in chips) -Seat 4: Player17 ($4.04 in chips) +Seat 4: Hero ($4.04 in chips) Seat 5: Player12 ($0.98 in chips) Seat 6: Player22 ($1.76 in chips) Seat 7: Player19 ($1.63 in chips) @@ -2857,8 +2857,8 @@ Seat 9: Player9 ($3.55 in chips) Player20: posts small blind $0.01 Player24: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [2h 7h] -Player17: raises $0.04 to $0.06 +Dealt to Hero [2h 7h] +Hero: raises $0.04 to $0.06 Player12: calls $0.06 Player22: calls $0.06 Player19: folds @@ -2869,22 +2869,22 @@ Player20: folds Player24: calls $0.04 *** FLOP *** [2d 4s 5d] Player24: checks -Player17: checks +Hero: checks Player12: checks Player22: bets $0.06 Player9: calls $0.06 Player24: folds -Player17: calls $0.06 +Hero: calls $0.06 Player12: folds *** TURN *** [2d 4s 5d] [Kc] -Player17: checks +Hero: checks Player22: checks Player9: checks *** RIVER *** [2d 4s 5d Kc] [Ks] -Player17: checks +Hero: checks Player22: checks Player9: bets $0.40 -Player17: folds +Hero: folds Player22: folds Uncalled bet ($0.40) returned to Player9 Player9 collected $0.49 from pot @@ -2893,7 +2893,7 @@ Total pot $0.49 | Rake $0 Board [2d 4s 5d Kc Ks] Seat 1: Player20 (small blind) folded before Flop Seat 3: Player24 (big blind) folded on the Flop -Seat 4: Player17 folded on the River +Seat 4: Hero folded on the River Seat 5: Player12 folded on the Flop Seat 6: Player22 folded on the River Seat 7: Player19 folded before Flop (didn't bet) @@ -2906,7 +2906,7 @@ PokerStars Game #28582235522: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #1 is the button Seat 1: Player20 ($4.95 in chips) Seat 3: Player24 ($1.55 in chips) -Seat 4: Player17 ($3.92 in chips) +Seat 4: Hero ($3.92 in chips) Seat 5: Player12 ($0.92 in chips) Seat 6: Player22 ($1.64 in chips) Seat 7: Player19 ($1.63 in chips) @@ -2914,9 +2914,9 @@ Seat 8: Player3 ($3 in chips) Seat 9: Player9 ($3.92 in chips) Player2 will be allowed to play after the button Player24: posts small blind $0.01 -Player17: posts big blind $0.02 +Hero: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [8h Qd] +Dealt to Hero [8h Qd] Player12: calls $0.02 Player22: folds Player19: folds @@ -2925,7 +2925,7 @@ Player3: folds Player9: calls $0.02 Player20: raises $0.10 to $0.12 Player24: folds -Player17: folds +Hero: folds Player12: calls $0.10 Player9: folds *** FLOP *** [3h Js Td] @@ -2940,7 +2940,7 @@ Total pot $0.29 | Rake $0 Board [3h Js Td] Seat 1: Player20 (button) collected ($0.29) Seat 3: Player24 (small blind) folded before Flop -Seat 4: Player17 (big blind) folded before Flop +Seat 4: Hero (big blind) folded before Flop Seat 5: Player12 folded on the Flop Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player19 folded before Flop (didn't bet) @@ -2954,16 +2954,16 @@ Table '99999999' 9-max Seat #3 is the button Seat 1: Player20 ($5.12 in chips) Seat 2: Player2 ($1 in chips) Seat 3: Player24 ($1.54 in chips) -Seat 4: Player17 ($3.90 in chips) +Seat 4: Hero ($3.90 in chips) Seat 5: Player12 ($0.80 in chips) Seat 6: Player22 ($1.64 in chips) Seat 8: Player3 ($3 in chips) Seat 9: Player9 ($3.90 in chips) -Player17: posts small blind $0.01 +Hero: posts small blind $0.01 Player12: posts big blind $0.02 Player2: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Jh Ah] +Dealt to Hero [Jh Ah] Player22: folds Player3: folds Player9: calls $0.02 @@ -2971,20 +2971,20 @@ Player20: folds Player2: checks Player8 joins the table at seat #7 Player24: calls $0.02 -Player17: raises $0.08 to $0.10 +Hero: raises $0.08 to $0.10 Player12: folds Player9: folds Player2: folds Player24: folds -Uncalled bet ($0.08) returned to Player17 -Player17 collected $0.10 from pot -Player17: doesn't show hand +Uncalled bet ($0.08) returned to Hero +Hero collected $0.10 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $0.10 | Rake $0 Seat 1: Player20 folded before Flop (didn't bet) Seat 2: Player2 folded before Flop Seat 3: Player24 (button) folded before Flop -Seat 4: Player17 (small blind) collected ($0.10) +Seat 4: Hero (small blind) collected ($0.10) Seat 5: Player12 (big blind) folded before Flop Seat 6: Player22 folded before Flop (didn't bet) Seat 8: Player3 folded before Flop (didn't bet) @@ -2997,7 +2997,7 @@ Table '99999999' 9-max Seat #4 is the button Seat 1: Player20 ($5.12 in chips) Seat 2: Player2 ($0.98 in chips) Seat 3: Player24 ($1.52 in chips) -Seat 4: Player17 ($3.98 in chips) +Seat 4: Hero ($3.98 in chips) Seat 5: Player12 ($0.78 in chips) Seat 6: Player22 ($1.64 in chips) Seat 7: Player8 ($1.11 in chips) @@ -3007,14 +3007,14 @@ Player12: posts small blind $0.01 Player22: posts big blind $0.02 Player8: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Jc 2h] +Dealt to Hero [Jc 2h] Player8: checks Player3: folds Player9: calls $0.02 Player20: calls $0.02 Player2: folds Player24: folds -Player17: folds +Hero: folds Player12: calls $0.01 Player22: checks *** FLOP *** [Jh Tc 2d] @@ -3038,7 +3038,7 @@ Board [Jh Tc 2d Js] Seat 1: Player20 folded on the Turn Seat 2: Player2 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 4: Hero (button) folded before Flop (didn't bet) Seat 5: Player12 (small blind) folded on the Turn Seat 6: Player22 (big blind) collected ($0.18) Seat 7: Player8 folded on the Turn @@ -3052,7 +3052,7 @@ Table '99999999' 9-max Seat #5 is the button Seat 1: Player20 ($5.08 in chips) Seat 2: Player2 ($0.98 in chips) Seat 3: Player24 ($1.52 in chips) -Seat 4: Player17 ($3.98 in chips) +Seat 4: Hero ($3.98 in chips) Seat 5: Player12 ($0.74 in chips) Seat 6: Player22 ($1.78 in chips) Seat 7: Player8 ($1.07 in chips) @@ -3061,13 +3061,13 @@ Seat 9: Player9 ($3.86 in chips) Player22: posts small blind $0.01 Player8: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Kc 7s] +Dealt to Hero [Kc 7s] Player3: folds Player9: folds Player20: calls $0.02 Player2: folds Player24: folds -Player17: folds +Hero: folds Player12: calls $0.02 Player22: folds Player8: checks @@ -3093,7 +3093,7 @@ Board [Th 5d 7h 6s 8s] Seat 1: Player20 collected ($0.07) Seat 2: Player2 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player12 (button) folded on the River Seat 6: Player22 (small blind) folded before Flop Seat 7: Player8 (big blind) folded on the River @@ -3107,7 +3107,7 @@ Table '99999999' 9-max Seat #6 is the button Seat 1: Player20 ($5.13 in chips) Seat 2: Player2 ($0.98 in chips) Seat 3: Player24 ($1.52 in chips) -Seat 4: Player17 ($3.98 in chips) +Seat 4: Hero ($3.98 in chips) Seat 5: Player12 ($0.72 in chips) Seat 6: Player22 ($1.77 in chips) Seat 7: Player8 ($1.05 in chips) @@ -3116,12 +3116,12 @@ Player8: posts small blind $0.01 Player3: is sitting out Player9: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Ah 2c] +Dealt to Hero [Ah 2c] Player20: folds Player2: calls $0.02 Player3 leaves the table Player24: folds -Player17: folds +Hero: folds Player12: raises $0.06 to $0.08 Player22: calls $0.08 Player8: calls $0.07 @@ -3145,7 +3145,7 @@ Board [6h Js 3h 5h 8d] Seat 1: Player20 folded before Flop (didn't bet) Seat 2: Player2 showed [Qc Jd] and won ($2.04) with a pair of Jacks Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player12 folded on the Flop Seat 6: Player22 (button) folded on the Flop Seat 7: Player8 (small blind) showed [6s 9s] and lost with a pair of Sixes @@ -3158,7 +3158,7 @@ Table '99999999' 9-max Seat #7 is the button Seat 1: Player20 ($5.13 in chips) Seat 2: Player2 ($2.04 in chips) Seat 3: Player24 ($1.52 in chips) -Seat 4: Player17 ($3.98 in chips) +Seat 4: Hero ($3.98 in chips) Seat 5: Player12 ($0.64 in chips) Seat 6: Player22 ($1.69 in chips) Seat 7: Player8 ($0.07 in chips) @@ -3166,10 +3166,10 @@ Seat 9: Player9 ($3.84 in chips) Player9: posts small blind $0.01 Player20: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Ks 9d] +Dealt to Hero [Ks 9d] Player2: raises $0.06 to $0.08 Player24: folds -Player17: folds +Hero: folds Player12: folds Player22: folds Player8: folds @@ -3191,7 +3191,7 @@ Board [Js Tc 8s Ad] Seat 1: Player20 (big blind) folded before Flop Seat 2: Player2 collected ($0.70) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player12 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player8 (button) folded before Flop (didn't bet) @@ -3204,7 +3204,7 @@ Table '99999999' 9-max Seat #9 is the button Seat 1: Player20 ($5.11 in chips) Seat 2: Player2 ($2.40 in chips) Seat 3: Player24 ($1.52 in chips) -Seat 4: Player17 ($3.98 in chips) +Seat 4: Hero ($3.98 in chips) Seat 5: Player12 ($0.64 in chips) Seat 6: Player22 ($1.69 in chips) Seat 7: Player8 ($0.07 in chips) @@ -3212,9 +3212,9 @@ Seat 9: Player9 ($3.50 in chips) Player20: posts small blind $0.01 Player2: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Ad 4s] +Dealt to Hero [Ad 4s] Player24: folds -Player17: raises $0.04 to $0.06 +Hero: raises $0.04 to $0.06 Player12: calls $0.06 Player22: folds Player8: folds @@ -3222,10 +3222,10 @@ Player9: calls $0.06 Player20: folds Player2: folds *** FLOP *** [As 6c 5c] -Player17: bets $0.08 +Hero: bets $0.08 Player12: calls $0.08 Player9: raises $0.08 to $0.16 -Player17: folds +Hero: folds Player12: raises $0.42 to $0.58 and is all-in Player9: calls $0.42 *** TURN *** [As 6c 5c] [Qd] @@ -3240,7 +3240,7 @@ Board [As 6c 5c Qd 9d] Seat 1: Player20 (small blind) folded before Flop Seat 2: Player2 (big blind) folded before Flop Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Flop +Seat 4: Hero folded on the Flop Seat 5: Player12 showed [Ac Tc] and won ($1.40) with a pair of Aces Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player8 folded before Flop (didn't bet) @@ -3253,7 +3253,7 @@ Table '99999999' 9-max Seat #1 is the button Seat 1: Player20 ($5.10 in chips) Seat 2: Player2 ($2.38 in chips) Seat 3: Player24 ($1.52 in chips) -Seat 4: Player17 ($3.84 in chips) +Seat 4: Hero ($3.84 in chips) Seat 5: Player12 ($1.40 in chips) Seat 6: Player22 ($1.69 in chips) Seat 7: Player8 ($0.07 in chips) @@ -3261,8 +3261,8 @@ Seat 9: Player9 ($2.86 in chips) Player2: posts small blind $0.01 Player24: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [5c 5d] -Player17: raises $0.04 to $0.06 +Dealt to Hero [5c 5d] +Hero: raises $0.04 to $0.06 Player12: folds Player22: folds Player8: folds @@ -3272,19 +3272,19 @@ Player2: folds Player24: folds *** FLOP *** [7d 4s 8h] Player2 leaves the table -Player17: checks +Hero: checks Player20: checks *** TURN *** [7d 4s 8h] [Th] -Player17: checks +Hero: checks Player13 joins the table at seat #8 Player20: bets $0.08 -Player17: raises $0.12 to $0.20 +Hero: raises $0.12 to $0.20 Player20: calls $0.12 *** RIVER *** [7d 4s 8h Th] [4h] -Player17: checks +Hero: checks Player20: checks *** SHOW DOWN *** -Player17: shows [5c 5d] (two pair, Fives and Fours) +Hero: shows [5c 5d] (two pair, Fives and Fours) Player20: shows [Jc Tc] (two pair, Tens and Fours) Player20 collected $0.55 from pot *** SUMMARY *** @@ -3293,7 +3293,7 @@ Board [7d 4s 8h Th 4h] Seat 1: Player20 (button) showed [Jc Tc] and won ($0.55) with two pair, Tens and Fours Seat 2: Player2 (small blind) folded before Flop Seat 3: Player24 (big blind) folded before Flop -Seat 4: Player17 showed [5c 5d] and lost with two pair, Fives and Fours +Seat 4: Hero showed [5c 5d] and lost with two pair, Fives and Fours Seat 5: Player12 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player8 folded before Flop (didn't bet) @@ -3305,37 +3305,37 @@ PokerStars Game #25223712121: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #3 is the button Seat 1: Player20 ($5.39 in chips) Seat 3: Player24 ($1.50 in chips) -Seat 4: Player17 ($3.58 in chips) +Seat 4: Hero ($3.58 in chips) Seat 5: Player12 ($1.40 in chips) Seat 6: Player22 ($1.69 in chips) Seat 7: Player8 ($0.07 in chips) Seat 9: Player9 ($2.86 in chips) -Player17: posts small blind $0.01 +Hero: posts small blind $0.01 Player12: posts big blind $0.02 Player13: sits out *** HOLE CARDS *** -Dealt to Player17 [Kd 7d] +Dealt to Hero [Kd 7d] Player22: calls $0.02 Player8: folds Player10 joins the table at seat #2 Player9: folds Player20: folds Player24: calls $0.02 -Player17: calls $0.01 +Hero: calls $0.01 Player12: checks *** FLOP *** [6s 9d 6d] -Player17: bets $0.08 +Hero: bets $0.08 Player12: folds Player22: calls $0.08 Player24: folds *** TURN *** [6s 9d 6d] [2c] -Player17: checks +Hero: checks Player22: checks *** RIVER *** [6s 9d 6d 2c] [8h] -Player17: checks +Hero: checks Player22: checks *** SHOW DOWN *** -Player17: shows [Kd 7d] (a pair of Sixes) +Hero: shows [Kd 7d] (a pair of Sixes) Player22: shows [5h 5s] (two pair, Sixes and Fives) Player22 collected $0.24 from pot *** SUMMARY *** @@ -3343,7 +3343,7 @@ Total pot $0.24 | Rake $0 Board [6s 9d 6d 2c 8h] Seat 1: Player20 folded before Flop (didn't bet) Seat 3: Player24 (button) folded on the Flop -Seat 4: Player17 (small blind) showed [Kd 7d] and lost with a pair of Sixes +Seat 4: Hero (small blind) showed [Kd 7d] and lost with a pair of Sixes Seat 5: Player12 (big blind) folded on the Flop Seat 6: Player22 showed [5h 5s] and won ($0.24) with two pair, Sixes and Fives Seat 7: Player8 folded before Flop (didn't bet) @@ -3355,7 +3355,7 @@ PokerStars Game #73402790620: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 2 Table '99999999' 9-max Seat #4 is the button Seat 1: Player20 ($5.39 in chips) Seat 3: Player24 ($1.48 in chips) -Seat 4: Player17 ($3.48 in chips) +Seat 4: Hero ($3.48 in chips) Seat 5: Player12 ($1.38 in chips) Seat 6: Player22 ($1.83 in chips) Seat 7: Player8 ($0.07 in chips) @@ -3366,37 +3366,37 @@ Player22: posts big blind $0.02 Player13: posts big blind $0.02 Player10: sits out *** HOLE CARDS *** -Dealt to Player17 [5d 7c] +Dealt to Hero [5d 7c] Player8: folds Player13: checks Player9: folds Player20: folds Player24: folds -Player17: calls $0.02 +Hero: calls $0.02 Player12: calls $0.01 Player22: checks *** FLOP *** [7d Kd Jh] Player12: checks Player22: checks Player13: checks -Player17: checks +Hero: checks *** TURN *** [7d Kd Jh] [7s] Player12: checks Player22: checks Player13: checks -Player17: bets $0.08 +Hero: bets $0.08 Player12: folds Player22: folds Player13: folds -Uncalled bet ($0.08) returned to Player17 -Player17 collected $0.08 from pot -Player17: doesn't show hand +Uncalled bet ($0.08) returned to Hero +Hero collected $0.08 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $0.08 | Rake $0 Board [7d Kd Jh 7s] Seat 1: Player20 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) collected ($0.08) +Seat 4: Hero (button) collected ($0.08) Seat 5: Player12 (small blind) folded on the Turn Seat 6: Player22 (big blind) folded on the Turn Seat 7: Player8 folded before Flop (didn't bet) @@ -3410,7 +3410,7 @@ Table '99999999' 9-max Seat #5 is the button Seat 1: Player20 ($5.39 in chips) Seat 2: Player10 ($1.29 in chips) Seat 3: Player24 ($1.48 in chips) -Seat 4: Player17 ($3.54 in chips) +Seat 4: Hero ($3.54 in chips) Seat 5: Player12 ($1.36 in chips) Seat 6: Player22 ($1.81 in chips) Seat 7: Player8 ($0.07 in chips) @@ -3420,13 +3420,13 @@ Player22: posts small blind $0.01 Player8: posts big blind $0.02 Player10: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [8d Js] +Dealt to Hero [8d Js] Player13: folds Player9: folds Player20: folds Player10: checks Player24: folds -Player17: raises $0.06 to $0.08 +Hero: raises $0.06 to $0.08 Player12: calls $0.08 Player22: calls $0.07 Player8: calls $0.05 and is all-in @@ -3434,7 +3434,7 @@ Player10: calls $0.06 *** FLOP *** [9c 9s Ah] Player22: bets $0.04 Player10: folds -Player17: folds +Hero: folds Player12: calls $0.04 *** TURN *** [9c 9s Ah] [Td] Player22: bets $0.08 @@ -3452,7 +3452,7 @@ Board [9c 9s Ah Td 3d] Seat 1: Player20 folded before Flop (didn't bet) Seat 2: Player10 folded on the Flop Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Flop +Seat 4: Hero folded on the Flop Seat 5: Player12 (button) folded on the Turn Seat 6: Player22 (small blind) showed [Ac 6c] and won ($0.47) with two pair, Aces and Nines Seat 7: Player8 (big blind) showed [Kh Th] and lost with two pair, Tens and Nines @@ -3466,7 +3466,7 @@ Table '99999999' 9-max Seat #6 is the button Seat 1: Player20 ($5.39 in chips) Seat 2: Player10 ($1.21 in chips) Seat 3: Player24 ($1.48 in chips) -Seat 4: Player17 ($3.46 in chips) +Seat 4: Hero ($3.46 in chips) Seat 5: Player12 ($1.24 in chips) Seat 6: Player22 ($2.16 in chips) Seat 8: Player13 ($4.98 in chips) @@ -3474,12 +3474,12 @@ Seat 9: Player9 ($2.86 in chips) Player13: posts small blind $0.01 Player9: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [7s 5h] +Dealt to Hero [7s 5h] Player20: folds Player10: calls $0.02 Player8 leaves the table Player24: folds -Player17: calls $0.02 +Hero: calls $0.02 Player12: calls $0.02 Player22: folds Player13: folds @@ -3487,29 +3487,29 @@ Player9: checks *** FLOP *** [5s 8d Kc] Player9: checks Player10: bets $0.06 -Player17: raises $0.08 to $0.14 +Hero: raises $0.08 to $0.14 Player12: folds Player9: folds Player10: calls $0.08 *** TURN *** [5s 8d Kc] [4c] Player10: checks Player13 leaves the table -Player17: checks +Hero: checks *** RIVER *** [5s 8d Kc 4c] [3s] Player10: checks Player7 joins the table at seat #8 -Player17: checks +Hero: checks *** SHOW DOWN *** Player10: shows [2c 2h] (a pair of Deuces) -Player17: shows [7s 5h] (a pair of Fives) -Player17 collected $0.37 from pot +Hero: shows [7s 5h] (a pair of Fives) +Hero collected $0.37 from pot *** SUMMARY *** Total pot $0.37 | Rake $0 Board [5s 8d Kc 4c 3s] Seat 1: Player20 folded before Flop (didn't bet) Seat 2: Player10 showed [2c 2h] and lost with a pair of Deuces Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 showed [7s 5h] and won ($0.37) with a pair of Fives +Seat 4: Hero showed [7s 5h] and won ($0.37) with a pair of Fives Seat 5: Player12 folded on the Flop Seat 6: Player22 (button) folded before Flop (didn't bet) Seat 8: Player13 (small blind) folded before Flop @@ -3522,16 +3522,16 @@ Table '99999999' 9-max Seat #9 is the button Seat 1: Player20 ($5.39 in chips) Seat 2: Player10 ($1.05 in chips) Seat 3: Player24 ($1.48 in chips) -Seat 4: Player17 ($3.67 in chips) +Seat 4: Hero ($3.67 in chips) Seat 5: Player12 ($1.22 in chips) Seat 9: Player9 ($2.84 in chips) Player20: posts small blind $0.01 Player10: posts big blind $0.02 Player7: sits out *** HOLE CARDS *** -Dealt to Player17 [Js 6c] +Dealt to Hero [Js 6c] Player24: folds -Player17: folds +Hero: folds Player12: folds Player9: calls $0.02 Player20: raises $0.04 to $0.06 @@ -3559,7 +3559,7 @@ Board [2c 2s Ts Kd 9s] Seat 1: Player20 (small blind) showed [Ad Ah] and won ($3.43) with two pair, Aces and Deuces Seat 2: Player10 (big blind) showed [Kh Ks] and won ($3) with a full house, Kings full of Deuces Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player12 folded before Flop (didn't bet) Seat 9: Player9 (button) showed [Qs 7h] and lost with a pair of Deuces @@ -3570,34 +3570,34 @@ Table '99999999' 9-max Seat #1 is the button Seat 1: Player20 ($5.98 in chips) Seat 2: Player10 ($3 in chips) Seat 3: Player24 ($1.48 in chips) -Seat 4: Player17 ($3.67 in chips) +Seat 4: Hero ($3.67 in chips) Seat 5: Player12 ($1.22 in chips) Player10: posts small blind $0.01 Player24: posts big blind $0.02 Player7: sits out *** HOLE CARDS *** -Dealt to Player17 [6c Tc] -Player17: raises $0.04 to $0.06 +Dealt to Hero [6c Tc] +Hero: raises $0.04 to $0.06 Player12: folds Player16 joins the table at seat #7 Player20 said, "lol everytime" Player20: folds Player10: raises $0.04 to $0.10 Player24: folds -Player17: calls $0.04 +Hero: calls $0.04 *** FLOP *** [5c Kc Jh] Player10: checks -Player17: bets $0.08 +Hero: bets $0.08 Player10: calls $0.08 *** TURN *** [5c Kc Jh] [5h] Player10: checks -Player17: checks +Hero: checks *** RIVER *** [5c Kc Jh 5h] [Ts] Player10: checks -Player17: checks +Hero: checks *** SHOW DOWN *** Player10: shows [Ad Ac] (two pair, Aces and Fives) -Player17: mucks hand +Hero: mucks hand Player10 collected $0.38 from pot *** SUMMARY *** Total pot $0.38 | Rake $0 @@ -3605,7 +3605,7 @@ Board [5c Kc Jh 5h Ts] Seat 1: Player20 (button) folded before Flop (didn't bet) Seat 2: Player10 (small blind) showed [Ad Ac] and won ($0.38) with two pair, Aces and Fives Seat 3: Player24 (big blind) folded before Flop -Seat 4: Player17 mucked [6c Tc] +Seat 4: Hero mucked [6c Tc] Seat 5: Player12 folded before Flop (didn't bet) @@ -3615,48 +3615,48 @@ Table '99999999' 9-max Seat #2 is the button Seat 1: Player20 ($5.98 in chips) Seat 2: Player10 ($3.20 in chips) Seat 3: Player24 ($1.46 in chips) -Seat 4: Player17 ($3.49 in chips) +Seat 4: Hero ($3.49 in chips) Seat 5: Player12 ($1.22 in chips) Seat 9: Player9 ($1.80 in chips) Player24: posts small blind $0.01 -Player17: posts big blind $0.02 +Hero: posts big blind $0.02 Player16: sits out Player7: sits out *** HOLE CARDS *** -Dealt to Player17 [As 7h] +Dealt to Hero [As 7h] Player12: calls $0.02 Player20 said, "haha nice" Player9: calls $0.02 Player20: calls $0.02 Player10: calls $0.02 Player24: calls $0.01 -Player17: checks +Hero: checks *** FLOP *** [Qs Qh Ad] Player24: checks -Player17: bets $0.12 +Hero: bets $0.12 Player12: folds Player9: calls $0.12 Player20: folds Player10: folds Player24: folds *** TURN *** [Qs Qh Ad] [5h] -Player17: bets $0.10 +Hero: bets $0.10 Player9: calls $0.10 *** RIVER *** [Qs Qh Ad 5h] [Ah] -Player17: bets $0.12 +Hero: bets $0.12 Player9: raises $1.44 to $1.56 and is all-in -Player17: calls $1.44 +Hero: calls $1.44 *** SHOW DOWN *** Player9: shows [Kh Jh] (a flush, Ace high) -Player17: shows [As 7h] (a full house, Aces full of Queens) -Player17 collected $3.53 from pot +Hero: shows [As 7h] (a full house, Aces full of Queens) +Hero collected $3.53 from pot *** SUMMARY *** Total pot $3.68 | Rake $0.15 Board [Qs Qh Ad 5h Ah] Seat 1: Player20 folded on the Flop Seat 2: Player10 (button) folded on the Flop Seat 3: Player24 (small blind) folded on the Flop -Seat 4: Player17 (big blind) showed [As 7h] and won ($3.53) with a full house, Aces full of Queens +Seat 4: Hero (big blind) showed [As 7h] and won ($3.53) with a full house, Aces full of Queens Seat 5: Player12 folded on the Flop Seat 9: Player9 showed [Kh Jh] and lost with a flush, Ace high @@ -3667,30 +3667,30 @@ Table '99999999' 9-max Seat #3 is the button Seat 1: Player20 ($5.96 in chips) Seat 2: Player10 ($3.18 in chips) Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.22 in chips) +Seat 4: Hero ($5.22 in chips) Seat 5: Player12 ($1.20 in chips) Seat 6: Player22 ($2.16 in chips) -Player17: posts small blind $0.01 +Hero: posts small blind $0.01 Player12: posts big blind $0.02 Player16: sits out Player7: sits out *** HOLE CARDS *** -Dealt to Player17 [Ac 7s] +Dealt to Hero [Ac 7s] Player22: folds Player20: folds Player10: folds Player24: folds Player22 said, "nh" -Player17: raises $0.08 to $0.10 +Hero: raises $0.08 to $0.10 Player12: calls $0.08 *** FLOP *** [8c 5d Qh] -Player17 said, "tyty" -Player17: checks +Hero said, "tyty" +Hero: checks Player12: checks *** TURN *** [8c 5d Qh] [Tc] -Player17: checks +Hero: checks Player12: bets $0.10 -Player17: folds +Hero: folds Uncalled bet ($0.10) returned to Player12 Player12 collected $0.20 from pot *** SUMMARY *** @@ -3699,7 +3699,7 @@ Board [8c 5d Qh Tc] Seat 1: Player20 folded before Flop (didn't bet) Seat 2: Player10 folded before Flop (didn't bet) Seat 3: Player24 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) folded on the Turn +Seat 4: Hero (small blind) folded on the Turn Seat 5: Player12 (big blind) collected ($0.20) Seat 6: Player22 folded before Flop (didn't bet) @@ -3710,7 +3710,7 @@ Table '99999999' 9-max Seat #4 is the button Seat 1: Player20 ($5.96 in chips) Seat 2: Player10 ($3.18 in chips) Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.12 in chips) +Seat 4: Hero ($5.12 in chips) Seat 5: Player12 ($1.30 in chips) Seat 6: Player22 ($2.16 in chips) Player12: posts small blind $0.01 @@ -3718,23 +3718,23 @@ Player22: posts big blind $0.02 Player16: sits out Player7: sits out *** HOLE CARDS *** -Dealt to Player17 [As Qc] +Dealt to Hero [As Qc] Player20: folds Player10: calls $0.02 Player24: folds -Player17: calls $0.02 +Hero: calls $0.02 Player12: calls $0.01 Player22: checks *** FLOP *** [8s 8h Kd] Player12: checks Player22: checks Player10: checks -Player17: checks +Hero: checks *** TURN *** [8s 8h Kd] [9h] Player12: bets $0.06 Player22: folds Player10: calls $0.06 -Player17: folds +Hero: folds *** RIVER *** [8s 8h Kd 9h] [6s] Player12: bets $0.24 Player10: folds @@ -3747,7 +3747,7 @@ Board [8s 8h Kd 9h 6s] Seat 1: Player20 folded before Flop (didn't bet) Seat 2: Player10 folded on the River Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded on the Turn +Seat 4: Hero (button) folded on the Turn Seat 5: Player12 (small blind) collected ($0.20) Seat 6: Player22 (big blind) folded on the Turn @@ -3757,7 +3757,7 @@ PokerStars Game #25404395119: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0 Table '99999999' 9-max Seat #5 is the button Seat 1: Player20 ($5.96 in chips) Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.10 in chips) +Seat 4: Hero ($5.10 in chips) Seat 5: Player12 ($1.42 in chips) Seat 6: Player22 ($2.14 in chips) Seat 7: Player16 ($1.60 in chips) @@ -3766,23 +3766,23 @@ Player22: posts small blind $0.01 Player16: posts big blind $0.02 Player7: sits out *** HOLE CARDS *** -Dealt to Player17 [5c 8c] +Dealt to Hero [5c 8c] Player9: calls $0.02 Player20: folds Player24: folds -Player17: calls $0.02 +Hero: calls $0.02 Player12: calls $0.02 Player22: folds Player16: checks *** FLOP *** [Ad Kd Qh] Player16: checks Player9: checks -Player17: checks +Hero: checks Player12: checks *** TURN *** [Ad Kd Qh] [9c] Player16: checks Player9: bets $0.02 -Player17: folds +Hero: folds Player12: calls $0.02 Player16: folds *** RIVER *** [Ad Kd Qh 9c] [7d] @@ -3798,7 +3798,7 @@ Total pot $0.13 | Rake $0 Board [Ad Kd Qh 9c 7d] Seat 1: Player20 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Turn +Seat 4: Hero folded on the Turn Seat 5: Player12 (button) showed [5h Kh] and won ($0.13) with a pair of Kings Seat 6: Player22 (small blind) folded before Flop Seat 7: Player16 (big blind) folded on the Turn @@ -3810,7 +3810,7 @@ PokerStars Game #19191328622: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0 Table '99999999' 9-max Seat #7 is the button Seat 1: Player20 ($5.94 in chips) Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.08 in chips) +Seat 4: Hero ($5.08 in chips) Seat 5: Player12 ($1.15 in chips) Seat 6: Player22 ($2.56 in chips) Seat 7: Player16 ($1.57 in chips) @@ -3820,10 +3820,10 @@ Player7: posts small blind $0.01 Player9: posts big blind $0.02 Player4: sits out *** HOLE CARDS *** -Dealt to Player17 [4h As] +Dealt to Hero [4h As] Player20: folds Player24: folds -Player17: folds +Hero: folds Player12: calls $0.02 Player22: calls $0.02 Player16: folds @@ -3855,7 +3855,7 @@ Total pot $0.08 | Rake $0 Board [Qh 5c 9c 7d Qd] Seat 1: Player20 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player12 mucked [3h 2s] Seat 6: Player22 mucked [Ts 6s] Seat 7: Player16 (button) folded before Flop (didn't bet) @@ -3868,7 +3868,7 @@ PokerStars Game #35042386427: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0 Table '99999999' 9-max Seat #8 is the button Seat 1: Player20 ($5.94 in chips) Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.08 in chips) +Seat 4: Hero ($5.08 in chips) Seat 5: Player12 ($1.13 in chips) Seat 6: Player22 ($2.54 in chips) Seat 7: Player16 ($1.57 in chips) @@ -3878,9 +3878,9 @@ Player9: posts small blind $0.01 Player20: posts big blind $0.02 Player4: sits out *** HOLE CARDS *** -Dealt to Player17 [5s Ks] +Dealt to Hero [5s Ks] Player24: folds -Player17: folds +Hero: folds Player12: calls $0.02 Player22: folds Player16: folds @@ -3910,7 +3910,7 @@ Total pot $0.26 | Rake $0 Board [Qc 9c 5h Td Jh] Seat 1: Player20 (big blind) folded on the Flop Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player12 folded on the River Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player16 folded before Flop (didn't bet) @@ -3924,7 +3924,7 @@ Table '99999999' 9-max Seat #9 is the button Seat 1: Player20 ($5.92 in chips) Seat 2: Player4 ($1 in chips) Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.08 in chips) +Seat 4: Hero ($5.08 in chips) Seat 5: Player12 ($1.05 in chips) Seat 6: Player22 ($2.54 in chips) Seat 7: Player16 ($1.57 in chips) @@ -3933,9 +3933,9 @@ Seat 9: Player9 ($1.10 in chips) Player20: posts small blind $0.01 Player4: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Ts 8s] +Dealt to Hero [Ts 8s] Player24: folds -Player17: calls $0.02 +Hero: calls $0.02 Player12: calls $0.02 Player22: calls $0.02 Player16: calls $0.02 @@ -3946,37 +3946,37 @@ Player4: checks *** FLOP *** [9d 3c Js] Player20: checks Player4: checks -Player17: checks +Hero: checks Player12: checks Player22: checks Player16: bets $0.10 Player7: folds Player20: calls $0.10 Player4: calls $0.10 -Player17: calls $0.10 +Hero: calls $0.10 Player12: folds Player22: folds *** TURN *** [9d 3c Js] [Qh] Player20: checks Player4: checks -Player17: checks +Hero: checks Player16: checks *** RIVER *** [9d 3c Js Qh] [2s] Player20: bets $0.26 Player4: folds -Player17: calls $0.26 +Hero: calls $0.26 Player16: folds *** SHOW DOWN *** Player20: shows [2h Jh] (two pair, Jacks and Deuces) -Player17: shows [Ts 8s] (a straight, Eight to Queen) -Player17 collected $1.01 from pot +Hero: shows [Ts 8s] (a straight, Eight to Queen) +Hero collected $1.01 from pot *** SUMMARY *** Total pot $1.06 | Rake $0.05 Board [9d 3c Js Qh 2s] Seat 1: Player20 (small blind) showed [2h Jh] and lost with two pair, Jacks and Deuces Seat 2: Player4 (big blind) folded on the River Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 showed [Ts 8s] and won ($1.01) with a straight, Eight to Queen +Seat 4: Hero showed [Ts 8s] and won ($1.01) with a straight, Eight to Queen Seat 5: Player12 folded on the Flop Seat 6: Player22 folded on the Flop Seat 7: Player16 folded on the River @@ -3990,7 +3990,7 @@ Table '99999999' 9-max Seat #1 is the button Seat 1: Player20 ($5.54 in chips) Seat 2: Player4 ($0.88 in chips) Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.71 in chips) +Seat 4: Hero ($5.71 in chips) Seat 5: Player12 ($1.03 in chips) Seat 6: Player22 ($2.52 in chips) Seat 7: Player16 ($1.45 in chips) @@ -3999,8 +3999,8 @@ Seat 9: Player9 ($1.10 in chips) Player4: posts small blind $0.01 Player24: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [5h Qh] -Player17: folds +Dealt to Hero [5h Qh] +Hero: folds Player12: calls $0.02 Player22: calls $0.02 Player16: folds @@ -4035,7 +4035,7 @@ Board [6c 7s 9h 3h 2h] Seat 1: Player20 (button) folded before Flop (didn't bet) Seat 2: Player4 (small blind) folded on the River Seat 3: Player24 (big blind) folded on the Turn -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player12 folded on the Turn Seat 6: Player22 folded on the River Seat 7: Player16 folded before Flop (didn't bet) @@ -4049,16 +4049,16 @@ Table '99999999' 9-max Seat #2 is the button Seat 1: Player20 ($5.54 in chips) Seat 2: Player4 ($0.82 in chips) Seat 3: Player24 ($1.40 in chips) -Seat 4: Player17 ($5.71 in chips) +Seat 4: Hero ($5.71 in chips) Seat 5: Player12 ($0.99 in chips) Seat 6: Player22 ($2.46 in chips) Seat 7: Player16 ($1.45 in chips) Seat 8: Player7 ($2 in chips) Seat 9: Player9 ($1.30 in chips) Player24: posts small blind $0.01 -Player17: posts big blind $0.02 +Hero: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [5d 7s] +Dealt to Hero [5d 7s] Player12: calls $0.02 Player22: calls $0.02 Player16: folds @@ -4067,17 +4067,17 @@ Player9: calls $0.02 Player20: calls $0.02 Player4: calls $0.02 Player24: calls $0.01 -Player17: checks +Hero: checks *** FLOP *** [7c Qs Th] Player24: checks -Player17: checks +Hero: checks Player12: checks Player22: bets $0.10 Player9: folds Player20: folds Player4: calls $0.10 Player24: folds -Player17: folds +Hero: folds Player12: folds *** TURN *** [7c Qs Th] [Qd] Player22: checks @@ -4094,7 +4094,7 @@ Board [7c Qs Th Qd 6h] Seat 1: Player20 folded on the Flop Seat 2: Player4 (button) folded on the River Seat 3: Player24 (small blind) folded on the Flop -Seat 4: Player17 (big blind) folded on the Flop +Seat 4: Hero (big blind) folded on the Flop Seat 5: Player12 folded on the Flop Seat 6: Player22 collected ($0.34) Seat 7: Player16 folded before Flop (didn't bet) @@ -4108,16 +4108,16 @@ Table '99999999' 9-max Seat #3 is the button Seat 1: Player20 ($5.52 in chips) Seat 2: Player4 ($0.70 in chips) Seat 3: Player24 ($1.38 in chips) -Seat 4: Player17 ($5.69 in chips) +Seat 4: Hero ($5.69 in chips) Seat 5: Player12 ($0.97 in chips) Seat 6: Player22 ($2.68 in chips) Seat 7: Player16 ($1.45 in chips) Seat 8: Player7 ($2 in chips) Seat 9: Player9 ($1.28 in chips) -Player17: posts small blind $0.01 +Hero: posts small blind $0.01 Player12: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [As Kd] +Dealt to Hero [As Kd] Player22: folds Player16: folds Player7: folds @@ -4125,32 +4125,32 @@ Player9: folds Player20: folds Player4: raises $0.04 to $0.06 Player24: folds -Player17: calls $0.05 +Hero: calls $0.05 Player12: calls $0.04 *** FLOP *** [Kh 3c Ah] -Player17: checks +Hero: checks Player12: checks Player4: checks *** TURN *** [Kh 3c Ah] [Jh] -Player17: checks +Hero: checks Player12: checks Player4: checks *** RIVER *** [Kh 3c Ah Jh] [5c] -Player17: checks +Hero: checks Player12: checks Player4: checks *** SHOW DOWN *** -Player17: shows [As Kd] (two pair, Aces and Kings) +Hero: shows [As Kd] (two pair, Aces and Kings) Player12: mucks hand Player4: mucks hand -Player17 collected $0.18 from pot +Hero collected $0.18 from pot *** SUMMARY *** Total pot $0.18 | Rake $0 Board [Kh 3c Ah Jh 5c] Seat 1: Player20 folded before Flop (didn't bet) Seat 2: Player4 mucked [7s 8s] Seat 3: Player24 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) showed [As Kd] and won ($0.18) with two pair, Aces and Kings +Seat 4: Hero (small blind) showed [As Kd] and won ($0.18) with two pair, Aces and Kings Seat 5: Player12 (big blind) mucked [Ts 3s] Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player16 folded before Flop (didn't bet) @@ -4164,7 +4164,7 @@ Table '99999999' 9-max Seat #4 is the button Seat 1: Player20 ($5.52 in chips) Seat 2: Player4 ($0.64 in chips) Seat 3: Player24 ($1.38 in chips) -Seat 4: Player17 ($5.81 in chips) +Seat 4: Hero ($5.81 in chips) Seat 5: Player12 ($0.91 in chips) Seat 6: Player22 ($2.68 in chips) Seat 7: Player16 ($1.45 in chips) @@ -4173,7 +4173,7 @@ Seat 9: Player9 ($1.28 in chips) Player12: posts small blind $0.01 Player22: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [9s 2d] +Dealt to Hero [9s 2d] Player16: folds Player7: folds Player9 has timed out @@ -4181,7 +4181,7 @@ Player9: folds Player20: raises $0.04 to $0.06 Player4: folds Player24: folds -Player17: folds +Hero: folds Player12: folds Player22: folds Uncalled bet ($0.04) returned to Player20 @@ -4192,7 +4192,7 @@ Total pot $0.05 | Rake $0 Seat 1: Player20 collected ($0.05) Seat 2: Player4 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 4: Hero (button) folded before Flop (didn't bet) Seat 5: Player12 (small blind) folded before Flop Seat 6: Player22 (big blind) folded before Flop Seat 7: Player16 folded before Flop (didn't bet) @@ -4206,7 +4206,7 @@ Table '99999999' 9-max Seat #5 is the button Seat 1: Player20 ($5.55 in chips) Seat 2: Player4 ($0.64 in chips) Seat 3: Player24 ($1.38 in chips) -Seat 4: Player17 ($5.81 in chips) +Seat 4: Hero ($5.81 in chips) Seat 5: Player12 ($0.90 in chips) Seat 6: Player22 ($2.66 in chips) Seat 7: Player16 ($1.45 in chips) @@ -4215,13 +4215,13 @@ Seat 9: Player9 ($1.28 in chips) Player22: posts small blind $0.01 Player16: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Kh 5c] +Dealt to Hero [Kh 5c] Player7: folds Player9: calls $0.02 Player20: folds Player4: folds Player24: folds -Player17: folds +Hero: folds Player12: calls $0.02 Player22: calls $0.01 Player16: checks @@ -4244,7 +4244,7 @@ Board [8d 5s Ts 9h] Seat 1: Player20 folded before Flop (didn't bet) Seat 2: Player4 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player12 (button) folded on the Turn Seat 6: Player22 (small blind) collected ($0.08) Seat 7: Player16 (big blind) folded on the Turn @@ -4258,7 +4258,7 @@ Table '99999999' 9-max Seat #6 is the button Seat 1: Player20 ($5.55 in chips) Seat 2: Player4 ($0.64 in chips) Seat 3: Player24 ($1.38 in chips) -Seat 4: Player17 ($5.81 in chips) +Seat 4: Hero ($5.81 in chips) Seat 5: Player12 ($0.88 in chips) Seat 6: Player22 ($2.72 in chips) Seat 7: Player16 ($1.43 in chips) @@ -4267,13 +4267,13 @@ Seat 9: Player9 ($1.26 in chips) Player16: posts small blind $0.01 Player7: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Qs 6h] +Dealt to Hero [Qs 6h] Player9 has timed out Player9: folds Player20: folds Player4: calls $0.02 Player24: calls $0.02 -Player17: folds +Hero: folds Player12: calls $0.02 Player22: calls $0.02 Player16: folds @@ -4302,7 +4302,7 @@ Board [5d Th 9c 2d 9s] Seat 1: Player20 folded before Flop (didn't bet) Seat 2: Player4 folded on the Flop Seat 3: Player24 folded on the River -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player12 collected ($0.15) Seat 6: Player22 (button) folded on the Flop Seat 7: Player16 (small blind) folded before Flop @@ -4316,7 +4316,7 @@ Table '99999999' 9-max Seat #7 is the button Seat 1: Player20 ($5.55 in chips) Seat 2: Player4 ($0.62 in chips) Seat 3: Player24 ($1.34 in chips) -Seat 4: Player17 ($5.81 in chips) +Seat 4: Hero ($5.81 in chips) Seat 5: Player12 ($0.99 in chips) Seat 6: Player22 ($2.70 in chips) Seat 7: Player16 ($1.42 in chips) @@ -4325,11 +4325,11 @@ Seat 9: Player9 ($1.26 in chips) Player7: posts small blind $0.01 Player9: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [4d 9d] +Dealt to Hero [4d 9d] Player20: folds Player4: folds Player24: folds -Player17: folds +Hero: folds Player12: folds Player22: folds Player16: folds @@ -4344,7 +4344,7 @@ Total pot $0.04 | Rake $0 Seat 1: Player20 folded before Flop (didn't bet) Seat 2: Player4 folded before Flop (didn't bet) Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player12 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player16 (button) folded before Flop (didn't bet) @@ -4358,7 +4358,7 @@ Table '99999999' 9-max Seat #8 is the button Seat 1: Player20 ($5.55 in chips) Seat 2: Player4 ($0.62 in chips) Seat 3: Player24 ($1.34 in chips) -Seat 4: Player17 ($5.81 in chips) +Seat 4: Hero ($5.81 in chips) Seat 5: Player12 ($0.99 in chips) Seat 6: Player22 ($2.70 in chips) Seat 7: Player16 ($1.42 in chips) @@ -4366,9 +4366,9 @@ Seat 8: Player7 ($2.02 in chips) Player20: posts small blind $0.01 Player4: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Js 7d] +Dealt to Hero [Js 7d] Player24: folds -Player17: folds +Hero: folds Player24 leaves the table Player12: folds Player22: calls $0.02 @@ -4396,7 +4396,7 @@ Board [Jc 2d 9d Ac] Seat 1: Player20 (small blind) folded on the Turn Seat 2: Player4 (big blind) folded on the Turn Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player12 folded before Flop (didn't bet) Seat 6: Player22 collected ($0.06) Seat 7: Player16 folded before Flop (didn't bet) @@ -4409,7 +4409,7 @@ Table '99999999' 9-max Seat #1 is the button Seat 1: Player20 ($5.53 in chips) Seat 2: Player4 ($0.60 in chips) Seat 3: Player1 ($2 in chips) -Seat 4: Player17 ($5.81 in chips) +Seat 4: Hero ($5.81 in chips) Seat 5: Player12 ($0.99 in chips) Seat 6: Player22 ($2.74 in chips) Seat 7: Player16 ($1.42 in chips) @@ -4419,8 +4419,8 @@ Player4: posts small blind $0.01 Player1: posts big blind $0.02 Player9: posts small blind $0.01 *** HOLE CARDS *** -Dealt to Player17 [9c 8s] -Player17: folds +Dealt to Hero [9c 8s] +Hero: folds Player12: calls $0.02 Player22: calls $0.02 Player16: folds @@ -4453,7 +4453,7 @@ Board [Td 3s Th 9s] Seat 1: Player20 (button) folded before Flop (didn't bet) Seat 2: Player4 (small blind) folded on the Turn Seat 3: Player1 (big blind) folded on the Turn -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player12 folded on the Turn Seat 6: Player22 collected ($0.11) Seat 7: Player16 folded before Flop (didn't bet) @@ -4467,16 +4467,16 @@ Table '99999999' 9-max Seat #2 is the button Seat 1: Player20 ($5.53 in chips) Seat 2: Player4 ($0.58 in chips) Seat 3: Player1 ($1.98 in chips) -Seat 4: Player17 ($5.81 in chips) +Seat 4: Hero ($5.81 in chips) Seat 5: Player12 ($0.97 in chips) Seat 6: Player22 ($2.83 in chips) Seat 7: Player16 ($1.42 in chips) Seat 8: Player7 ($2.02 in chips) Seat 9: Player9 ($1.21 in chips) Player1: posts small blind $0.01 -Player17: posts big blind $0.02 +Hero: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [9d Qc] +Dealt to Hero [9d Qc] Player12: folds Player22: folds Player16: folds @@ -4485,7 +4485,7 @@ Player9: calls $0.02 Player20: raises $0.04 to $0.06 Player4: folds Player1: folds -Player17: folds +Hero: folds Player9: calls $0.04 *** FLOP *** [6d 4d Qh] Player9: checks @@ -4506,7 +4506,7 @@ Board [6d 4d Qh Ac Ah] Seat 1: Player20 mucked [Kc Jd] Seat 2: Player4 (button) folded before Flop (didn't bet) Seat 3: Player1 (small blind) folded before Flop -Seat 4: Player17 (big blind) folded before Flop +Seat 4: Hero (big blind) folded before Flop Seat 5: Player12 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player16 folded before Flop (didn't bet) @@ -4520,16 +4520,16 @@ Table '99999999' 9-max Seat #3 is the button Seat 1: Player20 ($5.45 in chips) Seat 2: Player4 ($0.58 in chips) Seat 3: Player1 ($1.97 in chips) -Seat 4: Player17 ($5.79 in chips) +Seat 4: Hero ($5.79 in chips) Seat 5: Player12 ($0.97 in chips) Seat 6: Player22 ($2.83 in chips) Seat 7: Player16 ($1.42 in chips) Seat 8: Player7 ($2.02 in chips) Seat 9: Player9 ($1.32 in chips) -Player17: posts small blind $0.01 +Hero: posts small blind $0.01 Player12: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Td 2h] +Dealt to Hero [Td 2h] Player22: folds Player16: raises $0.06 to $0.08 Player7: folds @@ -4537,7 +4537,7 @@ Player9: folds Player20: folds Player4: folds Player1: calls $0.08 -Player17: folds +Hero: folds Player12: folds *** FLOP *** [9c 7d 3h] Player16: checks @@ -4554,7 +4554,7 @@ Board [9c 7d 3h 9h] Seat 1: Player20 folded before Flop (didn't bet) Seat 2: Player4 folded before Flop (didn't bet) Seat 3: Player1 (button) folded on the Turn -Seat 4: Player17 (small blind) folded before Flop +Seat 4: Hero (small blind) folded before Flop Seat 5: Player12 (big blind) folded before Flop Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player16 collected ($0.19) @@ -4568,7 +4568,7 @@ Table '99999999' 9-max Seat #4 is the button Seat 1: Player20 ($5.45 in chips) Seat 2: Player4 ($0.58 in chips) Seat 3: Player1 ($1.89 in chips) -Seat 4: Player17 ($5.78 in chips) +Seat 4: Hero ($5.78 in chips) Seat 5: Player12 ($0.95 in chips) Seat 6: Player22 ($2.83 in chips) Seat 7: Player16 ($1.53 in chips) @@ -4577,7 +4577,7 @@ Seat 9: Player9 ($1.32 in chips) Player12: posts small blind $0.01 Player22: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [5d 6s] +Dealt to Hero [5d 6s] Player16: folds Player16 leaves the table Player7: folds @@ -4585,7 +4585,7 @@ Player9: folds Player20: raises $0.04 to $0.06 Player4: folds Player1: folds -Player17: folds +Hero: folds Player12: calls $0.05 Player22: calls $0.04 *** FLOP *** [Ts Kc Jd] @@ -4603,7 +4603,7 @@ Board [Ts Kc Jd] Seat 1: Player20 folded on the Flop Seat 2: Player4 folded before Flop (didn't bet) Seat 3: Player1 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 4: Hero (button) folded before Flop (didn't bet) Seat 5: Player12 (small blind) folded on the Flop Seat 6: Player22 (big blind) collected ($0.18) Seat 7: Player16 folded before Flop (didn't bet) @@ -4617,7 +4617,7 @@ Table '99999999' 9-max Seat #5 is the button Seat 1: Player20 ($5.39 in chips) Seat 2: Player4 ($0.58 in chips) Seat 3: Player1 ($1.89 in chips) -Seat 4: Player17 ($5.78 in chips) +Seat 4: Hero ($5.78 in chips) Seat 5: Player12 ($0.89 in chips) Seat 6: Player22 ($2.95 in chips) Seat 7: Player6 ($2 in chips) @@ -4626,13 +4626,13 @@ Seat 9: Player9 ($1.32 in chips) Player22: posts small blind $0.01 Player6: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Ks Jd] +Dealt to Hero [Ks Jd] Player7: calls $0.02 Player9: folds Player20: folds Player4: calls $0.02 Player1: raises $0.04 to $0.06 -Player17: folds +Hero: folds Player12: folds Player22: calls $0.05 Player6: calls $0.04 @@ -4663,7 +4663,7 @@ Board [5c 3h 4s Qh 6h] Seat 1: Player20 folded before Flop (didn't bet) Seat 2: Player4 folded on the River Seat 3: Player1 folded on the River -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player12 (button) folded before Flop (didn't bet) Seat 6: Player22 (small blind) collected ($0.46) Seat 7: Player6 (big blind) folded on the River @@ -4677,7 +4677,7 @@ Table '99999999' 9-max Seat #6 is the button Seat 1: Player20 ($5.39 in chips) Seat 2: Player4 ($0.48 in chips) Seat 3: Player1 ($1.79 in chips) -Seat 4: Player17 ($5.78 in chips) +Seat 4: Hero ($5.78 in chips) Seat 5: Player12 ($0.89 in chips) Seat 6: Player22 ($3.31 in chips) Seat 7: Player6 ($1.90 in chips) @@ -4686,25 +4686,25 @@ Seat 9: Player9 ($1.32 in chips) Player6: posts small blind $0.01 Player7: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Qs 9s] +Dealt to Hero [Qs 9s] Player9: folds Player20: folds Player4: folds Player1: folds -Player17: raises $0.04 to $0.06 +Hero: raises $0.04 to $0.06 Player12: folds Player22: folds Player6: folds Player7: folds -Uncalled bet ($0.04) returned to Player17 -Player17 collected $0.05 from pot -Player17: doesn't show hand +Uncalled bet ($0.04) returned to Hero +Hero collected $0.05 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot $0.05 | Rake $0 Seat 1: Player20 folded before Flop (didn't bet) Seat 2: Player4 folded before Flop (didn't bet) Seat 3: Player1 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.05) +Seat 4: Hero collected ($0.05) Seat 5: Player12 folded before Flop (didn't bet) Seat 6: Player22 (button) folded before Flop (didn't bet) Seat 7: Player6 (small blind) folded before Flop @@ -4718,7 +4718,7 @@ Table '99999999' 9-max Seat #7 is the button Seat 1: Player20 ($5.39 in chips) Seat 2: Player4 ($0.48 in chips) Seat 3: Player1 ($1.79 in chips) -Seat 4: Player17 ($5.81 in chips) +Seat 4: Hero ($5.81 in chips) Seat 5: Player12 ($0.89 in chips) Seat 6: Player22 ($3.31 in chips) Seat 7: Player6 ($1.89 in chips) @@ -4727,11 +4727,11 @@ Seat 9: Player9 ($1.32 in chips) Player7: posts small blind $0.01 Player9: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [4d Js] +Dealt to Hero [4d Js] Player20: folds Player4: folds Player1: folds -Player17: folds +Hero: folds Player12: folds Player22: folds Player6: folds @@ -4743,7 +4743,7 @@ Total pot $0.02 | Rake $0 Seat 1: Player20 folded before Flop (didn't bet) Seat 2: Player4 folded before Flop (didn't bet) Seat 3: Player1 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player12 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player6 (button) folded before Flop (didn't bet) @@ -4757,7 +4757,7 @@ Table '99999999' 9-max Seat #8 is the button Seat 1: Player20 ($5.39 in chips) Seat 2: Player4 ($0.48 in chips) Seat 3: Player1 ($1.79 in chips) -Seat 4: Player17 ($5.81 in chips) +Seat 4: Hero ($5.81 in chips) Seat 5: Player12 ($0.89 in chips) Seat 6: Player22 ($3.31 in chips) Seat 7: Player6 ($1.89 in chips) @@ -4766,11 +4766,11 @@ Seat 9: Player9 ($1.33 in chips) Player9: posts small blind $0.01 Player20: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Qd 2s] +Dealt to Hero [Qd 2s] Player4: folds Player1 has timed out Player1: folds -Player17: folds +Hero: folds Player12: calls $0.02 Player22: folds Player6: folds @@ -4791,7 +4791,7 @@ Board [Qs 6d 4s] Seat 1: Player20 (big blind) folded on the Flop Seat 2: Player4 folded before Flop (didn't bet) Seat 3: Player1 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player12 collected ($0.06) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player6 folded before Flop (didn't bet) @@ -4805,7 +4805,7 @@ Table '99999999' 9-max Seat #9 is the button Seat 1: Player20 ($5.37 in chips) Seat 2: Player4 ($0.48 in chips) Seat 3: Player1 ($1.79 in chips) -Seat 4: Player17 ($5.81 in chips) +Seat 4: Hero ($5.81 in chips) Seat 5: Player12 ($0.93 in chips) Seat 6: Player22 ($3.31 in chips) Seat 7: Player6 ($1.89 in chips) @@ -4814,9 +4814,9 @@ Seat 9: Player9 ($1.31 in chips) Player20: posts small blind $0.01 Player4: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player17 [Tc 6c] +Dealt to Hero [Tc 6c] Player1: folds -Player17: folds +Hero: folds Player12: folds Player22: folds Player6: folds @@ -4842,7 +4842,7 @@ Board [4h 7d Td 3d Qs] Seat 1: Player20 (small blind) collected ($0.04) Seat 2: Player4 (big blind) folded on the River Seat 3: Player1 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player12 folded before Flop (didn't bet) Seat 6: Player22 folded before Flop (didn't bet) Seat 7: Player6 folded before Flop (didn't bet) diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt index bdbf1305..7bf1de54 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt @@ -1,16 +1,16 @@ PokerStars Game #24782122321: Hold'em No Limit ($0.01/$0.02 USD) - 2010/06/06 22:24:02 WET [2010/06/06 17:24:02 ET] Table '999999999' 9-max Seat #1 is the button Seat 1: Player2 ($0.88 in chips) -Seat 2: Player0 ($1.61 in chips) +Seat 2: Hero ($1.61 in chips) Seat 3: Player5 ($5.27 in chips) Seat 5: Player1 ($2.15 in chips) Seat 6: Player3 ($2.55 in chips) Seat 7: Player6 ($2.90 in chips) Seat 9: Player4 ($1.93 in chips) -Player0: posts small blind $0.01 +Hero: posts small blind $0.01 Player5: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player0 [Td Qc] +Dealt to Hero [Td Qc] Player1: folds Player3: calls $0.02 Player3 said, "":D"" @@ -18,14 +18,14 @@ Player6: folds Player4: folds Player2 has timed out Player2: folds -Player0: calls $0.01 +Hero: calls $0.01 Player5: checks *** FLOP *** [7d 2s Jc] -Player0: checks +Hero: checks Player5: checks Player3: checks *** TURN *** [7d 2s Jc] [2h] -Player0: folds +Hero: folds Player5: bets $0.06 Player3: folds Uncalled bet ($0.06) returned to Player5 @@ -35,7 +35,7 @@ Player5: doesn't show hand Total pot $0.06 | Rake $0 Board [7d 2s Jc 2h] Seat 1: Player2 (button) folded before Flop (didn't bet) -Seat 2: Player0 (small blind) folded on the Turn +Seat 2: Hero (small blind) folded on the Turn Seat 3: Player5 (big blind) collected ($0.06) Seat 5: Player1 folded before Flop (didn't bet) Seat 6: Player3 folded on the Turn diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.05-0.10-201004.allinWithAmtReturned.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.05-0.10-201004.allinWithAmtReturned.txt index feaf8194..fbee9602 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.05-0.10-201004.allinWithAmtReturned.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.05-0.10-201004.allinWithAmtReturned.txt @@ -1,33 +1,33 @@ PokerStars Game #42875758685: Hold'em No Limit ($0.05/$0.10 USD) - 2010/04/19 0:19:11 WET [2010/04/18 19:19:11 ET] Table 'gimick VI' 9-max Seat #4 is the button Seat 3: Player1 ($5.55 in chips) -Seat 4: Player0 ($2.40 in chips) +Seat 4: Hero ($2.40 in chips) Seat 8: Player2 ($3.90 in chips) Player2: posts small blind $0.05 Player1: posts big blind $0.10 *** HOLE CARDS *** -Dealt to Player0 [7d 8d] -Player0: raises $0.30 to $0.40 +Dealt to Hero [7d 8d] +Hero: raises $0.30 to $0.40 Player2: calls $0.35 Player1: folds *** FLOP *** [2h 2d Qd] Player2: checks -Player0: bets $0.60 +Hero: bets $0.60 Player2: raises $0.60 to $1.20 -Player0: calls $0.60 +Hero: calls $0.60 *** TURN *** [2h 2d Qd] [5d] Player2: bets $0.90 -Player0: calls $0.80 and is all-in +Hero: calls $0.80 and is all-in Uncalled bet ($0.10) returned to Player2 *** RIVER *** [2h 2d Qd 5d] [4d] *** SHOW DOWN *** Player2: shows [9d As] (a flush, Queen high) -Player0: shows [7d 8d] (a flush, Queen high - lower cards) +Hero: shows [7d 8d] (a flush, Queen high - lower cards) Player2 collected $4.70 from pot *** SUMMARY *** Total pot $4.90 | Rake $0.20 Board [2h 2d Qd 5d 4d] Seat 3: Player1 (big blind) folded before Flop -Seat 4: Player0 (button) showed [7d 8d] and lost with a flush, Queen high +Seat 4: Hero (button) showed [7d 8d] and lost with a flush, Queen high Seat 8: Player2 (small blind) showed [9d As] and won ($4.70) with a flush, Queen high diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/PLO-FR-USD-0.01-0.02-201006.sidepots.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/PLO-FR-USD-0.01-0.02-201006.sidepots.txt index 01e448cf..59166ba0 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/PLO-FR-USD-0.01-0.02-201006.sidepots.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/PLO-FR-USD-0.01-0.02-201006.sidepots.txt @@ -2,7 +2,7 @@ PokerStars Game #14311270221: Omaha Pot Limit ($0.01/$0.02 USD) - 2010/06/07 20:13:12 WET [2010/06/07 15:13:12 ET] Table '99999999I' 9-max Seat #3 is the button Seat 2: Player5 ($0.58 in chips) -Seat 3: Player1 ($0.65 in chips) +Seat 3: Hero ($0.65 in chips) Seat 6: Player4 ($1.92 in chips) Seat 7: Player6 ($2.81 in chips) Seat 8: Player3 ($2.50 in chips) @@ -13,11 +13,11 @@ Player6: posts big blind $0.02 Player3: posts big blind $0.02 Player2: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player1 [8d As 2h Ks] +Dealt to Hero [8d As 2h Ks] Player3: checks Player2: checks Player5: raises $0.02 to $0.04 -Player1: raises $0.02 to $0.06 +Hero: raises $0.02 to $0.06 Player4: calls $0.05 Player6: folds Player3: calls $0.04 @@ -28,7 +28,7 @@ Player4: checks Player3: checks Player2: bets $0.31 Player5: folds -Player1: folds +Hero: folds Player4: folds Player3: folds Uncalled bet ($0.31) returned to Player2 @@ -37,7 +37,7 @@ Player2 collected $0.31 from pot Total pot $0.32 | Rake $0.01 Board [Qh 7c Qs] Seat 2: Player5 folded on the Flop -Seat 3: Player1 (button) folded on the Flop +Seat 3: Hero (button) folded on the Flop Seat 6: Player4 (small blind) folded on the Flop Seat 7: Player6 (big blind) folded before Flop Seat 8: Player3 folded on the Flop @@ -48,7 +48,7 @@ Seat 9: Player2 collected ($0.31) PokerStars Game #22865231671: Omaha Pot Limit ($0.01/$0.02 USD) - 2010/06/07 20:14:17 WET [2010/06/07 15:14:17 ET] Table '99999999I' 9-max Seat #6 is the button Seat 2: Player5 ($0.52 in chips) -Seat 3: Player1 ($0.59 in chips) +Seat 3: Hero ($0.59 in chips) Seat 5: Player0 ($0.90 in chips) Seat 6: Player4 ($1.86 in chips) Seat 7: Player6 ($2.79 in chips) @@ -58,22 +58,22 @@ Player6: posts small blind $0.01 Player3: posts big blind $0.02 Player0: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player1 [6d 3c 5s As] +Dealt to Hero [6d 3c 5s As] Player2: calls $0.02 Player5: calls $0.02 -Player1: calls $0.02 +Hero: calls $0.02 Player0: raises $0.06 to $0.08 Player4: calls $0.08 Player6: folds Player3: folds Player2: calls $0.06 Player5: calls $0.06 -Player1: raises $0.06 to $0.14 +Hero: raises $0.06 to $0.14 Player0: raises $0.55 to $0.69 Player4: calls $0.61 Player2: raises $0.36 to $1.05 and is all-in Player5: folds -Player1: calls $0.45 and is all-in +Hero: calls $0.45 and is all-in Player0: calls $0.21 and is all-in Player4: calls $0.36 *** FLOP *** [6c Kc Qc] @@ -85,13 +85,13 @@ Player4: shows [9c 9d 7d 7h] (a pair of Nines) Player2 collected $0.29 from side pot-2 Player0: shows [Ks Ad 7s Tc] (a straight, Ten to Ace) Player0 collected $0.88 from side pot-1 -Player1: shows [6d 3c 5s As] (a pair of Sixes) +Hero: shows [6d 3c 5s As] (a pair of Sixes) Player0 collected $2.35 from main pot *** SUMMARY *** Total pot $3.70 Main pot $2.35. Side pot-1 $0.88. Side pot-2 $0.29. | Rake $0.18 Board [6c Kc Qc Jc 4c] Seat 2: Player5 folded before Flop -Seat 3: Player1 showed [6d 3c 5s As] and lost with a pair of Sixes +Seat 3: Hero showed [6d 3c 5s As] and lost with a pair of Sixes Seat 5: Player0 showed [Ks Ad 7s Tc] and won ($3.23) with a straight, Ten to Ace Seat 6: Player4 (button) showed [9c 9d 7d 7h] and lost with a pair of Nines Seat 7: Player6 (small blind) folded before Flop @@ -103,7 +103,7 @@ Seat 9: Player2 showed [Js Ah 5d 9h] and won ($0.29) with a pair of Jacks PokerStars Game #60920749213: Omaha Pot Limit ($0.01/$0.02 USD) - 2010/06/07 20:15:29 WET [2010/06/07 15:15:29 ET] Table '99999999I' 9-max Seat #7 is the button Seat 2: Player5 ($0.44 in chips) -Seat 3: Player1 ($0.80 in chips) +Seat 3: Hero ($0.80 in chips) Seat 5: Player0 ($3.23 in chips) Seat 6: Player4 ($0.81 in chips) Seat 7: Player6 ($2.78 in chips) @@ -112,9 +112,9 @@ Seat 9: Player2 ($0.29 in chips) Player3: posts small blind $0.01 Player2: posts big blind $0.02 *** HOLE CARDS *** -Dealt to Player1 [2c 4c 3s 7c] +Dealt to Hero [2c 4c 3s 7c] Player5: calls $0.02 -Player1: calls $0.02 +Hero: calls $0.02 Player0: calls $0.02 Player4: folds Player6: calls $0.02 @@ -123,30 +123,30 @@ Player2: checks *** FLOP *** [7h 8s 4s] Player2: checks Player5: bets $0.02 -Player1: raises $0.02 to $0.04 +Hero: raises $0.02 to $0.04 Player0: raises $0.14 to $0.18 Player6: calls $0.18 Player2: raises $0.09 to $0.27 and is all-in Player5: calls $0.25 -Player1: raises $0.51 to $0.78 and is all-in +Hero: raises $0.51 to $0.78 and is all-in Player0: calls $0.60 Player6: folds Player5: calls $0.15 and is all-in *** TURN *** [7h 8s 4s] [2s] *** RIVER *** [7h 8s 4s 2s] [2h] *** SHOW DOWN *** -Player1: shows [2c 4c 3s 7c] (a full house, Deuces full of Sevens) +Hero: shows [2c 4c 3s 7c] (a full house, Deuces full of Sevens) Player0: shows [6h 3h Tc 9c] (a pair of Deuces) -Player1 collected $0.69 from side pot-2 +Hero collected $0.69 from side pot-2 Player5: shows [3d 5c 8h 7s] (two pair, Eights and Sevens) -Player1 collected $0.42 from side pot-1 +Hero collected $0.42 from side pot-1 Player2: shows [5s 7d Kd 9h] (two pair, Sevens and Deuces) -Player1 collected $1.31 from main pot +Hero collected $1.31 from main pot *** SUMMARY *** Total pot $2.54 Main pot $1.31. Side pot-1 $0.42. Side pot-2 $0.69. | Rake $0.12 Board [7h 8s 4s 2s 2h] Seat 2: Player5 showed [3d 5c 8h 7s] and lost with two pair, Eights and Sevens -Seat 3: Player1 showed [2c 4c 3s 7c] and won ($2.42) with a full house, Deuces full of Sevens +Seat 3: Hero showed [2c 4c 3s 7c] and won ($2.42) with a full house, Deuces full of Sevens Seat 5: Player0 showed [6h 3h Tc 9c] and lost with a pair of Deuces Seat 6: Player4 folded before Flop (didn't bet) Seat 7: Player6 (button) folded on the Flop diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/PLO8-6max-USD-0.01-0.02-200911.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/PLO8-6max-USD-0.01-0.02-200911.txt index dbe2a5bf..16ff1717 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/PLO8-6max-USD-0.01-0.02-200911.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/PLO8-6max-USD-0.01-0.02-200911.txt @@ -4,30 +4,30 @@ Seat 1: EricSteph261 ($11.27 in chips) Seat 2: UnderMeSensi ($3.33 in chips) Seat 3: supermeXXX ($1.19 in chips) Seat 4: xgz520 ($1.81 in chips) -Seat 5: s0rrow ($3 in chips) +Seat 5: Hero ($3 in chips) Seat 6: tiger48475 ($5 in chips) xgz520: posts small blind $0.01 -s0rrow: posts big blind $0.02 +Hero: posts big blind $0.02 *** HOLE CARDS *** -Dealt to s0rrow [2h 2c 3s 9h] +Dealt to Hero [2h 2c 3s 9h] tiger48475: folds EricSteph261: folds UnderMeSensi: raises $0.05 to $0.07 supermeXXX: folds xgz520: folds -s0rrow: calls $0.05 +Hero: calls $0.05 *** FLOP *** [Jd 5c Kc] -s0rrow: checks +Hero: checks UnderMeSensi: checks *** TURN *** [Jd 5c Kc] [4c] -s0rrow: checks +Hero: checks UnderMeSensi: bets $0.08 -s0rrow: calls $0.08 +Hero: calls $0.08 *** RIVER *** [Jd 5c Kc 4c] [Th] -s0rrow: checks +Hero: checks UnderMeSensi: bets $0.31 EricSteph261 is sitting out -s0rrow: folds +Hero: folds Uncalled bet ($0.31) returned to UnderMeSensi UnderMeSensi collected $0.31 from pot UnderMeSensi: doesn't show hand @@ -38,7 +38,7 @@ Seat 1: EricSteph261 folded before Flop (didn't bet) Seat 2: UnderMeSensi collected ($0.31) Seat 3: supermeXXX (button) folded before Flop (didn't bet) Seat 4: xgz520 (small blind) folded before Flop -Seat 5: s0rrow (big blind) folded on the River +Seat 5: Hero (big blind) folded on the River Seat 6: tiger48475 folded before Flop (didn't bet) @@ -48,16 +48,16 @@ Table 'Gaby II' 6-max Seat #4 is the button Seat 2: UnderMeSensi ($3.49 in chips) Seat 3: supermeXXX ($1.19 in chips) Seat 4: xgz520 ($1.80 in chips) -Seat 5: s0rrow ($2.85 in chips) +Seat 5: Hero ($2.85 in chips) Seat 6: tiger48475 ($5 in chips) -s0rrow: posts small blind $0.01 +Hero: posts small blind $0.01 tiger48475: posts big blind $0.02 *** HOLE CARDS *** -Dealt to s0rrow [4d 3s 8d Jd] +Dealt to Hero [4d 3s 8d Jd] UnderMeSensi: raises $0.05 to $0.07 supermeXXX: folds xgz520: folds -s0rrow: folds +Hero: folds tiger48475: folds Uncalled bet ($0.05) returned to UnderMeSensi xgz520 leaves the table @@ -68,7 +68,7 @@ Total pot $0.05 | Rake $0 Seat 2: UnderMeSensi collected ($0.05) Seat 3: supermeXXX folded before Flop (didn't bet) Seat 4: xgz520 (button) folded before Flop (didn't bet) -Seat 5: s0rrow (small blind) folded before Flop +Seat 5: Hero (small blind) folded before Flop Seat 6: tiger48475 (big blind) folded before Flop @@ -77,20 +77,20 @@ PokerStars Game #35875034981: Omaha Hi/Lo Pot Limit ($0.01/$0.02 USD) - 2009/11 Table 'Gaby II' 6-max Seat #5 is the button Seat 2: UnderMeSensi ($3.52 in chips) Seat 3: supermeXXX ($1.19 in chips) -Seat 5: s0rrow ($2.84 in chips) +Seat 5: Hero ($2.84 in chips) Seat 6: tiger48475 ($5 in chips) tiger48475: posts small blind $0.01 UnderMeSensi: posts big blind $0.02 *** HOLE CARDS *** -Dealt to s0rrow [Qh 6c Th 9c] +Dealt to Hero [Qh 6c Th 9c] supermeXXX: raises $0.04 to $0.06 -s0rrow: calls $0.06 +Hero: calls $0.06 tiger48475: folds UnderMeSensi: calls $0.04 *** FLOP *** [5h 4d 2d] UnderMeSensi: checks supermeXXX: bets $0.10 -s0rrow: folds +Hero: folds UnderMeSensi: calls $0.10 *** TURN *** [5h 4d 2d] [Jd] UnderMeSensi: checks @@ -109,7 +109,7 @@ Total pot $0.39 | Rake $0 Board [5h 4d 2d Jd 6h] Seat 2: UnderMeSensi (big blind) showed [7c 6s 7h As] and won ($0.10) with HI: a pair of Sevens; LO: 6,5,4,2,A Seat 3: supermeXXX showed [Ah 2h Kh 2s] and won ($0.29) with HI: three of a kind, Deuces; LO: 6,5,4,2,A -Seat 5: s0rrow (button) folded on the Flop +Seat 5: Hero (button) folded on the Flop Seat 6: tiger48475 (small blind) folded before Flop @@ -118,32 +118,32 @@ PokerStars Game #35875059163: Omaha Hi/Lo Pot Limit ($0.01/$0.02 USD) - 2009/11 Table 'Gaby II' 6-max Seat #6 is the button Seat 2: UnderMeSensi ($3.46 in chips) Seat 3: supermeXXX ($1.32 in chips) -Seat 5: s0rrow ($2.78 in chips) +Seat 5: Hero ($2.78 in chips) Seat 6: tiger48475 ($5 in chips) UnderMeSensi: posts small blind $0.01 supermeXXX: posts big blind $0.02 *** HOLE CARDS *** -Dealt to s0rrow [Ts Qs 9d 7c] -s0rrow: raises $0.04 to $0.06 +Dealt to Hero [Ts Qs 9d 7c] +Hero: raises $0.04 to $0.06 tiger48475: folds UnderMeSensi: calls $0.05 diyi69 joins the table at seat #4 supermeXXX: folds *** FLOP *** [3h Ah 5d] UnderMeSensi: checks -s0rrow: checks +Hero: checks *** TURN *** [3h Ah 5d] [Kc] UnderMeSensi: checks -s0rrow: bets $0.14 +Hero: bets $0.14 UnderMeSensi: folds -Uncalled bet ($0.14) returned to s0rrow -s0rrow collected $0.14 from pot +Uncalled bet ($0.14) returned to Hero +Hero collected $0.14 from pot *** SUMMARY *** Total pot $0.14 | Rake $0 Board [3h Ah 5d Kc] Seat 2: UnderMeSensi (small blind) folded on the Turn Seat 3: supermeXXX (big blind) folded before Flop -Seat 5: s0rrow collected ($0.14) +Seat 5: Hero collected ($0.14) Seat 6: tiger48475 (button) folded before Flop (didn't bet) @@ -153,13 +153,13 @@ Table 'Gaby II' 6-max Seat #2 is the button Seat 2: UnderMeSensi ($3.40 in chips) Seat 3: supermeXXX ($1.30 in chips) Seat 4: diyi69 ($1 in chips) -Seat 5: s0rrow ($2.86 in chips) +Seat 5: Hero ($2.86 in chips) Seat 6: tiger48475 ($5 in chips) supermeXXX: posts small blind $0.01 diyi69: posts big blind $0.02 *** HOLE CARDS *** -Dealt to s0rrow [8s 6d 7s 2s] -s0rrow: folds +Dealt to Hero [8s 6d 7s 2s] +Hero: folds tiger48475: folds UnderMeSensi: folds supermeXXX: calls $0.01 @@ -178,7 +178,7 @@ Board [As Js 5h] Seat 2: UnderMeSensi (button) folded before Flop (didn't bet) Seat 3: supermeXXX (small blind) collected ($0.04) Seat 4: diyi69 (big blind) folded on the Flop -Seat 5: s0rrow folded before Flop (didn't bet) +Seat 5: Hero folded before Flop (didn't bet) Seat 6: tiger48475 folded before Flop (didn't bet) @@ -187,21 +187,21 @@ PokerStars Game #35875131707: Omaha Hi/Lo Pot Limit ($0.01/$0.02 USD) - 2009/11 Table 'Gaby II' 6-max Seat #3 is the button Seat 2: UnderMeSensi ($3.40 in chips) Seat 3: supermeXXX ($1.32 in chips) -Seat 5: s0rrow ($2.86 in chips) +Seat 5: Hero ($2.86 in chips) Seat 6: tiger48475 ($5 in chips) -s0rrow: posts small blind $0.01 +Hero: posts small blind $0.01 tiger48475: posts big blind $0.02 *** HOLE CARDS *** -Dealt to s0rrow [7c As 4d 4h] +Dealt to Hero [7c As 4d 4h] UnderMeSensi: calls $0.02 supermeXXX: folds -s0rrow: calls $0.01 +Hero: calls $0.01 tiger48475: checks *** FLOP *** [Ks 9d Ts] -s0rrow: checks +Hero: checks tiger48475: bets $0.06 UnderMeSensi: calls $0.06 -s0rrow: folds +Hero: folds *** TURN *** [Ks 9d Ts] [7h] tiger48475: checks EricSteph261 has returned @@ -218,7 +218,7 @@ Total pot $0.18 | Rake $0 Board [Ks 9d Ts 7h 4s] Seat 2: UnderMeSensi collected ($0.18) Seat 3: supermeXXX (button) folded before Flop (didn't bet) -Seat 5: s0rrow (small blind) folded on the Flop +Seat 5: Hero (small blind) folded on the Flop Seat 6: tiger48475 (big blind) folded on the River @@ -228,42 +228,42 @@ Table 'Gaby II' 6-max Seat #5 is the button Seat 1: EricSteph261 ($11.27 in chips) Seat 2: UnderMeSensi ($3.50 in chips) Seat 3: supermeXXX ($1.32 in chips) -Seat 5: s0rrow ($2.84 in chips) +Seat 5: Hero ($2.84 in chips) Seat 6: tiger48475 ($5 in chips) tiger48475: posts small blind $0.01 EricSteph261: posts big blind $0.02 *** HOLE CARDS *** -Dealt to s0rrow [Jc 3h 2s Qc] +Dealt to Hero [Jc 3h 2s Qc] UnderMeSensi: calls $0.02 supermeXXX: calls $0.02 -s0rrow: raises $0.08 to $0.10 +Hero: raises $0.08 to $0.10 tiger48475: folds EricSteph261: folds UnderMeSensi: calls $0.08 supermeXXX: folds *** FLOP *** [Ac 5s Js] UnderMeSensi: checks -s0rrow: bets $0.20 +Hero: bets $0.20 UnderMeSensi: calls $0.20 *** TURN *** [Ac 5s Js] [8c] UnderMeSensi: checks -s0rrow: bets $0.50 +Hero: bets $0.50 UnderMeSensi: calls $0.50 *** RIVER *** [Ac 5s Js 8c] [Jd] UnderMeSensi: bets $1.60 -s0rrow: calls $1.60 +Hero: calls $1.60 *** SHOW DOWN *** UnderMeSensi: shows [7s 9s Jh 3c] (HI: three of a kind, Jacks; LO: 8,7,5,3,A) -s0rrow: shows [Jc 3h 2s Qc] (HI: three of a kind, Jacks - Ace+Queen kicker; LO: 8,5,3,2,A) -s0rrow collected $2.33 from pot -s0rrow collected $2.32 from pot +Hero: shows [Jc 3h 2s Qc] (HI: three of a kind, Jacks - Ace+Queen kicker; LO: 8,5,3,2,A) +Hero collected $2.33 from pot +Hero collected $2.32 from pot *** SUMMARY *** Total pot $4.85 | Rake $0.20 Board [Ac 5s Js 8c Jd] Seat 1: EricSteph261 (big blind) folded before Flop Seat 2: UnderMeSensi showed [7s 9s Jh 3c] and lost with HI: three of a kind, Jacks; LO: 8,7,5,3,A Seat 3: supermeXXX folded before Flop -Seat 5: s0rrow (button) showed [Jc 3h 2s Qc] and won ($4.65) with HI: three of a kind, Jacks; LO: 8,5,3,2,A +Seat 5: Hero (button) showed [Jc 3h 2s Qc] and won ($4.65) with HI: three of a kind, Jacks; LO: 8,5,3,2,A Seat 6: tiger48475 (small blind) folded before Flop @@ -273,33 +273,33 @@ Table 'Gaby II' 6-max Seat #6 is the button Seat 1: EricSteph261 ($11.25 in chips) Seat 2: UnderMeSensi ($1.10 in chips) Seat 3: supermeXXX ($1.30 in chips) -Seat 5: s0rrow ($5.09 in chips) +Seat 5: Hero ($5.09 in chips) Seat 6: tiger48475 ($5 in chips) EricSteph261: posts small blind $0.01 UnderMeSensi: posts big blind $0.02 *** HOLE CARDS *** -Dealt to s0rrow [7s 3c 3h 8d] +Dealt to Hero [7s 3c 3h 8d] supermeXXX: folds -s0rrow: raises $0.02 to $0.04 +Hero: raises $0.02 to $0.04 tiger48475: calls $0.04 EricSteph261: calls $0.03 UnderMeSensi: calls $0.02 *** FLOP *** [8c 3s 4s] EricSteph261: checks UnderMeSensi: checks -s0rrow: bets $0.14 +Hero: bets $0.14 tiger48475: folds EricSteph261: folds UnderMeSensi: folds -Uncalled bet ($0.14) returned to s0rrow -s0rrow collected $0.16 from pot +Uncalled bet ($0.14) returned to Hero +Hero collected $0.16 from pot *** SUMMARY *** Total pot $0.16 | Rake $0 Board [8c 3s 4s] Seat 1: EricSteph261 (small blind) folded on the Flop Seat 2: UnderMeSensi (big blind) folded on the Flop Seat 3: supermeXXX folded before Flop (didn't bet) -Seat 5: s0rrow collected ($0.16) +Seat 5: Hero collected ($0.16) Seat 6: tiger48475 (button) folded on the Flop @@ -309,13 +309,13 @@ Table 'Gaby II' 6-max Seat #1 is the button Seat 1: EricSteph261 ($11.21 in chips) Seat 2: UnderMeSensi ($1.06 in chips) Seat 3: supermeXXX ($1.30 in chips) -Seat 5: s0rrow ($5.21 in chips) +Seat 5: Hero ($5.21 in chips) Seat 6: tiger48475 ($5 in chips) UnderMeSensi: posts small blind $0.01 supermeXXX: posts big blind $0.02 *** HOLE CARDS *** -Dealt to s0rrow [Ks Qd Kd Kc] -s0rrow: raises $0.04 to $0.06 +Dealt to Hero [Ks Qd Kd Kc] +Hero: raises $0.04 to $0.06 tiger48475: folds EricSteph261: calls $0.06 UnderMeSensi: calls $0.05 @@ -323,24 +323,24 @@ supermeXXX: calls $0.04 *** FLOP *** [2d Jh 5h] UnderMeSensi: checks supermeXXX: checks -s0rrow: checks +Hero: checks EricSteph261: checks *** TURN *** [2d Jh 5h] [Js] UnderMeSensi: checks supermeXXX: checks -s0rrow: checks +Hero: checks EricSteph261: checks *** RIVER *** [2d Jh 5h Js] [7s] UnderMeSensi: checks supermeXXX: checks -s0rrow: checks +Hero: checks EricSteph261: checks *** SHOW DOWN *** UnderMeSensi: shows [5d 6c As 9d] (HI: two pair, Jacks and Fives; LO: 7,6,5,2,A) supermeXXX: shows [6s Th 7c Ac] (HI: two pair, Jacks and Sevens; LO: 7,6,5,2,A) -s0rrow: shows [Ks Qd Kd Kc] (HI: two pair, Kings and Jacks) +Hero: shows [Ks Qd Kd Kc] (HI: two pair, Kings and Jacks) EricSteph261: shows [4s 9c 3d 2c] (HI: two pair, Jacks and Deuces; LO: 7,5,4,3,2) -s0rrow collected $0.12 from pot +Hero collected $0.12 from pot EricSteph261 collected $0.12 from pot *** SUMMARY *** Total pot $0.24 | Rake $0 @@ -348,7 +348,7 @@ Board [2d Jh 5h Js 7s] Seat 1: EricSteph261 (button) showed [4s 9c 3d 2c] and won ($0.12) with HI: two pair, Jacks and Deuces; LO: 7,5,4,3,2 Seat 2: UnderMeSensi (small blind) showed [5d 6c As 9d] and lost with HI: two pair, Jacks and Fives; LO: 7,6,5,2,A Seat 3: supermeXXX (big blind) showed [6s Th 7c Ac] and lost with HI: two pair, Jacks and Sevens; LO: 7,6,5,2,A -Seat 5: s0rrow showed [Ks Qd Kd Kc] and won ($0.12) with HI: two pair, Kings and Jacks +Seat 5: Hero showed [Ks Qd Kd Kc] and won ($0.12) with HI: two pair, Kings and Jacks Seat 6: tiger48475 folded before Flop (didn't bet) @@ -358,12 +358,12 @@ Table 'Gaby II' 6-max Seat #2 is the button Seat 1: EricSteph261 ($11.27 in chips) Seat 2: UnderMeSensi ($1 in chips) Seat 3: supermeXXX ($1.24 in chips) -Seat 5: s0rrow ($5.27 in chips) +Seat 5: Hero ($5.27 in chips) Seat 6: tiger48475 ($5 in chips) supermeXXX: posts small blind $0.01 -s0rrow: posts big blind $0.02 +Hero: posts big blind $0.02 *** HOLE CARDS *** -Dealt to s0rrow [Jd Kc 6h Jc] +Dealt to Hero [Jd Kc 6h Jc] tiger48475: folds EricSteph261: calls $0.02 UnderMeSensi is disconnected @@ -371,10 +371,10 @@ UnderMeSensi has timed out while disconnected UnderMeSensi: folds UnderMeSensi is sitting out supermeXXX: calls $0.01 -s0rrow: checks +Hero: checks *** FLOP *** [8d 7s Qh] supermeXXX: bets $0.02 -s0rrow: folds +Hero: folds EricSteph261: calls $0.02 *** TURN *** [8d 7s Qh] [As] supermeXXX: bets $0.04 @@ -393,7 +393,7 @@ Board [8d 7s Qh As 5d] Seat 1: EricSteph261 showed [Jh 2d 5s 6c] and won ($0.09) with HI: a pair of Fives; LO: 7,6,5,2,A Seat 2: UnderMeSensi (button) folded before Flop (didn't bet) Seat 3: supermeXXX (small blind) showed [Kh Qd 9s Th] and won ($0.09) with HI: a pair of Queens -Seat 5: s0rrow (big blind) folded on the Flop +Seat 5: Hero (big blind) folded on the Flop Seat 6: tiger48475 folded before Flop (didn't bet) @@ -402,33 +402,33 @@ PokerStars Game #35875293439: Omaha Hi/Lo Pot Limit ($0.01/$0.02 USD) - 2009/11 Table 'Gaby II' 6-max Seat #3 is the button Seat 1: EricSteph261 ($11.28 in chips) Seat 3: supermeXXX ($1.25 in chips) -Seat 5: s0rrow ($5.25 in chips) +Seat 5: Hero ($5.25 in chips) Seat 6: tiger48475 ($5 in chips) -s0rrow: posts small blind $0.01 +Hero: posts small blind $0.01 tiger48475: posts big blind $0.02 *** HOLE CARDS *** -Dealt to s0rrow [9c 8h 8s 3c] +Dealt to Hero [9c 8h 8s 3c] EricSteph261: calls $0.02 supermeXXX: calls $0.02 -s0rrow: calls $0.01 +Hero: calls $0.01 tiger48475: checks *** FLOP *** [Ah 2d Qc] -s0rrow: checks +Hero: checks tiger48475: checks EricSteph261: checks supermeXXX: checks *** TURN *** [Ah 2d Qc] [3d] -s0rrow: checks +Hero: checks tiger48475: checks EricSteph261: checks supermeXXX: checks *** RIVER *** [Ah 2d Qc 3d] [6s] -s0rrow: checks +Hero: checks tiger48475: checks EricSteph261: checks supermeXXX: checks *** SHOW DOWN *** -s0rrow: shows [9c 8h 8s 3c] (HI: a pair of Eights; LO: 8,6,3,2,A) +Hero: shows [9c 8h 8s 3c] (HI: a pair of Eights; LO: 8,6,3,2,A) tiger48475: shows [3s 5s Ts Th] (HI: a pair of Tens; LO: 6,5,3,2,A) EricSteph261: shows [As Ks Jh 7h] (HI: a pair of Aces; LO: 7,6,3,2,A) supermeXXX: mucks hand @@ -439,7 +439,7 @@ Total pot $0.08 | Rake $0 Board [Ah 2d Qc 3d 6s] Seat 1: EricSteph261 showed [As Ks Jh 7h] and won ($0.04) with HI: a pair of Aces; LO: 7,6,3,2,A Seat 3: supermeXXX (button) mucked [9h 9s 4c Kc] -Seat 5: s0rrow (small blind) showed [9c 8h 8s 3c] and lost with HI: a pair of Eights; LO: 8,6,3,2,A +Seat 5: Hero (small blind) showed [9c 8h 8s 3c] and lost with HI: a pair of Eights; LO: 8,6,3,2,A Seat 6: tiger48475 (big blind) showed [3s 5s Ts Th] and won ($0.04) with HI: a pair of Tens; LO: 6,5,3,2,A @@ -448,14 +448,14 @@ PokerStars Game #35875328026: Omaha Hi/Lo Pot Limit ($0.01/$0.02 USD) - 2009/11 Table 'Gaby II' 6-max Seat #5 is the button Seat 1: EricSteph261 ($11.30 in chips) Seat 3: supermeXXX ($1.23 in chips) -Seat 5: s0rrow ($5.23 in chips) +Seat 5: Hero ($5.23 in chips) Seat 6: tiger48475 ($5.02 in chips) tiger48475: posts small blind $0.01 EricSteph261: posts big blind $0.02 *** HOLE CARDS *** -Dealt to s0rrow [Qd 6h 8s 6c] +Dealt to Hero [Qd 6h 8s 6c] supermeXXX: calls $0.02 -s0rrow: folds +Hero: folds tiger48475: calls $0.01 EricSteph261: checks *** FLOP *** [Kc Ac 5s] @@ -478,7 +478,7 @@ Total pot $0.06 | Rake $0 Board [Kc Ac 5s 3h Qh] Seat 1: EricSteph261 (big blind) folded on the River Seat 3: supermeXXX folded on the River -Seat 5: s0rrow (button) folded before Flop (didn't bet) +Seat 5: Hero (button) folded before Flop (didn't bet) Seat 6: tiger48475 (small blind) collected ($0.06) @@ -486,34 +486,34 @@ Seat 6: tiger48475 (small blind) collected ($0.06) PokerStars Game #35875356253: Omaha Hi/Lo Pot Limit ($0.01/$0.02 USD) - 2009/11/26 10:47:00 ET Table 'Gaby II' 6-max Seat #6 is the button Seat 3: supermeXXX ($1.21 in chips) -Seat 5: s0rrow ($5.23 in chips) +Seat 5: Hero ($5.23 in chips) Seat 6: tiger48475 ($5.06 in chips) supermeXXX: posts small blind $0.01 -s0rrow: posts big blind $0.02 +Hero: posts big blind $0.02 *** HOLE CARDS *** -Dealt to s0rrow [8h Jd 5d 8d] +Dealt to Hero [8h Jd 5d 8d] tiger48475: folds supermeXXX: calls $0.01 -s0rrow: checks +Hero: checks *** FLOP *** [Ks 9s 6c] supermeXXX: bets $0.02 -s0rrow: calls $0.02 +Hero: calls $0.02 *** TURN *** [Ks 9s 6c] [Qc] supermeXXX: bets $0.02 -s0rrow: calls $0.02 +Hero: calls $0.02 *** RIVER *** [Ks 9s 6c Qc] [Ad] supermeXXX: checks -s0rrow: checks +Hero: checks *** SHOW DOWN *** supermeXXX: shows [Tc 7d 8c 3s] (HI: high card Ace) -s0rrow: shows [8h Jd 5d 8d] (HI: a pair of Eights) -s0rrow collected $0.12 from pot +Hero: shows [8h Jd 5d 8d] (HI: a pair of Eights) +Hero collected $0.12 from pot No low hand qualified *** SUMMARY *** Total pot $0.12 | Rake $0 Board [Ks 9s 6c Qc Ad] Seat 3: supermeXXX (small blind) showed [Tc 7d 8c 3s] and lost with HI: high card Ace -Seat 5: s0rrow (big blind) showed [8h Jd 5d 8d] and won ($0.12) with HI: a pair of Eights +Seat 5: Hero (big blind) showed [8h Jd 5d 8d] and won ($0.12) with HI: a pair of Eights Seat 6: tiger48475 (button) folded before Flop (didn't bet) @@ -521,36 +521,36 @@ Seat 6: tiger48475 (button) folded before Flop (didn't bet) PokerStars Game #35875379792: Omaha Hi/Lo Pot Limit ($0.01/$0.02 USD) - 2009/11/26 10:47:39 ET Table 'Gaby II' 6-max Seat #3 is the button Seat 3: supermeXXX ($1.15 in chips) -Seat 5: s0rrow ($5.29 in chips) +Seat 5: Hero ($5.29 in chips) Seat 6: tiger48475 ($5.06 in chips) -s0rrow: posts small blind $0.01 +Hero: posts small blind $0.01 tiger48475: posts big blind $0.02 *** HOLE CARDS *** -Dealt to s0rrow [9c 5h 3s Th] +Dealt to Hero [9c 5h 3s Th] supermeXXX: calls $0.02 -s0rrow: calls $0.01 +Hero: calls $0.01 tiger48475: checks *** FLOP *** [Jc 3h Jd] -s0rrow: checks +Hero: checks tiger48475: checks supermeXXX: checks *** TURN *** [Jc 3h Jd] [6d] -s0rrow: checks +Hero: checks tiger48475: bets $0.06 supermeXXX: folds EricSteph261 has returned -s0rrow: calls $0.06 +Hero: calls $0.06 *** RIVER *** [Jc 3h Jd 6d] [5c] -s0rrow: checks +Hero: checks tiger48475: bets $0.14 -s0rrow: folds +Hero: folds Uncalled bet ($0.14) returned to tiger48475 tiger48475 collected $0.18 from pot *** SUMMARY *** Total pot $0.18 | Rake $0 Board [Jc 3h Jd 6d 5c] Seat 3: supermeXXX (button) folded on the Turn -Seat 5: s0rrow (small blind) folded on the River +Seat 5: Hero (small blind) folded on the River Seat 6: tiger48475 (big blind) collected ($0.18) @@ -559,14 +559,14 @@ PokerStars Game #35875409365: Omaha Hi/Lo Pot Limit ($0.01/$0.02 USD) - 2009/11 Table 'Gaby II' 6-max Seat #5 is the button Seat 1: EricSteph261 ($11.28 in chips) Seat 3: supermeXXX ($1.13 in chips) -Seat 5: s0rrow ($5.21 in chips) +Seat 5: Hero ($5.21 in chips) Seat 6: tiger48475 ($5.16 in chips) tiger48475: posts small blind $0.01 EricSteph261: posts big blind $0.02 *** HOLE CARDS *** -Dealt to s0rrow [6h 3c Th 2s] +Dealt to Hero [6h 3c Th 2s] supermeXXX: calls $0.02 -s0rrow: calls $0.02 +Hero: calls $0.02 tiger48475: calls $0.01 EricSteph261 has timed out EricSteph261: checks @@ -576,11 +576,11 @@ EricSteph261 has timed out EricSteph261: folds EricSteph261 is sitting out supermeXXX: calls $0.06 -s0rrow: calls $0.06 +Hero: calls $0.06 *** TURN *** [9d 5s Jh] [Ks] tiger48475: checks supermeXXX: bets $0.10 -s0rrow: folds +Hero: folds tiger48475: calls $0.10 *** RIVER *** [9d 5s Jh Ks] [9s] tiger48475: checks @@ -595,7 +595,7 @@ Total pot $0.46 | Rake $0 Board [9d 5s Jh Ks 9s] Seat 1: EricSteph261 (big blind) folded on the Flop Seat 3: supermeXXX mucked [Qd Tc 5h Ts] -Seat 5: s0rrow (button) folded on the Turn +Seat 5: Hero (button) folded on the Turn Seat 6: tiger48475 (small blind) showed [6s 9h 9c Ad] and won ($0.46) with HI: four of a kind, Nines diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/PLO8-9max-USD-0.01-0.02-20100829.No.VPIP.from.posted.bb.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/PLO8-9max-USD-0.01-0.02-20100829.No.VPIP.from.posted.bb.txt index 2b93f9b1..c9d2a89c 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/PLO8-9max-USD-0.01-0.02-20100829.No.VPIP.from.posted.bb.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/PLO8-9max-USD-0.01-0.02-20100829.No.VPIP.from.posted.bb.txt @@ -2,7 +2,7 @@ PokerStars Game #48850962136: Omaha Hi/Lo Pot Limit ($0.01/$0.02 USD) - 2010/08 Table 'Jiangxi IV' 9-max Seat #6 is the button Seat 1: 2TONTOM ($0.94 in chips) Seat 2: RadRandyF ($2.48 in chips) -Seat 3: 1meandog4u ($5 in chips) +Seat 3: Hero ($5 in chips) Seat 4: Mr NoNo! Srb ($5.31 in chips) Seat 5: toxic7 ($4.84 in chips) Seat 6: jthegreat ($5.57 in chips) @@ -11,13 +11,13 @@ Seat 8: ros-r-reed ($1.52 in chips) Seat 9: skinner1947 ($1.82 in chips) CoinJock: posts small blind $0.01 ros-r-reed: posts big blind $0.02 -1meandog4u: posts big blind $0.02 +Hero: posts big blind $0.02 *** HOLE CARDS *** -Dealt to 1meandog4u [Qs Th 3c 3h] +Dealt to Hero [Qs Th 3c 3h] skinner1947: folds 2TONTOM: folds RadRandyF: calls $0.02 -1meandog4u: checks +Hero: checks Mr NoNo! Srb: calls $0.02 toxic7: calls $0.02 jthegreat: calls $0.02 @@ -27,7 +27,7 @@ ros-r-reed: checks CoinJock: checks ros-r-reed: checks RadRandyF: checks -1meandog4u: checks +Hero: checks Mr NoNo! Srb: checks toxic7: checks jthegreat: checks @@ -35,14 +35,14 @@ jthegreat: checks CoinJock: checks ros-r-reed: checks RadRandyF: checks -1meandog4u: checks +Hero: checks Mr NoNo! Srb: checks toxic7: bets $0.14 jthegreat: folds CoinJock: folds ros-r-reed: folds RadRandyF: folds -1meandog4u: folds +Hero: folds Mr NoNo! Srb: folds Uncalled bet ($0.14) returned to toxic7 toxic7 collected $0.14 from pot @@ -52,7 +52,7 @@ Total pot $0.14 | Rake $0 Board [4d 9c Ts Kd] Seat 1: 2TONTOM folded before Flop (didn't bet) Seat 2: RadRandyF folded on the Turn -Seat 3: 1meandog4u folded on the Turn +Seat 3: Hero folded on the Turn Seat 4: Mr NoNo! Srb folded on the Turn Seat 5: toxic7 collected ($0.14) Seat 6: jthegreat (button) folded on the Turn diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/PLO8-9max-USD-0.01-0.02-20100829.No.VPIP.from.posted.bb.txt.hp b/pyfpdb/regression-test-files/cash/Stars/Flop/PLO8-9max-USD-0.01-0.02-20100829.No.VPIP.from.posted.bb.txt.hp index 77a99b99..8a8353f6 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/PLO8-9max-USD-0.01-0.02-20100829.No.VPIP.from.posted.bb.txt.hp +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/PLO8-9max-USD-0.01-0.02-20100829.No.VPIP.from.posted.bb.txt.hp @@ -1,4 +1,4 @@ -{ u'1meandog4u': { 'card1': 50, +{ u'Hero': { 'card1': 50, 'card2': 9, 'card3': 28, 'card4': 2, diff --git a/pyfpdb/regression-test-files/cash/Stars/Stud/7-Stud-USD-0.04-0.08-200907.Missing.Showdown.Card.txt b/pyfpdb/regression-test-files/cash/Stars/Stud/7-Stud-USD-0.04-0.08-200907.Missing.Showdown.Card.txt index 2c91c101..c7a1da18 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Stud/7-Stud-USD-0.04-0.08-200907.Missing.Showdown.Card.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Stud/7-Stud-USD-0.04-0.08-200907.Missing.Showdown.Card.txt @@ -1,6 +1,6 @@ PokerStars Game #30506593746: 7 Card Stud Limit ($0.04/$0.08) - 2009/07/16 2:36:31 CET [2009/07/15 20:36:31 ET] Table 'Laomedon' 8-max -Seat 1: Player1 ($1.81 in chips) +Seat 1: Hero ($1.81 in chips) Seat 2: Player2 ($2.46 in chips) Seat 3: Player3 ($1.67 in chips) Seat 4: Player4 ($0.35 in chips) @@ -8,7 +8,7 @@ Seat 5: Player5 ($1.75 in chips) Seat 6: Player6 ($2.92 in chips) Seat 7: Player7 ($1.54 in chips) Seat 8: Player8 ($0.71 in chips) -Player1: posts the ante $0.01 +Hero: posts the ante $0.01 Player2: posts the ante $0.01 Player3: posts the ante $0.01 Player4: posts the ante $0.01 @@ -17,7 +17,7 @@ Player6: posts the ante $0.01 Player7: posts the ante $0.01 Player8: posts the ante $0.01 *** 3rd STREET *** -Dealt to Player1 [Ac Kc 8c] +Dealt to Hero [Ac Kc 8c] Dealt to Player2 [Tc] Dealt to Player3 [6c] Dealt to Player4 [Js] @@ -28,13 +28,13 @@ Dealt to Player8 [Kh] Player6: brings in for $0.02 Player7: calls $0.02 Player8: calls $0.02 -Player1: calls $0.02 +Hero: calls $0.02 Player2: calls $0.02 Player3: calls $0.02 Player4: calls $0.02 Player5: calls $0.02 *** 4th STREET *** -Dealt to Player1 [Ac Kc 8c] [9c] +Dealt to Hero [Ac Kc 8c] [9c] Dealt to Player2 [Tc] [7d] Dealt to Player3 [6c] [7h] Dealt to Player4 [Js] [2c] @@ -43,7 +43,7 @@ Dealt to Player6 [2d] [7c] Dealt to Player7 [Jh] [4c] Dealt to Player8 [Kh] [3d] Player8: checks -Player1: checks +Hero: checks Player2: checks Player3: checks Player4: checks @@ -51,7 +51,7 @@ Player5: checks Player6: checks Player7: checks *** 5th STREET *** -Dealt to Player1 [Ac Kc 8c 9c] [9d] +Dealt to Hero [Ac Kc 8c 9c] [9d] Dealt to Player2 [Tc 7d] [8d] Dealt to Player3 [6c 7h] [3s] Dealt to Player4 [Js 2c] [9s] @@ -59,7 +59,7 @@ Dealt to Player5 [Jd 4h] [9h] Dealt to Player6 [2d 7c] [6d] Dealt to Player7 [Jh 4c] [5d] Dealt to Player8 [Kh 3d] [8s] -Player1: checks +Hero: checks Player2: checks Player3: checks Player4: checks @@ -68,7 +68,7 @@ Player6: checks Player7: checks Player8: checks *** 6th STREET *** -Dealt to Player1 [Ac Kc 8c 9c 9d] [Th] +Dealt to Hero [Ac Kc 8c 9c 9d] [Th] Dealt to Player2 [Tc 7d 8d] [3c] Dealt to Player3 [6c 7h 3s] [Qh] Dealt to Player4 [Js 2c 9s] [8h] @@ -76,7 +76,7 @@ Dealt to Player5 [Jd 4h 9h] [2s] Dealt to Player6 [2d 7c 6d] [5h] Dealt to Player7 [Jh 4c 5d] [Td] Dealt to Player8 [Kh 3d 8s] [6s] -Player1: checks +Hero: checks Player2: checks Player3: checks Player4: checks @@ -85,7 +85,7 @@ Player6: checks Player7: checks Player8: checks *** RIVER *** [6h] -Player1: checks +Hero: checks Player2: checks Player3: bets $0.08 Player4: folds @@ -93,7 +93,7 @@ Player5: calls $0.08 Player6: calls $0.08 Player7: folds Player8: calls $0.08 -Player1: folds +Hero: folds Player2: folds *** SHOW DOWN *** Player3: shows [7s Qs 6c 7h 3s Qh] (two pair, Queens and Sevens) @@ -104,7 +104,7 @@ Player3 collected $0.54 from pot *** SUMMARY *** Total pot $0.56 | Rake $0.02 Board [6h] -Seat 1: Player1 folded on the River +Seat 1: Hero folded on the River Seat 2: Player2 folded on the River Seat 3: Player3 showed [7s Qs 6c 7h 3s Qh] and won ($0.54) with two pair, Queens and Sevens Seat 4: Player4 folded on the River 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 index 04faac85..eb5aea52 100644 --- 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 @@ -1,38 +1,38 @@ 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 1: Hero ($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 +Hero: 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 Hero [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 +Hero: 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 Hero [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 +Hero: checks Nikolay Zem: checks totof51: checks trs2758: checks MasterTrini1: bets $0.04 -s0rrow: folds +Hero: folds Nikolay Zem: calls $0.04 totof51: folds trs2758: calls $0.04 @@ -58,7 +58,7 @@ 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 1: Hero 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) @@ -68,20 +68,20 @@ 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 1: Hero ($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 +Hero: 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 Hero [3s Qd 9h] Dealt to Nikolay Zem [7d] Dealt to totof51 [7c] Dealt to trs2758 [5h] @@ -89,7 +89,7 @@ Dealt to RoadDevil [5d] Dealt to MasterTrini1 [Ts] RoadDevil: brings in for $0.02 MasterTrini1: calls $0.02 -s0rrow: folds +Hero: folds Nikolay Zem: calls $0.02 totof51: calls $0.02 trs2758: calls $0.02 @@ -137,7 +137,7 @@ 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 1: Hero 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 @@ -148,63 +148,63 @@ 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 1: Hero ($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 +Hero: 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 Hero [5h 5c 2s] Dealt to Nikolay Zem [Ad] Dealt to trs2758 [6h] Dealt to RoadDevil [4h] Dealt to MasterTrini1 [8h] -s0rrow: bets $0.04 +Hero: 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 +Hero: calls $0.04 Nikolay Zem: calls $0.04 RoadDevil: calls $0.04 *** 4th STREET *** -Dealt to s0rrow [5h 5c 2s] [As] +Dealt to Hero [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 +Hero: calls $0.04 Nikolay Zem: folds RoadDevil: folds *** 5th STREET *** -Dealt to s0rrow [5h 5c 2s As] [5d] +Dealt to Hero [5h 5c 2s As] [5d] Dealt to MasterTrini1 [8h 6d] [Ac] MasterTrini1: bets $0.08 -s0rrow: raises $0.08 to $0.16 +Hero: raises $0.08 to $0.16 MasterTrini1: calls $0.08 *** 6th STREET *** -Dealt to s0rrow [5h 5c 2s As 5d] [Ah] +Dealt to Hero [5h 5c 2s As 5d] [Ah] Dealt to MasterTrini1 [8h 6d Ac] [Js] -s0rrow: bets $0.08 +Hero: bets $0.08 MasterTrini1: calls $0.08 *** RIVER *** -Dealt to s0rrow [5h 5c 2s As 5d Ah] [4d] -s0rrow: bets $0.08 +Dealt to Hero [5h 5c 2s As 5d Ah] [4d] +Hero: 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) +Hero: shows [5h 5c 2s As 5d Ah 4d] (a full house, Fives full of Aces) MasterTrini1: mucks hand -s0rrow collected $1.04 from pot +Hero 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 1: Hero 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 @@ -214,35 +214,35 @@ 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 1: Hero ($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 +Hero: 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 Hero [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 +Hero: 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 Hero [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 +Hero: folds RoadDevil: calls $0.04 *** 5th STREET *** Dealt to RoadDevil [6d Ah] [Td] @@ -264,7 +264,7 @@ 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 1: Hero 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] @@ -274,20 +274,20 @@ Seat 8: MasterTrini1 showed [6s 7d 9h 8c 5s 5h 9d] and won ($0.64) with a straig 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 1: Hero ($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 +Hero: 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 Hero [As 8s 6h] Dealt to Nikolay Zem [4c] Dealt to rv2020 [2s] Dealt to trs2758 [7s] @@ -297,50 +297,50 @@ rv2020: brings in for $0.02 trs2758: calls $0.02 RoadDevil: calls $0.02 MasterTrini1: calls $0.02 -s0rrow: calls $0.02 +Hero: calls $0.02 Nikolay Zem: folds *** 4th STREET *** -Dealt to s0rrow [As 8s 6h] [3s] +Dealt to Hero [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 +Hero: checks rv2020: checks trs2758: checks RoadDevil: checks *** 5th STREET *** -Dealt to s0rrow [As 8s 6h 3s] [Jh] +Dealt to Hero [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 +Hero: checks rv2020: checks trs2758: checks *** 6th STREET *** -Dealt to s0rrow [As 8s 6h 3s Jh] [Tc] +Dealt to Hero [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 +Hero: checks rv2020: checks trs2758: checks *** RIVER *** -Dealt to s0rrow [As 8s 6h 3s Jh Tc] [Qs] +Dealt to Hero [As 8s 6h 3s Jh Tc] [Qs] RoadDevil: checks MasterTrini1: checks -s0rrow: checks +Hero: checks rv2020: checks trs2758: checks *** SHOW DOWN *** -s0rrow: shows [As 8s 6h 3s Jh Tc Qs] (high card Ace) +Hero: 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) @@ -348,7 +348,7 @@ 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 1: Hero 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] @@ -359,20 +359,20 @@ Seat 8: MasterTrini1 showed [Jc 2h Qd Ad 5h Td Ks] and won ($0.16) with a straig 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 1: Hero ($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 +Hero: 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 Hero [6c 4c Th] Dealt to Nikolay Zem [9d] Dealt to rv2020 [4s] Dealt to trs2758 [3h] @@ -381,7 +381,7 @@ Dealt to MasterTrini1 [5d] trs2758: brings in for $0.02 RoadDevil: folds MasterTrini1: calls $0.02 -s0rrow: folds +Hero: folds Nikolay Zem: calls $0.02 rv2020: folds *** 4th STREET *** @@ -412,7 +412,7 @@ 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 1: Hero 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 @@ -423,20 +423,20 @@ 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 1: Hero ($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 +Hero: 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 Hero [Jd 9d 2h] Dealt to Nikolay Zem [Ad] Dealt to rv2020 [2c] Dealt to trs2758 [8c] @@ -446,7 +446,7 @@ rv2020: brings in for $0.02 trs2758: calls $0.02 RoadDevil: folds MasterTrini1: calls $0.02 -s0rrow: folds +Hero: folds Nikolay Zem: calls $0.02 *** 4th STREET *** Dealt to Nikolay Zem [Ad] [9h] @@ -485,7 +485,7 @@ 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 1: Hero 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 @@ -496,20 +496,20 @@ 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 1: Hero ($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 +Hero: 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 Hero [7d 6h 9s] Dealt to Nikolay Zem [Js] Dealt to rv2020 [3d] Dealt to trs2758 [7s] @@ -519,42 +519,42 @@ rv2020: brings in for $0.02 trs2758: folds RoadDevil: calls $0.02 MasterTrini1: calls $0.02 -s0rrow: calls $0.02 +Hero: calls $0.02 Nikolay Zem: calls $0.02 *** 4th STREET *** -Dealt to s0rrow [7d 6h 9s] [Kc] +Dealt to Hero [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 +Hero: 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 Hero [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 +Hero: 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 Hero [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 +Hero: checks Nikolay Zem: bets $0.08 RoadDevil: calls $0.08 -s0rrow: folds +Hero: folds *** RIVER *** RoadDevil: checks Nikolay Zem: bets $0.08 @@ -565,7 +565,7 @@ 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 1: Hero 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) @@ -576,14 +576,14 @@ 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 1: Hero ($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 +Hero: posts the ante $0.01 danjr655: posts the ante $0.01 Nikolay Zem: posts the ante $0.01 rv2020: posts the ante $0.01 @@ -591,7 +591,7 @@ 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 Hero [2d Qs 8c] Dealt to danjr655 [5d] Dealt to Nikolay Zem [Jc] Dealt to rv2020 [8d] @@ -601,7 +601,7 @@ Dealt to MasterTrini1 [6h] RoadDevil: brings in for $0.02 Trackr21 joins the table at seat #7 MasterTrini1: calls $0.02 -s0rrow: folds +Hero: folds danjr655: folds Nikolay Zem: calls $0.02 rv2020: calls $0.02 @@ -644,7 +644,7 @@ 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 1: Hero 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 @@ -656,7 +656,7 @@ Seat 8: MasterTrini1 showed [5h 8h 6h 4c 3h 3c As] and lost with a pair of Three 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 1: Hero ($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) @@ -664,7 +664,7 @@ 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 +Hero: posts the ante $0.01 danjr655: posts the ante $0.01 Nikolay Zem: posts the ante $0.01 rv2020: posts the ante $0.01 @@ -673,7 +673,7 @@ 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 Hero [7d Qs 8s] Dealt to danjr655 [8d] Dealt to Nikolay Zem [6d] Dealt to rv2020 [4d] @@ -686,49 +686,49 @@ trs2758: calls $0.02 RoadDevil: folds Trackr21: folds MasterTrini1: calls $0.02 -s0rrow: calls $0.02 +Hero: calls $0.02 danjr655: folds Nikolay Zem: calls $0.02 *** 4th STREET *** -Dealt to s0rrow [7d Qs 8s] [2s] +Dealt to Hero [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 +Hero: 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 Hero [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 +Hero: bets $0.08 rv2020: folds trs2758: folds MasterTrini1: calls $0.08 *** 6th STREET *** -Dealt to s0rrow [7d Qs 8s 2s As] [5d] +Dealt to Hero [7d Qs 8s 2s As] [5d] Dealt to MasterTrini1 [5s 5c Js] [2c] MasterTrini1: checks -s0rrow: bets $0.08 +Hero: bets $0.08 MasterTrini1: calls $0.08 *** RIVER *** -Dealt to s0rrow [7d Qs 8s 2s As 5d] [7h] +Dealt to Hero [7d Qs 8s 2s As 5d] [7h] MasterTrini1: checks -s0rrow: bets $0.08 +Hero: bets $0.08 MasterTrini1: calls $0.08 *** SHOW DOWN *** -s0rrow: shows [7d Qs 8s 2s As 5d 7h] (a pair of Sevens) +Hero: shows [7d Qs 8s 2s As 5d 7h] (a pair of Sevens) MasterTrini1: mucks hand -s0rrow collected $0.94 from pot +Hero 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 1: Hero 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 @@ -741,7 +741,7 @@ 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 1: Hero ($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) @@ -749,7 +749,7 @@ 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 +Hero: posts the ante $0.01 danjr655: posts the ante $0.01 Nikolay Zem: posts the ante $0.01 rv2020: posts the ante $0.01 @@ -758,7 +758,7 @@ 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 Hero [8d 3d 8c] Dealt to danjr655 [Kd] Dealt to Nikolay Zem [9c] Dealt to rv2020 [4h] @@ -771,11 +771,11 @@ trs2758: folds RoadDevil: calls $0.02 Trackr21: calls $0.02 MasterTrini1: calls $0.02 -s0rrow: calls $0.02 +Hero: calls $0.02 danjr655: calls $0.02 Nikolay Zem: calls $0.02 *** 4th STREET *** -Dealt to s0rrow [8d 3d 8c] [Qc] +Dealt to Hero [8d 3d 8c] [Qc] Dealt to danjr655 [Kd] [Kc] Dealt to Nikolay Zem [9c] [Jd] Dealt to rv2020 [4h] [8s] @@ -789,7 +789,7 @@ rv2020: folds RoadDevil: folds Trackr21: calls $0.04 MasterTrini1: calls $0.04 -s0rrow: folds +Hero: folds *** 5th STREET *** Dealt to danjr655 [Kd Kc] [2h] Dealt to Nikolay Zem [9c Jd] [Qs] @@ -798,7 +798,7 @@ Dealt to MasterTrini1 [8h As] [Th] danjr655: bets $0.08 Nikolay Zem: calls $0.08 Trackr21: calls $0.08 -s0rrow is sitting out +Hero is sitting out MasterTrini1: calls $0.08 *** 6th STREET *** Dealt to danjr655 [Kd Kc 2h] [7s] @@ -822,7 +822,7 @@ 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 1: Hero 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 diff --git a/pyfpdb/regression-test-files/cash/Stars/Stud/7-StudHL-USD-0.04-0.08-200911.Cardtest.txt b/pyfpdb/regression-test-files/cash/Stars/Stud/7-StudHL-USD-0.04-0.08-200911.Cardtest.txt index 7b1e2f44..30b9e23e 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Stud/7-StudHL-USD-0.04-0.08-200911.Cardtest.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Stud/7-StudHL-USD-0.04-0.08-200911.Cardtest.txt @@ -4,7 +4,7 @@ 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 5: Hero ($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) @@ -12,7 +12,7 @@ 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 +Hero: posts the ante $0.01 TomSludge: posts the ante $0.01 Soroka69: posts the ante $0.01 rdiezchang: posts the ante $0.01 @@ -21,12 +21,12 @@ 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 Hero [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 +Hero: calls $0.02 TomSludge: folds Soroka69: calls $0.02 rdiezchang: calls $0.02 @@ -37,7 +37,7 @@ gashpor: calls $0.02 Dealt to 123smoothie [4c] [3c] Dealt to gashpor [5d] [Qd] Dealt to denny501 [2c] [7s] -Dealt to s0rrow [7c 3s 5h] [Qc] +Dealt to Hero [7c 3s 5h] [Qc] Dealt to Soroka69 [7d] [5s] Dealt to rdiezchang [Ad] [Js] rdiezchang: checks @@ -45,12 +45,12 @@ rdiezchang: checks gashpor: checks denny501: folds denny501 leaves the table -s0rrow: checks +Hero: 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 Hero [7c 3s 5h Qc] [Kc] Dealt to Soroka69 [7d 5s] [5c] Dealt to rdiezchang [Ad Js] [Ts] LainaRahat joins the table at seat #4 @@ -58,36 +58,36 @@ Soroka69: checks rdiezchang: checks 123smoothie: checks gashpor: bets $0.08 -s0rrow: calls $0.08 +Hero: 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 Hero [7c 3s 5h Qc Kc] [6d] Dealt to Soroka69 [7d 5s 5c] [2s] Soroka69: checks gashpor: bets $0.08 -s0rrow: calls $0.08 +Hero: calls $0.08 Soroka69: calls $0.08 *** RIVER *** -Dealt to s0rrow [7c 3s 5h Qc Kc 6d] [4d] +Dealt to Hero [7c 3s 5h Qc Kc 6d] [4d] Soroka69: checks gashpor: bets $0.08 -s0rrow: calls $0.08 +Hero: 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) +Hero: 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 +Hero 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 5: Hero 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 diff --git a/pyfpdb/regression-test-files/cash/Stars/Stud/7-StudHL-USD-0.04-0.08-200911.Cardtest.txt.hp b/pyfpdb/regression-test-files/cash/Stars/Stud/7-StudHL-USD-0.04-0.08-200911.Cardtest.txt.hp index 6bde0900..6421fa0f 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Stud/7-StudHL-USD-0.04-0.08-200911.Cardtest.txt.hp +++ b/pyfpdb/regression-test-files/cash/Stars/Stud/7-StudHL-USD-0.04-0.08-200911.Cardtest.txt.hp @@ -562,7 +562,7 @@ 'wonWhenSeenStreet2': 0.0, 'wonWhenSeenStreet3': 0.0, 'wonWhenSeenStreet4': 0.0}, - u's0rrow': { 'card1': 32, + u'Hero': { 'card1': 32, 'card2': 41, 'card3': 4, 'card4': 37, 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 index 8a34f27a..9b73265d 100644 --- 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 @@ -2,54 +2,54 @@ PokerStars Game #35874487284: 7 Card Stud Hi/Lo Limit ($0.04/$0.08 USD) - 2009/ 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 5: Hero ($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 +Hero: 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 Hero [5d Ks 2h] Dealt to rdiezchang [3d] -s0rrow: brings in for $0.02 +Hero: 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 Hero [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 +Hero: 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 Hero [5d Ks 2h 9h] [Js] Dealt to rdiezchang [3d 7s] [Jh] gashpor: checks denny501: checks -s0rrow: checks +Hero: 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 Hero [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 +Hero: checks rdiezchang: bets $0.08 gashpor: folds denny501: folds -s0rrow: folds +Hero: folds Uncalled bet ($0.08) returned to rdiezchang rdiezchang collected $0.12 from pot rdiezchang: doesn't show hand @@ -57,7 +57,7 @@ rdiezchang: doesn't show hand 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 5: Hero folded on the 6th Street Seat 8: rdiezchang collected ($0.12) @@ -67,27 +67,27 @@ 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 5: Hero ($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 +Hero: 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 Hero [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 +Hero: folds Soroka69: calls $0.02 rdiezchang: calls $0.02 u.pressure joins the table at seat #1 @@ -135,7 +135,7 @@ 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 5: Hero 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 @@ -147,7 +147,7 @@ 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 5: Hero ($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) @@ -155,7 +155,7 @@ 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 +Hero: posts the ante $0.01 TomSludge: posts the ante $0.01 Soroka69: posts the ante $0.01 rdiezchang: posts the ante $0.01 @@ -164,7 +164,7 @@ 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 Hero [Ah Kd 8d] Dealt to TomSludge [Ks] Dealt to Soroka69 [3h] Dealt to rdiezchang [5s] @@ -174,13 +174,13 @@ u.pressure: calls $0.02 123smoothie: calls $0.02 gashpor: calls $0.02 denny501: folds -s0rrow: calls $0.02 +Hero: 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 Hero [Ah Kd 8d] [Kc] Dealt to Soroka69 [3h] [Ad] Dealt to rdiezchang [5s] [7c] Soroka69: checks @@ -188,12 +188,12 @@ rdiezchang: checks u.pressure: checks 123smoothie: checks gashpor: checks -s0rrow: checks +Hero: 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 Hero [Ah Kd 8d Kc] [2d] Dealt to Soroka69 [3h Ad] [Qd] Dealt to rdiezchang [5s 7c] [4d] Soroka69: checks @@ -201,7 +201,7 @@ rdiezchang: checks u.pressure: checks 123smoothie: checks gashpor: bets $0.08 -s0rrow: folds +Hero: folds Soroka69: calls $0.08 rdiezchang: calls $0.08 u.pressure: calls $0.08 @@ -235,7 +235,7 @@ Seat 1: u.pressure showed [Qc Kh Qs Td Jh 6d 6s] and won ($0.37) with HI: two pa 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 5: Hero 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 @@ -248,7 +248,7 @@ 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 5: Hero ($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) @@ -256,7 +256,7 @@ 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 +Hero: posts the ante $0.01 TomSludge: posts the ante $0.01 Soroka69: posts the ante $0.01 rdiezchang: posts the ante $0.01 @@ -265,14 +265,14 @@ 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 Hero [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 +Hero: folds TomSludge: folds Soroka69: calls $0.02 rdiezchang: calls $0.02 @@ -314,7 +314,7 @@ 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 5: Hero 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 @@ -327,7 +327,7 @@ 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 5: Hero ($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) @@ -335,7 +335,7 @@ 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 +Hero: posts the ante $0.01 TomSludge: posts the ante $0.01 Soroka69: posts the ante $0.01 rdiezchang: posts the ante $0.01 @@ -344,12 +344,12 @@ 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 Hero [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 +Hero: calls $0.02 TomSludge: folds Soroka69: calls $0.02 rdiezchang: calls $0.02 @@ -360,7 +360,7 @@ gashpor: calls $0.02 Dealt to 123smoothie [4c] [3c] Dealt to gashpor [5d] [Qd] Dealt to denny501 [2c] [7s] -Dealt to s0rrow [7c 3s 5h] [Qc] +Dealt to Hero [7c 3s 5h] [Qc] Dealt to Soroka69 [7d] [5s] Dealt to rdiezchang [Ad] [Js] rdiezchang: checks @@ -368,12 +368,12 @@ rdiezchang: checks gashpor: checks denny501: folds denny501 leaves the table -s0rrow: checks +Hero: 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 Hero [7c 3s 5h Qc] [Kc] Dealt to Soroka69 [7d 5s] [5c] Dealt to rdiezchang [Ad Js] [Ts] LainaRahat joins the table at seat #4 @@ -381,36 +381,36 @@ Soroka69: checks rdiezchang: checks 123smoothie: checks gashpor: bets $0.08 -s0rrow: calls $0.08 +Hero: 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 Hero [7c 3s 5h Qc Kc] [6d] Dealt to Soroka69 [7d 5s 5c] [2s] Soroka69: checks gashpor: bets $0.08 -s0rrow: calls $0.08 +Hero: calls $0.08 Soroka69: calls $0.08 *** RIVER *** -Dealt to s0rrow [7c 3s 5h Qc Kc 6d] [4d] +Dealt to Hero [7c 3s 5h Qc Kc 6d] [4d] Soroka69: checks gashpor: bets $0.08 -s0rrow: calls $0.08 +Hero: 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) +Hero: 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 +Hero 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 5: Hero 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 @@ -423,7 +423,7 @@ 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 5: Hero ($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) @@ -431,7 +431,7 @@ 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 +Hero: posts the ante $0.01 TomSludge: posts the ante $0.01 Soroka69: posts the ante $0.01 rdiezchang: posts the ante $0.01 @@ -440,11 +440,11 @@ 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 Hero [Qd Ad 2s] Dealt to TomSludge [4h] Dealt to Soroka69 [3c] Dealt to rdiezchang [3h] -s0rrow: brings in for $0.02 +Hero: brings in for $0.02 TomSludge: folds Soroka69: calls $0.02 rdiezchang: folds @@ -455,40 +455,40 @@ 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 Hero [Qd Ad 2s] [As] Dealt to Soroka69 [3c] [Qc] rdiezchang leaves the table -s0rrow: bets $0.04 +Hero: 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 +Hero: calls $0.04 *** 5th STREET *** Dealt to LainaRahat [Ts 4c] [Ks] -Dealt to s0rrow [Qd Ad 2s As] [2h] +Dealt to Hero [Qd Ad 2s As] [2h] Dealt to Soroka69 [3c Qc] [6h] -s0rrow: checks +Hero: checks Soroka69: bets $0.08 LainaRahat: calls $0.08 -s0rrow: calls $0.08 +Hero: calls $0.08 *** 6th STREET *** Dealt to LainaRahat [Ts 4c Ks] [Tc] -Dealt to s0rrow [Qd Ad 2s As 2h] [8d] +Dealt to Hero [Qd Ad 2s As 2h] [8d] Dealt to Soroka69 [3c Qc 6h] [7h] LainaRahat: checks -s0rrow: checks +Hero: checks Soroka69: checks *** RIVER *** -Dealt to s0rrow [Qd Ad 2s As 2h 8d] [6c] +Dealt to Hero [Qd Ad 2s As 2h 8d] [6c] LainaRahat: checks -s0rrow: checks +Hero: 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) +Hero: shows [Qd Ad 2s As 2h 8d 6c] (HI: two pair, Aces and Deuces) Soroka69: mucks hand -s0rrow collected $0.61 from pot +Hero collected $0.61 from pot No low hand qualified *** SUMMARY *** Total pot $0.64 | Rake $0.03 @@ -496,7 +496,7 @@ 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 5: Hero 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) @@ -509,7 +509,7 @@ 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 5: Hero ($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) @@ -517,7 +517,7 @@ 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 +Hero: posts the ante $0.01 TomSludge: posts the ante $0.01 Soroka69: posts the ante $0.01 geo_441: posts the ante $0.01 @@ -526,12 +526,12 @@ 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 Hero [8d Qs Kc] Dealt to TomSludge [As] Dealt to Soroka69 [Tc] Dealt to geo_441 [4d] LainaRahat: brings in for $0.02 -s0rrow: folds +Hero: folds TomSludge: calls $0.02 Soroka69: calls $0.02 geo_441: calls $0.02 @@ -602,7 +602,7 @@ 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 5: Hero 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 index 1012e6fe..d0c79895 100644 --- 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 @@ -3,23 +3,23 @@ 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 7: Hero ($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 +Hero: 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 Hero [Td 2s 9s] Dealt to SilkZone [3h] kobreli: brings in for $0.02 willy32948: calls $0.02 meg100: calls $0.02 -s0rrow: folds +Hero: folds SilkZone: calls $0.02 *** 4th STREET *** Dealt to kobreli [Qc] [8s] @@ -52,7 +52,7 @@ 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 7: Hero folded on the 3rd Street (didn't bet) Seat 8: SilkZone collected ($0.39) @@ -61,59 +61,59 @@ PokerStars Game #35874590575: Razz Limit ($0.04/$0.08 USD) - 2009/11/26 10:25:2 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 7: Hero ($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 +Hero: 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 Hero [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 +Hero: calls $0.02 *** 4th STREET *** Dealt to kobreli [3h] [Ks] Dealt to meg100 [6s] [2d] -Dealt to s0rrow [4c 2h 8h] [7c] +Dealt to Hero [4c 2h 8h] [7c] Dealt to SilkZone [Jc] [3c] meg100: checks -s0rrow: bets $0.04 +Hero: 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 Hero [4c 2h 8h 7c] [Ah] Dealt to SilkZone [Jc 3c] [8c] meg100: checks -s0rrow: bets $0.08 +Hero: 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 Hero [4c 2h 8h 7c Ah] [2s] Dealt to SilkZone [Jc 3c 8c] [Kh] -s0rrow: checks +Hero: checks SilkZone: checks meg100: checks *** RIVER *** -Dealt to s0rrow [4c 2h 8h 7c Ah 2s] [5h] -s0rrow: bets $0.08 +Dealt to Hero [4c 2h 8h 7c Ah 2s] [5h] +Hero: 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 +Uncalled bet ($0.08) returned to Hero +Hero 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 7: Hero collected ($0.46) Seat 8: SilkZone folded on the River @@ -123,22 +123,22 @@ 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 7: Hero ($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 +Hero: 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 Hero [9h 2s 7c] Dealt to SilkZone [6s] HIWAII2: brings in for $0.02 manga130 joins the table at seat #3 -s0rrow: calls $0.02 +Hero: calls $0.02 SilkZone: calls $0.02 kobreli: calls $0.02 meg100: calls $0.02 @@ -146,48 +146,48 @@ meg100: calls $0.02 Dealt to kobreli [8c] [8s] Dealt to meg100 [7h] [As] Dealt to HIWAII2 [Kh] [6h] -Dealt to s0rrow [9h 2s 7c] [6c] +Dealt to Hero [9h 2s 7c] [6c] Dealt to SilkZone [6s] [9c] meg100: checks HIWAII2: checks -s0rrow: checks +Hero: 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 Hero [9h 2s 7c 6c] [Qh] Dealt to SilkZone [6s 9c] [Qs] meg100: checks HIWAII2: bets $0.08 -s0rrow: calls $0.08 +Hero: 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 +Dealt to Hero [9h 2s 7c 6c Qh] [Ad] +Hero: checks meg100: checks HIWAII2: checks *** RIVER *** -Dealt to s0rrow [9h 2s 7c 6c Qh Ad] [Ac] -s0rrow: bets $0.08 +Dealt to Hero [9h 2s 7c 6c Qh Ad] [Ac] +Hero: bets $0.08 meg100: folds HIWAII2: raises $0.08 to $0.16 -s0rrow: calls $0.08 +Hero: calls $0.08 *** SHOW DOWN *** HIWAII2: shows [2h 8d Kh 6h 3d 6d 4h] (Lo: 8,6,4,3,2) -s0rrow: mucks hand +Hero: 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 7: Hero mucked [9h 2s 7c 6c Qh Ad Ac] Seat 8: SilkZone folded on the 5th Street @@ -198,26 +198,26 @@ 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 7: Hero ($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 +Hero: 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 Hero [9s Qd 2s] Dealt to SilkZone [As] kobreli: brings in for $0.02 manga130: folds meg100: folds HIWAII2: calls $0.02 -s0rrow: folds +Hero: folds SilkZone: calls $0.02 *** 4th STREET *** Dealt to kobreli [Kd] [4s] @@ -235,7 +235,7 @@ 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 7: Hero folded on the 3rd Street (didn't bet) Seat 8: SilkZone folded on the 4th Street @@ -246,27 +246,27 @@ 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 7: Hero ($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 +Hero: 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 Hero [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 +Hero: folds *** 4th STREET *** Dealt to manga130 [Qd] [8s] Dealt to meg100 [9h] [Kd] @@ -304,7 +304,7 @@ 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 7: Hero folded on the 3rd Street (didn't bet) Seat 8: SilkZone collected ($0.98) @@ -315,22 +315,22 @@ 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 7: Hero ($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 +Hero: 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 Hero [Th Ah Qh] Dealt to SilkZone [9d] -s0rrow: brings in for $0.02 +Hero: brings in for $0.02 SilkZone: calls $0.02 kobreli: calls $0.02 manga130: calls $0.02 @@ -339,11 +339,11 @@ HIWAII2: folds *** 4th STREET *** Dealt to kobreli [3d] [Ad] Dealt to manga130 [Qc] [6d] -Dealt to s0rrow [Th Ah Qh] [8s] +Dealt to Hero [Th Ah Qh] [8s] Dealt to SilkZone [9d] [7c] kobreli: bets $0.04 manga130: folds -s0rrow: folds +Hero: folds SilkZone: raises $0.04 to $0.08 kobreli: raises $0.04 to $0.12 SilkZone: calls $0.04 @@ -371,7 +371,7 @@ 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 7: Hero 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 @@ -382,24 +382,24 @@ 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 7: Hero ($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 +Hero: 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 Hero [Kd Ad 7d] Dealt to SilkZone [9d] kobreli said, "this.is.lucky" HIWAII2: brings in for $0.02 -s0rrow: folds +Hero: folds SilkZone: folds kobreli: calls $0.02 manga130: folds @@ -425,7 +425,7 @@ 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 7: Hero folded on the 3rd Street (didn't bet) Seat 8: SilkZone folded on the 3rd Street (didn't bet) @@ -436,23 +436,23 @@ 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 7: Hero ($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 +Hero: 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 Hero [6d 9c 3d] Dealt to SilkZone [Qc] HIWAII2: brings in for $0.02 -s0rrow: raises $0.02 to $0.04 +Hero: raises $0.02 to $0.04 SilkZone: calls $0.04 kobreli: calls $0.04 manga130: folds @@ -461,20 +461,20 @@ HIWAII2: folds *** 4th STREET *** Dealt to kobreli [6s] [7h] Dealt to meg100 [5c] [5h] -Dealt to s0rrow [6d 9c 3d] [8s] +Dealt to Hero [6d 9c 3d] [8s] Dealt to SilkZone [Qc] [2c] kobreli: bets $0.04 meg100: folds -s0rrow: raises $0.04 to $0.08 +Hero: raises $0.04 to $0.08 SilkZone: raises $0.04 to $0.12 kobreli: calls $0.08 -s0rrow: calls $0.04 +Hero: calls $0.04 *** 5th STREET *** Dealt to kobreli [6s 7h] [2h] -Dealt to s0rrow [6d 9c 3d 8s] [Jh] +Dealt to Hero [6d 9c 3d 8s] [Jh] Dealt to SilkZone [Qc 2c] [7c] kobreli: bets $0.08 -s0rrow: folds +Hero: folds SilkZone: calls $0.08 *** 6th STREET *** Dealt to kobreli [6s 7h 2h] [3h] @@ -498,7 +498,7 @@ 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 7: Hero 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 @@ -509,23 +509,23 @@ 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 7: Hero ($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 +Hero: 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 Hero [6d 4h 3h] Dealt to SilkZone [2c] HIWAII2: brings in for $0.02 -s0rrow: calls $0.02 +Hero: calls $0.02 SilkZone: calls $0.02 kobreli: calls $0.02 manga130: calls $0.02 @@ -534,20 +534,20 @@ meg100: folds Dealt to kobreli [As] [6s] Dealt to manga130 [Ac] [6h] Dealt to HIWAII2 [Jd] [Qc] -Dealt to s0rrow [6d 4h 3h] [3c] +Dealt to Hero [6d 4h 3h] [3c] Dealt to SilkZone [2c] [Th] kobreli: bets $0.04 manga130: calls $0.04 HIWAII2: folds -s0rrow: calls $0.04 +Hero: 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] +Dealt to Hero [6d 4h 3h 3c] [9s] kobreli: bets $0.08 manga130: calls $0.08 -s0rrow: folds +Hero: folds *** 6th STREET *** Dealt to kobreli [As 6s 5c] [5d] Dealt to manga130 [Ac 6h 5s] [9h] @@ -567,7 +567,7 @@ 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 7: Hero folded on the 5th Street Seat 8: SilkZone folded on the 4th Street diff --git a/pyfpdb/regression-test-files/cash/Winamax/Flop/NLHE-FR-EUR-0.02-0.05-201010.Invalid.side.pot.Player8.txt b/pyfpdb/regression-test-files/cash/Winamax/Flop/NLHE-FR-EUR-0.02-0.05-201010.Invalid.side.pot.Player8.txt index eea4d00e..9dbc8a23 100644 --- a/pyfpdb/regression-test-files/cash/Winamax/Flop/NLHE-FR-EUR-0.02-0.05-201010.Invalid.side.pot.Player8.txt +++ b/pyfpdb/regression-test-files/cash/Winamax/Flop/NLHE-FR-EUR-0.02-0.05-201010.Invalid.side.pot.Player8.txt @@ -3,7 +3,7 @@ Table: 'Reims' 9-max (real money) Seat #5 is the button Seat 1: Player1 (5€) Seat 2: Player2 (5€) Seat 3: Player3 (4.93€) -Seat 4: Player4 (4.93€) +Seat 4: Hero (4.93€) Seat 5: Player5 (3.58€) Seat 6: Player6 (1.98€) Seat 7: Player7 (2.95€) @@ -13,14 +13,14 @@ Seat 9: Player9 (6.52€) Player6 posts small blind 0.02€ Player7 posts big blind 0.05€ Player1 posts big blind 0.05€ out of position -Dealt to Player4 [8d 8h] +Dealt to Hero [8d 8h] *** PRE-FLOP *** Player8 raises 0.17€ to 0.22€ Player9 calls 0.22€ Player1 folds Player2 folds Player3 calls 0.22€ -Player4 folds +Hero folds Player5 folds Player6 folds Player7 folds @@ -48,7 +48,7 @@ Board: [Jd 9d 2s Kh 8s] Seat 1: Player1 folded on the pre-flop Seat 2: Player2 folded on the pre-flop Seat 3: Player3 showed [Jh 4s] and won 10.92€ with One pair : Jack -Seat 4: Player4 folded on the pre-flop +Seat 4: Hero folded on the pre-flop Seat 5: Player5 (button) folded on the pre-flop Seat 6: Player6 (small blind) folded on the pre-flop Seat 7: Player7 (big blind) folded on the pre-flop diff --git a/pyfpdb/regression-test-files/cash/Winamax/Flop/NLHE-FR-EUR-0.02-0.05-201010.Invalid.side.pot.Player8.txt.hp b/pyfpdb/regression-test-files/cash/Winamax/Flop/NLHE-FR-EUR-0.02-0.05-201010.Invalid.side.pot.Player8.txt.hp index db59a7b2..ec43928b 100644 --- a/pyfpdb/regression-test-files/cash/Winamax/Flop/NLHE-FR-EUR-0.02-0.05-201010.Invalid.side.pot.Player8.txt.hp +++ b/pyfpdb/regression-test-files/cash/Winamax/Flop/NLHE-FR-EUR-0.02-0.05-201010.Invalid.side.pot.Player8.txt.hp @@ -280,7 +280,7 @@ 'wonWhenSeenStreet2': 1.0, 'wonWhenSeenStreet3': 1.0, 'wonWhenSeenStreet4': 0.0}, - u'Player4': { 'card1': 20, + u'Hero': { 'card1': 20, 'card2': 7, 'card3': 0, 'card4': 0, diff --git a/pyfpdb/regression-test-files/cash/Winamax/Flop/NLHE-FR-EUR-0.02-0.05-201010.Real.side.pot.with.bad.collected.Biggest.stack.wins.txt b/pyfpdb/regression-test-files/cash/Winamax/Flop/NLHE-FR-EUR-0.02-0.05-201010.Real.side.pot.with.bad.collected.Biggest.stack.wins.txt index 7fad959f..8b07a991 100644 --- a/pyfpdb/regression-test-files/cash/Winamax/Flop/NLHE-FR-EUR-0.02-0.05-201010.Real.side.pot.with.bad.collected.Biggest.stack.wins.txt +++ b/pyfpdb/regression-test-files/cash/Winamax/Flop/NLHE-FR-EUR-0.02-0.05-201010.Real.side.pot.with.bad.collected.Biggest.stack.wins.txt @@ -1,6 +1,6 @@ Winamax Poker - CashGame - HandId: #351984-130-1286650224 - Holdem no limit (0.02€/0.05€) - 2010/10/09 19:50:24 UTC Table: 'Chelles' 9-max (real money) Seat #2 is the button -Seat 1: Player1 (5€) +Seat 1: Hero (5€) Seat 2: Player2 (6.28€) Seat 3: Player3 (5.06€) Seat 4: Player4 (5.01€) @@ -12,28 +12,28 @@ Seat 9: Player9 (4.76€) *** ANTE/BLINDS *** Player3 posts small blind 0.02€ Player4 posts big blind 0.05€ -Player1 posts big blind 0.05€ out of position -Dealt to Player1 [Ks Th] +Hero posts big blind 0.05€ out of position +Dealt to Hero [Ks Th] *** PRE-FLOP *** Player5 folds Player6 folds Player7 folds Player8 calls 0.05€ Player9 folds -Player1 checks +Hero checks Player2 calls 0.05€ Player3 folds Player4 checks *** FLOP *** [7s 2d 6h] Player4 checks Player8 bets 0.05€ -Player1 calls 0.05€ +Hero calls 0.05€ Player2 folds Player4 calls 0.05€ *** TURN *** [7s 2d 6h][9c] Player4 checks Player8 bets 0.05€ -Player1 folds +Hero folds Player4 raises 0.05€ to 0.10€ Player8 calls 0.05€ *** RIVER *** [7s 2d 6h 9c][9d] @@ -46,7 +46,7 @@ Player4 collected 8.20€ from pot *** SUMMARY *** Total pot 8.20€ | Rake 0.35€ Board: [7s 2d 6h 9c 9d] -Seat 1: Player1 folded on the turn +Seat 1: Hero folded on the turn Seat 2: Player2 (button) folded on the flop Seat 3: Player3 (small blind) folded on the pre-flop Seat 4: Player4 (big blind) showed [9h 6s] and won 8.20€ with Full of 9 and 6 diff --git a/pyfpdb/regression-test-files/cash/Winamax/Flop/NLHE-FR-EUR-0.02-0.05-201010.Real.side.pot.with.bad.collected.Biggest.stack.wins.txt.hp b/pyfpdb/regression-test-files/cash/Winamax/Flop/NLHE-FR-EUR-0.02-0.05-201010.Real.side.pot.with.bad.collected.Biggest.stack.wins.txt.hp index 0ca6fcb0..31b9a23c 100644 --- a/pyfpdb/regression-test-files/cash/Winamax/Flop/NLHE-FR-EUR-0.02-0.05-201010.Real.side.pot.with.bad.collected.Biggest.stack.wins.txt.hp +++ b/pyfpdb/regression-test-files/cash/Winamax/Flop/NLHE-FR-EUR-0.02-0.05-201010.Real.side.pot.with.bad.collected.Biggest.stack.wins.txt.hp @@ -1,4 +1,4 @@ -{ u'Player1': { 'card1': 51, +{ u'Hero': { 'card1': 51, 'card2': 9, 'card3': 0, 'card4': 0, diff --git a/pyfpdb/regression-test-files/cash/Winamax/Flop/PLO-FR-EUR-0.02-0.05-201009.Real.side.pot.with.bad.collected.txt b/pyfpdb/regression-test-files/cash/Winamax/Flop/PLO-FR-EUR-0.02-0.05-201009.Real.side.pot.with.bad.collected.txt index 32c16a33..a988d299 100644 --- a/pyfpdb/regression-test-files/cash/Winamax/Flop/PLO-FR-EUR-0.02-0.05-201009.Real.side.pot.with.bad.collected.txt +++ b/pyfpdb/regression-test-files/cash/Winamax/Flop/PLO-FR-EUR-0.02-0.05-201009.Real.side.pot.with.bad.collected.txt @@ -7,16 +7,16 @@ Seat 4: Player5 (12.92€) Seat 5: Player7 (0.99€) Seat 6: Player10 (5.21€) Seat 7: Player20 (5.05€) -Seat 8: Player13 (12.71€) +Seat 8: Hero (12.71€) Seat 9: Player14 (4.73€) *** ANTE/BLINDS *** Player7 posts small blind 0.02€ Player10 posts big blind 0.05€ Player25 posts big blind 0.05€ out of position -Dealt to Player13 [9h 3c 4h 4c] +Dealt to Hero [9h 3c 4h 4c] *** PRE-FLOP *** Player20 folds -Player13 folds +Hero folds Player14 calls 0.05€ Player22 calls 0.05€ Player25 raises 0.22€ to 0.27€ @@ -51,7 +51,7 @@ Seat 4: Player5 (button) folded on the flop Seat 5: Player7 (small blind) showed [Ad Jc Jh 6c] and won 3.38€ with Quads of Jack Seat 6: Player10 (big blind) showed [7c 7d 6h 8s] and won 0.22€ with Full of 7 and Jack Seat 7: Player20 folded on the pre-flop -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 folded on the pre-flop diff --git a/pyfpdb/regression-test-files/cash/Winamax/Flop/PLO-FR-EUR-0.02-0.05-201009.Real.side.pot.with.bad.collected.txt.hp b/pyfpdb/regression-test-files/cash/Winamax/Flop/PLO-FR-EUR-0.02-0.05-201009.Real.side.pot.with.bad.collected.txt.hp index dc6f9cfd..1fcb2468 100644 --- a/pyfpdb/regression-test-files/cash/Winamax/Flop/PLO-FR-EUR-0.02-0.05-201009.Real.side.pot.with.bad.collected.txt.hp +++ b/pyfpdb/regression-test-files/cash/Winamax/Flop/PLO-FR-EUR-0.02-0.05-201009.Real.side.pot.with.bad.collected.txt.hp @@ -92,7 +92,7 @@ 'wonWhenSeenStreet2': 0.0, 'wonWhenSeenStreet3': 0.0, 'wonWhenSeenStreet4': 0.0}, - u'Player13': { 'card1': 8, + u'Hero': { 'card1': 8, 'card2': 28, 'card3': 3, 'card4': 29, diff --git a/pyfpdb/regression-test-files/cash/Winamax/Flop/PLO-FR-EUR-0.02-0.05-201009.Sample b/pyfpdb/regression-test-files/cash/Winamax/Flop/PLO-FR-EUR-0.02-0.05-201009.Sample index bff5f4eb..fa3c8325 100644 --- a/pyfpdb/regression-test-files/cash/Winamax/Flop/PLO-FR-EUR-0.02-0.05-201009.Sample +++ b/pyfpdb/regression-test-files/cash/Winamax/Flop/PLO-FR-EUR-0.02-0.05-201009.Sample @@ -6,17 +6,17 @@ Seat 3: Player30 (4.71€) Seat 4: Player5 (4.67€) Seat 6: Player11 (5€) Seat 7: Player1 (7.21€) -Seat 8: Player13 (11.12€) +Seat 8: Hero (11.12€) Seat 9: Player14 (5.07€) *** ANTE/BLINDS *** Player30 posts small blind 0.02€ Player5 posts big blind 0.05€ Player11 posts big blind 0.05€ out of position -Dealt to Player13 [6h 8s Qc 6d] +Dealt to Hero [6h 8s Qc 6d] *** PRE-FLOP *** Player11 folds Player1 folds -Player13 folds +Hero folds Player14 folds Player15 folds Player23 calls 0.05€ @@ -41,7 +41,7 @@ Seat 3: Player30 (small blind) folded on the flop Seat 4: Player5 (big blind) won 0.33€ Seat 6: Player11 folded on the pre-flop Seat 7: Player1 folded on the pre-flop -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -53,41 +53,41 @@ Seat 3: Player30 (4.66€) Seat 4: Player5 (4.85€) Seat 5: Player7 (1€) Seat 7: Player0 (5€) -Seat 8: Player13 (11.12€) +Seat 8: Hero (11.12€) Seat 9: Player14 (5.07€) *** ANTE/BLINDS *** Player5 posts small blind 0.02€ -Player13 posts big blind 0.05€ -Dealt to Player13 [6h 6s 4c 9h] +Hero posts big blind 0.05€ +Dealt to Hero [6h 6s 4c 9h] *** PRE-FLOP *** Player14 folds Player15 folds Player23 raises 0.05€ to 0.10€ Player30 calls 0.10€ Player5 calls 0.08€ -Player13 calls 0.05€ +Hero calls 0.05€ *** FLOP *** [5c Tc 6c] Player5 checks -Player13 bets 0.30€ +Hero bets 0.30€ Player23 folds Player30 calls 0.30€ Player5 calls 0.30€ *** TURN *** [5c Tc 6c][Jh] Player5 checks -Player13 checks +Hero checks Player30 bets 0.25€ Player5 calls 0.25€ -Player13 calls 0.25€ +Hero calls 0.25€ *** RIVER *** [5c Tc 6c Jh][5s] Player5 checks -Player13 checks +Hero checks Player30 bets 0.90€ Player5 folds -Player13 raises 2.25€ to 3.15€ +Hero raises 2.25€ to 3.15€ Player30 raises 0.86€ to 4.01€ and is all-in -Player13 calls 0.86€ +Hero calls 0.86€ *** SHOW DOWN *** -Player13 shows [6h 6s 4c 9h] (Full of 6 and 5) +Hero shows [6h 6s 4c 9h] (Full of 6 and 5) Player30 shows [Jd Kc 4s Jc] (Full of Jack and 5) Player30 collected 9.57€ from pot *** SUMMARY *** @@ -99,7 +99,7 @@ Seat 3: Player30 (button) showed [Jd Kc 4s Jc] and won 9.57€ with Full of Jack Seat 4: Player5 (small blind) folded on the river Seat 5: Player7 folded Seat 7: Player0 folded -Seat 8: Player13 (big blind) showed [6h 6s 4c 9h] and lost with Full of 6 and 5 +Seat 8: Hero (big blind) showed [6h 6s 4c 9h] and lost with Full of 6 and 5 Seat 9: Player14 folded on the pre-flop @@ -111,37 +111,37 @@ Seat 4: Player5 (4.20€) Seat 5: Player7 (1€) Seat 6: Player29 (1.06€) Seat 7: Player0 (5€) -Seat 8: Player13 (6.46€) +Seat 8: Hero (6.46€) Seat 9: Player14 (5.07€) *** ANTE/BLINDS *** -Player13 posts small blind 0.02€ +Hero posts small blind 0.02€ Player14 posts big blind 0.05€ -Dealt to Player13 [2c 4h Jh Kc] +Dealt to Hero [2c 4h Jh Kc] *** PRE-FLOP *** Player23 calls 0.05€ Player30 calls 0.05€ Player5 calls 0.05€ -Player13 calls 0.03€ +Hero calls 0.03€ Player14 checks *** FLOP *** [Js 9s Ac] -Player13 checks +Hero checks Player14 checks Player23 checks Player30 checks Player5 checks *** TURN *** [Js 9s Ac][Th] -Player13 checks +Hero checks Player14 checks Player23 checks Player30 checks Player5 checks *** RIVER *** [Js 9s Ac Th][3c] -Player13 checks +Hero checks Player14 checks Player23 bets 0.25€ Player30 folds Player5 folds -Player13 folds +Hero folds Player14 folds Player23 collected 0.49€ from pot *** SUMMARY *** @@ -153,7 +153,7 @@ Seat 4: Player5 (button) folded on the river Seat 5: Player7 folded Seat 6: Player29 folded Seat 7: Player0 folded -Seat 8: Player13 (small blind) folded on the river +Seat 8: Hero (small blind) folded on the river Seat 9: Player14 (big blind) folded on the river @@ -166,7 +166,7 @@ Seat 4: Player5 (4.15€) Seat 5: Player7 (1€) Seat 6: Player29 (1.06€) Seat 7: Player0 (5€) -Seat 8: Player13 (6.41€) +Seat 8: Hero (6.41€) Seat 9: Player14 (5.02€) *** ANTE/BLINDS *** Player14 posts small blind 0.02€ @@ -174,14 +174,14 @@ Player23 posts big blind 0.05€ Player7 posts big blind 0.05€ out of position Player29 posts big blind 0.05€ out of position Player0 posts big blind 0.05€ out of position -Dealt to Player13 [2h 7s 8d Jd] +Dealt to Hero [2h 7s 8d Jd] *** PRE-FLOP *** Player30 calls 0.05€ Player5 calls 0.05€ Player7 checks Player29 checks Player0 checks -Player13 folds +Hero folds Player14 calls 0.03€ Player23 checks *** FLOP *** [Qd Ac 5s] @@ -215,7 +215,7 @@ Seat 4: Player5 folded on the flop Seat 5: Player7 showed [4c 3h Qc As] and won 1.07€ with Two pairs : Ace and Queen Seat 6: Player29 showed [Js 3s Qs Ah] and won 1.07€ with Two pairs : Ace and Queen Seat 7: Player0 folded on the flop -Seat 8: Player13 (button) folded on the pre-flop +Seat 8: Hero (button) folded on the pre-flop Seat 9: Player14 (small blind) folded on the flop @@ -228,18 +228,18 @@ Seat 4: Player5 (4.10€) Seat 5: Player7 (1.07€) Seat 6: Player29 (1.13€) Seat 7: Player0 (4.95€) -Seat 8: Player13 (6.41€) +Seat 8: Hero (6.41€) Seat 9: Player14 (4.97€) *** ANTE/BLINDS *** Player23 posts small blind 0.02€ Player30 posts big blind 0.05€ -Dealt to Player13 [5c 4d 7c Jc] +Dealt to Hero [5c 4d 7c Jc] *** PRE-FLOP *** Player5 calls 0.05€ Player7 folds Player29 calls 0.05€ Player0 calls 0.05€ -Player13 calls 0.05€ +Hero calls 0.05€ Player14 folds Player23 folds Player30 checks @@ -248,17 +248,17 @@ Player30 checks Player5 folds Player29 checks Player0 checks -Player13 checks +Hero checks *** TURN *** [9d 2s Kc][5s] Player30 checks Player29 checks Player0 checks -Player13 checks +Hero checks *** RIVER *** [9d 2s Kc 5s][As] Player30 checks Player29 checks Player0 bets 0.05€ -Player13 folds +Hero folds Player30 folds Player29 folds Player0 collected 0.31€ from pot @@ -272,7 +272,7 @@ Seat 4: Player5 folded on the flop Seat 5: Player7 folded on the pre-flop Seat 6: Player29 folded on the river Seat 7: Player0 won 0.31€ -Seat 8: Player13 folded on the river +Seat 8: Hero folded on the river Seat 9: Player14 (button) folded on the pre-flop @@ -284,18 +284,18 @@ Seat 4: Player5 (4.05€) Seat 5: Player7 (1.07€) Seat 6: Player29 (1.08€) Seat 7: Player0 (5.16€) -Seat 8: Player13 (6.36€) +Seat 8: Hero (6.36€) Seat 9: Player14 (4.97€) *** ANTE/BLINDS *** Player30 posts small blind 0.02€ Player5 posts big blind 0.05€ Player8 posts big blind 0.05€ out of position -Dealt to Player13 [2d 2h Kc Ah] +Dealt to Hero [2d 2h Kc Ah] *** PRE-FLOP *** Player7 raises 0.17€ to 0.22€ Player29 calls 0.22€ Player0 folds -Player13 folds +Hero folds Player14 folds Player8 calls 0.17€ Player30 folds @@ -316,7 +316,7 @@ Seat 4: Player5 (big blind) folded on the flop Seat 5: Player7 won 1.70€ Seat 6: Player29 folded on the flop Seat 7: Player0 folded on the pre-flop -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -328,16 +328,16 @@ Seat 4: Player5 (3.83€) Seat 5: Player7 (1.70€) Seat 6: Player29 (0.86€) Seat 7: Player0 (5.16€) -Seat 8: Player13 (6.36€) +Seat 8: Hero (6.36€) Seat 9: Player14 (4.97€) *** ANTE/BLINDS *** Player5 posts small blind 0.02€ Player7 posts big blind 0.05€ -Dealt to Player13 [3d 9h Qc 6c] +Dealt to Hero [3d 9h Qc 6c] *** PRE-FLOP *** Player29 calls 0.05€ Player0 folds -Player13 folds +Hero folds Player14 folds Player8 folds Player30 calls 0.05€ @@ -369,7 +369,7 @@ Seat 4: Player5 (small blind) folded on the flop Seat 5: Player7 (big blind) showed [9c 7h 3s 8c] and won 2.57€ with Straight Jack high Seat 6: Player29 showed [Ad Ac Td Js] and lost with Two pairs : Jack and Ten Seat 7: Player0 folded on the pre-flop -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -380,14 +380,14 @@ Seat 3: Player30 (9.35€) Seat 4: Player5 (3.78€) Seat 5: Player7 (2.57€) Seat 7: Player0 (5.16€) -Seat 8: Player13 (6.36€) +Seat 8: Hero (6.36€) Seat 9: Player14 (4.97€) *** ANTE/BLINDS *** Player7 posts small blind 0.02€ Player0 posts big blind 0.05€ -Dealt to Player13 [8d Qd 9h 8c] +Dealt to Hero [8d Qd 9h 8c] *** PRE-FLOP *** -Player13 calls 0.05€ +Hero calls 0.05€ Player14 folds Player8 calls 0.05€ Player30 calls 0.05€ @@ -396,12 +396,12 @@ Player7 folds Player0 checks *** FLOP *** [6s Ad 6d] Player0 checks -Player13 checks +Hero checks Player8 bets 0.27€ Player30 folds Player5 calls 0.27€ Player0 folds -Player13 folds +Hero folds *** TURN *** [6s Ad 6d][8s] Player8 bets 0.81€ Player5 calls 0.81€ @@ -417,7 +417,7 @@ Seat 3: Player30 folded on the flop Seat 4: Player5 (button) folded on the river Seat 5: Player7 (small blind) folded on the pre-flop Seat 7: Player0 (big blind) folded on the flop -Seat 8: Player13 folded on the flop +Seat 8: Hero folded on the flop Seat 9: Player14 folded on the pre-flop @@ -428,12 +428,12 @@ Seat 3: Player30 (9.30€) Seat 4: Player5 (2.65€) Seat 5: Player7 (2.55€) Seat 7: Player0 (5.11€) -Seat 8: Player13 (6.31€) +Seat 8: Hero (6.31€) Seat 9: Player14 (4.97€) *** ANTE/BLINDS *** Player0 posts small blind 0.02€ -Player13 posts big blind 0.05€ -Dealt to Player13 [3h Jh 2h Qd] +Hero posts big blind 0.05€ +Dealt to Hero [3h Jh 2h Qd] *** PRE-FLOP *** Player14 folds Player8 calls 0.05€ @@ -441,7 +441,7 @@ Player30 calls 0.05€ Player5 calls 0.05€ Player7 raises 0.27€ to 0.32€ Player0 folds -Player13 folds +Hero folds Player8 folds Player30 folds Player5 calls 0.27€ @@ -464,7 +464,7 @@ Seat 3: Player30 folded on the pre-flop Seat 4: Player5 folded on the river Seat 5: Player7 (button) won 1.05€ Seat 7: Player0 (small blind) folded on the pre-flop -Seat 8: Player13 (big blind) folded on the pre-flop +Seat 8: Hero (big blind) folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -475,28 +475,28 @@ Seat 3: Player30 (9.25€) Seat 4: Player5 (2.33€) Seat 5: Player7 (3€) Seat 7: Player0 (5.09€) -Seat 8: Player13 (6.26€) +Seat 8: Hero (6.26€) Seat 9: Player14 (4.97€) *** ANTE/BLINDS *** -Player13 posts small blind 0.02€ +Hero posts small blind 0.02€ Player14 posts big blind 0.05€ -Dealt to Player13 [2c Js 4s 6s] +Dealt to Hero [2c Js 4s 6s] *** PRE-FLOP *** Player8 folds Player30 calls 0.05€ Player5 calls 0.05€ Player7 calls 0.05€ Player0 calls 0.05€ -Player13 calls 0.03€ +Hero calls 0.03€ Player14 checks *** FLOP *** [6d Jc As] -Player13 checks +Hero checks Player14 checks Player30 checks Player5 folds Player7 checks Player0 bets 0.30€ -Player13 folds +Hero folds Player14 folds Player30 folds Player7 folds @@ -509,7 +509,7 @@ Seat 3: Player30 folded on the flop Seat 4: Player5 folded on the flop Seat 5: Player7 folded on the flop Seat 7: Player0 (button) won 0.58€ -Seat 8: Player13 (small blind) folded on the flop +Seat 8: Hero (small blind) folded on the flop Seat 9: Player14 (big blind) folded on the flop @@ -519,17 +519,17 @@ Seat 3: Player30 (9.20€) Seat 4: Player5 (2.28€) Seat 5: Player7 (2.95€) Seat 7: Player0 (5.32€) -Seat 8: Player13 (6.21€) +Seat 8: Hero (6.21€) Seat 9: Player14 (4.92€) *** ANTE/BLINDS *** Player14 posts small blind 0.02€ Player30 posts big blind 0.05€ -Dealt to Player13 [6d 9d Jh Ah] +Dealt to Hero [6d 9d Jh Ah] *** PRE-FLOP *** Player5 calls 0.05€ Player7 folds Player0 calls 0.05€ -Player13 calls 0.05€ +Hero calls 0.05€ Player14 calls 0.03€ Player30 checks *** FLOP *** [8d 7s 8c] @@ -537,13 +537,13 @@ Player14 checks Player30 checks Player5 checks Player0 checks -Player13 checks +Hero checks *** TURN *** [8d 7s 8c][2c] Player14 bets 0.13€ Player30 folds Player5 folds Player0 folds -Player13 folds +Hero folds Player14 collected 0.37€ from pot *** SUMMARY *** Total pot 0.37€ | Rake 0.01€ @@ -552,7 +552,7 @@ Seat 3: Player30 (big blind) folded on the turn Seat 4: Player5 folded on the turn Seat 5: Player7 folded on the pre-flop Seat 7: Player0 folded on the turn -Seat 8: Player13 (button) folded on the turn +Seat 8: Hero (button) folded on the turn Seat 9: Player14 (small blind) won 0.37€ @@ -563,23 +563,23 @@ Seat 3: Player30 (9.15€) Seat 4: Player5 (2.23€) Seat 5: Player7 (2.95€) Seat 7: Player0 (5.27€) -Seat 8: Player13 (6.16€) +Seat 8: Hero (6.16€) Seat 9: Player14 (5.11€) *** ANTE/BLINDS *** Player30 posts small blind 0.02€ Player5 posts big blind 0.05€ -Dealt to Player13 [8d 5d 8s 3d] +Dealt to Hero [8d 5d 8s 3d] *** PRE-FLOP *** Player7 calls 0.05€ Player0 folds -Player13 calls 0.05€ +Hero calls 0.05€ Player14 folds Player30 calls 0.03€ Player5 folds *** FLOP *** [6s Jc Th] Player30 checks Player7 bets 0.12€ -Player13 folds +Hero folds Player30 calls 0.12€ *** TURN *** [6s Jc Th][4c] Player30 checks @@ -601,7 +601,7 @@ Seat 3: Player30 (small blind) showed [Kc 8c 5s 9h] and won 5.70€ with Straigh Seat 4: Player5 (big blind) folded on the pre-flop Seat 5: Player7 showed [6c 6d 8h 4h] and lost with Trips of 6 Seat 7: Player0 folded on the pre-flop -Seat 8: Player13 folded on the flop +Seat 8: Hero folded on the flop Seat 9: Player14 (button) folded on the pre-flop @@ -613,16 +613,16 @@ Seat 4: Player5 (2.18€) Seat 5: Player7 (1€) Seat 6: Player28 (5€) Seat 7: Player0 (5.27€) -Seat 8: Player13 (6.11€) +Seat 8: Hero (6.11€) Seat 9: Player14 (5.11€) *** ANTE/BLINDS *** Player5 posts small blind 0.02€ Player7 posts big blind 0.05€ Player4 posts big blind 0.05€ out of position -Dealt to Player13 [Qs 5h Qd 9c] +Dealt to Hero [Qs 5h Qd 9c] *** PRE-FLOP *** Player0 calls 0.05€ -Player13 calls 0.05€ +Hero calls 0.05€ Player14 folds Player4 checks Player30 calls 0.05€ @@ -632,20 +632,20 @@ Player7 checks Player5 checks Player7 checks Player0 checks -Player13 checks +Hero checks Player4 checks Player30 checks *** TURN *** [Ks 7h 6h][4h] Player5 checks Player7 checks Player0 checks -Player13 checks +Hero checks Player4 checks Player30 bets 0.05€ Player5 calls 0.05€ Player7 calls 0.05€ Player0 folds -Player13 folds +Hero folds Player4 folds *** RIVER *** [Ks 7h 6h 4h][6d] Player5 bets 0.05€ @@ -664,7 +664,7 @@ Seat 4: Player5 (small blind) showed [Kh Th 3c 6s] and won 0.52€ with Full of Seat 5: Player7 (big blind) folded on the river Seat 6: Player28 folded Seat 7: Player0 folded on the turn -Seat 8: Player13 folded on the turn +Seat 8: Hero folded on the turn Seat 9: Player14 folded on the pre-flop @@ -677,15 +677,15 @@ Seat 4: Player5 (2.55€) Seat 5: Player7 (0.90€) Seat 6: Player28 (5€) Seat 7: Player0 (5.22€) -Seat 8: Player13 (6.06€) +Seat 8: Hero (6.06€) Seat 9: Player14 (5.11€) *** ANTE/BLINDS *** Player7 posts small blind 0.02€ Player28 posts big blind 0.05€ -Dealt to Player13 [5s 7h 6d 3s] +Dealt to Hero [5s 7h 6d 3s] *** PRE-FLOP *** Player0 calls 0.05€ -Player13 calls 0.05€ +Hero calls 0.05€ Player14 folds Player4 calls 0.05€ Player30 calls 0.05€ @@ -693,14 +693,14 @@ Player5 calls 0.05€ Player7 raises 0.35€ to 0.40€ Player28 folds Player0 calls 0.35€ -Player13 calls 0.35€ +Hero calls 0.35€ Player4 folds Player30 folds Player5 calls 0.35€ *** FLOP *** [Kc Qc 2d] Player7 bets 0.50€ and is all-in Player0 calls 0.50€ -Player13 folds +Hero folds Player5 calls 0.50€ *** TURN *** [Kc Qc 2d][6c] Player0 checks @@ -724,7 +724,7 @@ Seat 4: Player5 (button) showed [9d 3c 9c 7d] and won 6.22€ with Flush King hi Seat 5: Player7 (small blind) showed [Ac Ks 4d Ah] and lost with One pair : Ace Seat 6: Player28 (big blind) folded on the pre-flop Seat 7: Player0 showed [8c 9h 7c 8d] and won 1.60€ with Flush King high -Seat 8: Player13 folded on the flop +Seat 8: Hero folded on the flop Seat 9: Player14 folded on the pre-flop @@ -737,14 +737,14 @@ Seat 4: Player5 (6.22€) Seat 5: Player7 (1€) Seat 6: Player28 (4.95€) Seat 7: Player0 (2.67€) -Seat 8: Player13 (5.66€) +Seat 8: Hero (5.66€) Seat 9: Player14 (5.11€) *** ANTE/BLINDS *** Player28 posts small blind 0.02€ Player0 posts big blind 0.05€ -Dealt to Player13 [Kd Tc 8c 7h] +Dealt to Hero [Kd Tc 8c 7h] *** PRE-FLOP *** -Player13 calls 0.05€ +Hero calls 0.05€ Player14 folds Player4 calls 0.05€ Player30 calls 0.05€ @@ -755,7 +755,7 @@ Player0 checks *** FLOP *** [Qh Ts 9d] Player28 checks Player0 checks -Player13 checks +Hero checks Player4 checks Player30 checks Player5 checks @@ -763,7 +763,7 @@ Player7 checks *** TURN *** [Qh Ts 9d][Ah] Player28 checks Player0 checks -Player13 checks +Hero checks Player4 checks Player30 checks Player5 checks @@ -771,7 +771,7 @@ Player7 checks *** RIVER *** [Qh Ts 9d Ah][6s] Player28 checks Player0 checks -Player13 checks +Hero checks Player4 checks Player30 checks Player5 checks @@ -783,8 +783,8 @@ Player5 shows [9s 2h Kh 2c] (One pair : 9) Player7 shows [Ad 6c 5d 5s] (Two pairs : Ace and 6) Player28 shows [Ks 3h 3s 4s] (One pair : 3) Player0 shows [Jc 2d 7c 7d] (One pair : 7) -Player13 shows [Kd Tc 8c 7h] (Straight Ten high) -Player13 collected 0.33€ from pot +Hero shows [Kd Tc 8c 7h] (Straight Ten high) +Hero collected 0.33€ from pot *** SUMMARY *** Total pot 0.33€ | Rake 0.02€ Board: [Qh Ts 9d Ah 6s] @@ -795,7 +795,7 @@ Seat 4: Player5 showed [9s 2h Kh 2c] and lost with One pair : 9 Seat 5: Player7 (button) showed [Ad 6c 5d 5s] and lost with Two pairs : Ace and 6 Seat 6: Player28 (small blind) showed [Ks 3h 3s 4s] and lost with One pair : 3 Seat 7: Player0 (big blind) showed [Jc 2d 7c 7d] and lost with One pair : 7 -Seat 8: Player13 showed [Kd Tc 8c 7h] and won 0.33€ with Straight Ten high +Seat 8: Hero showed [Kd Tc 8c 7h] and won 0.33€ with Straight Ten high Seat 9: Player14 folded on the pre-flop @@ -808,12 +808,12 @@ Seat 4: Player5 (6.17€) Seat 5: Player7 (0.95€) Seat 6: Player28 (4.90€) Seat 7: Player3 (2.50€) -Seat 8: Player13 (5.94€) +Seat 8: Hero (5.94€) Seat 9: Player14 (5.11€) *** ANTE/BLINDS *** -Player13 posts big blind 0.05€ +Hero posts big blind 0.05€ Player15 posts big blind 0.05€ out of position -Dealt to Player13 [2c 9c 4s 4h] +Dealt to Hero [2c 9c 4s 4h] *** PRE-FLOP *** Player14 folds Player4 calls 0.05€ @@ -822,7 +822,7 @@ Player30 calls 0.05€ Player5 calls 0.05€ Player7 raises 0.30€ to 0.35€ Player28 folds -Player13 folds +Hero folds Player4 calls 0.30€ Player15 folds Player30 folds @@ -854,7 +854,7 @@ Seat 4: Player5 folded on the turn Seat 5: Player7 showed [Ac Ad 4d 7h] and won 2.56€ with Flush Ace high Seat 6: Player28 (button) folded on the pre-flop Seat 7: Player3 folded -Seat 8: Player13 (big blind) folded on the pre-flop +Seat 8: Hero (big blind) folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -867,12 +867,12 @@ Seat 4: Player5 (5.52€) Seat 5: Player7 (2.56€) Seat 6: Player28 (4.90€) Seat 7: Player3 (2.50€) -Seat 8: Player13 (5.89€) +Seat 8: Hero (5.89€) Seat 9: Player14 (5.11€) *** ANTE/BLINDS *** -Player13 posts small blind 0.02€ +Hero posts small blind 0.02€ Player14 posts big blind 0.05€ -Dealt to Player13 [Js 9h 4d Kd] +Dealt to Hero [Js 9h 4d Kd] *** PRE-FLOP *** Player4 calls 0.05€ Player15 folds @@ -880,10 +880,10 @@ Player30 calls 0.05€ Player5 calls 0.05€ Player7 calls 0.05€ Player28 calls 0.05€ -Player13 calls 0.03€ +Hero calls 0.03€ Player14 checks *** FLOP *** [Ks Kh 8h] -Player13 checks +Hero checks Player14 checks Player4 checks Player30 checks @@ -891,22 +891,22 @@ Player5 checks Player7 checks Player28 checks *** TURN *** [Ks Kh 8h][Jh] -Player13 bets 0.35€ +Hero bets 0.35€ Player14 folds Player4 folds Player30 folds Player5 folds Player7 folds Player28 raises 0.35€ to 0.70€ -Player13 raises 1.75€ to 2.45€ +Hero raises 1.75€ to 2.45€ Player28 raises 1.75€ to 4.20€ -Player13 raises 1.64€ to 5.84€ and is all-in +Hero raises 1.64€ to 5.84€ and is all-in Player28 calls 0.65€ and is all-in *** RIVER *** [Ks Kh 8h Jh][6d] *** SHOW DOWN *** Player28 shows [Qs 8d 7s Kc] (Full of King and 8) -Player13 shows [Js 9h 4d Kd] (Full of King and Jack) -Player13 collected 10.54€ from pot +Hero shows [Js 9h 4d Kd] (Full of King and Jack) +Hero collected 10.54€ from pot *** SUMMARY *** Total pot 10.54€ | Rake 0.50€ Board: [Ks Kh 8h Jh 6d] @@ -917,7 +917,7 @@ Seat 4: Player5 folded on the turn Seat 5: Player7 folded on the turn Seat 6: Player28 showed [Qs 8d 7s Kc] and lost with Full of King and 8 Seat 7: Player3 (button) folded -Seat 8: Player13 (small blind) showed [Js 9h 4d Kd] and won 10.54€ with Full of King and Jack +Seat 8: Hero (small blind) showed [Js 9h 4d Kd] and won 10.54€ with Full of King and Jack Seat 9: Player14 (big blind) folded on the turn @@ -930,40 +930,40 @@ Seat 4: Player5 (5.47€) Seat 5: Player7 (2.51€) Seat 6: Player16 (1€) Seat 7: Player3 (2.50€) -Seat 8: Player13 (10.54€) +Seat 8: Hero (10.54€) Seat 9: Player14 (5.06€) *** ANTE/BLINDS *** Player14 posts small blind 0.02€ Player4 posts big blind 0.05€ -Dealt to Player13 [8h 7s 2h 8c] +Dealt to Hero [8h 7s 2h 8c] *** PRE-FLOP *** Player15 folds Player30 calls 0.05€ Player5 calls 0.05€ Player7 folds -Player13 calls 0.05€ +Hero calls 0.05€ Player14 folds Player4 checks *** FLOP *** [5d 4h 4s] Player4 checks Player30 checks Player5 checks -Player13 checks +Hero checks *** TURN *** [5d 4h 4s][Ah] Player4 checks Player30 checks Player5 checks -Player13 checks +Hero checks *** RIVER *** [5d 4h 4s Ah][Jh] Player4 checks Player30 checks Player5 folds -Player13 checks +Hero checks *** SHOW DOWN *** Player4 shows [Ad 8s 2d 9s] (Two pairs : Ace and 4) Player30 shows [7c 7d 9d Ts] (Two pairs : 7 and 4) -Player13 shows [8h 7s 2h 8c] (Flush Ace high) -Player13 collected 0.21€ from pot +Hero shows [8h 7s 2h 8c] (Flush Ace high) +Hero collected 0.21€ from pot *** SUMMARY *** Total pot 0.21€ | Rake 0.01€ Board: [5d 4h 4s Ah Jh] @@ -974,7 +974,7 @@ Seat 4: Player5 folded on the river Seat 5: Player7 folded on the pre-flop Seat 6: Player16 folded Seat 7: Player3 folded -Seat 8: Player13 (button) showed [8h 7s 2h 8c] and won 0.21€ with Flush Ace high +Seat 8: Hero (button) showed [8h 7s 2h 8c] and won 0.21€ with Flush Ace high Seat 9: Player14 (small blind) folded on the pre-flop @@ -987,17 +987,17 @@ Seat 4: Player5 (5.42€) Seat 5: Player7 (2.51€) Seat 6: Player16 (1€) Seat 7: Player3 (2.50€) -Seat 8: Player13 (10.70€) +Seat 8: Hero (10.70€) Seat 9: Player14 (5.04€) *** ANTE/BLINDS *** Player4 posts small blind 0.02€ Player15 posts big blind 0.05€ -Dealt to Player13 [7d Qd Kc Ks] +Dealt to Hero [7d Qd Kc Ks] *** PRE-FLOP *** Player30 calls 0.05€ Player5 calls 0.05€ Player7 calls 0.05€ -Player13 calls 0.05€ +Hero calls 0.05€ Player14 calls 0.05€ Player4 calls 0.03€ Player15 checks @@ -1007,7 +1007,7 @@ Player15 checks Player30 checks Player5 checks Player7 checks -Player13 checks +Hero checks Player14 checks *** TURN *** [As 6h 6d][Kh] Player4 checks @@ -1015,7 +1015,7 @@ Player15 checks Player30 checks Player5 checks Player7 checks -Player13 bets 0.35€ +Hero bets 0.35€ Player14 folds Player4 folds Player15 folds @@ -1024,12 +1024,12 @@ Player5 folds Player7 calls 0.35€ *** RIVER *** [As 6h 6d Kh][5s] Player7 checks -Player13 bets 1.05€ +Hero bets 1.05€ Player7 calls 1.05€ *** SHOW DOWN *** Player7 shows [3h 9h 6c 2h] (Trips of 6) -Player13 shows [7d Qd Kc Ks] (Full of King and 6) -Player13 collected 2.99€ from pot +Hero shows [7d Qd Kc Ks] (Full of King and 6) +Hero collected 2.99€ from pot *** SUMMARY *** Total pot 2.99€ | Rake 0.16€ Board: [As 6h 6d Kh 5s] @@ -1040,7 +1040,7 @@ Seat 4: Player5 folded on the turn Seat 5: Player7 showed [3h 9h 6c 2h] and lost with Trips of 6 Seat 6: Player16 folded Seat 7: Player3 folded -Seat 8: Player13 showed [7d Qd Kc Ks] and won 2.99€ with Full of King and 6 +Seat 8: Hero showed [7d Qd Kc Ks] and won 2.99€ with Full of King and 6 Seat 9: Player14 (button) folded on the turn @@ -1053,18 +1053,18 @@ Seat 4: Player5 (5.37€) Seat 5: Player7 (1.06€) Seat 6: Player16 (1€) Seat 7: Player3 (2.50€) -Seat 8: Player13 (12.24€) +Seat 8: Hero (12.24€) Seat 9: Player14 (4.99€) *** ANTE/BLINDS *** Player15 posts small blind 0.02€ Player30 posts big blind 0.05€ Player16 posts big blind 0.05€ out of position -Dealt to Player13 [4c 9s Td 8c] +Dealt to Hero [4c 9s Td 8c] *** PRE-FLOP *** Player5 calls 0.05€ Player7 calls 0.05€ Player16 checks -Player13 calls 0.05€ +Hero calls 0.05€ Player14 calls 0.05€ Player4 calls 0.05€ Player15 folds @@ -1074,13 +1074,13 @@ Player30 checks Player5 folds Player7 checks Player16 checks -Player13 checks +Hero checks Player14 checks Player4 bets 0.25€ Player30 folds Player7 calls 0.25€ Player16 folds -Player13 folds +Hero folds Player14 folds *** TURN *** [Th 2c 4s][Ac] Player7 checks @@ -1101,7 +1101,7 @@ Seat 4: Player5 folded on the flop Seat 5: Player7 showed [Kc 3c 6h 7h] and lost with One pair : 2 Seat 6: Player16 folded on the flop Seat 7: Player3 folded -Seat 8: Player13 folded on the flop +Seat 8: Hero folded on the flop Seat 9: Player14 folded on the flop @@ -1114,16 +1114,16 @@ Seat 4: Player5 (5.32€) Seat 5: Player7 (1€) Seat 6: Player16 (0.95€) Seat 7: Player3 (2.50€) -Seat 8: Player13 (12.19€) +Seat 8: Hero (12.19€) Seat 9: Player14 (4.94€) *** ANTE/BLINDS *** Player30 posts small blind 0.02€ Player5 posts big blind 0.05€ -Dealt to Player13 [Qc 6h Qh 7d] +Dealt to Hero [Qc 6h Qh 7d] *** PRE-FLOP *** Player7 calls 0.05€ Player16 calls 0.05€ -Player13 calls 0.05€ +Hero calls 0.05€ Player14 folds Player4 calls 0.05€ Player15 raises 0.32€ to 0.37€ @@ -1131,7 +1131,7 @@ Player30 folds Player5 calls 0.32€ Player7 folds Player16 folds -Player13 folds +Hero folds Player4 folds *** FLOP *** [Kh Ad 5s] Player5 folds @@ -1146,7 +1146,7 @@ Seat 4: Player5 (big blind) folded on the flop Seat 5: Player7 folded on the pre-flop Seat 6: Player16 folded on the pre-flop Seat 7: Player3 folded -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -1159,15 +1159,15 @@ Seat 4: Player5 (4.95€) Seat 5: Player7 (0.95€) Seat 6: Player16 (0.90€) Seat 7: Player3 (2.50€) -Seat 8: Player13 (12.14€) +Seat 8: Hero (12.14€) Seat 9: Player14 (4.94€) *** ANTE/BLINDS *** Player5 posts small blind 0.02€ Player7 posts big blind 0.05€ -Dealt to Player13 [9s 7d 5s Kd] +Dealt to Hero [9s 7d 5s Kd] *** PRE-FLOP *** Player16 calls 0.05€ -Player13 folds +Hero folds Player14 folds Player4 calls 0.05€ Player15 calls 0.05€ @@ -1195,7 +1195,7 @@ Seat 4: Player5 (small blind) folded on the pre-flop Seat 5: Player7 (big blind) won 1.40€ Seat 6: Player16 folded on the pre-flop Seat 7: Player3 folded -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -1208,14 +1208,14 @@ Seat 4: Player5 (4.93€) Seat 5: Player7 (1.40€) Seat 6: Player16 (0.85€) Seat 7: Player3 (2.50€) -Seat 8: Player13 (12.14€) +Seat 8: Hero (12.14€) Seat 9: Player14 (4.94€) *** ANTE/BLINDS *** Player7 posts small blind 0.02€ Player16 posts big blind 0.05€ -Dealt to Player13 [6s 5h 2d Kh] +Dealt to Hero [6s 5h 2d Kh] *** PRE-FLOP *** -Player13 folds +Hero folds Player14 folds Player4 calls 0.05€ Player15 folds @@ -1246,7 +1246,7 @@ Seat 4: Player5 (button) folded on the flop Seat 5: Player7 (small blind) showed [As 9d 7s 4s] and won 1.76€ with Two pairs : Ace and 4 Seat 6: Player16 (big blind) showed [Kd 3s Qd 8h] and lost with Two pairs : King and Queen Seat 7: Player3 folded -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -1259,13 +1259,13 @@ Seat 4: Player5 (4.88€) Seat 5: Player7 (2.31€) Seat 6: Player19 (4€) Seat 7: Player3 (2.50€) -Seat 8: Player13 (12.14€) +Seat 8: Hero (12.14€) Seat 9: Player14 (4.94€) *** ANTE/BLINDS *** Player3 posts big blind 0.05€ -Dealt to Player13 [Jc 8s 6s Jh] +Dealt to Hero [Jc 8s 6s Jh] *** PRE-FLOP *** -Player13 calls 0.05€ +Hero calls 0.05€ Player14 folds Player4 folds Player15 folds @@ -1275,16 +1275,16 @@ Player7 folds Player3 checks *** FLOP *** [8c 8h Ad] Player3 checks -Player13 checks +Hero checks Player30 checks Player5 checks *** TURN *** [8c 8h Ad][Qh] Player3 checks -Player13 bets 0.20€ +Hero bets 0.20€ Player30 folds Player5 folds Player3 folds -Player13 collected 0.39€ from pot +Hero collected 0.39€ from pot *** SUMMARY *** Total pot 0.39€ | Rake 0.01€ Board: [8c 8h Ad Qh] @@ -1295,7 +1295,7 @@ Seat 4: Player5 folded on the turn Seat 5: Player7 (button) folded on the pre-flop Seat 6: Player19 folded Seat 7: Player3 (big blind) folded on the turn -Seat 8: Player13 won 0.39€ +Seat 8: Hero won 0.39€ Seat 9: Player14 folded on the pre-flop @@ -1307,12 +1307,12 @@ Seat 3: Player30 (11.23€) Seat 4: Player5 (4.83€) Seat 5: Player7 (2.31€) Seat 7: Player3 (2.45€) -Seat 8: Player13 (12.28€) +Seat 8: Hero (12.28€) Seat 9: Player14 (4.94€) *** ANTE/BLINDS *** Player3 posts small blind 0.02€ -Player13 posts big blind 0.05€ -Dealt to Player13 [7s 8c 6s 7c] +Hero posts big blind 0.05€ +Dealt to Hero [7s 8c 6s 7c] *** PRE-FLOP *** Player14 folds Player4 folds @@ -1321,25 +1321,25 @@ Player30 calls 0.05€ Player5 calls 0.05€ Player7 raises 0.22€ to 0.27€ Player3 folds -Player13 calls 0.22€ +Hero calls 0.22€ Player30 calls 0.22€ Player5 calls 0.22€ *** FLOP *** [Jh 5h Ad] -Player13 checks +Hero checks Player30 checks Player5 checks Player7 checks *** TURN *** [Jh 5h Ad][5c] -Player13 checks +Hero checks Player30 checks Player5 checks Player7 checks *** RIVER *** [Jh 5h Ad 5c][Qd] -Player13 checks +Hero checks Player30 checks Player5 checks Player7 bets 0.35€ -Player13 folds +Hero folds Player30 folds Player5 calls 0.35€ *** SHOW DOWN *** @@ -1355,7 +1355,7 @@ Seat 3: Player30 folded on the river Seat 4: Player5 showed [Kh Jd Ac 6h] and lost with Two pairs : Ace and Jack Seat 5: Player7 showed [Tc Th Ah As] and won 1.71€ with Full of Ace and 5 Seat 7: Player3 (small blind) folded on the pre-flop -Seat 8: Player13 (big blind) folded on the river +Seat 8: Hero (big blind) folded on the river Seat 9: Player14 folded on the pre-flop @@ -1367,12 +1367,12 @@ Seat 3: Player30 (10.96€) Seat 4: Player5 (4.21€) Seat 5: Player7 (3.40€) Seat 7: Player3 (2.43€) -Seat 8: Player13 (12.01€) +Seat 8: Hero (12.01€) Seat 9: Player14 (4.94€) *** ANTE/BLINDS *** -Player13 posts small blind 0.02€ +Hero posts small blind 0.02€ Player14 posts big blind 0.05€ -Dealt to Player13 [8s 5h 8h Qs] +Dealt to Hero [8s 5h 8h Qs] *** PRE-FLOP *** Player4 folds Player15 calls 0.05€ @@ -1380,16 +1380,16 @@ Player30 calls 0.05€ Player5 calls 0.05€ Player7 calls 0.05€ Player3 folds -Player13 calls 0.03€ +Hero calls 0.03€ Player14 checks *** FLOP *** [9h Ts Td] -Player13 checks +Hero checks Player14 checks Player15 bets 0.10€ Player30 folds Player5 calls 0.10€ Player7 folds -Player13 folds +Hero folds Player14 folds *** TURN *** [9h Ts Td][Qd] Player15 bets 0.20€ @@ -1411,7 +1411,7 @@ Seat 3: Player30 folded on the flop Seat 4: Player5 showed [Ad Ah 9d As] and won 0.95€ with Full of Ace and Ten Seat 5: Player7 folded on the flop Seat 7: Player3 (button) folded on the pre-flop -Seat 8: Player13 (small blind) folded on the flop +Seat 8: Hero (small blind) folded on the flop Seat 9: Player14 (big blind) folded on the flop @@ -1424,19 +1424,19 @@ Seat 4: Player5 (4.76€) Seat 5: Player7 (3.35€) Seat 6: Player9 (5€) Seat 7: Player3 (2.43€) -Seat 8: Player13 (11.96€) +Seat 8: Hero (11.96€) Seat 9: Player14 (4.89€) *** ANTE/BLINDS *** Player14 posts small blind 0.02€ Player4 posts big blind 0.05€ -Dealt to Player13 [7h 3s Th Ah] +Dealt to Hero [7h 3s Th Ah] *** PRE-FLOP *** Player15 folds Player30 calls 0.05€ Player5 calls 0.05€ Player7 calls 0.05€ Player3 calls 0.05€ -Player13 folds +Hero folds Player14 calls 0.03€ Player4 checks *** FLOP *** [2s 5h 5s] @@ -1470,7 +1470,7 @@ Seat 4: Player5 showed [5c Td 4h 8d] and won 0.62€ with Trips of 5 Seat 5: Player7 folded on the turn Seat 6: Player9 folded Seat 7: Player3 showed [9d 9s Js Ts] and lost with Two pairs : 9 and 5 -Seat 8: Player13 (button) folded on the pre-flop +Seat 8: Hero (button) folded on the pre-flop Seat 9: Player14 (small blind) folded on the flop @@ -1482,18 +1482,18 @@ Seat 3: Player30 (10.86€) Seat 4: Player5 (5.18€) Seat 5: Player7 (3.25€) Seat 7: Player3 (2.23€) -Seat 8: Player13 (11.96€) +Seat 8: Hero (11.96€) Seat 9: Player14 (4.84€) *** ANTE/BLINDS *** Player4 posts small blind 0.02€ Player15 posts big blind 0.05€ -Dealt to Player13 [9d 8d Ks Td] +Dealt to Hero [9d 8d Ks Td] *** PRE-FLOP *** Player30 calls 0.05€ Player5 calls 0.05€ Player7 calls 0.05€ Player3 raises 0.20€ to 0.25€ -Player13 folds +Hero folds Player14 folds Player4 folds Player15 folds @@ -1532,7 +1532,7 @@ Seat 3: Player30 folded on the river Seat 4: Player5 showed [Kc 7d 7h Ad] and won 4.01€ with Straight Ace high Seat 5: Player7 folded on the river Seat 7: Player3 showed [5c As Ah 4h] and lost with One pair : Ace -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 (button) folded on the pre-flop @@ -1545,17 +1545,17 @@ Seat 4: Player5 (7.44€) Seat 5: Player7 (2.90€) Seat 6: Player12 (5€) Seat 7: Player3 (0.48€) -Seat 8: Player13 (11.96€) +Seat 8: Hero (11.96€) Seat 9: Player14 (4.84€) *** ANTE/BLINDS *** Player15 posts small blind 0.02€ Player30 posts big blind 0.05€ -Dealt to Player13 [Kh 3h 5s Ts] +Dealt to Hero [Kh 3h 5s Ts] *** PRE-FLOP *** Player5 calls 0.05€ Player7 calls 0.05€ Player3 raises 0.22€ to 0.27€ -Player13 folds +Hero folds Player14 folds Player4 folds Player15 folds @@ -1582,7 +1582,7 @@ Seat 4: Player5 folded on the pre-flop Seat 5: Player7 showed [Ac 7h 8c Td] and lost with One pair : 9 Seat 6: Player12 folded Seat 7: Player3 showed [4h As 5c 4s] and won 1.03€ with Two pairs : 9 and 5 -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -1595,18 +1595,18 @@ Seat 4: Player5 (7.39€) Seat 5: Player7 (2.42€) Seat 6: Player12 (5€) Seat 7: Player3 (1.03€) -Seat 8: Player13 (11.96€) +Seat 8: Hero (11.96€) Seat 9: Player14 (4.84€) *** ANTE/BLINDS *** Player30 posts small blind 0.02€ Player5 posts big blind 0.05€ Player12 posts big blind 0.05€ out of position -Dealt to Player13 [6h 8h 3h 8c] +Dealt to Hero [6h 8h 3h 8c] *** PRE-FLOP *** Player7 calls 0.05€ Player12 checks Player3 raises 0.22€ to 0.27€ -Player13 folds +Hero folds Player14 folds Player4 folds Player15 calls 0.27€ @@ -1644,7 +1644,7 @@ Seat 4: Player5 (big blind) folded on the flop Seat 5: Player7 showed [Jh Th 5d 2c] and lost with Flush King high Seat 6: Player12 folded on the river Seat 7: Player3 folded on the flop -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -1657,16 +1657,16 @@ Seat 4: Player5 (7.12€) Seat 5: Player7 (1€) Seat 6: Player12 (2.58€) Seat 7: Player3 (0.76€) -Seat 8: Player13 (11.96€) +Seat 8: Hero (11.96€) Seat 9: Player14 (4.84€) *** ANTE/BLINDS *** Player5 posts small blind 0.02€ Player7 posts big blind 0.05€ -Dealt to Player13 [Ah 2d Jh 6c] +Dealt to Hero [Ah 2d Jh 6c] *** PRE-FLOP *** Player12 raises 0.12€ to 0.17€ Player3 raises 0.41€ to 0.58€ -Player13 folds +Hero folds Player14 folds Player4 folds Player15 folds @@ -1695,7 +1695,7 @@ Seat 4: Player5 (small blind) folded on the pre-flop Seat 5: Player7 (big blind) showed [8h Ad Qs Th] and won 3.17€ with Two pairs : Queen and 4 Seat 6: Player12 showed [Kc 5h Qd Ts] and won 1.58€ with Two pairs : Queen and 4 Seat 7: Player3 showed [Tc Js 8c 9h] and lost with Two pairs : Jack and 4 -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -1707,14 +1707,14 @@ Seat 4: Player5 (6.54€) Seat 5: Player7 (3.17€) Seat 6: Player12 (1.58€) Seat 7: Player20 (5€) -Seat 8: Player13 (11.96€) +Seat 8: Hero (11.96€) Seat 9: Player14 (4.84€) *** ANTE/BLINDS *** Player7 posts small blind 0.02€ Player12 posts big blind 0.05€ -Dealt to Player13 [6c 9s 7h 2h] +Dealt to Hero [6c 9s 7h 2h] *** PRE-FLOP *** -Player13 folds +Hero folds Player14 folds Player4 calls 0.05€ Player30 calls 0.05€ @@ -1739,7 +1739,7 @@ Seat 4: Player5 (button) folded on the flop Seat 5: Player7 (small blind) folded on the pre-flop Seat 6: Player12 (big blind) won 1.95€ Seat 7: Player20 folded -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -1752,14 +1752,14 @@ Seat 4: Player5 (6.24€) Seat 5: Player7 (3.12€) Seat 6: Player12 (2.23€) Seat 7: Player20 (5€) -Seat 8: Player13 (11.96€) +Seat 8: Hero (11.96€) Seat 9: Player14 (4.84€) *** ANTE/BLINDS *** Player12 posts small blind 0.02€ Player20 posts big blind 0.05€ -Dealt to Player13 [3h Jh Kc 6h] +Dealt to Hero [3h Jh Kc 6h] *** PRE-FLOP *** -Player13 folds +Hero folds Player14 folds Player4 calls 0.05€ Player30 calls 0.05€ @@ -1789,7 +1789,7 @@ Seat 4: Player5 folded on the turn Seat 5: Player7 (button) folded on the pre-flop Seat 6: Player12 (small blind) folded on the pre-flop Seat 7: Player20 (big blind) folded on the turn -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -1802,13 +1802,13 @@ Seat 4: Player5 (6.19€) Seat 5: Player7 (3.12€) Seat 6: Player10 (5€) Seat 7: Player20 (4.95€) -Seat 8: Player13 (11.96€) +Seat 8: Hero (11.96€) Seat 9: Player14 (4.84€) *** ANTE/BLINDS *** Player20 posts small blind 0.02€ -Player13 posts big blind 0.05€ +Hero posts big blind 0.05€ Player6 posts big blind 0.05€ out of position -Dealt to Player13 [Ad Qc 4s Td] +Dealt to Hero [Ad Qc 4s Td] *** PRE-FLOP *** Player14 folds Player4 calls 0.05€ @@ -1817,21 +1817,21 @@ Player30 calls 0.05€ Player5 calls 0.05€ Player7 calls 0.05€ Player20 folds -Player13 checks +Hero checks *** FLOP *** [Kd 5c 9d] -Player13 checks +Hero checks Player4 bets 0.11€ Player6 raises 0.23€ to 0.34€ Player30 folds Player5 folds Player7 folds -Player13 calls 0.34€ +Hero calls 0.34€ Player4 calls 0.23€ *** TURN *** [Kd 5c 9d][Ts] -Player13 checks +Hero checks Player4 checks Player6 bets 0.85€ and is all-in -Player13 folds +Hero folds Player4 folds Player6 collected 2.12€ from pot *** SUMMARY *** @@ -1844,7 +1844,7 @@ Seat 4: Player5 folded on the flop Seat 5: Player7 folded on the flop Seat 6: Player10 (button) folded Seat 7: Player20 (small blind) folded on the pre-flop -Seat 8: Player13 (big blind) folded on the turn +Seat 8: Hero (big blind) folded on the turn Seat 9: Player14 folded on the pre-flop @@ -1857,13 +1857,13 @@ Seat 4: Player5 (6.14€) Seat 5: Player7 (3.07€) Seat 6: Player10 (5€) Seat 7: Player20 (4.93€) -Seat 8: Player13 (11.57€) +Seat 8: Hero (11.57€) Seat 9: Player14 (5.05€) *** ANTE/BLINDS *** -Player13 posts small blind 0.02€ +Hero posts small blind 0.02€ Player14 posts big blind 0.05€ Player10 posts big blind 0.05€ out of position -Dealt to Player13 [6d 5d 9h 7h] +Dealt to Hero [6d 5d 9h 7h] *** PRE-FLOP *** Player4 calls 0.05€ Player6 calls 0.05€ @@ -1872,7 +1872,7 @@ Player5 calls 0.05€ Player7 raises 0.37€ to 0.42€ Player10 calls 0.37€ Player20 folds -Player13 folds +Hero folds Player14 folds Player4 calls 0.37€ Player6 calls 0.37€ @@ -1896,7 +1896,7 @@ Seat 4: Player5 folded on the flop Seat 5: Player7 folded on the flop Seat 6: Player10 folded on the flop Seat 7: Player20 (button) folded on the pre-flop -Seat 8: Player13 (small blind) folded on the pre-flop +Seat 8: Hero (small blind) folded on the pre-flop Seat 9: Player14 (big blind) folded on the pre-flop @@ -1909,12 +1909,12 @@ Seat 4: Player5 (5.72€) Seat 5: Player7 (2.65€) Seat 6: Player10 (4.58€) Seat 7: Player20 (4.93€) -Seat 8: Player13 (11.55€) +Seat 8: Hero (11.55€) Seat 9: Player14 (5€) *** ANTE/BLINDS *** Player14 posts small blind 0.02€ Player4 posts big blind 0.05€ -Dealt to Player13 [4d 8h 5d 4h] +Dealt to Hero [4d 8h 5d 4h] *** PRE-FLOP *** Player6 calls 0.05€ Player30 calls 0.05€ @@ -1922,7 +1922,7 @@ Player5 calls 0.05€ Player7 calls 0.05€ Player10 calls 0.05€ Player20 calls 0.05€ -Player13 calls 0.05€ +Hero calls 0.05€ Player14 calls 0.03€ Player4 checks *** FLOP *** [9h Ks 2c] @@ -1934,7 +1934,7 @@ Player5 folds Player7 folds Player10 folds Player20 folds -Player13 folds +Hero folds Player14 folds *** TURN *** [9h Ks 2c][3s] Player4 bets 0.30€ @@ -1956,7 +1956,7 @@ Seat 4: Player5 folded on the flop Seat 5: Player7 folded on the flop Seat 6: Player10 folded on the flop Seat 7: Player20 folded on the flop -Seat 8: Player13 (button) folded on the flop +Seat 8: Hero (button) folded on the flop Seat 9: Player14 (small blind) folded on the flop @@ -1969,19 +1969,19 @@ Seat 4: Player5 (5.67€) Seat 5: Player7 (2.60€) Seat 6: Player10 (4.53€) Seat 7: Player20 (4.88€) -Seat 8: Player13 (11.50€) +Seat 8: Hero (11.50€) Seat 9: Player14 (4.95€) *** ANTE/BLINDS *** Player4 posts small blind 0.02€ Player6 posts big blind 0.05€ -Dealt to Player13 [9c Kh Qc Ah] +Dealt to Hero [9c Kh Qc Ah] *** PRE-FLOP *** Player30 calls 0.05€ Player5 calls 0.05€ Player7 raises 0.22€ to 0.27€ Player10 folds Player20 calls 0.27€ -Player13 calls 0.27€ +Hero calls 0.27€ Player14 folds Player4 calls 0.25€ Player6 calls 0.22€ @@ -1993,7 +1993,7 @@ Player6 bets 0.85€ Player5 calls 0.85€ Player7 calls 0.85€ Player20 folds -Player13 folds +Hero folds Player4 folds *** TURN *** [4d 3c 7h][Kd] Player6 bets 1.10€ @@ -2018,7 +2018,7 @@ Seat 4: Player5 showed [6h As 5d 4s] and won 7.24€ with Straight 7 high Seat 5: Player7 folded on the river Seat 6: Player10 folded on the pre-flop Seat 7: Player20 folded on the flop -Seat 8: Player13 folded on the flop +Seat 8: Hero folded on the flop Seat 9: Player14 (button) folded on the pre-flop @@ -2031,32 +2031,32 @@ Seat 4: Player5 (10.64€) Seat 5: Player7 (0.38€) Seat 6: Player10 (4.53€) Seat 7: Player20 (4.61€) -Seat 8: Player13 (11.23€) +Seat 8: Hero (11.23€) Seat 9: Player14 (4.95€) *** ANTE/BLINDS *** Player6 posts small blind 0.02€ Player30 posts big blind 0.05€ -Dealt to Player13 [Jc Kh 4c Ks] +Dealt to Hero [Jc Kh 4c Ks] *** PRE-FLOP *** Player5 calls 0.05€ Player7 calls 0.05€ Player10 folds Player20 folds -Player13 calls 0.05€ +Hero calls 0.05€ Player14 folds Player4 calls 0.05€ Player6 raises 0.05€ to 0.10€ Player30 calls 0.05€ Player5 calls 0.05€ Player7 calls 0.05€ -Player13 calls 0.05€ +Hero calls 0.05€ Player4 calls 0.05€ *** FLOP *** [9c Kd 5s] Player6 bets 0.40€ Player30 folds Player5 folds Player7 calls 0.28€ and is all-in -Player13 raises 1.68€ to 2.08€ +Hero raises 1.68€ to 2.08€ Player4 folds Player6 calls 0.99€ and is all-in *** TURN *** [9c Kd 5s][Qs] @@ -2064,8 +2064,8 @@ Player6 calls 0.99€ and is all-in *** SHOW DOWN *** Player6 shows [Ah Js 5h As] (One pair : Ace) Player7 shows [Kc 6h 3d 2h] (Two pairs : King and 6) -Player13 shows [Jc Kh 4c Ks] (Trips of King) -Player13 collected 4.17€ from pot +Hero shows [Jc Kh 4c Ks] (Trips of King) +Hero collected 4.17€ from pot *** SUMMARY *** Total pot 4.17€ | Rake 0.18€ Board: [9c Kd 5s Qs 6c] @@ -2076,7 +2076,7 @@ Seat 4: Player5 folded on the flop Seat 5: Player7 showed [Kc 6h 3d 2h] and lost with Two pairs : King and 6 Seat 6: Player10 folded on the pre-flop Seat 7: Player20 folded on the pre-flop -Seat 8: Player13 showed [Jc Kh 4c Ks] and won 4.17€ with Trips of King +Seat 8: Hero showed [Jc Kh 4c Ks] and won 4.17€ with Trips of King Seat 9: Player14 folded on the pre-flop @@ -2088,16 +2088,16 @@ Seat 4: Player5 (10.54€) Seat 5: Player7 (1€) Seat 6: Player10 (5.05€) Seat 7: Player20 (4.61€) -Seat 8: Player13 (13.22€) +Seat 8: Hero (13.22€) Seat 9: Player14 (4.95€) *** ANTE/BLINDS *** Player30 posts small blind 0.02€ Player5 posts big blind 0.05€ -Dealt to Player13 [Td 9d Ad 4s] +Dealt to Hero [Td 9d Ad 4s] *** PRE-FLOP *** Player10 calls 0.05€ Player20 calls 0.05€ -Player13 calls 0.05€ +Hero calls 0.05€ Player14 calls 0.05€ Player30 calls 0.03€ Player5 checks @@ -2106,7 +2106,7 @@ Player30 checks Player5 checks Player10 checks Player20 checks -Player13 bets 0.30€ +Hero bets 0.30€ Player14 folds Player30 calls 0.30€ Player5 folds @@ -2114,12 +2114,12 @@ Player10 folds Player20 folds *** TURN *** [Qd Ts 5d][Kh] Player30 checks -Player13 checks +Hero checks *** RIVER *** [Qd Ts 5d Kh][4c] Player30 bets 0.25€ -Player13 calls 0.25€ +Hero calls 0.25€ *** SHOW DOWN *** -Player13 shows [Td 9d Ad 4s] (Two pairs : Ten and 4) +Hero shows [Td 9d Ad 4s] (Two pairs : Ten and 4) Player30 shows [Kc Jh 9h 8s] (Straight King high) Player30 collected 1.33€ from pot *** SUMMARY *** @@ -2131,7 +2131,7 @@ Seat 4: Player5 (big blind) folded on the flop Seat 5: Player7 folded Seat 6: Player10 folded on the flop Seat 7: Player20 folded on the flop -Seat 8: Player13 showed [Td 9d Ad 4s] and lost with Two pairs : Ten and 4 +Seat 8: Hero showed [Td 9d Ad 4s] and lost with Two pairs : Ten and 4 Seat 9: Player14 folded on the flop @@ -2144,16 +2144,16 @@ Seat 4: Player5 (10.49€) Seat 5: Player7 (1€) Seat 6: Player10 (5€) Seat 7: Player20 (4.56€) -Seat 8: Player13 (12.62€) +Seat 8: Hero (12.62€) Seat 9: Player14 (4.90€) *** ANTE/BLINDS *** Player5 posts small blind 0.02€ Player7 posts big blind 0.05€ Player18 posts big blind 0.05€ out of position -Dealt to Player13 [7h 2d 4s 7c] +Dealt to Hero [7h 2d 4s 7c] *** PRE-FLOP *** Player20 calls 0.05€ -Player13 folds +Hero folds Player14 folds Player18 folds Player30 calls 0.05€ @@ -2185,7 +2185,7 @@ Seat 4: Player5 (small blind) won 0.29€ Seat 5: Player7 (big blind) folded on the river Seat 6: Player10 folded Seat 7: Player20 folded on the river -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -2198,16 +2198,16 @@ Seat 4: Player5 (10.68€) Seat 5: Player7 (0.95€) Seat 6: Player10 (5€) Seat 7: Player20 (4.51€) -Seat 8: Player13 (12.62€) +Seat 8: Hero (12.62€) Seat 9: Player14 (4.90€) *** ANTE/BLINDS *** Player7 posts small blind 0.02€ Player10 posts big blind 0.05€ Player2 posts big blind 0.05€ out of position -Dealt to Player13 [Js 9s Tc Ts] +Dealt to Hero [Js 9s Tc Ts] *** PRE-FLOP *** Player20 folds -Player13 calls 0.05€ +Hero calls 0.05€ Player14 folds Player2 folds Player30 calls 0.05€ @@ -2217,26 +2217,26 @@ Player10 checks *** FLOP *** [4s Qs 5s] Player7 checks Player10 checks -Player13 checks +Hero checks Player30 checks Player5 checks *** TURN *** [4s Qs 5s][4d] Player7 checks Player10 checks -Player13 checks +Hero checks Player30 checks Player5 checks *** RIVER *** [4s Qs 5s 4d][5d] Player7 bets 0.12€ Player10 folds -Player13 calls 0.12€ +Hero calls 0.12€ Player30 folds Player5 calls 0.12€ *** SHOW DOWN *** Player5 shows [Ac Kc 7d Ad] (Two pairs : Ace and 5) Player7 shows [5h 6d 6h 2c] (Trips of 5) -Player13 shows [Js 9s Tc Ts] (Flush Queen high) -Player13 collected 0.63€ from pot +Hero shows [Js 9s Tc Ts] (Flush Queen high) +Hero collected 0.63€ from pot *** SUMMARY *** Total pot 0.63€ | Rake 0.03€ Board: [4s Qs 5s 4d 5d] @@ -2247,7 +2247,7 @@ Seat 4: Player5 (button) showed [Ac Kc 7d Ad] and lost with Two pairs : Ace and Seat 5: Player7 (small blind) showed [5h 6d 6h 2c] and lost with Trips of 5 Seat 6: Player10 (big blind) folded on the river Seat 7: Player20 folded on the pre-flop -Seat 8: Player13 showed [Js 9s Tc Ts] and won 0.63€ with Flush Queen high +Seat 8: Hero showed [Js 9s Tc Ts] and won 0.63€ with Flush Queen high Seat 9: Player14 folded on the pre-flop @@ -2260,15 +2260,15 @@ Seat 4: Player5 (10.51€) Seat 5: Player7 (0.78€) Seat 6: Player10 (4.95€) Seat 7: Player20 (4.51€) -Seat 8: Player13 (13.08€) +Seat 8: Hero (13.08€) Seat 9: Player14 (4.90€) *** ANTE/BLINDS *** Player10 posts small blind 0.02€ Player20 posts big blind 0.05€ Player22 posts big blind 0.05€ out of position -Dealt to Player13 [Jd 6s 9c Qh] +Dealt to Hero [Jd 6s 9c Qh] *** PRE-FLOP *** -Player13 calls 0.05€ +Hero calls 0.05€ Player14 folds Player22 checks Player30 calls 0.05€ @@ -2279,14 +2279,14 @@ Player20 checks *** FLOP *** [Qd 3s 2c] Player10 checks Player20 checks -Player13 checks +Hero checks Player22 checks Player30 checks Player5 checks Player7 bets 0.35€ Player10 folds Player20 folds -Player13 folds +Hero folds Player22 folds Player30 folds Player5 calls 0.35€ @@ -2309,7 +2309,7 @@ Seat 4: Player5 showed [6h 9s Ac Ah] and lost with One pair : Ace Seat 5: Player7 (button) showed [Qc 4d 5c 3d] and won 1.72€ with Two pairs : Queen and 3 Seat 6: Player10 (small blind) folded on the flop Seat 7: Player20 (big blind) folded on the flop -Seat 8: Player13 folded on the flop +Seat 8: Hero folded on the flop Seat 9: Player14 folded on the pre-flop @@ -2322,13 +2322,13 @@ Seat 4: Player5 (9.73€) Seat 5: Player7 (1.72€) Seat 6: Player10 (4.90€) Seat 7: Player20 (4.46€) -Seat 8: Player13 (13.03€) +Seat 8: Hero (13.03€) Seat 9: Player14 (4.90€) *** ANTE/BLINDS *** Player20 posts small blind 0.02€ -Player13 posts big blind 0.05€ +Hero posts big blind 0.05€ Player27 posts big blind 0.05€ out of position -Dealt to Player13 [Js 3c 3d 9d] +Dealt to Hero [Js 3c 3d 9d] *** PRE-FLOP *** Player14 folds Player22 folds @@ -2338,14 +2338,14 @@ Player5 calls 0.05€ Player7 calls 0.05€ Player10 folds Player20 folds -Player13 checks +Hero checks *** FLOP *** [Ac Kd Tc] -Player13 checks +Hero checks Player27 checks Player30 checks Player5 bets 0.05€ Player7 folds -Player13 folds +Hero folds Player27 calls 0.05€ Player30 folds *** TURN *** [Ac Kd Tc][Jh] @@ -2370,7 +2370,7 @@ Seat 4: Player5 showed [Jc Qh Ks 6h] and won 2.44€ with Full of King and Jack Seat 5: Player7 folded on the flop Seat 6: Player10 (button) folded on the pre-flop Seat 7: Player20 (small blind) folded on the pre-flop -Seat 8: Player13 (big blind) folded on the flop +Seat 8: Hero (big blind) folded on the flop Seat 9: Player14 folded on the pre-flop @@ -2382,12 +2382,12 @@ Seat 4: Player5 (10.79€) Seat 5: Player7 (1.67€) Seat 6: Player10 (4.90€) Seat 7: Player20 (4.44€) -Seat 8: Player13 (12.98€) +Seat 8: Hero (12.98€) Seat 9: Player14 (4.90€) *** ANTE/BLINDS *** -Player13 posts small blind 0.02€ +Hero posts small blind 0.02€ Player14 posts big blind 0.05€ -Dealt to Player13 [Qc Jc 6s Qd] +Dealt to Hero [Qc Jc 6s Qd] *** PRE-FLOP *** Player22 calls 0.05€ Player30 folds @@ -2395,17 +2395,17 @@ Player5 calls 0.05€ Player7 calls 0.05€ Player10 calls 0.05€ Player20 calls 0.05€ -Player13 calls 0.03€ +Hero calls 0.03€ Player14 checks *** FLOP *** [2d Kc Jd] -Player13 checks +Hero checks Player14 checks Player22 bets 0.18€ Player5 calls 0.18€ Player7 calls 0.18€ Player10 folds Player20 calls 0.18€ -Player13 folds +Hero folds Player14 folds *** TURN *** [2d Kc Jd][2h] Player22 checks @@ -2433,7 +2433,7 @@ Seat 4: Player5 folded on the turn Seat 5: Player7 folded on the turn Seat 6: Player10 folded on the flop Seat 7: Player20 (button) showed [2c Td Kd 3c] and lost with Full of 2 and King -Seat 8: Player13 (small blind) folded on the flop +Seat 8: Hero (small blind) folded on the flop Seat 9: Player14 (big blind) folded on the flop @@ -2445,19 +2445,19 @@ Seat 4: Player5 (10.56€) Seat 5: Player7 (1.44€) Seat 6: Player10 (4.85€) Seat 7: Player20 (5€) -Seat 8: Player13 (12.93€) +Seat 8: Hero (12.93€) Seat 9: Player14 (4.85€) *** ANTE/BLINDS *** Player14 posts small blind 0.02€ Player22 posts big blind 0.05€ -Dealt to Player13 [Js 2h Td Jd] +Dealt to Hero [Js 2h Td Jd] *** PRE-FLOP *** Player30 calls 0.05€ Player5 calls 0.05€ Player7 folds Player10 calls 0.05€ Player20 folds -Player13 folds +Hero folds Player14 folds Player22 checks *** FLOP *** [7d Ad 8h] @@ -2490,7 +2490,7 @@ Seat 4: Player5 showed [5s 8d 6s 6h] and lost with Trips of 6 Seat 5: Player7 folded on the pre-flop Seat 6: Player10 showed [Kc Ah Jh 3h] and lost with One pair : Ace Seat 7: Player20 folded on the pre-flop -Seat 8: Player13 (button) folded on the pre-flop +Seat 8: Hero (button) folded on the pre-flop Seat 9: Player14 (small blind) folded on the pre-flop @@ -2502,18 +2502,18 @@ Seat 4: Player5 (10.51€) Seat 5: Player7 (1.44€) Seat 6: Player10 (5.05€) Seat 7: Player20 (5€) -Seat 8: Player13 (12.93€) +Seat 8: Hero (12.93€) Seat 9: Player14 (4.83€) *** ANTE/BLINDS *** Player30 deny BB 0€ Player22 posts small blind 0.02€ Player5 posts big blind 0.05€ -Dealt to Player13 [Js Td 8d 6h] +Dealt to Hero [Js Td 8d 6h] *** PRE-FLOP *** Player7 folds Player10 calls 0.05€ Player20 folds -Player13 calls 0.05€ +Hero calls 0.05€ Player14 folds Player22 calls 0.03€ Player5 checks @@ -2521,17 +2521,17 @@ Player5 checks Player22 checks Player5 checks Player10 checks -Player13 checks +Hero checks *** TURN *** [7h 2c Ah][4c] Player22 checks Player5 checks Player10 checks -Player13 checks +Hero checks *** RIVER *** [7h 2c Ah 4c][Qs] Player22 checks Player5 bets 0.05€ Player10 folds -Player13 folds +Hero folds Player22 folds Player5 collected 0.24€ from pot *** SUMMARY *** @@ -2543,7 +2543,7 @@ Seat 4: Player5 (big blind) won 0.24€ Seat 5: Player7 folded on the pre-flop Seat 6: Player10 folded on the river Seat 7: Player20 folded on the pre-flop -Seat 8: Player13 folded on the river +Seat 8: Hero folded on the river Seat 9: Player14 (button) folded on the pre-flop @@ -2554,21 +2554,21 @@ Seat 4: Player5 (10.65€) Seat 5: Player7 (1.44€) Seat 6: Player10 (5€) Seat 7: Player20 (5€) -Seat 8: Player13 (12.88€) +Seat 8: Hero (12.88€) Seat 9: Player14 (4.83€) *** ANTE/BLINDS *** Player5 posts small blind 0.02€ Player7 posts big blind 0.05€ -Dealt to Player13 [3s Qd 7s Qs] +Dealt to Hero [3s Qd 7s Qs] *** PRE-FLOP *** Player10 folds Player20 folds -Player13 calls 0.05€ +Hero calls 0.05€ Player14 folds Player22 calls 0.05€ Player5 calls 0.03€ Player7 raises 0.20€ to 0.25€ -Player13 folds +Hero folds Player22 calls 0.20€ Player5 calls 0.20€ *** FLOP *** [Ad Qh 2s] @@ -2594,7 +2594,7 @@ Seat 4: Player5 (small blind) folded on the flop Seat 5: Player7 (big blind) showed [Ts Tc Js Kc] and won 2.28€ with One pair : Ten Seat 6: Player10 folded on the pre-flop Seat 7: Player20 folded on the pre-flop -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -2606,15 +2606,15 @@ Seat 4: Player5 (10.40€) Seat 5: Player7 (2.67€) Seat 6: Player10 (5€) Seat 7: Player20 (5€) -Seat 8: Player13 (12.83€) +Seat 8: Hero (12.83€) Seat 9: Player14 (4.83€) *** ANTE/BLINDS *** Player7 posts small blind 0.02€ Player10 posts big blind 0.05€ -Dealt to Player13 [Ah Jc 9h 6d] +Dealt to Hero [Ah Jc 9h 6d] *** PRE-FLOP *** Player20 calls 0.05€ -Player13 folds +Hero folds Player14 folds Player22 calls 0.05€ Player5 calls 0.05€ @@ -2647,7 +2647,7 @@ Seat 4: Player5 (button) showed [5h 5d Kd Kh] and won 2.71€ with Full of 3 and Seat 5: Player7 (small blind) showed [Ac Th 2s Qc] and lost with Flush Ace high Seat 6: Player10 (big blind) folded on the pre-flop Seat 7: Player20 folded on the pre-flop -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -2659,15 +2659,15 @@ Seat 4: Player5 (11.76€) Seat 5: Player7 (1.32€) Seat 6: Player10 (4.95€) Seat 7: Player20 (4.95€) -Seat 8: Player13 (12.83€) +Seat 8: Hero (12.83€) Seat 9: Player14 (4.83€) *** ANTE/BLINDS *** Player10 posts small blind 0.02€ Player20 posts big blind 0.05€ Player26 posts big blind 0.05€ out of position -Dealt to Player13 [Kh 8d Tc 8s] +Dealt to Hero [Kh 8d Tc 8s] *** PRE-FLOP *** -Player13 folds +Hero folds Player14 folds Player22 calls 0.05€ Player26 checks @@ -2699,7 +2699,7 @@ Seat 4: Player5 showed [5c Ad As 9s] and won 2.93€ with Full of Ace and 2 Seat 5: Player7 (button) showed [8c Ks Kc 7d] and lost with Two pairs : King and 2 Seat 6: Player10 (small blind) folded on the pre-flop Seat 7: Player20 (big blind) folded on the pre-flop -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -2711,12 +2711,12 @@ Seat 4: Player5 (13.37€) Seat 5: Player7 (1€) Seat 6: Player10 (4.93€) Seat 7: Player20 (4.90€) -Seat 8: Player13 (12.83€) +Seat 8: Hero (12.83€) Seat 9: Player14 (4.83€) *** ANTE/BLINDS *** Player20 posts small blind 0.02€ -Player13 posts big blind 0.05€ -Dealt to Player13 [Qd Ks 5h Ac] +Hero posts big blind 0.05€ +Dealt to Hero [Qd Ks 5h Ac] *** PRE-FLOP *** Player14 folds Player22 calls 0.05€ @@ -2725,13 +2725,13 @@ Player5 calls 0.05€ Player7 calls 0.05€ Player10 folds Player20 folds -Player13 checks +Hero checks *** FLOP *** [4d 2s 8c] -Player13 checks +Hero checks Player22 checks Player5 checks Player7 bets 0.22€ -Player13 folds +Hero folds Player22 calls 0.22€ Player5 folds *** TURN *** [4d 2s 8c][4s] @@ -2755,7 +2755,7 @@ Seat 4: Player5 folded on the flop Seat 5: Player7 showed [7d 5d 3h 8h] and lost with Two pairs : 8 and 4 Seat 6: Player10 (button) folded on the pre-flop Seat 7: Player20 (small blind) folded on the pre-flop -Seat 8: Player13 (big blind) folded on the flop +Seat 8: Hero (big blind) folded on the flop Seat 9: Player14 folded on the pre-flop @@ -2766,19 +2766,19 @@ Seat 4: Player5 (13.32€) Seat 5: Player7 (1€) Seat 6: Player10 (4.93€) Seat 7: Player20 (4.88€) -Seat 8: Player13 (12.78€) +Seat 8: Hero (12.78€) Seat 9: Player14 (4.83€) *** ANTE/BLINDS *** -Player13 posts small blind 0.02€ +Hero posts small blind 0.02€ Player14 posts big blind 0.05€ -Dealt to Player13 [Ts 2c 3d 9h] +Dealt to Hero [Ts 2c 3d 9h] *** PRE-FLOP *** Player22 calls 0.05€ Player5 calls 0.05€ Player7 calls 0.05€ Player10 folds Player20 calls 0.05€ -Player13 folds +Hero folds Player14 checks *** FLOP *** [7s 3c 8s] Player14 checks @@ -2813,7 +2813,7 @@ Seat 4: Player5 showed [Qh 5s 4c 6h] and lost with One pair : 8 Seat 5: Player7 showed [9d Kc 6s Js] and lost with One pair : 8 Seat 6: Player10 folded on the pre-flop Seat 7: Player20 (button) showed [Ks As Jh 2d] and lost with One pair : 8 -Seat 8: Player13 (small blind) folded on the pre-flop +Seat 8: Hero (small blind) folded on the pre-flop Seat 9: Player14 (big blind) showed [6d 4s Th Jd] and lost with One pair : 8 @@ -2824,18 +2824,18 @@ Seat 4: Player5 (13.27€) Seat 5: Player7 (0.95€) Seat 6: Player10 (4.93€) Seat 7: Player20 (4.83€) -Seat 8: Player13 (12.76€) +Seat 8: Hero (12.76€) Seat 9: Player14 (4.78€) *** ANTE/BLINDS *** Player14 posts small blind 0.02€ Player22 posts big blind 0.05€ -Dealt to Player13 [Ad Qc 6d 9c] +Dealt to Hero [Ad Qc 6d 9c] *** PRE-FLOP *** Player5 calls 0.05€ Player7 calls 0.05€ Player10 calls 0.05€ Player20 calls 0.05€ -Player13 calls 0.05€ +Hero calls 0.05€ Player14 calls 0.03€ Player22 checks *** FLOP *** [Ks 6h 5s] @@ -2845,7 +2845,7 @@ Player5 checks Player7 checks Player10 bets 0.35€ Player20 folds -Player13 folds +Hero folds Player14 folds Player22 folds Player5 folds @@ -2859,7 +2859,7 @@ Seat 4: Player5 folded on the flop Seat 5: Player7 folded on the flop Seat 6: Player10 won 0.68€ Seat 7: Player20 folded on the flop -Seat 8: Player13 (button) folded on the flop +Seat 8: Hero (button) folded on the flop Seat 9: Player14 (small blind) folded on the flop @@ -2870,17 +2870,17 @@ Seat 4: Player5 (13.22€) Seat 5: Player7 (0.90€) Seat 6: Player10 (5.21€) Seat 7: Player20 (4.78€) -Seat 8: Player13 (12.71€) +Seat 8: Hero (12.71€) Seat 9: Player14 (4.73€) *** ANTE/BLINDS *** Player22 posts small blind 0.02€ Player5 posts big blind 0.05€ -Dealt to Player13 [9d 7s 3c Jc] +Dealt to Hero [9d 7s 3c Jc] *** PRE-FLOP *** Player7 calls 0.05€ Player10 folds Player20 calls 0.05€ -Player13 folds +Hero folds Player14 folds Player22 calls 0.03€ Player5 checks @@ -2900,7 +2900,7 @@ Seat 4: Player5 (big blind) folded on the flop Seat 5: Player7 won 0.39€ Seat 6: Player10 folded on the pre-flop Seat 7: Player20 folded on the flop -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 (button) folded on the pre-flop @@ -2912,16 +2912,16 @@ Seat 4: Player5 (13.17€) Seat 5: Player7 (1.04€) Seat 6: Player10 (5.21€) Seat 7: Player20 (4.73€) -Seat 8: Player13 (12.71€) +Seat 8: Hero (12.71€) Seat 9: Player14 (4.73€) *** ANTE/BLINDS *** Player5 posts small blind 0.02€ Player7 posts big blind 0.05€ -Dealt to Player13 [Th 2s 7s Qc] +Dealt to Hero [Th 2s 7s Qc] *** PRE-FLOP *** Player10 folds Player20 calls 0.05€ -Player13 folds +Hero folds Player14 folds Player22 calls 0.05€ Player5 calls 0.03€ @@ -2947,7 +2947,7 @@ Seat 4: Player5 (small blind) folded on the turn Seat 5: Player7 (big blind) folded on the flop Seat 6: Player10 folded on the pre-flop Seat 7: Player20 won 1.17€ -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -2960,16 +2960,16 @@ Seat 4: Player5 (12.92€) Seat 5: Player7 (0.99€) Seat 6: Player10 (5.21€) Seat 7: Player20 (5.05€) -Seat 8: Player13 (12.71€) +Seat 8: Hero (12.71€) Seat 9: Player14 (4.73€) *** ANTE/BLINDS *** Player7 posts small blind 0.02€ Player10 posts big blind 0.05€ Player25 posts big blind 0.05€ out of position -Dealt to Player13 [9h 3c 4h 4c] +Dealt to Hero [9h 3c 4h 4c] *** PRE-FLOP *** Player20 folds -Player13 folds +Hero folds Player14 calls 0.05€ Player22 calls 0.05€ Player25 raises 0.22€ to 0.27€ @@ -3004,7 +3004,7 @@ Seat 4: Player5 (button) folded on the flop Seat 5: Player7 (small blind) showed [Ad Jc Jh 6c] and won 3.38€ with Quads of Jack Seat 6: Player10 (big blind) showed [7c 7d 6h 8s] and won 0.22€ with Full of 7 and Jack Seat 7: Player20 folded on the pre-flop -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -3016,14 +3016,14 @@ Seat 4: Player5 (12.65€) Seat 5: Player7 (3.38€) Seat 6: Player10 (5.02€) Seat 7: Player20 (5.05€) -Seat 8: Player13 (12.71€) +Seat 8: Hero (12.71€) Seat 9: Player14 (4.68€) *** ANTE/BLINDS *** Player10 posts small blind 0.02€ Player20 posts big blind 0.05€ -Dealt to Player13 [Qs 3s 3c Ah] +Dealt to Hero [Qs 3s 3c Ah] *** PRE-FLOP *** -Player13 folds +Hero folds Player14 folds Player22 calls 0.05€ Player25 raises 0.17€ to 0.22€ @@ -3055,7 +3055,7 @@ Seat 4: Player5 folded on the turn Seat 5: Player7 (button) showed [7s Td Ks Kc] and won 3.85€ with Quads of King Seat 6: Player10 (small blind) folded on the pre-flop Seat 7: Player20 (big blind) folded on the pre-flop -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 folded on the pre-flop @@ -3067,12 +3067,12 @@ Seat 4: Player5 (11.65€) Seat 5: Player7 (5.23€) Seat 6: Player10 (5€) Seat 7: Player20 (5€) -Seat 8: Player13 (12.71€) +Seat 8: Hero (12.71€) Seat 9: Player14 (4.68€) *** ANTE/BLINDS *** Player20 posts small blind 0.02€ -Player13 posts big blind 0.05€ -Dealt to Player13 [9c 5h 8d 6s] +Hero posts big blind 0.05€ +Dealt to Hero [9c 5h 8d 6s] *** PRE-FLOP *** Player14 folds Player22 folds @@ -3080,20 +3080,20 @@ Player5 calls 0.05€ Player7 folds Player10 folds Player20 folds -Player13 checks +Hero checks *** FLOP *** [Ad 6h Js] -Player13 checks +Hero checks Player5 checks *** TURN *** [Ad 6h Js][6c] -Player13 checks +Hero checks Player5 checks *** RIVER *** [Ad 6h Js 6c][7s] -Player13 checks +Hero checks Player5 checks *** SHOW DOWN *** Player5 shows [3c 3d Ac Th] (Two pairs : Ace and 6) -Player13 shows [9c 5h 8d 6s] (Trips of 6) -Player13 collected 0.11€ from pot +Hero shows [9c 5h 8d 6s] (Trips of 6) +Hero collected 0.11€ from pot *** SUMMARY *** Total pot 0.11€ | Rake 0.01€ Board: [Ad 6h Js 6c 7s] @@ -3103,7 +3103,7 @@ Seat 4: Player5 showed [3c 3d Ac Th] and lost with Two pairs : Ace and 6 Seat 5: Player7 folded on the pre-flop Seat 6: Player10 (button) folded on the pre-flop Seat 7: Player20 (small blind) folded on the pre-flop -Seat 8: Player13 (big blind) showed [9c 5h 8d 6s] and won 0.11€ with Trips of 6 +Seat 8: Hero (big blind) showed [9c 5h 8d 6s] and won 0.11€ with Trips of 6 Seat 9: Player14 folded on the pre-flop @@ -3115,13 +3115,13 @@ Seat 4: Player5 (11.60€) Seat 5: Player7 (5.23€) Seat 6: Player10 (5€) Seat 7: Player20 (4.98€) -Seat 8: Player13 (12.77€) +Seat 8: Hero (12.77€) Seat 9: Player14 (4.68€) *** ANTE/BLINDS *** -Player13 posts small blind 0.02€ +Hero posts small blind 0.02€ Player14 posts big blind 0.05€ Player24 posts big blind 0.05€ out of position -Dealt to Player13 [Kh 7s Qs Tc] +Dealt to Hero [Kh 7s Qs Tc] *** PRE-FLOP *** Player22 calls 0.05€ Player24 folds @@ -3129,23 +3129,23 @@ Player5 calls 0.05€ Player7 calls 0.05€ Player10 folds Player20 calls 0.05€ -Player13 calls 0.03€ +Hero calls 0.03€ Player14 checks *** FLOP *** [4h 3c 6d] -Player13 checks +Hero checks Player14 checks Player22 checks Player5 checks Player7 checks Player20 checks *** TURN *** [4h 3c 6d][7c] -Player13 checks +Hero checks Player14 checks Player22 bets 0.35€ Player5 calls 0.35€ Player7 folds Player20 folds -Player13 folds +Hero folds Player14 folds *** RIVER *** [4h 3c 6d 7c][Jd] Player22 bets 1.05€ @@ -3163,7 +3163,7 @@ Seat 4: Player5 showed [3s Js Qh 5s] and lost with Straight 7 high Seat 5: Player7 folded on the turn Seat 6: Player10 folded on the pre-flop Seat 7: Player20 (button) folded on the turn -Seat 8: Player13 (small blind) folded on the turn +Seat 8: Hero (small blind) folded on the turn Seat 9: Player14 (big blind) folded on the turn @@ -3174,18 +3174,18 @@ Seat 4: Player5 (10.15€) Seat 5: Player7 (5.18€) Seat 6: Player10 (5€) Seat 7: Player20 (4.93€) -Seat 8: Player13 (12.72€) +Seat 8: Hero (12.72€) Seat 9: Player14 (4.63€) *** ANTE/BLINDS *** Player14 posts small blind 0.02€ Player22 posts big blind 0.05€ -Dealt to Player13 [7d Kc Jd Td] +Dealt to Hero [7d Kc Jd Td] *** PRE-FLOP *** Player5 calls 0.05€ Player7 calls 0.05€ Player10 calls 0.05€ Player20 calls 0.05€ -Player13 calls 0.05€ +Hero calls 0.05€ Player14 calls 0.03€ Player22 checks *** FLOP *** [2h 9d 2s] @@ -3195,7 +3195,7 @@ Player5 checks Player7 checks Player10 checks Player20 checks -Player13 checks +Hero checks *** TURN *** [2h 9d 2s][3s] Player14 bets 0.35€ Player22 folds @@ -3203,7 +3203,7 @@ Player5 folds Player7 folds Player10 folds Player20 folds -Player13 folds +Hero folds Player14 collected 0.68€ from pot *** SUMMARY *** Total pot 0.68€ | Rake 0.02€ @@ -3213,7 +3213,7 @@ Seat 4: Player5 folded on the turn Seat 5: Player7 folded on the turn Seat 6: Player10 folded on the turn Seat 7: Player20 folded on the turn -Seat 8: Player13 (button) folded on the turn +Seat 8: Hero (button) folded on the turn Seat 9: Player14 (small blind) won 0.68€ @@ -3223,15 +3223,15 @@ Seat 4: Player5 (10.10€) Seat 5: Player7 (5.13€) Seat 6: Player10 (4.95€) Seat 7: Player20 (4.88€) -Seat 8: Player13 (12.67€) +Seat 8: Hero (12.67€) Seat 9: Player14 (4.91€) *** ANTE/BLINDS *** Player7 posts big blind 0.05€ -Dealt to Player13 [5s 8h Td 2h] +Dealt to Hero [5s 8h Td 2h] *** PRE-FLOP *** Player10 calls 0.05€ Player20 folds -Player13 folds +Hero folds Player14 folds Player7 raises 0.10€ to 0.15€ Player10 calls 0.10€ @@ -3246,7 +3246,7 @@ Seat 4: Player5 folded Seat 5: Player7 (big blind) won 0.38€ Seat 6: Player10 folded on the flop Seat 7: Player20 folded on the pre-flop -Seat 8: Player13 folded on the pre-flop +Seat 8: Hero folded on the pre-flop Seat 9: Player14 (button) folded on the pre-flop diff --git a/pyfpdb/regression-test-files/cash/iPoker/Stud/7-StudHL-USD-0.05-0.10-201009.txt b/pyfpdb/regression-test-files/cash/iPoker/Stud/7-StudHL-USD-0.05-0.10-201009.txt index 13c20945..65c16c26 100644 --- a/pyfpdb/regression-test-files/cash/iPoker/Stud/7-StudHL-USD-0.05-0.10-201009.txt +++ b/pyfpdb/regression-test-files/cash/iPoker/Stud/7-StudHL-USD-0.05-0.10-201009.txt @@ -19,49 +19,49 @@ <general> <startdate>2010-09-05 13:00:46</startdate> <players> - <player seat="1" name="exStingray" chips="$1" dealer="1" win="$0" bet="$0.01" /><player seat="2" name="Binghai" chips="$0.73" dealer="0" win="$0.13" bet="$0.03" /><player seat="3" name="" chips="$0" dealer="0" win="$0" bet="$0" /><player seat="4" name="FENGLIUDUSHENG" chips="$1.23" dealer="0" win="$0" bet="$0.01" /><player seat="5" name="komanchi7" chips="$0.59" dealer="0" win="$0" bet="$0.01" /><player seat="6" name="Qekz406" chips="$2.20" dealer="0" win="$0" bet="$0.03" /><player seat="7" name="axi0matic" chips="$3" dealer="0" win="$0" bet="$0.01" /><player seat="8" name="" chips="$0" dealer="0" win="$0" bet="$0" /><player seat="9" name="ad1028" chips="$3.58" dealer="0" win="$0" bet="$0" /><player seat="10" name="Zsuzsanna" chips="$0.83" dealer="0" win="$0" bet="$0.03" /> + <player seat="1" name="exStingray" chips="$1" dealer="1" win="$0" bet="$0.01" /><player seat="2" name="Hero" chips="$0.73" dealer="0" win="$0.13" bet="$0.03" /><player seat="3" name="" chips="$0" dealer="0" win="$0" bet="$0" /><player seat="4" name="FENGLIUDUSHENG" chips="$1.23" dealer="0" win="$0" bet="$0.01" /><player seat="5" name="komanchi7" chips="$0.59" dealer="0" win="$0" bet="$0.01" /><player seat="6" name="Qekz406" chips="$2.20" dealer="0" win="$0" bet="$0.03" /><player seat="7" name="axi0matic" chips="$3" dealer="0" win="$0" bet="$0.01" /><player seat="8" name="" chips="$0" dealer="0" win="$0" bet="$0" /><player seat="9" name="ad1028" chips="$3.58" dealer="0" win="$0" bet="$0" /><player seat="10" name="Zsuzsanna" chips="$0.83" dealer="0" win="$0" bet="$0.03" /> </players> </general> <round no="0"> - <action no="1" player="exStingray" type="15" sum="$0.01" cards="[cards]"/><action no="2" player="Binghai" type="15" sum="$0.01" cards="[cards]"/><action no="3" player="FENGLIUDUSHENG" type="15" sum="$0.01" cards="[cards]"/><action no="4" player="komanchi7" type="15" sum="$0.01" cards="[cards]"/><action no="5" player="Qekz406" type="15" sum="$0.01" cards="[cards]"/><action no="6" player="axi0matic" type="15" sum="$0.01" cards="[cards]"/><action no="7" player="Zsuzsanna" type="15" sum="$0.01" cards="[cards]"/> + <action no="1" player="exStingray" type="15" sum="$0.01" cards="[cards]"/><action no="2" player="Hero" type="15" sum="$0.01" cards="[cards]"/><action no="3" player="FENGLIUDUSHENG" type="15" sum="$0.01" cards="[cards]"/><action no="4" player="komanchi7" type="15" sum="$0.01" cards="[cards]"/><action no="5" player="Qekz406" type="15" sum="$0.01" cards="[cards]"/><action no="6" player="axi0matic" type="15" sum="$0.01" cards="[cards]"/><action no="7" player="Zsuzsanna" type="15" sum="$0.01" cards="[cards]"/> </round> <round no="1"> </round> <round no="2"> - <cards type="Third Street" player="exStingray">X X H6</cards><action no="14" player="exStingray" type="0" sum="$0" cards=""/><cards type="Third Street" player="Binghai">H8 D7 C2</cards><action no="8" player="Binghai" type="16" sum="$0.02" cards=""/><cards type="Third Street" player="FENGLIUDUSHENG">X X HA</cards><action no="9" player="FENGLIUDUSHENG" type="0" sum="$0" cards=""/><cards type="Third Street" player="komanchi7">X X CQ</cards><action no="10" player="komanchi7" type="0" sum="$0" cards=""/><cards type="Third Street" player="Qekz406">H9 S6 C7</cards><action no="11" player="Qekz406" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="axi0matic">X X CK</cards><action no="12" player="axi0matic" type="0" sum="$0" cards=""/><cards type="Third Street" player="Zsuzsanna">D8 HJ HK</cards><action no="13" player="Zsuzsanna" type="3" sum="$0.02" cards=""/> + <cards type="Third Street" player="exStingray">X X H6</cards><action no="14" player="exStingray" type="0" sum="$0" cards=""/><cards type="Third Street" player="Hero">H8 D7 C2</cards><action no="8" player="Hero" type="16" sum="$0.02" cards=""/><cards type="Third Street" player="FENGLIUDUSHENG">X X HA</cards><action no="9" player="FENGLIUDUSHENG" type="0" sum="$0" cards=""/><cards type="Third Street" player="komanchi7">X X CQ</cards><action no="10" player="komanchi7" type="0" sum="$0" cards=""/><cards type="Third Street" player="Qekz406">H9 S6 C7</cards><action no="11" player="Qekz406" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="axi0matic">X X CK</cards><action no="12" player="axi0matic" type="0" sum="$0" cards=""/><cards type="Third Street" player="Zsuzsanna">D8 HJ HK</cards><action no="13" player="Zsuzsanna" type="3" sum="$0.02" cards=""/> </round> <round no="3"> - <cards type="Fourth Street" player="Binghai">C5</cards><action no="16" player="Binghai" type="4" sum="$0" cards=""/><cards type="Fourth Street" player="Qekz406">S10</cards><action no="17" player="Qekz406" type="4" sum="$0" cards=""/><cards type="Fourth Street" player="Zsuzsanna">C10</cards><action no="15" player="Zsuzsanna" type="4" sum="$0" cards=""/> + <cards type="Fourth Street" player="Hero">C5</cards><action no="16" player="Hero" type="4" sum="$0" cards=""/><cards type="Fourth Street" player="Qekz406">S10</cards><action no="17" player="Qekz406" type="4" sum="$0" cards=""/><cards type="Fourth Street" player="Zsuzsanna">C10</cards><action no="15" player="Zsuzsanna" type="4" sum="$0" cards=""/> </round> <round no="4"> - <cards type="Fifth Street" player="Binghai">H2</cards><action no="20" player="Binghai" type="4" sum="$0" cards=""/><cards type="Fifth Street" player="Qekz406">D10</cards><action no="18" player="Qekz406" type="4" sum="$0" cards=""/><cards type="Fifth Street" player="Zsuzsanna">H7</cards><action no="19" player="Zsuzsanna" type="4" sum="$0" cards=""/> + <cards type="Fifth Street" player="Hero">H2</cards><action no="20" player="Hero" type="4" sum="$0" cards=""/><cards type="Fifth Street" player="Qekz406">D10</cards><action no="18" player="Qekz406" type="4" sum="$0" cards=""/><cards type="Fifth Street" player="Zsuzsanna">H7</cards><action no="19" player="Zsuzsanna" type="4" sum="$0" cards=""/> </round> <round no="5"> - <cards type="Sixth Street" player="Binghai">H4</cards><action no="23" player="Binghai" type="4" sum="$0" cards=""/><cards type="Sixth Street" player="Qekz406">D2</cards><action no="21" player="Qekz406" type="4" sum="$0" cards=""/><cards type="Sixth Street" player="Zsuzsanna">H3</cards><action no="22" player="Zsuzsanna" type="4" sum="$0" cards=""/> + <cards type="Sixth Street" player="Hero">H4</cards><action no="23" player="Hero" type="4" sum="$0" cards=""/><cards type="Sixth Street" player="Qekz406">D2</cards><action no="21" player="Qekz406" type="4" sum="$0" cards=""/><cards type="Sixth Street" player="Zsuzsanna">H3</cards><action no="22" player="Zsuzsanna" type="4" sum="$0" cards=""/> </round> <round no="6"> - <cards type="River" player="Binghai">C4</cards><action no="26" player="Binghai" type="4" sum="$0" cards=""/><cards type="River" player="Qekz406">DQ</cards><action no="24" player="Qekz406" type="4" sum="$0" cards=""/><cards type="River" player="Zsuzsanna">DK</cards><action no="25" player="Zsuzsanna" type="4" sum="$0" cards=""/> + <cards type="River" player="Hero">C4</cards><action no="26" player="Hero" type="4" sum="$0" cards=""/><cards type="River" player="Qekz406">DQ</cards><action no="24" player="Qekz406" type="4" sum="$0" cards=""/><cards type="River" player="Zsuzsanna">DK</cards><action no="25" player="Zsuzsanna" type="4" sum="$0" cards=""/> </round> </game><game gamecode="2418630592"> <general> <startdate>2010-09-05 13:01:58</startdate> <players> - <player seat="1" name="exStingray" chips="$0.99" dealer="1" win="$0" bet="$0.03" /><player seat="2" name="Binghai" chips="$0.83" dealer="0" win="$0" bet="$0.03" /><player seat="3" name="" chips="$0" dealer="0" win="$0" bet="$0" /><player seat="4" name="FENGLIUDUSHENG" chips="$1.22" dealer="0" win="$0" bet="$0.03" /><player seat="5" name="komanchi7" chips="$0.58" dealer="0" win="$0.43" bet="$0.18" /><player seat="6" name="Qekz406" chips="$2.17" dealer="0" win="$0" bet="$0.01" /><player seat="7" name="axi0matic" chips="$2.99" dealer="0" win="$0" bet="$0.08" /><player seat="8" name="" chips="$0" dealer="0" win="$0" bet="$0" /><player seat="9" name="ad1028" chips="$3.58" dealer="0" win="$0" bet="$0" /><player seat="10" name="Zsuzsanna" chips="$0.80" dealer="0" win="$0" bet="$0.08" /> + <player seat="1" name="exStingray" chips="$0.99" dealer="1" win="$0" bet="$0.03" /><player seat="2" name="Hero" chips="$0.83" dealer="0" win="$0" bet="$0.03" /><player seat="3" name="" chips="$0" dealer="0" win="$0" bet="$0" /><player seat="4" name="FENGLIUDUSHENG" chips="$1.22" dealer="0" win="$0" bet="$0.03" /><player seat="5" name="komanchi7" chips="$0.58" dealer="0" win="$0.43" bet="$0.18" /><player seat="6" name="Qekz406" chips="$2.17" dealer="0" win="$0" bet="$0.01" /><player seat="7" name="axi0matic" chips="$2.99" dealer="0" win="$0" bet="$0.08" /><player seat="8" name="" chips="$0" dealer="0" win="$0" bet="$0" /><player seat="9" name="ad1028" chips="$3.58" dealer="0" win="$0" bet="$0" /><player seat="10" name="Zsuzsanna" chips="$0.80" dealer="0" win="$0" bet="$0.08" /> </players> </general> <round no="0"> - <action no="1" player="exStingray" type="15" sum="$0.01" cards="[cards]"/><action no="2" player="Binghai" type="15" sum="$0.01" cards="[cards]"/><action no="3" player="FENGLIUDUSHENG" type="15" sum="$0.01" cards="[cards]"/><action no="4" player="komanchi7" type="15" sum="$0.01" cards="[cards]"/><action no="5" player="Qekz406" type="15" sum="$0.01" cards="[cards]"/><action no="6" player="axi0matic" type="15" sum="$0.01" cards="[cards]"/><action no="7" player="Zsuzsanna" type="15" sum="$0.01" cards="[cards]"/> + <action no="1" player="exStingray" type="15" sum="$0.01" cards="[cards]"/><action no="2" player="Hero" type="15" sum="$0.01" cards="[cards]"/><action no="3" player="FENGLIUDUSHENG" type="15" sum="$0.01" cards="[cards]"/><action no="4" player="komanchi7" type="15" sum="$0.01" cards="[cards]"/><action no="5" player="Qekz406" type="15" sum="$0.01" cards="[cards]"/><action no="6" player="axi0matic" type="15" sum="$0.01" cards="[cards]"/><action no="7" player="Zsuzsanna" type="15" sum="$0.01" cards="[cards]"/> </round> <round no="1"> </round> <round no="2"> - <cards type="Third Street" player="exStingray">D4 S7 C8</cards><action no="13" player="exStingray" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="Binghai">X X D5</cards><action no="14" player="Binghai" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="FENGLIUDUSHENG">X X S2</cards><action no="8" player="FENGLIUDUSHENG" type="16" sum="$0.02" cards=""/><cards type="Third Street" player="komanchi7">X X H9</cards><action no="9" player="komanchi7" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="Qekz406">X X CJ</cards><action no="10" player="Qekz406" type="0" sum="$0" cards=""/><cards type="Third Street" player="axi0matic">X X H10</cards><action no="11" player="axi0matic" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="Zsuzsanna">X X H5</cards><action no="12" player="Zsuzsanna" type="3" sum="$0.02" cards=""/> + <cards type="Third Street" player="exStingray">D4 S7 C8</cards><action no="13" player="exStingray" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="Hero">X X D5</cards><action no="14" player="Hero" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="FENGLIUDUSHENG">X X S2</cards><action no="8" player="FENGLIUDUSHENG" type="16" sum="$0.02" cards=""/><cards type="Third Street" player="komanchi7">X X H9</cards><action no="9" player="komanchi7" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="Qekz406">X X CJ</cards><action no="10" player="Qekz406" type="0" sum="$0" cards=""/><cards type="Third Street" player="axi0matic">X X H10</cards><action no="11" player="axi0matic" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="Zsuzsanna">X X H5</cards><action no="12" player="Zsuzsanna" type="3" sum="$0.02" cards=""/> </round> <round no="3"> - <cards type="Fourth Street" player="exStingray">H2</cards><action no="18" player="exStingray" type="0" sum="$0" cards=""/><cards type="Fourth Street" player="Binghai">H7</cards><action no="19" player="Binghai" type="0" sum="$0" cards=""/><cards type="Fourth Street" player="FENGLIUDUSHENG">H6</cards><action no="20" player="FENGLIUDUSHENG" type="0" sum="$0" cards=""/><cards type="Fourth Street" player="komanchi7">HQ</cards><action no="15" player="komanchi7" type="5" sum="$0.05" cards=""/><cards type="Fourth Street" player="axi0matic">D9</cards><action no="16" player="axi0matic" type="3" sum="$0.05" cards=""/><cards type="Fourth Street" player="Zsuzsanna">C6</cards><action no="17" player="Zsuzsanna" type="3" sum="$0.05" cards=""/> + <cards type="Fourth Street" player="exStingray">H2</cards><action no="18" player="exStingray" type="0" sum="$0" cards=""/><cards type="Fourth Street" player="Hero">H7</cards><action no="19" player="Hero" type="0" sum="$0" cards=""/><cards type="Fourth Street" player="FENGLIUDUSHENG">H6</cards><action no="20" player="FENGLIUDUSHENG" type="0" sum="$0" cards=""/><cards type="Fourth Street" player="komanchi7">HQ</cards><action no="15" player="komanchi7" type="5" sum="$0.05" cards=""/><cards type="Fourth Street" player="axi0matic">D9</cards><action no="16" player="axi0matic" type="3" sum="$0.05" cards=""/><cards type="Fourth Street" player="Zsuzsanna">C6</cards><action no="17" player="Zsuzsanna" type="3" sum="$0.05" cards=""/> </round> <round no="4"> <cards type="Fifth Street" player="komanchi7">HA</cards><action no="21" player="komanchi7" type="5" sum="$0.10" cards=""/><cards type="Fifth Street" player="axi0matic">S8</cards><action no="22" player="axi0matic" type="0" sum="$0" cards=""/><cards type="Fifth Street" player="Zsuzsanna">D2</cards><action no="23" player="Zsuzsanna" type="0" sum="$0" cards=""/> From 1a1f9b504bee51c9535f880722ee6e147f125e7b Mon Sep 17 00:00:00 2001 From: "chaz@pokeit.co" <chaz@pokeit.co> Date: Sun, 5 Dec 2010 17:30:56 -0500 Subject: [PATCH 089/162] Replaced 'YOUR SCREEN NAME HERE' with Hero in the test file --- pyfpdb/HUD_config.test.xml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/pyfpdb/HUD_config.test.xml b/pyfpdb/HUD_config.test.xml index cb835aff..dfb6e4d3 100644 --- a/pyfpdb/HUD_config.test.xml +++ b/pyfpdb/HUD_config.test.xml @@ -104,9 +104,9 @@ Left-Drag to Move" <site enabled="True" site_name="PokerStars" table_finder="PokerStars.exe" - screen_name="s0rrow" + screen_name="Hero" site_path="C:/Program Files/PokerStars/" - HH_path="C:/Program Files/PokerStars/HandHistory/YOUR SCREEN NAME HERE/" + HH_path="C:/Program Files/PokerStars/HandHistory/Hero/" decoder="pokerstars_decode_table" converter="PokerStarsToFpdb" bgcolor="#000000" @@ -165,9 +165,9 @@ Left-Drag to Move" <site enabled="True" site_name="Full Tilt Poker" table_finder="FullTiltPoker" - screen_name="Sorrowful" + screen_name="Hero" site_path="C:/Program Files/Full Tilt Poker/" - HH_path="C:/Program Files/Full Tilt Poker/HandHistory/YOUR SCREEN NAME HERE/" + HH_path="C:/Program Files/Full Tilt Poker/HandHistory/Hero/" decoder="fulltilt_decode_table" converter="FulltiltToFpdb" bgcolor="#000000" @@ -214,7 +214,7 @@ Left-Drag to Move" <site enabled="False" site_name="Everleaf" table_finder="Everleaf.exe" - screen_name="YOUR SCREEN NAME HERE" + screen_name="Hero" site_path="" HH_path="" decoder="everleaf_decode_table" @@ -258,7 +258,7 @@ Left-Drag to Move" <site enabled="False" site_name="Win2day" table_finder="Win2day.exe" - screen_name="YOUR SCREEN NAME HERE" + screen_name="Hero" site_path="" HH_path="" decoder="everleaf_decode_table" @@ -303,7 +303,7 @@ Left-Drag to Move" <site enabled="False" site_name="Absolute" table_finder="AbsolutePoker.exe" - screen_name="YOUR SCREEN NAME HERE" + screen_name="Hero" site_path="" HH_path="" decoder="everleaf_decode_table" @@ -348,9 +348,9 @@ Left-Drag to Move" <site enabled="False" site_name="PartyPoker" table_finder="PartyGaming.exe" - screen_name="YOUR SCREEN NAME HERE" + screen_name="Hero" site_path="C:/Program Files/PartyGaming/PartyPoker" - HH_path="C:/Program Files/PartyGaming/PartyPoker/HandHistory/YOUR SCREEN NAME HERE/" + HH_path="C:/Program Files/PartyGaming/PartyPoker/HandHistory/Hero/" decoder="everleaf_decode_table" converter="PartyPokerToFpdb" supported_games="holdem"> @@ -393,9 +393,9 @@ Left-Drag to Move" <site enabled="False" site_name="Betfair" table_finder="Betfair Poker.exe" - screen_name="YOUR SCREEN NAME HERE" + screen_name="Hero" site_path="C:/Program Files/Betfair/Betfair Poker/" - HH_path="C:/Program Files/Betfair/Betfair Poker/HandHistory/YOUR SCREEN NAME HERE/" + HH_path="C:/Program Files/Betfair/Betfair Poker/HandHistory/Hero/" decoder="everleaf_decode_table" converter="BetfairToFpdb" supported_games="holdem"> From b37ebb9f4fe22edc3cbe9e61499d10ef0a5c64f2 Mon Sep 17 00:00:00 2001 From: "chaz@pokeit.co" <chaz@pokeit.co> Date: Sun, 5 Dec 2010 18:24:45 -0500 Subject: [PATCH 090/162] Made the same 'Hero' changes for tour and summary files. Also made cacheSessions default in the test Config file --- pyfpdb/HUD_config.test.xml | 2 +- .../NLHE-USD-HUSnG-10-201011.s0rrow.wins.txt | 4 +- .../NLHE-USD-MTT-20-200708.s0rrow.2nd.txt | 2 +- ...TT-4max-2.00-201011.Stars.local.format.txt | 2 +- ...STT-2-20100323.Allin.with.less.than.sb.txt | 8 +- ...T-unknownBuyIn-20100713.emailedHistory.txt | 6 +- .../LHE-USD-STT-5-20100607.allInPreflop.txt | 18 +- .../NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt | 502 +-- .../Stars/Flop/NLHE-USD-MTT-1-KO.201008.txt | 2556 +++++------ .../Stars/Flop/NLHE-USD-MTT-5r-200710.txt | 3932 ++++++++--------- .../Flop/NLHE-USD-STT-1-201004.8betPF.txt | 20 +- .../Flop/NLHE-USD-STT-20-201006.DONturbo.txt | 718 +-- .../Winamax/Flop/NLHE-EUR-STT-FullHist.txt | 54 +- 13 files changed, 3912 insertions(+), 3912 deletions(-) diff --git a/pyfpdb/HUD_config.test.xml b/pyfpdb/HUD_config.test.xml index dfb6e4d3..cfad09c5 100644 --- a/pyfpdb/HUD_config.test.xml +++ b/pyfpdb/HUD_config.test.xml @@ -2,7 +2,7 @@ <FreePokerToolsConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="FreePokerToolsConfig.xsd"> - <import callFpdbHud = "True" interval = "10" fastStoreHudCache="False" hhArchiveBase="~/.fpdb/HandHistories/" saveActions="True" cacheSessions="False" sessionTimeout="30"></import> + <import callFpdbHud = "True" interval = "10" fastStoreHudCache="False" hhArchiveBase="~/.fpdb/HandHistories/" saveActions="True" cacheSessions="True" sessionTimeout="30"></import> <!-- These values determine what stats are displayed in the HUD diff --git a/pyfpdb/regression-test-files/summaries/Stars/NLHE-USD-HUSnG-10-201011.s0rrow.wins.txt b/pyfpdb/regression-test-files/summaries/Stars/NLHE-USD-HUSnG-10-201011.s0rrow.wins.txt index b45874f4..d4866408 100644 --- a/pyfpdb/regression-test-files/summaries/Stars/NLHE-USD-HUSnG-10-201011.s0rrow.wins.txt +++ b/pyfpdb/regression-test-files/summaries/Stars/NLHE-USD-HUSnG-10-201011.s0rrow.wins.txt @@ -1,4 +1,4 @@ -Tournament History for your last 1 tournament requested by s0rrow (carl.gherardi@gmail.com) +Tournament History for your last 1 tournament requested by Hero (carl.gherardi@gmail.com) PokerStars Tournament #329052872, No Limit Hold'em @@ -7,7 +7,7 @@ Buy-In: $10.00/$0.50 USD Total Prize Pool: $20.00 USD Tournament started 2010/11/07 8:03:52 ET Tournament finished 2010/11/07 8:21:44 ET - 1: s0rrow (Perth), $20.00 (100%) + 1: Hero (Perth), $20.00 (100%) 2: v.v.75 (Грязи), You finished in 1st place. diff --git a/pyfpdb/regression-test-files/summaries/Stars/NLHE-USD-MTT-20-200708.s0rrow.2nd.txt b/pyfpdb/regression-test-files/summaries/Stars/NLHE-USD-MTT-20-200708.s0rrow.2nd.txt index e6fe4261..46b78b08 100644 --- a/pyfpdb/regression-test-files/summaries/Stars/NLHE-USD-MTT-20-200708.s0rrow.2nd.txt +++ b/pyfpdb/regression-test-files/summaries/Stars/NLHE-USD-MTT-20-200708.s0rrow.2nd.txt @@ -5,7 +5,7 @@ Total Prize Pool: $5520.00 Tournament started - 2007/08/13 - 08:15:00 (ET) Tournament finished - 2007/08/13 - 17:19:17 (ET) 1: pzampa1 (Framingham), $1518.00 (27.50%) - 2: s0rrow (Perth), $966.00 (17.50%) + 2: Hero (Perth), $966.00 (17.50%) 3: aufgehts007 (ochtendung), $640.32 (11.60%) 4: Monkey_Poo27 (Johnston), $441.60 (8%) 5: seb54200 (toul), $331.20 (6%) diff --git a/pyfpdb/regression-test-files/summaries/Stars/NLHE-USD-MTT-4max-2.00-201011.Stars.local.format.txt b/pyfpdb/regression-test-files/summaries/Stars/NLHE-USD-MTT-4max-2.00-201011.Stars.local.format.txt index d558def8..7d3ef75f 100644 --- a/pyfpdb/regression-test-files/summaries/Stars/NLHE-USD-MTT-4max-2.00-201011.Stars.local.format.txt +++ b/pyfpdb/regression-test-files/summaries/Stars/NLHE-USD-MTT-4max-2.00-201011.Stars.local.format.txt @@ -272,7 +272,7 @@ Tournament started 2010/11/10 8:15:00 ET 266: Luna4444 (Grand Rapids), still playing 267: Makena7 (Palma de Mallorca), still playing 268: MazVegas (we), still playing - 269: s0rrow (Perth), + 269: Hero (Perth), 270: queya (Rawdon), 271: pistike771 (Debrecen), 272: jolinejuli (Selb), diff --git a/pyfpdb/regression-test-files/tour/FTP/Flop/NLHE-USD-STT-2-20100323.Allin.with.less.than.sb.txt b/pyfpdb/regression-test-files/tour/FTP/Flop/NLHE-USD-STT-2-20100323.Allin.with.less.than.sb.txt index 3936bbf0..34714822 100644 --- a/pyfpdb/regression-test-files/tour/FTP/Flop/NLHE-USD-STT-2-20100323.Allin.with.less.than.sb.txt +++ b/pyfpdb/regression-test-files/tour/FTP/Flop/NLHE-USD-STT-2-20100323.Allin.with.less.than.sb.txt @@ -1,16 +1,16 @@ Full Tilt Poker Game #19505996411: $2 + $0.25 Sit & Go (148860619), Table 1 - 300/600 - Limit Hold'em - 18:58:46 ET - 2010/03/23 Seat 2: Player2 (7,723) -Seat 5: Player5 (3,409) +Seat 5: Hero (3,409) Seat 6: Player6 (50) Seat 8: Player8 (818) Player6 posts the small blind of 50, and is all in Player8 posts the big blind of 300 The button is in seat #5 *** HOLE CARDS *** -Dealt to Player5 [2h 9h] +Dealt to Hero [2h 9h] Player2 has 15 seconds left to act Player2 calls 300 -Player5 folds +Hero folds Player8 checks *** FLOP *** [2d 7s Qc] Player8 checks @@ -31,7 +31,7 @@ Player6 wins the main pot (150) with two pair, Sevens and Fives Total pot 650 Main pot 150. Side pot 500. | Rake 0 Board: [2d 7s Qc 8s 5c] Seat 2: Player2 showed [2c As] and won (500) with a pair of Twos -Seat 5: Player5 (button) didn't bet (folded) +Seat 5: Hero (button) didn't bet (folded) Seat 6: Player6 (small blind) showed [7c 5s] and won (150) with two pair, Sevens and Fives Seat 8: Player8 (big blind) showed [Ts 4c] and lost with Queen Ten high diff --git a/pyfpdb/regression-test-files/tour/PartyPoker/Flop/NLHE-USD-STT-unknownBuyIn-20100713.emailedHistory.txt b/pyfpdb/regression-test-files/tour/PartyPoker/Flop/NLHE-USD-STT-unknownBuyIn-20100713.emailedHistory.txt index e6afb2c8..d906b2e7 100644 --- a/pyfpdb/regression-test-files/tour/PartyPoker/Flop/NLHE-USD-STT-unknownBuyIn-20100713.emailedHistory.txt +++ b/pyfpdb/regression-test-files/tour/PartyPoker/Flop/NLHE-USD-STT-unknownBuyIn-20100713.emailedHistory.txt @@ -6,12 +6,12 @@ Seat 1: Player1 (1520) Seat 2: Player2 (1540) Seat 3: Player3 (2120) Seat 4: Player4 (2460) -Seat 5: Player5 (2600) +Seat 5: Hero (2600) Seat 6: Player6 (1760) Player1 posts small blind (30) Player2 posts big blind (60) ** Dealing down cards ** -Dealt to Player5 [ Jc, Js ] +Dealt to Hero [ Jc, Js ] Player3 folds Player4 folds Player6 folds @@ -33,5 +33,5 @@ Player1 balance 0, lost 1520 [ Ks 6c ] [ a pair of kings -- Ks,Kd,Jd,7d,6c ] Player2 balance 1480, lost 60 (folded) Player3 balance 2120, didn't bet (folded) Player4 balance 2460, didn't bet (folded) -Player5 balance 4180, bet 1520, collected 3100, net +1580 [ Jc Js ] [ three of a kind, jacks -- Kd,Jc,Js,Jd,7d ] +Hero balance 4180, bet 1520, collected 3100, net +1580 [ Jc Js ] [ three of a kind, jacks -- Kd,Jc,Js,Jd,7d ] Player6 balance 1760, didn't bet (folded) diff --git a/pyfpdb/regression-test-files/tour/Stars/Flop/LHE-USD-STT-5-20100607.allInPreflop.txt b/pyfpdb/regression-test-files/tour/Stars/Flop/LHE-USD-STT-5-20100607.allInPreflop.txt index 9a35a552..ce1166e0 100644 --- a/pyfpdb/regression-test-files/tour/Stars/Flop/LHE-USD-STT-5-20100607.allInPreflop.txt +++ b/pyfpdb/regression-test-files/tour/Stars/Flop/LHE-USD-STT-5-20100607.allInPreflop.txt @@ -7,39 +7,39 @@ Seat 4: Lawwill (3300 in chips) Seat 5: nakamurov (1890 in chips) Seat 6: 67_fredf_67 (1425 in chips) Seat 7: NICk.nico333 (1960 in chips) -Seat 8: steffen780 (1745 in chips) +Seat 8: Hero (1745 in chips) Seat 9: PORCHES996 (390 in chips) 101ripcord: posts small blind 25 Lawwill: posts big blind 50 *** HOLE CARDS *** -Dealt to steffen780 [Td Th] +Dealt to Hero [Td Th] nakamurov: folds 67_fredf_67: calls 50 NICk.nico333: folds -steffen780: raises 50 to 100 +Hero: raises 50 to 100 PORCHES996: folds Slush11: raises 10 to 110 and is all-in zsoccerino: folds 101ripcord: calls 85 Lawwill: folds 67_fredf_67: calls 60 -steffen780: calls 10 +Hero: calls 10 *** FLOP *** [2c Qh 6c] 101ripcord: checks 67_fredf_67: checks -steffen780: bets 50 +Hero: bets 50 101ripcord: calls 50 67_fredf_67: folds *** TURN *** [2c Qh 6c] [9s] 101ripcord: checks -steffen780: bets 100 +Hero: bets 100 101ripcord: calls 100 *** RIVER *** [2c Qh 6c 9s] [4d] 101ripcord: bets 100 -steffen780: calls 100 +Hero: calls 100 *** SHOW DOWN *** 101ripcord: shows [9c 4c] (two pair, Nines and Fours) -steffen780: mucks hand +Hero: mucks hand 101ripcord collected 500 from side pot Slush11: mucks hand 101ripcord collected 490 from main pot @@ -53,7 +53,7 @@ Seat 4: Lawwill (big blind) folded before Flop Seat 5: nakamurov folded before Flop (didn't bet) Seat 6: 67_fredf_67 folded on the Flop Seat 7: NICk.nico333 folded before Flop (didn't bet) -Seat 8: steffen780 mucked [Td Th] +Seat 8: Hero mucked [Td Th] Seat 9: PORCHES996 folded before Flop (didn't bet) diff --git a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt index 25720a16..9c34f618 100644 --- a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt +++ b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt @@ -4,20 +4,20 @@ Seat 1: Player6 (300 in chips) Seat 2: Player21 (300 in chips) Seat 3: Player12 (300 in chips) Seat 4: Player11 (600 in chips) -Seat 5: Player18 (300 in chips) +Seat 5: Hero (300 in chips) Seat 6: Player0 (300 in chips) Player6: posts the ante 10 Player21: posts the ante 10 Player12: posts the ante 10 Player11: posts the ante 10 -Player18: posts the ante 10 +Hero: posts the ante 10 Player0: posts the ante 10 Player21: posts small blind 25 Player12: posts big blind 50 *** HOLE CARDS *** -Dealt to Player18 [4s 9d] +Dealt to Hero [4s 9d] Player11: raises 540 to 590 and is all-in -Player18: calls 290 and is all-in +Hero: calls 290 and is all-in Player0: folds Player6: calls 290 and is all-in Player21: folds @@ -29,10 +29,10 @@ Uncalled bet (300) returned to Player11 *** SHOW DOWN *** Player12: shows [3c Kh] (high card King) Player11: shows [8h 7s] (a pair of Sevens) -Player18: shows [4s 9d] (a pair of Fours) +Hero: shows [4s 9d] (a pair of Fours) Player6: shows [Qc Td] (a pair of Tens) Player6 collected 1245 from pot -Player18 re-buys and receives 600 chips for 2 FPPs +Hero re-buys and receives 600 chips for 2 FPPs Player12 re-buys and receives 300 chips for 1 FPPs *** SUMMARY *** Total pot 1245 | Rake 0 @@ -41,7 +41,7 @@ Seat 1: Player6 (button) showed [Qc Td] and won (1245) with a pair of Tens Seat 2: Player21 (small blind) folded before Flop Seat 3: Player12 (big blind) showed [3c Kh] and lost with high card King Seat 4: Player11 showed [8h 7s] and lost with a pair of Sevens -Seat 5: Player18 showed [4s 9d] and lost with a pair of Fours +Seat 5: Hero showed [4s 9d] and lost with a pair of Fours Seat 6: Player0 folded before Flop (didn't bet) @@ -52,19 +52,19 @@ Seat 1: Player6 (1245 in chips) Seat 2: Player21 (265 in chips) Seat 3: Player12 (300 in chips) Seat 4: Player11 (300 in chips) -Seat 5: Player18 (600 in chips) +Seat 5: Hero (600 in chips) Seat 6: Player0 (290 in chips) Player6: posts the ante 10 Player21: posts the ante 10 Player12: posts the ante 10 Player11: posts the ante 10 -Player18: posts the ante 10 +Hero: posts the ante 10 Player0: posts the ante 10 Player12: posts small blind 25 Player11: posts big blind 50 *** HOLE CARDS *** -Dealt to Player18 [Qs 7c] -Player18: raises 540 to 590 and is all-in +Dealt to Hero [Qs 7c] +Hero: raises 540 to 590 and is all-in Player0: folds Player6: raises 540 to 1130 Player21: folds @@ -75,13 +75,13 @@ Uncalled bet (540) returned to Player6 *** TURN *** [Jc 4c 5d] [3c] *** RIVER *** [Jc 4c 5d 3c] [3h] *** SHOW DOWN *** -Player18: shows [Qs 7c] (a pair of Threes) +Hero: shows [Qs 7c] (a pair of Threes) Player6: shows [Ah 8c] (a pair of Threes - Ace kicker) Player6 collected 600 from side pot Player12: shows [8s Qd] (a pair of Threes - lower kicker) Player11: shows [2c Jh] (two pair, Jacks and Threes) Player11 collected 1220 from main pot -Player18 re-buys and receives 600 chips for 2 FPPs +Hero re-buys and receives 600 chips for 2 FPPs Player12 re-buys and receives 300 chips for 1 FPPs *** SUMMARY *** Total pot 1820 Main pot 1220. Side pot 600. | Rake 0 @@ -90,7 +90,7 @@ Seat 1: Player6 showed [Ah 8c] and won (600) with a pair of Threes Seat 2: Player21 (button) folded before Flop (didn't bet) Seat 3: Player12 (small blind) showed [8s Qd] and lost with a pair of Threes Seat 4: Player11 (big blind) showed [2c Jh] and won (1220) with two pair, Jacks and Threes -Seat 5: Player18 showed [Qs 7c] and lost with a pair of Threes +Seat 5: Hero showed [Qs 7c] and lost with a pair of Threes Seat 6: Player0 folded before Flop (didn't bet) @@ -101,33 +101,33 @@ Seat 1: Player6 (1245 in chips) Seat 2: Player21 (255 in chips) Seat 3: Player12 (300 in chips) Seat 4: Player11 (1220 in chips) -Seat 5: Player18 (600 in chips) +Seat 5: Hero (600 in chips) Seat 6: Player0 (280 in chips) Player6: posts the ante 10 Player21: posts the ante 10 Player12: posts the ante 10 Player11: posts the ante 10 -Player18: posts the ante 10 +Hero: posts the ante 10 Player0: posts the ante 10 Player11: posts small blind 25 -Player18: posts big blind 50 +Hero: posts big blind 50 *** HOLE CARDS *** -Dealt to Player18 [2h Qd] +Dealt to Hero [2h Qd] Player0: raises 150 to 200 Player6: folds Player21: folds Player12: folds Player11: folds -Player18: raises 350 to 550 +Hero: raises 350 to 550 Player0: calls 70 and is all-in -Uncalled bet (280) returned to Player18 +Uncalled bet (280) returned to Hero *** FLOP *** [9s Ks Th] *** TURN *** [9s Ks Th] [Jc] *** RIVER *** [9s Ks Th Jc] [5h] *** SHOW DOWN *** -Player18: shows [2h Qd] (a straight, Nine to King) +Hero: shows [2h Qd] (a straight, Nine to King) Player0: shows [As Jd] (a pair of Jacks) -Player18 collected 625 from pot +Hero collected 625 from pot Player0 finished the tournament in 273rd place *** SUMMARY *** Total pot 625 | Rake 0 @@ -136,7 +136,7 @@ Seat 1: Player6 folded before Flop (didn't bet) Seat 2: Player21 folded before Flop (didn't bet) Seat 3: Player12 (button) folded before Flop (didn't bet) Seat 4: Player11 (small blind) folded before Flop -Seat 5: Player18 (big blind) showed [2h Qd] and won (625) with a straight, Nine to King +Seat 5: Hero (big blind) showed [2h Qd] and won (625) with a straight, Nine to King Seat 6: Player0 showed [As Jd] and lost with a pair of Jacks @@ -147,23 +147,23 @@ Seat 1: Player6 (1235 in chips) Seat 2: Player21 (245 in chips) Seat 3: Player12 (290 in chips) Seat 4: Player11 (1185 in chips) -Seat 5: Player18 (945 in chips) +Seat 5: Hero (945 in chips) Player6: posts the ante 10 Player21: posts the ante 10 Player12: posts the ante 10 Player11: posts the ante 10 -Player18: posts the ante 10 -Player18: posts small blind 25 +Hero: posts the ante 10 +Hero: posts small blind 25 Player6: posts big blind 50 *** HOLE CARDS *** -Dealt to Player18 [6d Jc] +Dealt to Hero [6d Jc] Player21: raises 185 to 235 and is all-in Player12: folds Player11: calls 235 -Player18: raises 185 to 420 +Hero: raises 185 to 420 Player6: raises 805 to 1225 and is all-in Player11: calls 940 and is all-in -Player18: calls 515 and is all-in +Hero: calls 515 and is all-in Uncalled bet (50) returned to Player6 Player13 is connected *** FLOP *** [5c As Ts] @@ -173,10 +173,10 @@ Player13 is connected Player6: shows [8h 9d] (a pair of Sixes) Player11: shows [2h 2s] (two pair, Sixes and Deuces) Player11 collected 480 from side pot-2 -Player18: shows [6d Jc] (three of a kind, Sixes) -Player18 collected 2100 from side pot-1 +Hero: shows [6d Jc] (three of a kind, Sixes) +Hero collected 2100 from side pot-1 Player21: shows [Tc Ah] (two pair, Aces and Tens) -Player18 collected 990 from main pot +Hero collected 990 from main pot Player21 re-buys and receives 300 chips for 1 FPPs *** SUMMARY *** Total pot 3570 Main pot 990. Side pot-1 2100. Side pot-2 480. | Rake 0 @@ -185,7 +185,7 @@ Seat 1: Player6 (big blind) showed [8h 9d] and lost with a pair of Sixes Seat 2: Player21 showed [Tc Ah] and lost with two pair, Aces and Tens Seat 3: Player12 folded before Flop (didn't bet) Seat 4: Player11 (button) showed [2h 2s] and won (480) with two pair, Sixes and Deuces -Seat 5: Player18 (small blind) showed [6d Jc] and won (3090) with three of a kind, Sixes +Seat 5: Hero (small blind) showed [6d Jc] and won (3090) with three of a kind, Sixes @@ -195,30 +195,30 @@ Seat 1: Player6 (50 in chips) Seat 2: Player21 (300 in chips) Seat 3: Player12 (280 in chips) Seat 4: Player11 (480 in chips) -Seat 5: Player18 (3090 in chips) +Seat 5: Hero (3090 in chips) Seat 6: Player13 (1475 in chips) out of hand (moved from another table into small blind) Player6: posts the ante 10 Player21: posts the ante 10 Player12: posts the ante 10 Player11: posts the ante 10 -Player18: posts the ante 10 +Hero: posts the ante 10 Player6: posts small blind 25 Player21: posts big blind 50 *** HOLE CARDS *** -Dealt to Player18 [9h Qd] +Dealt to Hero [9h Qd] Player6 re-buys and receives 300 chips for 1 FPPs Player12: raises 220 to 270 and is all-in Player11: folds -Player18: raises 1230 to 1500 +Hero: raises 1230 to 1500 Player6: calls 15 and is all-in Player21: folds -Uncalled bet (1230) returned to Player18 +Uncalled bet (1230) returned to Hero *** FLOP *** [2h 8c 5h] *** TURN *** [2h 8c 5h] [Ac] *** RIVER *** [2h 8c 5h Ac] [2s] *** SHOW DOWN *** Player12: shows [Kh 6h] (a pair of Deuces) -Player18: shows [9h Qd] (a pair of Deuces - lower kicker) +Hero: shows [9h Qd] (a pair of Deuces - lower kicker) Player12 collected 470 from side pot Player6: shows [As 8s] (two pair, Aces and Eights) Player12 is sitting out @@ -230,7 +230,7 @@ Seat 1: Player6 (small blind) showed [As 8s] and won (210) with two pair, Aces a Seat 2: Player21 (big blind) folded before Flop Seat 3: Player12 showed [Kh 6h] and won (470) with a pair of Deuces Seat 4: Player11 folded before Flop (didn't bet) -Seat 5: Player18 (button) showed [9h Qd] and lost with a pair of Deuces +Seat 5: Hero (button) showed [9h Qd] and lost with a pair of Deuces @@ -240,34 +240,34 @@ Seat 1: Player6 (510 in chips) Seat 2: Player21 (240 in chips) Seat 3: Player12 (470 in chips) is sitting out Seat 4: Player11 (470 in chips) -Seat 5: Player18 (2810 in chips) +Seat 5: Hero (2810 in chips) Seat 6: Player13 (1475 in chips) Player6: posts the ante 20 Player21: posts the ante 20 Player12: posts the ante 20 Player11: posts the ante 20 -Player18: posts the ante 20 +Hero: posts the ante 20 Player13: posts the ante 20 Player21: posts small blind 50 Player12: posts big blind 100 *** HOLE CARDS *** -Dealt to Player18 [Jc Td] +Dealt to Hero [Jc Td] Player11: raises 350 to 450 and is all-in -Player18: raises 2340 to 2790 and is all-in +Hero: raises 2340 to 2790 and is all-in Player13: folds Player6: calls 490 and is all-in Player21: folds Player12: folds -Uncalled bet (2300) returned to Player18 +Uncalled bet (2300) returned to Hero *** FLOP *** [2c 4h 3c] *** TURN *** [2c 4h 3c] [Ac] *** RIVER *** [2c 4h 3c Ac] [9c] *** SHOW DOWN *** -Player18: shows [Jc Td] (a flush, Ace high) +Hero: shows [Jc Td] (a flush, Ace high) Player6: shows [Th Ks] (high card Ace) -Player18 collected 80 from side pot +Hero collected 80 from side pot Player11: shows [8h 9d] (a pair of Nines) -Player18 collected 1620 from main pot +Hero collected 1620 from main pot Player11 re-buys and receives 600 chips for 2 FPPs Player6 re-buys and receives 600 chips for 2 FPPs *** SUMMARY *** @@ -277,7 +277,7 @@ Seat 1: Player6 (button) showed [Th Ks] and lost with high card Ace Seat 2: Player21 (small blind) folded before Flop Seat 3: Player12 (big blind) folded before Flop Seat 4: Player11 showed [8h 9d] and lost with a pair of Nines -Seat 5: Player18 showed [Jc Td] and won (1700) with a flush, Ace high +Seat 5: Hero showed [Jc Td] and won (1700) with a flush, Ace high Seat 6: Player13 folded before Flop (didn't bet) @@ -288,34 +288,34 @@ Seat 1: Player6 (600 in chips) Seat 2: Player21 (170 in chips) Seat 3: Player12 (350 in chips) is sitting out Seat 4: Player11 (600 in chips) -Seat 5: Player18 (4000 in chips) +Seat 5: Hero (4000 in chips) Seat 6: Player13 (1455 in chips) Player6: posts the ante 20 Player21: posts the ante 20 Player12: posts the ante 20 Player11: posts the ante 20 -Player18: posts the ante 20 +Hero: posts the ante 20 Player13: posts the ante 20 Player12: posts small blind 50 Player11: posts big blind 100 *** HOLE CARDS *** -Dealt to Player18 [Jd 6s] -Player18: raises 3880 to 3980 and is all-in +Dealt to Hero [Jd 6s] +Hero: raises 3880 to 3980 and is all-in Player13: calls 1435 and is all-in Player6: folds Player21: folds Player12: folds Player11: calls 480 and is all-in -Uncalled bet (2545) returned to Player18 +Uncalled bet (2545) returned to Hero *** FLOP *** [Kd 9s Qh] *** TURN *** [Kd 9s Qh] [Ts] *** RIVER *** [Kd 9s Qh Ts] [7c] *** SHOW DOWN *** -Player18: shows [Jd 6s] (a straight, Nine to King) +Hero: shows [Jd 6s] (a straight, Nine to King) Player13: shows [Kc As] (a pair of Kings) -Player18 collected 1710 from side pot +Hero collected 1710 from side pot Player11: shows [8s 4h] (high card King) -Player18 collected 1910 from main pot +Hero collected 1910 from main pot Player13 re-buys and receives 600 chips for 2 FPPs Player11 re-buys and receives 600 chips for 2 FPPs *** SUMMARY *** @@ -325,7 +325,7 @@ Seat 1: Player6 folded before Flop (didn't bet) Seat 2: Player21 (button) folded before Flop (didn't bet) Seat 3: Player12 (small blind) folded before Flop Seat 4: Player11 (big blind) showed [8s 4h] and lost with high card King -Seat 5: Player18 showed [Jd 6s] and won (3620) with a straight, Nine to King +Seat 5: Hero showed [Jd 6s] and won (3620) with a straight, Nine to King Seat 6: Player13 showed [Kc As] and lost with a pair of Kings @@ -336,32 +336,32 @@ Seat 1: Player6 (580 in chips) Seat 2: Player21 (150 in chips) Seat 3: Player12 (280 in chips) is sitting out Seat 4: Player11 (600 in chips) -Seat 5: Player18 (6165 in chips) +Seat 5: Hero (6165 in chips) Seat 6: Player13 (600 in chips) Player6: posts the ante 20 Player21: posts the ante 20 Player12: posts the ante 20 Player11: posts the ante 20 -Player18: posts the ante 20 +Hero: posts the ante 20 Player13: posts the ante 20 Player11: posts small blind 50 -Player18: posts big blind 100 +Hero: posts big blind 100 *** HOLE CARDS *** -Dealt to Player18 [6s Kd] +Dealt to Hero [6s Kd] Player13: raises 480 to 580 and is all-in Player6: folds Player21: folds Player12: folds Player11: calls 530 and is all-in -Player18: calls 480 +Hero: calls 480 *** FLOP *** [Tc 6c 7c] *** TURN *** [Tc 6c 7c] [2c] *** RIVER *** [Tc 6c 7c 2c] [Qs] *** SHOW DOWN *** Player11: shows [Ks 3h] (high card King) -Player18: shows [6s Kd] (a pair of Sixes) +Hero: shows [6s Kd] (a pair of Sixes) Player13: shows [9s 2d] (a pair of Deuces) -Player18 collected 1860 from pot +Hero collected 1860 from pot Player13 re-buys and receives 600 chips for 2 FPPs Player11 re-buys and receives 600 chips for 2 FPPs *** SUMMARY *** @@ -371,7 +371,7 @@ Seat 1: Player6 folded before Flop (didn't bet) Seat 2: Player21 folded before Flop (didn't bet) Seat 3: Player12 (button) folded before Flop (didn't bet) Seat 4: Player11 (small blind) showed [Ks 3h] and lost with high card King -Seat 5: Player18 (big blind) showed [6s Kd] and won (1860) with a pair of Sixes +Seat 5: Hero (big blind) showed [6s Kd] and won (1860) with a pair of Sixes Seat 6: Player13 showed [9s 2d] and lost with a pair of Deuces @@ -382,34 +382,34 @@ Seat 1: Player6 (560 in chips) Seat 2: Player21 (130 in chips) Seat 3: Player12 (260 in chips) is sitting out Seat 4: Player11 (600 in chips) -Seat 5: Player18 (7425 in chips) +Seat 5: Hero (7425 in chips) Seat 6: Player13 (600 in chips) Player6: posts the ante 20 Player21: posts the ante 20 Player12: posts the ante 20 Player11: posts the ante 20 -Player18: posts the ante 20 +Hero: posts the ante 20 Player13: posts the ante 20 -Player18: posts small blind 50 +Hero: posts small blind 50 Player13: posts big blind 100 *** HOLE CARDS *** -Dealt to Player18 [8d 9h] +Dealt to Hero [8d 9h] Player6: raises 440 to 540 and is all-in Player21: calls 110 and is all-in Player12: folds Player11: calls 540 -Player18: calls 490 +Hero: calls 490 Player13: raises 40 to 580 and is all-in Player11: calls 40 and is all-in -Player18: calls 40 +Hero: calls 40 *** FLOP *** [Td 4s Th] *** TURN *** [Td 4s Th] [Qd] *** RIVER *** [Td 4s Th Qd] [Qs] *** SHOW DOWN *** -Player18: shows [8d 9h] (two pair, Queens and Tens) +Hero: shows [8d 9h] (two pair, Queens and Tens) Player13: shows [3d 3h] (two pair, Queens and Tens - lower kicker) Player11: shows [9c 3s] (two pair, Queens and Tens) -Player18 collected 60 from side pot-2 +Hero collected 60 from side pot-2 Player11 collected 60 from side pot-2 Player6: shows [Kh 7d] (two pair, Queens and Tens - King kicker) Player6 collected 1720 from side pot-1 @@ -425,7 +425,7 @@ Seat 1: Player6 showed [Kh 7d] and won (1720) with two pair, Queens and Tens Seat 2: Player21 showed [Kd Qc] and won (670) with a full house, Queens full of Tens Seat 3: Player12 folded before Flop (didn't bet) Seat 4: Player11 (button) showed [9c 3s] and won (60) with two pair, Queens and Tens -Seat 5: Player18 (small blind) showed [8d 9h] and won (60) with two pair, Queens and Tens +Seat 5: Hero (small blind) showed [8d 9h] and won (60) with two pair, Queens and Tens Seat 6: Player13 (big blind) showed [3d 3h] and lost with two pair, Queens and Tens @@ -436,31 +436,31 @@ Seat 1: Player6 (1720 in chips) Seat 2: Player21 (670 in chips) Seat 3: Player12 (240 in chips) is sitting out Seat 4: Player11 (60 in chips) -Seat 5: Player18 (6885 in chips) +Seat 5: Hero (6885 in chips) Player6: posts the ante 40 Player21: posts the ante 40 Player12: posts the ante 40 Player11: posts the ante 40 -Player18: posts the ante 40 +Hero: posts the ante 40 Player6: posts small blind 100 Player21: posts big blind 200 *** HOLE CARDS *** -Dealt to Player18 [Td 9d] +Dealt to Hero [Td 9d] Player12: folds Player11: calls 20 and is all-in Player7 is connected -Player18: raises 6645 to 6845 and is all-in +Hero: raises 6645 to 6845 and is all-in Player6: folds Player21: folds -Uncalled bet (6645) returned to Player18 +Uncalled bet (6645) returned to Hero *** FLOP *** [9s As 2s] *** TURN *** [9s As 2s] [4h] *** RIVER *** [9s As 2s 4h] [5h] *** SHOW DOWN *** -Player18: shows [Td 9d] (a pair of Nines) -Player18 collected 440 from side pot +Hero: shows [Td 9d] (a pair of Nines) +Hero collected 440 from side pot Player11: shows [Jh 7s] (high card Ace) -Player18 collected 280 from main pot +Hero collected 280 from main pot Player11 re-buys and receives 600 chips for 2 FPPs *** SUMMARY *** Total pot 720 Main pot 280. Side pot 440. | Rake 0 @@ -469,7 +469,7 @@ Seat 1: Player6 (small blind) folded before Flop Seat 2: Player21 (big blind) folded before Flop Seat 3: Player12 folded before Flop (didn't bet) Seat 4: Player11 showed [Jh 7s] and lost with high card Ace -Seat 5: Player18 (button) showed [Td 9d] and won (720) with a pair of Nines +Seat 5: Hero (button) showed [Td 9d] and won (720) with a pair of Nines @@ -479,31 +479,31 @@ Seat 1: Player6 (1580 in chips) Seat 2: Player21 (430 in chips) Seat 3: Player12 (200 in chips) is sitting out Seat 4: Player11 (600 in chips) -Seat 5: Player18 (7365 in chips) +Seat 5: Hero (7365 in chips) Seat 6: Player7 (600 in chips) Player6: posts the ante 40 Player21: posts the ante 40 Player12: posts the ante 40 Player11: posts the ante 40 -Player18: posts the ante 40 +Hero: posts the ante 40 Player7: posts the ante 40 Player21: posts small blind 100 Player12: posts big blind 160 and is all-in *** HOLE CARDS *** -Dealt to Player18 [2c 4d] +Dealt to Hero [2c 4d] Player11: raises 400 to 560 and is all-in -Player18: raises 6765 to 7325 and is all-in +Hero: raises 6765 to 7325 and is all-in Player7: calls 560 and is all-in Player6: folds Player21: calls 290 and is all-in Player12: folds -Uncalled bet (6765) returned to Player18 +Uncalled bet (6765) returned to Hero *** FLOP *** [3s Js 5c] *** TURN *** [3s Js 5c] [9c] *** RIVER *** [3s Js 5c 9c] [7d] *** SHOW DOWN *** Player11: shows [Qc Jc] (a pair of Jacks) -Player18: shows [2c 4d] (high card Jack) +Hero: shows [2c 4d] (high card Jack) Player7: shows [Qd Jh] (a pair of Jacks) Player11 collected 255 from side pot-2 Player7 collected 255 from side pot-2 @@ -518,7 +518,7 @@ Seat 1: Player6 (button) folded before Flop (didn't bet) Seat 2: Player21 (small blind) showed [As Ac] and won (1960) with a pair of Aces Seat 3: Player12 (big blind) folded before Flop Seat 4: Player11 showed [Qc Jc] and won (255) with a pair of Jacks -Seat 5: Player18 showed [2c 4d] and lost with high card Jack +Seat 5: Hero showed [2c 4d] and lost with high card Jack Seat 6: Player7 showed [Qd Jh] and won (255) with a pair of Jacks @@ -528,39 +528,39 @@ Table '999999998 11' 6-max Seat #2 is the button Seat 1: Player6 (1540 in chips) Seat 2: Player21 (1960 in chips) Seat 4: Player11 (255 in chips) -Seat 5: Player18 (6765 in chips) +Seat 5: Hero (6765 in chips) Seat 6: Player7 (255 in chips) Player6: posts the ante 40 Player21: posts the ante 40 Player11: posts the ante 40 -Player18: posts the ante 40 +Hero: posts the ante 40 Player7: posts the ante 40 Player11: posts small blind 100 -Player18: posts big blind 200 +Hero: posts big blind 200 *** HOLE CARDS *** -Dealt to Player18 [Ts 9h] +Dealt to Hero [Ts 9h] Player7: raises 15 to 215 and is all-in Player6: calls 215 Player21: folds Player11: calls 115 and is all-in Player16 is connected -Player18: calls 15 +Hero: calls 15 *** FLOP *** [8h Td 7s] -Player18: checks +Hero: checks Player6: bets 400 -Player18: raises 800 to 1200 +Hero: raises 800 to 1200 Player6: raises 85 to 1285 and is all-in -Player18: calls 85 +Hero: calls 85 *** TURN *** [8h Td 7s] [6s] *** RIVER *** [8h Td 7s 6s] [Kd] *** SHOW DOWN *** -Player18: shows [Ts 9h] (a straight, Six to Ten) +Hero: shows [Ts 9h] (a straight, Six to Ten) Player6: shows [Jh Tc] (a pair of Tens) -Player18 collected 2570 from side pot +Hero collected 2570 from side pot Player7: shows [Ah 9d] (a straight, Six to Ten) Player11: shows [9s Qd] (a straight, Six to Ten) Player11 collected 354 from main pot -Player18 collected 353 from main pot +Hero collected 353 from main pot Player7 collected 353 from main pot Player6 re-buys and receives 600 chips for 2 FPPs *** SUMMARY *** @@ -569,7 +569,7 @@ Board [8h Td 7s 6s Kd] Seat 1: Player6 showed [Jh Tc] and lost with a pair of Tens Seat 2: Player21 (button) folded before Flop (didn't bet) Seat 4: Player11 (small blind) showed [9s Qd] and won (354) with a straight, Six to Ten -Seat 5: Player18 (big blind) showed [Ts 9h] and won (2923) with a straight, Six to Ten +Seat 5: Hero (big blind) showed [Ts 9h] and won (2923) with a straight, Six to Ten Seat 6: Player7 showed [Ah 9d] and won (353) with a straight, Six to Ten @@ -580,44 +580,44 @@ Seat 1: Player6 (600 in chips) Seat 2: Player21 (1920 in chips) Seat 3: Player16 (3020 in chips) Seat 4: Player11 (354 in chips) -Seat 5: Player18 (8148 in chips) +Seat 5: Hero (8148 in chips) Seat 6: Player7 (353 in chips) Player6: posts the ante 40 Player21: posts the ante 40 Player16: posts the ante 40 Player11: posts the ante 40 -Player18: posts the ante 40 +Hero: posts the ante 40 Player7: posts the ante 40 -Player18: posts small blind 100 +Hero: posts small blind 100 Player7: posts big blind 200 *** HOLE CARDS *** -Dealt to Player18 [Ks 4c] +Dealt to Hero [Ks 4c] Player6 said, "dikhead" Player6: folds -Player18 said, "chatban" +Hero said, "chatban" Player21: folds Player16: raises 200 to 400 Player11: calls 314 and is all-in -Player18: calls 300 +Hero: calls 300 Player7: calls 113 and is all-in *** FLOP *** [9c 5d 2d] -Player18: checks +Hero: checks Player16: checks *** TURN *** [9c 5d 2d] [Kh] -Player18: checks +Hero: checks Player16: checks *** RIVER *** [9c 5d 2d Kh] [9d] -Player18: checks +Hero: checks Player16: checks *** SHOW DOWN *** -Player18: shows [Ks 4c] (two pair, Kings and Nines) +Hero: shows [Ks 4c] (two pair, Kings and Nines) Player16: mucks hand -Player18 collected 172 from side pot-2 +Hero collected 172 from side pot-2 Player11: mucks hand Player6 said, "cok face dip shiit" -Player18 collected 3 from side pot-1 +Hero collected 3 from side pot-1 Player7: mucks hand -Player18 collected 1492 from main pot +Hero collected 1492 from main pot Player7 re-buys and receives 600 chips for 2 FPPs Player11 re-buys and receives 600 chips for 2 FPPs *** SUMMARY *** @@ -627,7 +627,7 @@ Seat 1: Player6 folded before Flop (didn't bet) Seat 2: Player21 folded before Flop (didn't bet) Seat 3: Player16 mucked [Ad 5c] Seat 4: Player11 (button) mucked [4h 4d] -Seat 5: Player18 (small blind) showed [Ks 4c] and won (1667) with two pair, Kings and Nines +Seat 5: Hero (small blind) showed [Ks 4c] and won (1667) with two pair, Kings and Nines Seat 6: Player7 (big blind) mucked [Qh 2s] @@ -638,58 +638,58 @@ Seat 1: Player6 (560 in chips) Seat 2: Player21 (1880 in chips) Seat 3: Player16 (2580 in chips) Seat 4: Player11 (600 in chips) -Seat 5: Player18 (9375 in chips) +Seat 5: Hero (9375 in chips) Seat 6: Player7 (600 in chips) Player6: posts the ante 80 Player21: posts the ante 80 Player16: posts the ante 80 Player11: posts the ante 80 -Player18: posts the ante 80 +Hero: posts the ante 80 Player7: posts the ante 80 Player7: posts small blind 200 Player6: posts big blind 400 *** HOLE CARDS *** -Dealt to Player18 [As Ad] -Player18 said, "chatban" +Dealt to Hero [As Ad] +Hero said, "chatban" Player21: raises 1400 to 1800 and is all-in Player16: folds Player11: calls 520 and is all-in -Player18: raises 7495 to 9295 and is all-in +Hero: raises 7495 to 9295 and is all-in Player7: calls 320 and is all-in Player6: calls 80 and is all-in -Uncalled bet (7495) returned to Player18 +Uncalled bet (7495) returned to Hero *** FLOP *** [6h 8d 2c] *** TURN *** [6h 8d 2c] [8s] Player11 is disconnected *** RIVER *** [6h 8d 2c 8s] [8h] *** SHOW DOWN *** Player21: shows [5d 5s] (a full house, Eights full of Fives) -Player18: shows [As Ad] (a full house, Eights full of Aces) +Hero: shows [As Ad] (a full house, Eights full of Aces) Player6 said, "cok face dik sucker" -Player18 collected 2560 from side pot-2 +Hero collected 2560 from side pot-2 Player7: shows [3h Jh] (three of a kind, Eights) Player11: shows [5h Kd] (three of a kind, Eights) -Player18 collected 160 from side pot-1 +Hero collected 160 from side pot-1 Player6: shows [3d Tc] (three of a kind, Eights) -Player18 collected 2880 from main pot +Hero collected 2880 from main pot Player6 said, "cok head" Player7 re-buys and receives 600 chips for 2 FPPs -Player18 said, "lol" +Hero said, "lol" Player6 said, "dik" Player6 said, "dik" Player6 said, "dik" -Player18 said, "tilt" +Hero said, "tilt" Player6 said, "dikd" Player6 said, "idk" Player6 said, "dik" Player6 said, "dik" -Player18 said, "tilt" +Hero said, "tilt" Player6 said, "dik" -Player18 said, "tilt" +Hero said, "tilt" Player6 said, "dik" Player6 said, "dik" Player6 said, "dik" -Player18 said, "hahahahaha" +Hero said, "hahahahaha" Player6 said, "dik" Player6 said, "dio" Player11 has timed out while disconnected @@ -703,7 +703,7 @@ Seat 1: Player6 (big blind) showed [3d Tc] and lost with three of a kind, Eights Seat 2: Player21 showed [5d 5s] and lost with a full house, Eights full of Fives Seat 3: Player16 folded before Flop (didn't bet) Seat 4: Player11 showed [5h Kd] and lost with three of a kind, Eights -Seat 5: Player18 (button) showed [As Ad] and won (5600) with a full house, Eights full of Aces +Seat 5: Hero (button) showed [As Ad] and won (5600) with a full house, Eights full of Aces Seat 6: Player7 (small blind) showed [3h Jh] and lost with three of a kind, Eights @@ -713,32 +713,32 @@ Table '999999998 11' 6-max Seat #6 is the button Seat 1: Player6 (300 in chips) Seat 2: Player21 (600 in chips) Seat 3: Player16 (2500 in chips) -Seat 5: Player18 (13095 in chips) +Seat 5: Hero (13095 in chips) Seat 6: Player7 (600 in chips) Player6: posts the ante 80 Player21: posts the ante 80 Player16: posts the ante 80 -Player18: posts the ante 80 +Hero: posts the ante 80 Player7: posts the ante 80 Player6: posts small blind 200 Player21: posts big blind 400 *** HOLE CARDS *** -Dealt to Player18 [3s 4d] +Dealt to Hero [3s 4d] Player16: folds -Player18: raises 400 to 800 +Hero: raises 400 to 800 Player7: folds Player6: calls 20 and is all-in Player21: calls 120 and is all-in -Uncalled bet (280) returned to Player18 +Uncalled bet (280) returned to Hero *** FLOP *** [Kh Jc 7c] *** TURN *** [Kh Jc 7c] [Kd] *** RIVER *** [Kh Jc 7c Kd] [3c] *** SHOW DOWN *** Player21: shows [5h Qc] (a pair of Kings) -Player18: shows [3s 4d] (two pair, Kings and Threes) +Hero: shows [3s 4d] (two pair, Kings and Threes) Player1 is connected Player6 said, "haha dik" -Player18 collected 600 from side pot +Hero collected 600 from side pot Player6: shows [4s 7d] (two pair, Kings and Sevens) Player6 collected 1060 from main pot Player21 re-buys and receives 600 chips for 2 FPPs @@ -749,7 +749,7 @@ Board [Kh Jc 7c Kd 3c] Seat 1: Player6 (small blind) showed [4s 7d] and won (1060) with two pair, Kings and Sevens Seat 2: Player21 (big blind) showed [5h Qc] and lost with a pair of Kings Seat 3: Player16 folded before Flop (didn't bet) -Seat 5: Player18 showed [3s 4d] and won (600) with two pair, Kings and Threes +Seat 5: Hero showed [3s 4d] and won (600) with two pair, Kings and Threes Seat 6: Player7 (button) folded before Flop (didn't bet) @@ -760,39 +760,39 @@ Seat 1: Player6 (1060 in chips) Seat 2: Player21 (600 in chips) Seat 3: Player16 (2420 in chips) Seat 4: Player1 (600 in chips) -Seat 5: Player18 (13095 in chips) +Seat 5: Hero (13095 in chips) Seat 6: Player7 (520 in chips) Player6: posts the ante 80 Player21: posts the ante 80 Player16: posts the ante 80 Player1: posts the ante 80 -Player18: posts the ante 80 +Hero: posts the ante 80 Player7: posts the ante 80 Player21: posts small blind 200 Player16: posts big blind 400 *** HOLE CARDS *** -Dealt to Player18 [5d 6c] -Player18 said, "hahahaha" +Dealt to Hero [5d 6c] +Hero said, "hahahaha" Player1: raises 120 to 520 and is all-in -Player18: calls 520 +Hero: calls 520 Player7: calls 440 and is all-in Player6: folds Player21: calls 320 and is all-in Player16: calls 120 *** FLOP *** [8d 8c 7d] Player16: checks -Player18: checks +Hero: checks *** TURN *** [8d 8c 7d] [Qd] Player16: checks -Player18: checks +Hero: checks *** RIVER *** [8d 8c 7d Qd] [Ah] Player16: checks -Player18: checks +Hero: checks *** SHOW DOWN *** Player21: shows [Th Ts] (two pair, Tens and Eights) Player16: mucks hand Player1: mucks hand -Player18: mucks hand +Hero: mucks hand Player21 collected 320 from side pot Player7: shows [Td Qc] (two pair, Queens and Eights) Player6 said, "dik" @@ -805,7 +805,7 @@ Seat 1: Player6 (button) folded before Flop (didn't bet) Seat 2: Player21 (small blind) showed [Th Ts] and won (320) with two pair, Tens and Eights Seat 3: Player16 (big blind) mucked [Js 2c] Seat 4: Player1 mucked [2h 9d] -Seat 5: Player18 mucked [5d 6c] +Seat 5: Hero mucked [5d 6c] Seat 6: Player7 showed [Td Qc] and won (2680) with two pair, Queens and Eights @@ -816,19 +816,19 @@ Seat 1: Player6 (980 in chips) Seat 2: Player21 (320 in chips) Seat 3: Player16 (1820 in chips) Seat 4: Player1 (600 in chips) -Seat 5: Player18 (12495 in chips) +Seat 5: Hero (12495 in chips) Seat 6: Player7 (2680 in chips) Player6: posts the ante 120 Player21: posts the ante 120 Player16: posts the ante 120 Player1: posts the ante 120 -Player18: posts the ante 120 +Hero: posts the ante 120 Player7: posts the ante 120 Player16: posts small blind 300 Player1: posts big blind 480 and is all-in *** HOLE CARDS *** -Dealt to Player18 [2c 9h] -Player18: folds +Dealt to Hero [2c 9h] +Hero: folds Player7: folds Player6: raises 380 to 860 and is all-in Player21: folds @@ -850,7 +850,7 @@ Seat 1: Player6 showed [Jc 9c] and won (760) with high card Ace Seat 2: Player21 (button) folded before Flop (didn't bet) Seat 3: Player16 (small blind) showed [Jh 3h] and lost with high card Ace Seat 4: Player1 (big blind) showed [Js 7h] and won (2160) with a pair of Sevens -Seat 5: Player18 folded before Flop (didn't bet) +Seat 5: Hero folded before Flop (didn't bet) Seat 6: Player7 folded before Flop (didn't bet) @@ -861,31 +861,31 @@ Seat 1: Player6 (760 in chips) Seat 2: Player21 (200 in chips) Seat 3: Player16 (840 in chips) Seat 4: Player1 (2160 in chips) -Seat 5: Player18 (12375 in chips) +Seat 5: Hero (12375 in chips) Seat 6: Player7 (2560 in chips) Player6: posts the ante 120 Player21: posts the ante 120 Player16: posts the ante 120 Player1: posts the ante 120 -Player18: posts the ante 120 +Hero: posts the ante 120 Player7: posts the ante 120 Player1: posts small blind 300 -Player18: posts big blind 600 +Hero: posts big blind 600 *** HOLE CARDS *** -Dealt to Player18 [2d 4h] +Dealt to Hero [2d 4h] Player7: folds Player6 said, "dik face" Player6: raises 40 to 640 and is all-in Player21: calls 80 and is all-in Player16: folds Player1: folds -Player18: calls 40 +Hero: calls 40 *** FLOP *** [5h 4d 9h] Player6 said, "bye dumb shiiit" *** TURN *** [5h 4d 9h] [6d] *** RIVER *** [5h 4d 9h 6d] [Jd] *** SHOW DOWN *** -Player18: shows [2d 4h] (a pair of Fours) +Hero: shows [2d 4h] (a pair of Fours) Player6: shows [Jc Ad] (a pair of Jacks) Player6 collected 1340 from side pot Player21: shows [7h 7d] (a pair of Sevens) @@ -900,7 +900,7 @@ Seat 1: Player6 showed [Jc Ad] and won (2380) with a pair of Jacks Seat 2: Player21 showed [7h 7d] and lost with a pair of Sevens Seat 3: Player16 (button) folded before Flop (didn't bet) Seat 4: Player1 (small blind) folded before Flop -Seat 5: Player18 (big blind) showed [2d 4h] and lost with a pair of Fours +Seat 5: Hero (big blind) showed [2d 4h] and lost with a pair of Fours Seat 6: Player7 folded before Flop (didn't bet) @@ -911,38 +911,38 @@ Seat 1: Player6 (2380 in chips) Seat 2: Player21 (600 in chips) Seat 3: Player16 (720 in chips) Seat 4: Player1 (1740 in chips) -Seat 5: Player18 (11615 in chips) +Seat 5: Hero (11615 in chips) Seat 6: Player7 (2440 in chips) Player6: posts the ante 120 Player21: posts the ante 120 Player16: posts the ante 120 Player1: posts the ante 120 -Player18: posts the ante 120 +Hero: posts the ante 120 Player7: posts the ante 120 -Player18: posts small blind 300 +Hero: posts small blind 300 Player7: posts big blind 600 *** HOLE CARDS *** -Dealt to Player18 [Jd Js] +Dealt to Hero [Jd Js] Player6: raises 1660 to 2260 and is all-in Player21: folds Player16: calls 600 and is all-in Player1: calls 1620 and is all-in -Player18: calls 1960 +Hero: calls 1960 Player7: folds *** FLOP *** [Kc 8d Qh] Player6 said, "comn dik face omg ur so **** dik heads" *** TURN *** [Kc 8d Qh] [5s] *** RIVER *** [Kc 8d Qh 5s] [9s] *** SHOW DOWN *** -Player18: shows [Jd Js] (a pair of Jacks) +Hero: shows [Jd Js] (a pair of Jacks) Player6: shows [4c 4s] (a pair of Fours) -Player18 collected 1280 from side pot-2 +Hero collected 1280 from side pot-2 Player1: shows [As 4d] (high card Ace) -Player18 collected 3060 from side pot-1 +Hero collected 3060 from side pot-1 Player16: shows [Td Ks] (a pair of Kings) Player6 said, "bye **** head" Player16 collected 3720 from main pot -Player18 said, "byebye" +Hero said, "byebye" Player1 re-buys and receives 600 chips for 2 FPPs Player6 finished the tournament in 155th place *** SUMMARY *** @@ -952,7 +952,7 @@ Seat 1: Player6 showed [4c 4s] and lost with a pair of Fours Seat 2: Player21 folded before Flop (didn't bet) Seat 3: Player16 showed [Td Ks] and won (3720) with a pair of Kings Seat 4: Player1 (button) showed [As 4d] and lost with high card Ace -Seat 5: Player18 (small blind) showed [Jd Js] and won (4340) with a pair of Jacks +Seat 5: Hero (small blind) showed [Jd Js] and won (4340) with a pair of Jacks Seat 6: Player7 (big blind) folded before Flop @@ -962,20 +962,20 @@ Table '999999998 11' 6-max Seat #5 is the button Seat 2: Player21 (480 in chips) Seat 3: Player16 (3720 in chips) Seat 4: Player1 (600 in chips) -Seat 5: Player18 (13575 in chips) +Seat 5: Hero (13575 in chips) Seat 6: Player7 (1720 in chips) Player21: posts the ante 120 Player16: posts the ante 120 Player1: posts the ante 120 -Player18: posts the ante 120 +Hero: posts the ante 120 Player7: posts the ante 120 Player7: posts small blind 300 Player21: posts big blind 360 and is all-in *** HOLE CARDS *** -Dealt to Player18 [Qh 3s] +Dealt to Hero [Qh 3s] Player16: folds Player1: calls 480 and is all-in -Player18: folds +Hero: folds Player7: calls 180 *** FLOP *** [8h 5c 3d] *** TURN *** [8h 5c 3d] [7d] @@ -994,7 +994,7 @@ Board [8h 5c 3d 7d 2s] Seat 2: Player21 (big blind) showed [6c Ks] and lost with high card King Seat 3: Player16 folded before Flop (didn't bet) Seat 4: Player1 showed [5h Qs] and won (1920) with a pair of Fives -Seat 5: Player18 (button) folded before Flop (didn't bet) +Seat 5: Hero (button) folded before Flop (didn't bet) Seat 6: Player7 (small blind) showed [9s Ac] and lost with high card Ace @@ -1005,17 +1005,17 @@ Seat 1: Player5 (1940 in chips) out of hand (moved from another table into small Seat 2: Player4 (3540 in chips) out of hand (moved from another table into small blind) Seat 3: Player16 (4100 in chips) Seat 4: Player1 (2420 in chips) -Seat 5: Player18 (13955 in chips) +Seat 5: Hero (13955 in chips) Seat 6: Player7 (1620 in chips) Player16: posts the ante 160 Player1: posts the ante 160 -Player18: posts the ante 160 +Hero: posts the ante 160 Player7: posts the ante 160 Player16: posts small blind 400 Player1: posts big blind 800 *** HOLE CARDS *** -Dealt to Player18 [Qs 4h] -Player18: folds +Dealt to Hero [Qs 4h] +Hero: folds Player7: folds Player16: raises 3140 to 3940 and is all-in Player1: calls 1460 and is all-in @@ -1032,7 +1032,7 @@ Total pot 5160 | Rake 0 Board [2d 7c Jh 3c 5h] Seat 3: Player16 (small blind) showed [Ah Kh] and lost with high card Ace Seat 4: Player1 (big blind) showed [Tc 5s] and won (5160) with a pair of Fives -Seat 5: Player18 folded before Flop (didn't bet) +Seat 5: Hero folded before Flop (didn't bet) Seat 6: Player7 (button) folded before Flop (didn't bet) @@ -1043,24 +1043,24 @@ Seat 1: Player5 (1940 in chips) Seat 2: Player4 (3540 in chips) Seat 3: Player16 (1680 in chips) Seat 4: Player1 (5160 in chips) -Seat 5: Player18 (13795 in chips) +Seat 5: Hero (13795 in chips) Seat 6: Player7 (1460 in chips) Player5: posts the ante 160 Player4: posts the ante 160 Player16: posts the ante 160 Player1: posts the ante 160 -Player18: posts the ante 160 +Hero: posts the ante 160 Player7: posts the ante 160 Player1: posts small blind 400 -Player18: posts big blind 800 +Hero: posts big blind 800 *** HOLE CARDS *** -Dealt to Player18 [Ac Th] +Dealt to Hero [Ac Th] Player7: folds Player5: folds Player4: folds Player16: raises 720 to 1520 and is all-in Player1: raises 3480 to 5000 and is all-in -Player18: folds +Hero: folds Uncalled bet (3480) returned to Player1 *** FLOP *** [4s 3c Kc] *** TURN *** [4s 3c Kc] [7s] @@ -1077,7 +1077,7 @@ Seat 1: Player5 folded before Flop (didn't bet) Seat 2: Player4 folded before Flop (didn't bet) Seat 3: Player16 (button) showed [9d Qc] and lost with a pair of Nines Seat 4: Player1 (small blind) showed [Qs Kh] and won (4800) with a pair of Kings -Seat 5: Player18 (big blind) folded before Flop +Seat 5: Hero (big blind) folded before Flop Seat 6: Player7 folded before Flop (didn't bet) @@ -1087,35 +1087,35 @@ Table '999999998 11' 6-max Seat #4 is the button Seat 1: Player5 (1780 in chips) Seat 2: Player4 (3380 in chips) Seat 4: Player1 (8280 in chips) -Seat 5: Player18 (12835 in chips) +Seat 5: Hero (12835 in chips) Seat 6: Player7 (1300 in chips) Player5: posts the ante 160 Player4: posts the ante 160 Player1: posts the ante 160 -Player18: posts the ante 160 +Hero: posts the ante 160 Player7: posts the ante 160 -Player18: posts small blind 400 +Hero: posts small blind 400 Player7: posts big blind 800 *** HOLE CARDS *** -Dealt to Player18 [9d 7d] +Dealt to Hero [9d 7d] Player5: folds Player4: folds Player1: calls 800 Player9 is connected -Player18: calls 400 +Hero: calls 400 Player7: checks *** FLOP *** [Tc Qd 9c] -Player18: checks +Hero: checks Player7: bets 340 and is all-in Player1: calls 340 -Player18: calls 340 +Hero: calls 340 *** TURN *** [Tc Qd 9c] [Td] -Player18: checks +Hero: checks Player1: checks *** RIVER *** [Tc Qd 9c Td] [Jh] -Player18: checks +Hero: checks Player1: bets 2400 -Player18: folds +Hero: folds Uncalled bet (2400) returned to Player1 *** SHOW DOWN *** Player1: shows [6c 8d] (a straight, Eight to Queen) @@ -1128,7 +1128,7 @@ Board [Tc Qd 9c Td Jh] Seat 1: Player5 folded before Flop (didn't bet) Seat 2: Player4 folded before Flop (didn't bet) Seat 4: Player1 (button) showed [6c 8d] and won (2110) with a straight, Eight to Queen -Seat 5: Player18 (small blind) folded on the River +Seat 5: Hero (small blind) folded on the River Seat 6: Player7 (big blind) showed [Jc 8c] and won (2110) with a straight, Eight to Queen @@ -1139,22 +1139,22 @@ Seat 1: Player5 (1620 in chips) Seat 2: Player4 (3220 in chips) Seat 3: Player9 (3065 in chips) Seat 4: Player1 (9090 in chips) -Seat 5: Player18 (11535 in chips) +Seat 5: Hero (11535 in chips) Seat 6: Player7 (2110 in chips) Player5: posts the ante 160 Player4: posts the ante 160 Player9: posts the ante 160 Player1: posts the ante 160 -Player18: posts the ante 160 +Hero: posts the ante 160 Player7: posts the ante 160 Player7: posts small blind 400 Player5: posts big blind 800 *** HOLE CARDS *** -Dealt to Player18 [3c Kd] +Dealt to Hero [3c Kd] Player4: folds Player9: folds Player1: folds -Player18: folds +Hero: folds Player7: folds Uncalled bet (400) returned to Player5 Player5 collected 1760 from pot @@ -1164,7 +1164,7 @@ Seat 1: Player5 (big blind) collected (1760) Seat 2: Player4 folded before Flop (didn't bet) Seat 3: Player9 folded before Flop (didn't bet) Seat 4: Player1 folded before Flop (didn't bet) -Seat 5: Player18 (button) folded before Flop (didn't bet) +Seat 5: Hero (button) folded before Flop (didn't bet) Seat 6: Player7 (small blind) folded before Flop @@ -1175,21 +1175,21 @@ Seat 1: Player5 (2820 in chips) Seat 2: Player4 (3060 in chips) Seat 3: Player9 (2905 in chips) Seat 4: Player1 (8930 in chips) -Seat 5: Player18 (11375 in chips) +Seat 5: Hero (11375 in chips) Seat 6: Player7 (1550 in chips) Player5: posts the ante 160 Player4: posts the ante 160 Player9: posts the ante 160 Player1: posts the ante 160 -Player18: posts the ante 160 +Hero: posts the ante 160 Player7: posts the ante 160 Player5: posts small blind 400 Player4: posts big blind 800 *** HOLE CARDS *** -Dealt to Player18 [2h Qc] +Dealt to Hero [2h Qc] Player9: folds Player1: folds -Player18: folds +Hero: folds Player7: folds Player5: calls 400 Player4: checks @@ -1210,7 +1210,7 @@ Seat 1: Player5 (small blind) folded on the Turn Seat 2: Player4 (big blind) collected (2560) Seat 3: Player9 folded before Flop (didn't bet) Seat 4: Player1 folded before Flop (didn't bet) -Seat 5: Player18 folded before Flop (didn't bet) +Seat 5: Hero folded before Flop (didn't bet) Seat 6: Player7 (button) folded before Flop (didn't bet) @@ -1221,20 +1221,20 @@ Seat 1: Player5 (1860 in chips) Seat 2: Player4 (4660 in chips) Seat 3: Player9 (2745 in chips) Seat 4: Player1 (8770 in chips) -Seat 5: Player18 (11215 in chips) +Seat 5: Hero (11215 in chips) Seat 6: Player7 (1390 in chips) Player5: posts the ante 160 Player4: posts the ante 160 Player9: posts the ante 160 Player1: posts the ante 160 -Player18: posts the ante 160 +Hero: posts the ante 160 Player7: posts the ante 160 Player4: posts small blind 400 Player9: posts big blind 800 *** HOLE CARDS *** -Dealt to Player18 [3s 3c] +Dealt to Hero [3s 3c] Player1: raises 4800 to 5600 -Player18: folds +Hero: folds Player7: folds Player5: folds Player4: folds @@ -1247,7 +1247,7 @@ Seat 1: Player5 (button) folded before Flop (didn't bet) Seat 2: Player4 (small blind) folded before Flop Seat 3: Player9 (big blind) folded before Flop Seat 4: Player1 collected (2960) -Seat 5: Player18 folded before Flop (didn't bet) +Seat 5: Hero folded before Flop (didn't bet) Seat 6: Player7 folded before Flop (didn't bet) @@ -1258,19 +1258,19 @@ Seat 1: Player5 (1700 in chips) Seat 2: Player4 (4100 in chips) Seat 3: Player9 (1785 in chips) Seat 4: Player1 (10770 in chips) -Seat 5: Player18 (11055 in chips) +Seat 5: Hero (11055 in chips) Seat 6: Player7 (1230 in chips) Player5: posts the ante 240 Player4: posts the ante 240 Player9: posts the ante 240 Player1: posts the ante 240 -Player18: posts the ante 240 +Hero: posts the ante 240 Player7: posts the ante 240 Player9: posts small blind 600 Player1: posts big blind 1200 *** HOLE CARDS *** -Dealt to Player18 [2c 6d] -Player18: folds +Dealt to Hero [2c 6d] +Hero: folds Player7: calls 990 and is all-in Player5: raises 260 to 1460 and is all-in Player4: folds @@ -1292,7 +1292,7 @@ Seat 1: Player5 showed [Jc Jd] and won (5950) with three of a kind, Jacks Seat 2: Player4 (button) folded before Flop (didn't bet) Seat 3: Player9 (small blind) folded before Flop Seat 4: Player1 (big blind) showed [2h 9s] and lost with high card Jack -Seat 5: Player18 folded before Flop (didn't bet) +Seat 5: Hero folded before Flop (didn't bet) Seat 6: Player7 showed [4d Ac] and lost with a pair of Fours @@ -1302,20 +1302,20 @@ Table '999999998 48' 6-max Seat #1 is the button Seat 1: Player17 (14798 in chips) Seat 2: Player3 (7215 in chips) Seat 3: Player15 (6378 in chips) -Seat 4: Player18 (10815 in chips) +Seat 4: Hero (10815 in chips) Seat 5: Player2 (8520 in chips) Seat 6: Player22 (11935 in chips) Player17: posts the ante 240 Player3: posts the ante 240 Player15: posts the ante 240 -Player18: posts the ante 240 +Hero: posts the ante 240 Player2: posts the ante 240 Player22: posts the ante 240 Player3: posts small blind 600 Player15: posts big blind 1200 *** HOLE CARDS *** -Dealt to Player18 [2s Td] -Player18: folds +Dealt to Hero [2s Td] +Hero: folds Player2: raises 7080 to 8280 and is all-in Player22: calls 8280 Player17: folds @@ -1338,7 +1338,7 @@ Board [Ac Th 9d 3c 4d] Seat 1: Player17 (button) folded before Flop (didn't bet) Seat 2: Player3 (small blind) folded before Flop Seat 3: Player15 (big blind) showed [7d 7c] and lost with a pair of Sevens -Seat 4: Player18 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player2 showed [Kd 5s] and lost with high card Ace Seat 6: Player22 showed [2c Ah] and won (24738) with a pair of Aces @@ -1348,19 +1348,19 @@ PokerStars Game #28167203221: Tournament #999999999, 1FPP Hold'em No Limit - Lev Table '999999998 48' 6-max Seat #2 is the button Seat 1: Player17 (14558 in chips) Seat 2: Player3 (6375 in chips) -Seat 4: Player18 (10575 in chips) +Seat 4: Hero (10575 in chips) Seat 6: Player22 (28153 in chips) Player17: posts the ante 240 Player3: posts the ante 240 -Player18: posts the ante 240 +Hero: posts the ante 240 Player22: posts the ante 240 -Player18: posts small blind 600 +Hero: posts small blind 600 Player22: posts big blind 1200 *** HOLE CARDS *** -Dealt to Player18 [6h Jd] +Dealt to Hero [6h Jd] Player17: folds Player3: raises 4935 to 6135 and is all-in -Player18: folds +Hero: folds Player19 is connected Player22: calls 4935 Player10 is connected @@ -1377,7 +1377,7 @@ Total pot 13830 | Rake 0 Board [2s Kh 9s Kc 3c] Seat 1: Player17 folded before Flop (didn't bet) Seat 2: Player3 (button) showed [5h As] and lost with a pair of Kings -Seat 4: Player18 (small blind) folded before Flop +Seat 4: Hero (small blind) folded before Flop Seat 6: Player22 (big blind) showed [Ah Tc] and won (13830) with a pair of Kings @@ -1386,19 +1386,19 @@ PokerStars Game #30715143285: Tournament #999999999, 1FPP Hold'em No Limit - Lev Table '999999998 48' 6-max Seat #4 is the button Seat 1: Player17 (14318 in chips) Seat 3: Player19 (1508 in chips) -Seat 4: Player18 (9735 in chips) +Seat 4: Hero (9735 in chips) Seat 5: Player10 (5690 in chips) out of hand (moved from another table into small blind) Seat 6: Player22 (35608 in chips) Player17: posts the ante 240 Player19: posts the ante 240 -Player18: posts the ante 240 +Hero: posts the ante 240 Player22: posts the ante 240 Player22: posts small blind 600 Player17: posts big blind 1200 *** HOLE CARDS *** -Dealt to Player18 [2s Ac] +Dealt to Hero [2s Ac] Player19: folds -Player18: raises 8295 to 9495 and is all-in +Hero: raises 8295 to 9495 and is all-in Player22: folds Player17: calls 8295 *** FLOP *** [Kc 5d 3d] @@ -1406,14 +1406,14 @@ Player17: calls 8295 *** RIVER *** [Kc 5d 3d 6c] [Ad] *** SHOW DOWN *** Player17: shows [Jh Qd] (high card Ace) -Player18: shows [2s Ac] (a pair of Aces) -Player18 collected 20550 from pot +Hero: shows [2s Ac] (a pair of Aces) +Hero collected 20550 from pot *** SUMMARY *** Total pot 20550 | Rake 0 Board [Kc 5d 3d 6c Ad] Seat 1: Player17 (big blind) showed [Jh Qd] and lost with high card Ace Seat 3: Player19 folded before Flop (didn't bet) -Seat 4: Player18 (button) showed [2s Ac] and won (20550) with a pair of Aces +Seat 4: Hero (button) showed [2s Ac] and won (20550) with a pair of Aces Seat 6: Player22 (small blind) folded before Flop @@ -1422,19 +1422,19 @@ PokerStars Game #16429177523: Tournament #999999999, 1FPP Hold'em No Limit - Lev Table '999999998 48' 6-max Seat #6 is the button Seat 1: Player17 (4583 in chips) Seat 3: Player19 (1268 in chips) -Seat 4: Player18 (20550 in chips) +Seat 4: Hero (20550 in chips) Seat 5: Player10 (5690 in chips) Seat 6: Player22 (34768 in chips) Player17: posts the ante 240 Player19: posts the ante 240 -Player18: posts the ante 240 +Hero: posts the ante 240 Player10: posts the ante 240 Player22: posts the ante 240 Player17: posts small blind 600 Player19: posts big blind 1028 and is all-in *** HOLE CARDS *** -Dealt to Player18 [3d 6c] -Player18: folds +Dealt to Hero [3d 6c] +Hero: folds Player10: folds Player22: raises 1372 to 2400 Player17: calls 1800 @@ -1455,7 +1455,7 @@ Total pot 7028 Main pot 4284. Side pot 2744. | Rake 0 Board [9c 4s Ac Kc Qs] Seat 1: Player17 (small blind) folded on the Flop Seat 3: Player19 (big blind) showed [7s 4c] and lost with a pair of Fours -Seat 4: Player18 folded before Flop (didn't bet) +Seat 4: Hero folded before Flop (didn't bet) Seat 5: Player10 folded before Flop (didn't bet) Seat 6: Player22 (button) showed [Jd Qd] and won (7028) with a pair of Queens @@ -1465,42 +1465,42 @@ PokerStars Game #14176179211: Tournament #999999999, 1FPP Hold'em No Limit - Lev Table '999999998 5' 6-max Seat #4 is the button Seat 1: Player14 (5780 in chips) Seat 2: Player17 (1943 in chips) -Seat 3: Player18 (20310 in chips) +Seat 3: Hero (20310 in chips) Seat 4: Player20 (23421 in chips) Seat 5: Player8 (19258 in chips) Seat 6: Player23 (26326 in chips) Player14: posts the ante 240 Player17: posts the ante 240 -Player18: posts the ante 240 +Hero: posts the ante 240 Player20: posts the ante 240 Player8: posts the ante 240 Player23: posts the ante 240 Player8: posts small blind 600 Player23: posts big blind 1200 *** HOLE CARDS *** -Dealt to Player18 [7d As] +Dealt to Hero [7d As] Player14: folds Player17: folds -Player18: raises 18000 to 19200 +Hero: raises 18000 to 19200 Player20: raises 3981 to 23181 and is all-in Player8: folds Player23: folds -Player18: calls 870 and is all-in +Hero: calls 870 and is all-in Uncalled bet (3111) returned to Player20 *** FLOP *** [7h 4h 3s] *** TURN *** [7h 4h 3s] [Th] *** RIVER *** [7h 4h 3s Th] [Ah] *** SHOW DOWN *** -Player18: shows [7d As] (two pair, Aces and Sevens) +Hero: shows [7d As] (two pair, Aces and Sevens) Player20: shows [Ad Kh] (a flush, Ace high) Player20 collected 43380 from pot -Player18 finished the tournament in 54th place +Hero finished the tournament in 54th place *** SUMMARY *** Total pot 43380 | Rake 0 Board [7h 4h 3s Th Ah] Seat 1: Player14 folded before Flop (didn't bet) Seat 2: Player17 folded before Flop (didn't bet) -Seat 3: Player18 showed [7d As] and lost with two pair, Aces and Sevens +Seat 3: Hero showed [7d As] and lost with two pair, Aces and Sevens Seat 4: Player20 (button) showed [Ad Kh] and won (43380) with a flush, Ace high Seat 5: Player8 (small blind) folded before Flop Seat 6: Player23 (big blind) folded before Flop diff --git a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-MTT-1-KO.201008.txt b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-MTT-1-KO.201008.txt index 09695308..290e248b 100644 --- a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-MTT-1-KO.201008.txt +++ b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-MTT-1-KO.201008.txt @@ -8,11 +8,11 @@ Seat 5: svarcipapa (2000 in chips) Seat 6: titasands (2000 in chips) Seat 7: Gibsons66 (2000 in chips) Seat 8: tanker175 (2000 in chips) -Seat 9: s0rrow (2000 in chips) +Seat 9: Hero (2000 in chips) ruslan999588: posts small blind 10 Buell XB12sl: posts big blind 20 *** HOLE CARDS *** -Dealt to s0rrow [7h Qc] +Dealt to Hero [7h Qc] seric1975: folds svarcipapa: folds titasands: folds @@ -20,7 +20,7 @@ Gibsons66 has timed out Gibsons66: folds Gibsons66 is sitting out tanker175: calls 20 -s0rrow: calls 20 +Hero: calls 20 g0ty4: folds ruslan999588: calls 10 Buell XB12sl: checks @@ -28,19 +28,19 @@ Buell XB12sl: checks ruslan999588: checks Buell XB12sl: checks tanker175: checks -s0rrow: bets 100 +Hero: bets 100 ruslan999588: folds Buell XB12sl: folds tanker175: calls 100 *** TURN *** [8c 4h Qd] [Jd] tanker175: checks -s0rrow: checks +Hero: checks *** RIVER *** [8c 4h Qd Jd] [Ah] tanker175: checks -s0rrow: checks +Hero: checks *** SHOW DOWN *** tanker175: shows [Tc Qh] (a pair of Queens) -s0rrow: mucks hand +Hero: mucks hand tanker175 collected 280 from pot *** SUMMARY *** Total pot 280 | Rake 0 @@ -53,7 +53,7 @@ Seat 5: svarcipapa folded before Flop (didn't bet) Seat 6: titasands folded before Flop (didn't bet) Seat 7: Gibsons66 folded before Flop (didn't bet) Seat 8: tanker175 showed [Tc Qh] and won (280) with a pair of Queens -Seat 9: s0rrow mucked [7h Qc] +Seat 9: Hero mucked [7h Qc] @@ -67,11 +67,11 @@ Seat 5: svarcipapa (2000 in chips) Seat 6: titasands (2000 in chips) Seat 7: Gibsons66 (2000 in chips) is sitting out Seat 8: tanker175 (2160 in chips) -Seat 9: s0rrow (1880 in chips) +Seat 9: Hero (1880 in chips) Buell XB12sl: posts small blind 10 seric1975: posts big blind 20 *** HOLE CARDS *** -Dealt to s0rrow [Ts Ad] +Dealt to Hero [Ts Ad] svarcipapa: folds titasands is disconnected titasands has timed out while disconnected @@ -79,7 +79,7 @@ titasands: folds Gibsons66: folds titasands is sitting out tanker175: folds -s0rrow: folds +Hero: folds g0ty4: folds ruslan999588: calls 20 Buell XB12sl: calls 10 @@ -105,7 +105,7 @@ Seat 5: svarcipapa folded before Flop (didn't bet) Seat 6: titasands folded before Flop (didn't bet) Seat 7: Gibsons66 folded before Flop (didn't bet) Seat 8: tanker175 folded before Flop (didn't bet) -Seat 9: s0rrow folded before Flop (didn't bet) +Seat 9: Hero folded before Flop (didn't bet) @@ -119,15 +119,15 @@ Seat 5: svarcipapa (2000 in chips) Seat 6: titasands (2000 in chips) is sitting out Seat 7: Gibsons66 (2000 in chips) is sitting out Seat 8: tanker175 (2160 in chips) -Seat 9: s0rrow (1880 in chips) +Seat 9: Hero (1880 in chips) seric1975: posts small blind 10 svarcipapa: posts big blind 20 *** HOLE CARDS *** -Dealt to s0rrow [4s 4d] +Dealt to Hero [4s 4d] titasands: folds Gibsons66: folds tanker175: calls 20 -s0rrow: raises 40 to 60 +Hero: raises 40 to 60 g0ty4: folds ruslan999588: calls 60 Buell XB12sl: folds @@ -136,19 +136,19 @@ svarcipapa: folds tanker175: calls 40 *** FLOP *** [Qc 2h 9c] tanker175: checks -s0rrow: bets 120 +Hero: bets 120 ruslan999588: folds tanker175: calls 120 *** TURN *** [Qc 2h 9c] [4h] tanker175: checks -s0rrow: bets 280 +Hero: bets 280 tanker175: calls 280 *** RIVER *** [Qc 2h 9c 4h] [5h] tanker175: checks -s0rrow: bets 1420 and is all-in +Hero: bets 1420 and is all-in tanker175: folds -Uncalled bet (1420) returned to s0rrow -s0rrow collected 1010 from pot +Uncalled bet (1420) returned to Hero +Hero collected 1010 from pot *** SUMMARY *** Total pot 1010 | Rake 0 Board [Qc 2h 9c 4h 5h] @@ -160,7 +160,7 @@ Seat 5: svarcipapa (big blind) folded before Flop Seat 6: titasands folded before Flop (didn't bet) Seat 7: Gibsons66 folded before Flop (didn't bet) Seat 8: tanker175 folded on the River -Seat 9: s0rrow collected (1010) +Seat 9: Hero collected (1010) @@ -174,14 +174,14 @@ Seat 5: svarcipapa (1980 in chips) Seat 6: titasands (2000 in chips) is sitting out Seat 7: Gibsons66 (2000 in chips) is sitting out Seat 8: tanker175 (1700 in chips) -Seat 9: s0rrow (2430 in chips) +Seat 9: Hero (2430 in chips) svarcipapa: posts small blind 10 titasands: posts big blind 20 *** HOLE CARDS *** -Dealt to s0rrow [6c Qd] +Dealt to Hero [6c Qd] Gibsons66: folds tanker175: calls 20 -s0rrow: folds +Hero: folds g0ty4: folds ruslan999588: calls 20 Buell XB12sl: calls 20 @@ -223,7 +223,7 @@ Seat 5: svarcipapa (small blind) folded before Flop Seat 6: titasands (big blind) folded before Flop Seat 7: Gibsons66 folded before Flop (didn't bet) Seat 8: tanker175 mucked [8s 7s] -Seat 9: s0rrow folded before Flop (didn't bet) +Seat 9: Hero folded before Flop (didn't bet) @@ -237,13 +237,13 @@ Seat 5: svarcipapa (1970 in chips) Seat 6: titasands (1980 in chips) is sitting out Seat 7: Gibsons66 (2000 in chips) is sitting out Seat 8: tanker175 (1560 in chips) -Seat 9: s0rrow (2430 in chips) +Seat 9: Hero (2430 in chips) titasands: posts small blind 10 Gibsons66: posts big blind 20 *** HOLE CARDS *** -Dealt to s0rrow [6c 8h] +Dealt to Hero [6c 8h] tanker175: folds -s0rrow: folds +Hero: folds g0ty4: calls 20 ruslan999588: calls 20 Buell XB12sl: folds @@ -275,7 +275,7 @@ Seat 5: svarcipapa (button) folded before Flop (didn't bet) Seat 6: titasands (small blind) folded before Flop Seat 7: Gibsons66 (big blind) folded before Flop Seat 8: tanker175 folded before Flop (didn't bet) -Seat 9: s0rrow folded before Flop (didn't bet) +Seat 9: Hero folded before Flop (didn't bet) @@ -289,12 +289,12 @@ Seat 5: svarcipapa (1970 in chips) Seat 6: titasands (1970 in chips) is sitting out Seat 7: Gibsons66 (1980 in chips) is sitting out Seat 8: tanker175 (1560 in chips) -Seat 9: s0rrow (2430 in chips) +Seat 9: Hero (2430 in chips) Gibsons66: posts small blind 10 tanker175: posts big blind 20 *** HOLE CARDS *** -Dealt to s0rrow [4c 2s] -s0rrow: folds +Dealt to Hero [4c 2s] +Hero: folds g0ty4: folds ruslan999588: folds Buell XB12sl: calls 20 @@ -328,7 +328,7 @@ Seat 5: svarcipapa folded before Flop (didn't bet) Seat 6: titasands (button) folded before Flop (didn't bet) Seat 7: Gibsons66 (small blind) folded before Flop Seat 8: tanker175 (big blind) showed [9d As] and won (25) with a pair of Eights -Seat 9: s0rrow folded before Flop (didn't bet) +Seat 9: Hero folded before Flop (didn't bet) @@ -342,11 +342,11 @@ Seat 5: svarcipapa (1970 in chips) Seat 6: titasands (1970 in chips) is sitting out Seat 7: Gibsons66 (1970 in chips) is sitting out Seat 8: tanker175 (1565 in chips) -Seat 9: s0rrow (2430 in chips) +Seat 9: Hero (2430 in chips) tanker175: posts small blind 10 -s0rrow: posts big blind 20 +Hero: posts big blind 20 *** HOLE CARDS *** -Dealt to s0rrow [Tc 4h] +Dealt to Hero [Tc 4h] g0ty4: folds ruslan999588: calls 20 Buell XB12sl: folds @@ -355,20 +355,20 @@ svarcipapa: calls 20 titasands: folds Gibsons66: folds tanker175: calls 10 -s0rrow: checks +Hero: checks *** FLOP *** [Th 5s 5d] tanker175: checks -s0rrow: checks +Hero: checks ruslan999588: checks svarcipapa: checks *** TURN *** [Th 5s 5d] [5h] tanker175: checks -s0rrow: bets 40 +Hero: bets 40 ruslan999588: folds svarcipapa: folds tanker175: folds -Uncalled bet (40) returned to s0rrow -s0rrow collected 80 from pot +Uncalled bet (40) returned to Hero +Hero collected 80 from pot *** SUMMARY *** Total pot 80 | Rake 0 Board [Th 5s 5d 5h] @@ -380,7 +380,7 @@ Seat 5: svarcipapa folded on the Turn Seat 6: titasands folded before Flop (didn't bet) Seat 7: Gibsons66 (button) folded before Flop (didn't bet) Seat 8: tanker175 (small blind) folded on the Turn -Seat 9: s0rrow (big blind) collected (80) +Seat 9: Hero (big blind) collected (80) @@ -393,18 +393,18 @@ Seat 4: seric1975 (2050 in chips) Seat 5: svarcipapa (1950 in chips) Seat 7: Gibsons66 (1970 in chips) is sitting out Seat 8: tanker175 (1545 in chips) -Seat 9: s0rrow (2490 in chips) -s0rrow: posts small blind 10 +Seat 9: Hero (2490 in chips) +Hero: posts small blind 10 g0ty4: posts big blind 20 *** HOLE CARDS *** -Dealt to s0rrow [3s 9s] +Dealt to Hero [3s 9s] ruslan999588: calls 20 Buell XB12sl: folds seric1975: folds svarcipapa: folds Gibsons66: folds tanker175: folds -s0rrow: folds +Hero: folds g0ty4: checks *** FLOP *** [Ks Jh Qd] g0ty4: checks @@ -429,7 +429,7 @@ Seat 4: seric1975 folded before Flop (didn't bet) Seat 5: svarcipapa folded before Flop (didn't bet) Seat 7: Gibsons66 folded before Flop (didn't bet) Seat 8: tanker175 (button) folded before Flop (didn't bet) -Seat 9: s0rrow (small blind) folded before Flop +Seat 9: Hero (small blind) folded before Flop @@ -442,32 +442,32 @@ Seat 4: seric1975 (2050 in chips) Seat 5: svarcipapa (1950 in chips) Seat 7: Gibsons66 (1970 in chips) is sitting out Seat 8: tanker175 (1545 in chips) -Seat 9: s0rrow (2480 in chips) +Seat 9: Hero (2480 in chips) g0ty4: posts small blind 10 ruslan999588: posts big blind 20 *** HOLE CARDS *** -Dealt to s0rrow [Tc 9s] +Dealt to Hero [Tc 9s] Buell XB12sl: folds seric1975: calls 20 svarcipapa: folds Gibsons66: folds tanker175: folds -s0rrow: calls 20 +Hero: calls 20 g0ty4: folds ruslan999588: checks *** FLOP *** [6s 7h 3s] ruslan999588: checks seric1975: checks -s0rrow: bets 60 +Hero: bets 60 ruslan999588: calls 60 seric1975: folds *** TURN *** [6s 7h 3s] [2d] ruslan999588: checks ramones004 is connected -s0rrow: checks +Hero: checks *** RIVER *** [6s 7h 3s 2d] [3c] ruslan999588: bets 100 -s0rrow: folds +Hero: folds Uncalled bet (100) returned to ruslan999588 ruslan999588 collected 190 from pot ruslan999588: doesn't show hand @@ -481,7 +481,7 @@ Seat 4: seric1975 folded on the Flop Seat 5: svarcipapa folded before Flop (didn't bet) Seat 7: Gibsons66 folded before Flop (didn't bet) Seat 8: tanker175 folded before Flop (didn't bet) -Seat 9: s0rrow (button) folded on the River +Seat 9: Hero (button) folded on the River @@ -495,17 +495,17 @@ Seat 5: svarcipapa (1950 in chips) Seat 6: ramones004 (2350 in chips) Seat 7: Gibsons66 (1970 in chips) is sitting out Seat 8: tanker175 (1545 in chips) -Seat 9: s0rrow (2400 in chips) +Seat 9: Hero (2400 in chips) ruslan999588: posts small blind 10 Buell XB12sl: posts big blind 20 *** HOLE CARDS *** -Dealt to s0rrow [2h 6s] +Dealt to Hero [2h 6s] seric1975: calls 20 svarcipapa: folds ramones004: folds Gibsons66: folds tanker175: calls 20 -s0rrow: folds +Hero: folds g0ty4: folds ruslan999588: calls 10 Buell XB12sl: checks @@ -542,7 +542,7 @@ Seat 5: svarcipapa folded before Flop (didn't bet) Seat 6: ramones004 folded before Flop (didn't bet) Seat 7: Gibsons66 folded before Flop (didn't bet) Seat 8: tanker175 showed [6d Ah] and won (80) with two pair, Aces and Kings -Seat 9: s0rrow folded before Flop (didn't bet) +Seat 9: Hero folded before Flop (didn't bet) @@ -556,16 +556,16 @@ Seat 5: svarcipapa (1950 in chips) Seat 6: ramones004 (2350 in chips) Seat 7: Gibsons66 (1970 in chips) Seat 8: tanker175 (1605 in chips) -Seat 9: s0rrow (2400 in chips) +Seat 9: Hero (2400 in chips) Buell XB12sl: posts small blind 15 seric1975: posts big blind 30 *** HOLE CARDS *** -Dealt to s0rrow [5s 3h] +Dealt to Hero [5s 3h] svarcipapa: folds ramones004: raises 60 to 90 Gibsons66: calls 90 tanker175: folds -s0rrow: folds +Hero: folds g0ty4: folds ruslan999588: calls 90 Buell XB12sl: folds @@ -592,7 +592,7 @@ Seat 5: svarcipapa folded before Flop (didn't bet) Seat 6: ramones004 folded on the Turn Seat 7: Gibsons66 collected (615) Seat 8: tanker175 folded before Flop (didn't bet) -Seat 9: s0rrow folded before Flop (didn't bet) +Seat 9: Hero folded before Flop (didn't bet) @@ -606,15 +606,15 @@ Seat 5: svarcipapa (1950 in chips) Seat 6: ramones004 (2110 in chips) Seat 7: Gibsons66 (2345 in chips) Seat 8: tanker175 (1605 in chips) -Seat 9: s0rrow (2400 in chips) +Seat 9: Hero (2400 in chips) seric1975: posts small blind 15 svarcipapa: posts big blind 30 *** HOLE CARDS *** -Dealt to s0rrow [3s Jh] +Dealt to Hero [3s Jh] ramones004: calls 30 Gibsons66: calls 30 tanker175: folds -s0rrow: folds +Hero: folds g0ty4: folds ruslan999588: calls 30 Buell XB12sl: calls 30 @@ -660,7 +660,7 @@ Seat 5: svarcipapa (big blind) folded on the River Seat 6: ramones004 showed [Ts Ks] and won (270) with a pair of Tens Seat 7: Gibsons66 showed [2s Tc] and lost with a pair of Tens Seat 8: tanker175 folded before Flop (didn't bet) -Seat 9: s0rrow folded before Flop (didn't bet) +Seat 9: Hero folded before Flop (didn't bet) @@ -673,17 +673,17 @@ Seat 5: svarcipapa (1920 in chips) Seat 6: ramones004 (2320 in chips) Seat 7: Gibsons66 (2285 in chips) Seat 8: tanker175 (1605 in chips) -Seat 9: s0rrow (2400 in chips) +Seat 9: Hero (2400 in chips) svarcipapa: posts small blind 15 ramones004: posts big blind 30 *** HOLE CARDS *** -Dealt to s0rrow [As Qd] +Dealt to Hero [As Qd] Gibsons66 has timed out Gibsons66: folds Gibsons66 is sitting out tanker175: calls 30 Gibsons66 has returned -s0rrow: raises 90 to 120 +Hero: raises 90 to 120 ruslan999588: calls 120 Buell XB12sl: folds seric1975: folds @@ -692,15 +692,15 @@ ramones004: folds tanker175: calls 90 *** FLOP *** [Qc Kh 4h] tanker175: checks -s0rrow: checks +Hero: checks ruslan999588: checks *** TURN *** [Qc Kh 4h] [5s] tanker175: checks -s0rrow: bets 300 +Hero: bets 300 ruslan999588: folds tanker175: folds -Uncalled bet (300) returned to s0rrow -s0rrow collected 405 from pot +Uncalled bet (300) returned to Hero +Hero collected 405 from pot *** SUMMARY *** Total pot 405 | Rake 0 Board [Qc Kh 4h 5s] @@ -711,7 +711,7 @@ Seat 5: svarcipapa (small blind) folded before Flop Seat 6: ramones004 (big blind) folded before Flop Seat 7: Gibsons66 folded before Flop (didn't bet) Seat 8: tanker175 folded on the Turn -Seat 9: s0rrow collected (405) +Seat 9: Hero collected (405) @@ -724,13 +724,13 @@ Seat 5: svarcipapa (1905 in chips) Seat 6: ramones004 (2290 in chips) Seat 7: Gibsons66 (2285 in chips) Seat 8: tanker175 (1485 in chips) -Seat 9: s0rrow (2685 in chips) +Seat 9: Hero (2685 in chips) ramones004: posts small blind 15 Gibsons66: posts big blind 30 *** HOLE CARDS *** -Dealt to s0rrow [7s Js] +Dealt to Hero [7s Js] tanker175: folds -s0rrow: folds +Hero: folds ruslan999588: calls 30 Buell XB12sl: folds seric1975: raises 30 to 60 @@ -756,7 +756,7 @@ Seat 5: svarcipapa (button) folded before Flop (didn't bet) Seat 6: ramones004 (small blind) folded before Flop Seat 7: Gibsons66 (big blind) folded on the Flop Seat 8: tanker175 folded before Flop (didn't bet) -Seat 9: s0rrow folded before Flop (didn't bet) +Seat 9: Hero folded before Flop (didn't bet) @@ -769,12 +769,12 @@ Seat 5: svarcipapa (1905 in chips) Seat 6: ramones004 (2275 in chips) Seat 7: Gibsons66 (2225 in chips) Seat 8: tanker175 (1485 in chips) -Seat 9: s0rrow (2685 in chips) +Seat 9: Hero (2685 in chips) Gibsons66: posts small blind 15 tanker175: posts big blind 30 *** HOLE CARDS *** -Dealt to s0rrow [As 6c] -s0rrow: folds +Dealt to Hero [As 6c] +Hero: folds ruslan999588: calls 30 Buell XB12sl: folds seric1975: calls 30 @@ -816,7 +816,7 @@ Seat 5: svarcipapa folded on the River Seat 6: ramones004 (button) folded on the Flop Seat 7: Gibsons66 (small blind) folded on the River Seat 8: tanker175 (big blind) folded on the River -Seat 9: s0rrow folded before Flop (didn't bet) +Seat 9: Hero folded before Flop (didn't bet) @@ -829,11 +829,11 @@ Seat 5: svarcipapa (1815 in chips) Seat 6: ramones004 (2245 in chips) Seat 7: Gibsons66 (2135 in chips) Seat 8: tanker175 (1395 in chips) -Seat 9: s0rrow (2685 in chips) +Seat 9: Hero (2685 in chips) tanker175: posts small blind 15 -s0rrow: posts big blind 30 +Hero: posts big blind 30 *** HOLE CARDS *** -Dealt to s0rrow [Ks 5d] +Dealt to Hero [Ks 5d] ruslan999588: calls 30 Buell XB12sl: folds seric1975: folds @@ -841,26 +841,26 @@ svarcipapa: folds ramones004: calls 30 Gibsons66: folds tanker175: calls 15 -s0rrow: checks +Hero: checks *** FLOP *** [Ah 8s 4d] ZoRzA420 is connected tanker175: checks -s0rrow: checks +Hero: checks ruslan999588: checks ramones004: checks *** TURN *** [Ah 8s 4d] [7c] tanker175: checks -s0rrow: checks +Hero: checks ruslan999588: checks ramones004: checks *** RIVER *** [Ah 8s 4d 7c] [3c] tanker175: checks -s0rrow: checks +Hero: checks ruslan999588: checks ramones004: checks *** SHOW DOWN *** tanker175: shows [Qd 7h] (a pair of Sevens) -s0rrow: mucks hand +Hero: mucks hand ruslan999588: mucks hand ramones004: mucks hand tanker175 collected 120 from pot @@ -874,7 +874,7 @@ Seat 5: svarcipapa folded before Flop (didn't bet) Seat 6: ramones004 mucked [2h 2c] Seat 7: Gibsons66 (button) folded before Flop (didn't bet) Seat 8: tanker175 (small blind) showed [Qd 7h] and won (120) with a pair of Sevens -Seat 9: s0rrow (big blind) mucked [Ks 5d] +Seat 9: Hero (big blind) mucked [Ks 5d] @@ -888,11 +888,11 @@ Seat 5: svarcipapa (1815 in chips) Seat 6: ramones004 (2215 in chips) Seat 7: Gibsons66 (2135 in chips) Seat 8: tanker175 (1485 in chips) -Seat 9: s0rrow (2655 in chips) -s0rrow: posts small blind 15 +Seat 9: Hero (2655 in chips) +Hero: posts small blind 15 ZoRzA420: posts big blind 30 *** HOLE CARDS *** -Dealt to s0rrow [4c Ks] +Dealt to Hero [4c Ks] ruslan999588: calls 30 Buell XB12sl: folds seric1975: folds @@ -900,15 +900,15 @@ svarcipapa: folds ramones004: calls 30 Gibsons66: folds tanker175: calls 30 -s0rrow: calls 15 +Hero: calls 15 ZoRzA420: checks *** FLOP *** [2h 8s 9d] -s0rrow: checks +Hero: checks ZoRzA420: bets 60 ruslan999588: calls 60 ramones004: folds tanker175: folds -s0rrow: folds +Hero: folds *** TURN *** [2h 8s 9d] [7d] ZoRzA420: bets 90 ruslan999588: calls 90 @@ -929,7 +929,7 @@ Seat 5: svarcipapa folded before Flop (didn't bet) Seat 6: ramones004 folded on the Flop Seat 7: Gibsons66 folded before Flop (didn't bet) Seat 8: tanker175 (button) folded on the Flop -Seat 9: s0rrow (small blind) folded on the Flop +Seat 9: Hero (small blind) folded on the Flop @@ -943,18 +943,18 @@ Seat 5: svarcipapa (1815 in chips) Seat 6: ramones004 (2185 in chips) Seat 7: Gibsons66 (2135 in chips) Seat 8: tanker175 (1455 in chips) -Seat 9: s0rrow (2625 in chips) +Seat 9: Hero (2625 in chips) ZoRzA420: posts small blind 20 ruslan999588: posts big blind 40 *** HOLE CARDS *** -Dealt to s0rrow [Jd 3c] +Dealt to Hero [Jd 3c] Buell XB12sl: folds seric1975: calls 40 svarcipapa: folds ramones004: folds Gibsons66: calls 40 tanker175: folds -s0rrow: folds +Hero: folds ZoRzA420: folds ruslan999588: checks *** FLOP *** [Qs 5d 9s] @@ -979,7 +979,7 @@ Seat 5: svarcipapa folded before Flop (didn't bet) Seat 6: ramones004 folded before Flop (didn't bet) Seat 7: Gibsons66 folded on the Flop Seat 8: tanker175 folded before Flop (didn't bet) -Seat 9: s0rrow (button) folded before Flop (didn't bet) +Seat 9: Hero (button) folded before Flop (didn't bet) @@ -993,17 +993,17 @@ Seat 5: svarcipapa (1815 in chips) Seat 6: ramones004 (2185 in chips) Seat 7: Gibsons66 (2095 in chips) Seat 8: tanker175 (1455 in chips) -Seat 9: s0rrow (2625 in chips) +Seat 9: Hero (2625 in chips) ruslan999588: posts small blind 20 Buell XB12sl: posts big blind 40 *** HOLE CARDS *** -Dealt to s0rrow [Tc 6s] +Dealt to Hero [Tc 6s] seric1975: folds svarcipapa: raises 80 to 120 ramones004: folds Gibsons66: folds tanker175: calls 120 -s0rrow: folds +Hero: folds ZoRzA420: calls 120 ruslan999588: folds Buell XB12sl: calls 80 @@ -1031,7 +1031,7 @@ Seat 5: svarcipapa folded on the Turn Seat 6: ramones004 folded before Flop (didn't bet) Seat 7: Gibsons66 folded before Flop (didn't bet) Seat 8: tanker175 folded on the Turn -Seat 9: s0rrow folded before Flop (didn't bet) +Seat 9: Hero folded before Flop (didn't bet) @@ -1045,16 +1045,16 @@ Seat 5: svarcipapa (1695 in chips) Seat 6: ramones004 (2185 in chips) Seat 7: Gibsons66 (2095 in chips) Seat 8: tanker175 (1335 in chips) -Seat 9: s0rrow (2625 in chips) +Seat 9: Hero (2625 in chips) Buell XB12sl: posts small blind 20 seric1975: posts big blind 40 *** HOLE CARDS *** -Dealt to s0rrow [Qh 3h] +Dealt to Hero [Qh 3h] svarcipapa: folds ramones004: folds Gibsons66: calls 40 tanker175: folds -s0rrow: folds +Hero: folds ZoRzA420: folds ruslan999588: calls 40 Buell XB12sl: calls 20 @@ -1088,7 +1088,7 @@ Seat 5: svarcipapa folded before Flop (didn't bet) Seat 6: ramones004 folded before Flop (didn't bet) Seat 7: Gibsons66 folded on the River Seat 8: tanker175 folded before Flop (didn't bet) -Seat 9: s0rrow folded before Flop (didn't bet) +Seat 9: Hero folded before Flop (didn't bet) @@ -1102,15 +1102,15 @@ Seat 5: svarcipapa (1695 in chips) Seat 6: ramones004 (2185 in chips) Seat 7: Gibsons66 (1935 in chips) Seat 8: tanker175 (1335 in chips) -Seat 9: s0rrow (2625 in chips) +Seat 9: Hero (2625 in chips) seric1975: posts small blind 20 svarcipapa: posts big blind 40 *** HOLE CARDS *** -Dealt to s0rrow [8c 4c] +Dealt to Hero [8c 4c] ramones004: calls 40 Gibsons66: folds tanker175: folds -s0rrow: folds +Hero: folds ZoRzA420: folds ruslan999588: calls 40 Buell XB12sl: calls 40 @@ -1146,7 +1146,7 @@ Seat 5: svarcipapa (big blind) folded on the Turn Seat 6: ramones004 folded on the Turn Seat 7: Gibsons66 folded before Flop (didn't bet) Seat 8: tanker175 folded before Flop (didn't bet) -Seat 9: s0rrow folded before Flop (didn't bet) +Seat 9: Hero folded before Flop (didn't bet) @@ -1156,17 +1156,17 @@ Seat 1: kosiarz72 (1135 in chips) Seat 3: MexicanGamb (1775 in chips) Seat 4: redviper131 (6370 in chips) Seat 5: Georgy80 (3215 in chips) -Seat 6: s0rrow (2625 in chips) +Seat 6: Hero (2625 in chips) Seat 7: ##terry##477 (3520 in chips) Seat 8: MoIsonEx (5090 in chips) Seat 9: hengchang (2910 in chips) kosiarz72: posts small blind 20 MexicanGamb: posts big blind 40 *** HOLE CARDS *** -Dealt to s0rrow [Qc Qs] +Dealt to Hero [Qc Qs] redviper131: calls 40 Georgy80: raises 60 to 100 -s0rrow: calls 100 +Hero: calls 100 ##terry##477: folds MoIsonEx: folds hengchang: folds @@ -1177,20 +1177,20 @@ redviper131: calls 60 kosiarz72: bets 40 redviper131: folds Georgy80: raises 140 to 180 -s0rrow: calls 180 +Hero: calls 180 kosiarz72: calls 140 *** TURN *** [Qd 7s 7d] [2d] kosiarz72: checks Georgy80: checks -s0rrow: checks +Hero: checks *** RIVER *** [Qd 7s 7d 2d] [2h] kosiarz72: bets 120 honza7601 is connected Georgy80: folds -s0rrow: raises 920 to 1040 +Hero: raises 920 to 1040 kosiarz72: folds -Uncalled bet (920) returned to s0rrow -s0rrow collected 1220 from pot +Uncalled bet (920) returned to Hero +Hero collected 1220 from pot *** SUMMARY *** Total pot 1220 | Rake 0 Board [Qd 7s 7d 2d 2h] @@ -1198,7 +1198,7 @@ Seat 1: kosiarz72 (small blind) folded on the River Seat 3: MexicanGamb (big blind) folded before Flop Seat 4: redviper131 folded on the Flop Seat 5: Georgy80 folded on the River -Seat 6: s0rrow collected (1220) +Seat 6: Hero collected (1220) Seat 7: ##terry##477 folded before Flop (didn't bet) Seat 8: MoIsonEx folded before Flop (didn't bet) Seat 9: hengchang (button) folded before Flop (didn't bet) @@ -1212,16 +1212,16 @@ Seat 2: honza7601 (185 in chips) out of hand (moved from another table into smal Seat 3: MexicanGamb (1735 in chips) Seat 4: redviper131 (6270 in chips) Seat 5: Georgy80 (2935 in chips) -Seat 6: s0rrow (3445 in chips) +Seat 6: Hero (3445 in chips) Seat 7: ##terry##477 (3520 in chips) Seat 8: MoIsonEx (5090 in chips) Seat 9: hengchang (2910 in chips) MexicanGamb: posts small blind 20 redviper131: posts big blind 40 *** HOLE CARDS *** -Dealt to s0rrow [3d Qs] +Dealt to Hero [3d Qs] Georgy80: folds -s0rrow: folds +Hero: folds ##terry##477: folds MoIsonEx: folds hengchang: folds @@ -1250,7 +1250,7 @@ Seat 1: kosiarz72 (button) folded before Flop (didn't bet) Seat 3: MexicanGamb (small blind) showed [Ks Ad] and lost with a pair of Sevens Seat 4: redviper131 (big blind) showed [Td 9c] and won (1870) with two pair, Nines and Sevens Seat 5: Georgy80 folded before Flop (didn't bet) -Seat 6: s0rrow folded before Flop (didn't bet) +Seat 6: Hero folded before Flop (didn't bet) Seat 7: ##terry##477 folded before Flop (didn't bet) Seat 8: MoIsonEx folded before Flop (didn't bet) Seat 9: hengchang folded before Flop (didn't bet) @@ -1264,15 +1264,15 @@ Seat 2: honza7601 (185 in chips) Seat 3: MexicanGamb (800 in chips) Seat 4: redviper131 (7205 in chips) Seat 5: Georgy80 (2935 in chips) -Seat 6: s0rrow (3445 in chips) +Seat 6: Hero (3445 in chips) Seat 7: ##terry##477 (3520 in chips) Seat 8: MoIsonEx (5090 in chips) Seat 9: hengchang (2910 in chips) redviper131: posts small blind 20 Georgy80: posts big blind 40 *** HOLE CARDS *** -Dealt to s0rrow [Kc Qd] -s0rrow: raises 80 to 120 +Dealt to Hero [Kc Qd] +Hero: raises 80 to 120 ##terry##477: folds MoIsonEx: calls 120 hengchang: folds @@ -1284,20 +1284,20 @@ MexicanGamb: folds redviper131: folds redviper131 is sitting out Georgy80: folds -s0rrow: calls 65 +Hero: calls 65 MoIsonEx: calls 65 *** FLOP *** [Th 7s 4c] -s0rrow: checks +Hero: checks kosiarz72 has returned MoIsonEx: checks *** TURN *** [Th 7s 4c] [6d] -s0rrow: checks +Hero: checks MoIsonEx: checks *** RIVER *** [Th 7s 4c 6d] [Ah] -s0rrow: checks +Hero: checks MoIsonEx: checks *** SHOW DOWN *** -s0rrow: shows [Kc Qd] (high card Ace) +Hero: shows [Kc Qd] (high card Ace) MoIsonEx: shows [3c 3h] (a pair of Threes) honza7601: shows [Kd Ad] (a pair of Aces) honza7601 collected 615 from pot @@ -1309,7 +1309,7 @@ Seat 2: honza7601 showed [Kd Ad] and won (615) with a pair of Aces Seat 3: MexicanGamb (button) folded before Flop (didn't bet) Seat 4: redviper131 (small blind) folded before Flop Seat 5: Georgy80 (big blind) folded before Flop -Seat 6: s0rrow showed [Kc Qd] and lost with high card Ace +Seat 6: Hero showed [Kc Qd] and lost with high card Ace Seat 7: ##terry##477 folded before Flop (didn't bet) Seat 8: MoIsonEx showed [3c 3h] and lost with a pair of Threes Seat 9: hengchang folded before Flop (didn't bet) @@ -1323,14 +1323,14 @@ Seat 2: honza7601 (615 in chips) Seat 3: MexicanGamb (800 in chips) Seat 4: redviper131 (7185 in chips) is sitting out Seat 5: Georgy80 (2895 in chips) -Seat 6: s0rrow (3260 in chips) +Seat 6: Hero (3260 in chips) Seat 7: ##terry##477 (3520 in chips) Seat 8: MoIsonEx (4905 in chips) Seat 9: hengchang (2910 in chips) Georgy80: posts small blind 25 -s0rrow: posts big blind 50 +Hero: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [5h 5s] +Dealt to Hero [5h 5s] ##terry##477: folds MoIsonEx: folds hengchang: calls 50 @@ -1339,14 +1339,14 @@ honza7601: calls 100 MexicanGamb: folds redviper131: folds Georgy80: folds -s0rrow: calls 50 +Hero: calls 50 hengchang: calls 50 *** FLOP *** [9c 4d Qd] -s0rrow: checks +Hero: checks hengchang: checks kosiarz72: bets 100 honza7601: folds -s0rrow: folds +Hero: folds hengchang: folds Uncalled bet (100) returned to kosiarz72 kosiarz72 collected 425 from pot @@ -1358,7 +1358,7 @@ Seat 2: honza7601 folded on the Flop Seat 3: MexicanGamb folded before Flop (didn't bet) Seat 4: redviper131 (button) folded before Flop (didn't bet) Seat 5: Georgy80 (small blind) folded before Flop -Seat 6: s0rrow (big blind) folded on the Flop +Seat 6: Hero (big blind) folded on the Flop Seat 7: ##terry##477 folded before Flop (didn't bet) Seat 8: MoIsonEx folded before Flop (didn't bet) Seat 9: hengchang folded on the Flop @@ -1372,14 +1372,14 @@ Seat 2: honza7601 (515 in chips) Seat 3: MexicanGamb (800 in chips) Seat 4: redviper131 (7185 in chips) is sitting out Seat 5: Georgy80 (2870 in chips) -Seat 6: s0rrow (3160 in chips) +Seat 6: Hero (3160 in chips) Seat 7: ##terry##477 (3520 in chips) Seat 8: MoIsonEx (4905 in chips) Seat 9: hengchang (2810 in chips) -s0rrow: posts small blind 25 +Hero: posts small blind 25 ##terry##477: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [5c 6s] +Dealt to Hero [5c 6s] MoIsonEx: folds hengchang: folds kosiarz72: calls 50 @@ -1387,7 +1387,7 @@ honza7601: calls 50 MexicanGamb: folds redviper131: folds Georgy80: folds -s0rrow: folds +Hero: folds ##terry##477: checks *** FLOP *** [Qs 2h 4c] ##terry##477: checks @@ -1414,7 +1414,7 @@ Seat 2: honza7601 mucked [Kh 7h] Seat 3: MexicanGamb folded before Flop (didn't bet) Seat 4: redviper131 folded before Flop (didn't bet) Seat 5: Georgy80 (button) folded before Flop (didn't bet) -Seat 6: s0rrow (small blind) folded before Flop +Seat 6: Hero (small blind) folded before Flop Seat 7: ##terry##477 (big blind) showed [2d Ad] and won (175) with a pair of Deuces Seat 8: MoIsonEx folded before Flop (didn't bet) Seat 9: hengchang folded before Flop (didn't bet) @@ -1427,20 +1427,20 @@ Seat 1: kosiarz72 (1010 in chips) Seat 2: honza7601 (465 in chips) Seat 3: MexicanGamb (800 in chips) Seat 5: Georgy80 (2870 in chips) -Seat 6: s0rrow (3135 in chips) +Seat 6: Hero (3135 in chips) Seat 7: ##terry##477 (3645 in chips) Seat 8: MoIsonEx (4905 in chips) Seat 9: hengchang (2810 in chips) ##terry##477: posts small blind 25 MoIsonEx: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [Jh 4d] +Dealt to Hero [Jh 4d] hengchang: folds kosiarz72: calls 50 honza7601: raises 415 to 465 and is all-in MexicanGamb: folds Georgy80: folds -s0rrow: folds +Hero: folds ##terry##477: calls 440 MoIsonEx: folds kosiarz72: calls 415 @@ -1471,7 +1471,7 @@ Seat 1: kosiarz72 showed [8s 8h] and won (1745) with three of a kind, Eights Seat 2: honza7601 showed [3d 3c] and lost with a pair of Threes Seat 3: MexicanGamb folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) -Seat 6: s0rrow (button) folded before Flop (didn't bet) +Seat 6: Hero (button) folded before Flop (didn't bet) Seat 7: ##terry##477 (small blind) folded on the River Seat 8: MoIsonEx (big blind) folded before Flop Seat 9: hengchang folded before Flop (didn't bet) @@ -1483,32 +1483,32 @@ Table '297808375 2' 9-max Seat #7 is the button Seat 1: kosiarz72 (2140 in chips) Seat 3: MexicanGamb (800 in chips) Seat 5: Georgy80 (2870 in chips) -Seat 6: s0rrow (3135 in chips) +Seat 6: Hero (3135 in chips) Seat 7: ##terry##477 (3030 in chips) Seat 8: MoIsonEx (4855 in chips) Seat 9: hengchang (2810 in chips) MoIsonEx: posts small blind 25 hengchang: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [9s Kd] +Dealt to Hero [9s Kd] kosiarz72: folds MexicanGamb: folds kosiarz72 is sitting out Georgy80: folds -s0rrow: raises 100 to 150 +Hero: raises 100 to 150 ##terry##477: folds MoIsonEx: folds hengchang: calls 100 *** FLOP *** [6s 8s 8c] hengchang: checks -s0rrow: bets 250 +Hero: bets 250 nenemalo77 is connected THOUSANDGRAM is connected hengchang: raises 400 to 650 -s0rrow: calls 400 +Hero: calls 400 *** TURN *** [6s 8s 8c] [Qh] hengchang: bets 650 -s0rrow: folds +Hero: folds Uncalled bet (650) returned to hengchang hengchang collected 1625 from pot hengchang: doesn't show hand @@ -1518,7 +1518,7 @@ Board [6s 8s 8c Qh] Seat 1: kosiarz72 folded before Flop (didn't bet) Seat 3: MexicanGamb folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) -Seat 6: s0rrow folded on the Turn +Seat 6: Hero folded on the Turn Seat 7: ##terry##477 (button) folded before Flop (didn't bet) Seat 8: MoIsonEx (small blind) folded before Flop Seat 9: hengchang (big blind) collected (1625) @@ -1532,19 +1532,19 @@ Seat 2: nenemalo77 (7003 in chips) Seat 3: MexicanGamb (800 in chips) Seat 4: THOUSANDGRAM (3870 in chips) Seat 5: Georgy80 (2870 in chips) -Seat 6: s0rrow (2335 in chips) +Seat 6: Hero (2335 in chips) Seat 7: ##terry##477 (3030 in chips) Seat 8: MoIsonEx (4830 in chips) Seat 9: hengchang (3635 in chips) hengchang: posts small blind 25 kosiarz72: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [8s 5s] +Dealt to Hero [8s 5s] nenemalo77: calls 50 MexicanGamb: folds THOUSANDGRAM: folds Georgy80: raises 50 to 100 -s0rrow: folds +Hero: folds ##terry##477: folds MoIsonEx: calls 100 hengchang: raises 400 to 500 @@ -1573,7 +1573,7 @@ Seat 2: nenemalo77 folded before Flop Seat 3: MexicanGamb folded before Flop (didn't bet) Seat 4: THOUSANDGRAM folded before Flop (didn't bet) Seat 5: Georgy80 mucked [As Qh] -Seat 6: s0rrow folded before Flop (didn't bet) +Seat 6: Hero folded before Flop (didn't bet) Seat 7: ##terry##477 folded before Flop (didn't bet) Seat 8: MoIsonEx (button) folded before Flop Seat 9: hengchang (small blind) showed [Qs Qd] and won (4200) with three of a kind, Queens @@ -1587,18 +1587,18 @@ Seat 2: nenemalo77 (6953 in chips) Seat 3: MexicanGamb (800 in chips) Seat 4: THOUSANDGRAM (3870 in chips) Seat 5: Georgy80 (870 in chips) -Seat 6: s0rrow (2335 in chips) +Seat 6: Hero (2335 in chips) Seat 7: ##terry##477 (3030 in chips) Seat 8: MoIsonEx (4730 in chips) Seat 9: hengchang (5835 in chips) kosiarz72: posts small blind 25 nenemalo77: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [9c 2h] +Dealt to Hero [9c 2h] MexicanGamb: folds THOUSANDGRAM: calls 50 Georgy80: raises 820 to 870 and is all-in -s0rrow: folds +Hero: folds ##terry##477 has timed out ##terry##477: folds ##terry##477 is sitting out @@ -1623,7 +1623,7 @@ Seat 2: nenemalo77 (big blind) folded before Flop Seat 3: MexicanGamb folded before Flop (didn't bet) Seat 4: THOUSANDGRAM showed [Ac Td] and lost with high card Ace Seat 5: Georgy80 showed [9s 9h] and won (1815) with three of a kind, Nines -Seat 6: s0rrow folded before Flop (didn't bet) +Seat 6: Hero folded before Flop (didn't bet) Seat 7: ##terry##477 folded before Flop (didn't bet) Seat 8: MoIsonEx folded before Flop (didn't bet) Seat 9: hengchang (button) folded before Flop (didn't bet) @@ -1637,19 +1637,19 @@ Seat 2: nenemalo77 (6903 in chips) Seat 3: MexicanGamb (800 in chips) Seat 4: THOUSANDGRAM (3000 in chips) Seat 5: Georgy80 (1815 in chips) -Seat 6: s0rrow (2335 in chips) +Seat 6: Hero (2335 in chips) Seat 7: ##terry##477 (3030 in chips) Seat 8: MoIsonEx (4730 in chips) Seat 9: hengchang (5835 in chips) nenemalo77: posts small blind 25 MexicanGamb: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [4s 9s] +Dealt to Hero [4s 9s] THOUSANDGRAM has timed out THOUSANDGRAM: folds THOUSANDGRAM is sitting out Georgy80: folds -s0rrow: folds +Hero: folds ##terry##477: folds MoIsonEx: folds THOUSANDGRAM has returned @@ -1667,7 +1667,7 @@ Seat 2: nenemalo77 (small blind) folded before Flop Seat 3: MexicanGamb (big blind) folded before Flop Seat 4: THOUSANDGRAM folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) -Seat 6: s0rrow folded before Flop (didn't bet) +Seat 6: Hero folded before Flop (didn't bet) Seat 7: ##terry##477 folded before Flop (didn't bet) Seat 8: MoIsonEx folded before Flop (didn't bet) Seat 9: hengchang collected (125) @@ -1681,16 +1681,16 @@ Seat 2: nenemalo77 (6878 in chips) Seat 3: MexicanGamb (750 in chips) Seat 4: THOUSANDGRAM (3000 in chips) Seat 5: Georgy80 (1815 in chips) -Seat 6: s0rrow (2335 in chips) +Seat 6: Hero (2335 in chips) Seat 7: ##terry##477 (3030 in chips) Seat 8: MoIsonEx (4730 in chips) Seat 9: hengchang (5910 in chips) MexicanGamb: posts small blind 25 THOUSANDGRAM: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [Kc Kh] +Dealt to Hero [Kc Kh] Georgy80: folds -s0rrow: raises 100 to 150 +Hero: raises 100 to 150 ##terry##477: folds MoIsonEx: folds hengchang: folds @@ -1699,18 +1699,18 @@ nenemalo77: calls 150 MexicanGamb: folds THOUSANDGRAM: folds *** FLOP *** [5c As 6s] -s0rrow: checks +Hero: checks nenemalo77: checks *** TURN *** [5c As 6s] [8d] -s0rrow: checks +Hero: checks nenemalo77: checks *** RIVER *** [5c As 6s 8d] [8c] -s0rrow: bets 200 +Hero: bets 200 nenemalo77: raises 350 to 550 -s0rrow: calls 350 +Hero: calls 350 *** SHOW DOWN *** nenemalo77: shows [Ks 8s] (three of a kind, Eights) -s0rrow: mucks hand +Hero: mucks hand nenemalo77 collected 1475 from pot *** SUMMARY *** Total pot 1475 | Rake 0 @@ -1720,7 +1720,7 @@ Seat 2: nenemalo77 (button) showed [Ks 8s] and won (1475) with three of a kind, Seat 3: MexicanGamb (small blind) folded before Flop Seat 4: THOUSANDGRAM (big blind) folded before Flop Seat 5: Georgy80 folded before Flop (didn't bet) -Seat 6: s0rrow mucked [Kc Kh] +Seat 6: Hero mucked [Kc Kh] Seat 7: ##terry##477 folded before Flop (didn't bet) Seat 8: MoIsonEx folded before Flop (didn't bet) Seat 9: hengchang folded before Flop (didn't bet) @@ -1734,15 +1734,15 @@ Seat 2: nenemalo77 (7653 in chips) Seat 3: MexicanGamb (725 in chips) Seat 4: THOUSANDGRAM (2950 in chips) Seat 5: Georgy80 (1815 in chips) -Seat 6: s0rrow (1635 in chips) +Seat 6: Hero (1635 in chips) Seat 7: ##terry##477 (3030 in chips) Seat 8: MoIsonEx (4730 in chips) Seat 9: hengchang (5910 in chips) THOUSANDGRAM: posts small blind 25 Georgy80: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [9s 4h] -s0rrow: folds +Dealt to Hero [9s 4h] +Hero: folds ##terry##477: raises 150 to 200 MoIsonEx: folds hengchang: folds @@ -1778,7 +1778,7 @@ Seat 2: nenemalo77 showed [3c 3d] and won (6135) with a full house, Threes full Seat 3: MexicanGamb (button) folded before Flop (didn't bet) Seat 4: THOUSANDGRAM (small blind) folded before Flop Seat 5: Georgy80 (big blind) folded before Flop -Seat 6: s0rrow folded before Flop (didn't bet) +Seat 6: Hero folded before Flop (didn't bet) Seat 7: ##terry##477 showed [As Kh] and lost with two pair, Kings and Queens Seat 8: MoIsonEx folded before Flop (didn't bet) Seat 9: hengchang folded before Flop (didn't bet) @@ -1792,13 +1792,13 @@ Seat 2: nenemalo77 (10758 in chips) Seat 3: MexicanGamb (725 in chips) Seat 4: THOUSANDGRAM (2925 in chips) Seat 5: Georgy80 (1765 in chips) -Seat 6: s0rrow (1635 in chips) +Seat 6: Hero (1635 in chips) Seat 8: MoIsonEx (4730 in chips) Seat 9: hengchang (5910 in chips) Georgy80: posts small blind 25 -s0rrow: posts big blind 50 +Hero: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [Qd Qh] +Dealt to Hero [Qd Qh] MoIsonEx: folds hengchang: raises 100 to 150 kosiarz72: folds @@ -1806,18 +1806,18 @@ nenemalo77: folds MexicanGamb: folds THOUSANDGRAM: folds Georgy80: folds -s0rrow: raises 350 to 500 +Hero: raises 350 to 500 hengchang: raises 1250 to 1750 kosiarz72 has returned -s0rrow: calls 1135 and is all-in +Hero: calls 1135 and is all-in Uncalled bet (115) returned to hengchang *** FLOP *** [Kh 4s Js] *** TURN *** [Kh 4s Js] [2s] *** RIVER *** [Kh 4s Js 2s] [8d] *** SHOW DOWN *** -s0rrow: shows [Qd Qh] (a pair of Queens) +Hero: shows [Qd Qh] (a pair of Queens) hengchang: shows [Tc Ts] (a pair of Tens) -s0rrow collected 3295 from pot +Hero collected 3295 from pot *** SUMMARY *** Total pot 3295 | Rake 0 Board [Kh 4s Js 2s 8d] @@ -1826,7 +1826,7 @@ Seat 2: nenemalo77 folded before Flop (didn't bet) Seat 3: MexicanGamb folded before Flop (didn't bet) Seat 4: THOUSANDGRAM (button) folded before Flop (didn't bet) Seat 5: Georgy80 (small blind) folded before Flop -Seat 6: s0rrow (big blind) showed [Qd Qh] and won (3295) with a pair of Queens +Seat 6: Hero (big blind) showed [Qd Qh] and won (3295) with a pair of Queens Seat 8: MoIsonEx folded before Flop (didn't bet) Seat 9: hengchang showed [Tc Ts] and lost with a pair of Tens @@ -1839,20 +1839,20 @@ Seat 2: nenemalo77 (10758 in chips) Seat 3: MexicanGamb (725 in chips) Seat 4: THOUSANDGRAM (2925 in chips) Seat 5: Georgy80 (1740 in chips) -Seat 6: s0rrow (3295 in chips) +Seat 6: Hero (3295 in chips) Seat 8: MoIsonEx (4730 in chips) Seat 9: hengchang (4275 in chips) -s0rrow: posts small blind 30 +Hero: posts small blind 30 MoIsonEx: posts big blind 60 *** HOLE CARDS *** -Dealt to s0rrow [Ts 6s] +Dealt to Hero [Ts 6s] hengchang: folds kosiarz72: calls 60 nenemalo77: folds MexicanGamb: folds THOUSANDGRAM: calls 60 Georgy80: raises 1680 to 1740 and is all-in -s0rrow: folds +Hero: folds MoIsonEx: calls 1680 kosiarz72: folds THOUSANDGRAM: folds @@ -1871,7 +1871,7 @@ Seat 2: nenemalo77 folded before Flop (didn't bet) Seat 3: MexicanGamb folded before Flop (didn't bet) Seat 4: THOUSANDGRAM folded before Flop Seat 5: Georgy80 (button) showed [Js Jc] and won (3630) with three of a kind, Jacks -Seat 6: s0rrow (small blind) folded before Flop +Seat 6: Hero (small blind) folded before Flop Seat 8: MoIsonEx (big blind) showed [8c 8s] and lost with a pair of Eights Seat 9: hengchang folded before Flop (didn't bet) @@ -1884,19 +1884,19 @@ Seat 2: nenemalo77 (10758 in chips) Seat 3: MexicanGamb (725 in chips) Seat 4: THOUSANDGRAM (2865 in chips) Seat 5: Georgy80 (3630 in chips) -Seat 6: s0rrow (3265 in chips) +Seat 6: Hero (3265 in chips) Seat 8: MoIsonEx (2990 in chips) Seat 9: hengchang (4275 in chips) MoIsonEx: posts small blind 30 hengchang: posts big blind 60 *** HOLE CARDS *** -Dealt to s0rrow [Kh Ah] +Dealt to Hero [Kh Ah] kosiarz72: calls 60 nenemalo77: folds MexicanGamb: raises 180 to 240 THOUSANDGRAM: folds Georgy80: calls 240 -s0rrow: raises 600 to 840 +Hero: raises 600 to 840 MoIsonEx: folds hengchang: folds kosiarz72: folds @@ -1904,17 +1904,17 @@ MexicanGamb: calls 485 and is all-in Georgy80: calls 600 *** FLOP *** [Jd 5d 3d] Georgy80: checks -s0rrow: checks +Hero: checks *** TURN *** [Jd 5d 3d] [Qc] Georgy80: checks -s0rrow: checks +Hero: checks *** RIVER *** [Jd 5d 3d Qc] [Kc] Georgy80: checks -s0rrow: checks +Hero: checks *** SHOW DOWN *** Georgy80: shows [9c 9d] (a pair of Nines) -s0rrow: shows [Kh Ah] (a pair of Kings) -s0rrow collected 230 from side pot +Hero: shows [Kh Ah] (a pair of Kings) +Hero collected 230 from side pot MexicanGamb: shows [Ac As] (a pair of Aces) MexicanGamb collected 2325 from main pot *** SUMMARY *** @@ -1925,7 +1925,7 @@ Seat 2: nenemalo77 folded before Flop (didn't bet) Seat 3: MexicanGamb showed [Ac As] and won (2325) with a pair of Aces Seat 4: THOUSANDGRAM folded before Flop (didn't bet) Seat 5: Georgy80 showed [9c 9d] and lost with a pair of Nines -Seat 6: s0rrow (button) showed [Kh Ah] and won (230) with a pair of Kings +Seat 6: Hero (button) showed [Kh Ah] and won (230) with a pair of Kings Seat 8: MoIsonEx (small blind) folded before Flop Seat 9: hengchang (big blind) folded before Flop @@ -1938,18 +1938,18 @@ Seat 2: nenemalo77 (10758 in chips) Seat 3: MexicanGamb (2325 in chips) Seat 4: THOUSANDGRAM (2865 in chips) Seat 5: Georgy80 (2790 in chips) -Seat 6: s0rrow (2655 in chips) +Seat 6: Hero (2655 in chips) Seat 8: MoIsonEx (2960 in chips) Seat 9: hengchang (4215 in chips) hengchang: posts small blind 30 kosiarz72: posts big blind 60 *** HOLE CARDS *** -Dealt to s0rrow [Jc 8h] +Dealt to Hero [Jc 8h] nenemalo77: calls 60 MexicanGamb: raises 165 to 225 THOUSANDGRAM: folds Georgy80: folds -s0rrow: folds +Hero: folds MoIsonEx: folds hengchang: folds kosiarz72: folds @@ -1969,7 +1969,7 @@ Seat 2: nenemalo77 folded on the Flop Seat 3: MexicanGamb collected (540) Seat 4: THOUSANDGRAM folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) -Seat 6: s0rrow folded before Flop (didn't bet) +Seat 6: Hero folded before Flop (didn't bet) Seat 8: MoIsonEx (button) folded before Flop (didn't bet) Seat 9: hengchang (small blind) folded before Flop @@ -1982,17 +1982,17 @@ Seat 2: nenemalo77 (10533 in chips) Seat 3: MexicanGamb (2640 in chips) Seat 4: THOUSANDGRAM (2865 in chips) Seat 5: Georgy80 (2790 in chips) -Seat 6: s0rrow (2655 in chips) +Seat 6: Hero (2655 in chips) Seat 8: MoIsonEx (2960 in chips) Seat 9: hengchang (4185 in chips) kosiarz72: posts small blind 30 nenemalo77: posts big blind 60 *** HOLE CARDS *** -Dealt to s0rrow [Kh Ts] +Dealt to Hero [Kh Ts] MexicanGamb: folds THOUSANDGRAM: calls 60 Georgy80: calls 60 -s0rrow: folds +Hero: folds MoIsonEx: folds hengchang: folds kosiarz72: calls 30 @@ -2026,7 +2026,7 @@ Seat 2: nenemalo77 (big blind) mucked [9s 4s] Seat 3: MexicanGamb folded before Flop (didn't bet) Seat 4: THOUSANDGRAM mucked [Qc 8d] Seat 5: Georgy80 mucked [Th 9h] -Seat 6: s0rrow folded before Flop (didn't bet) +Seat 6: Hero folded before Flop (didn't bet) Seat 8: MoIsonEx folded before Flop (didn't bet) Seat 9: hengchang (button) folded before Flop (didn't bet) @@ -2039,16 +2039,16 @@ Seat 2: nenemalo77 (10473 in chips) Seat 3: MexicanGamb (2640 in chips) Seat 4: THOUSANDGRAM (2805 in chips) Seat 5: Georgy80 (2730 in chips) -Seat 6: s0rrow (2655 in chips) +Seat 6: Hero (2655 in chips) Seat 8: MoIsonEx (2960 in chips) Seat 9: hengchang (4185 in chips) nenemalo77: posts small blind 30 MexicanGamb: posts big blind 60 *** HOLE CARDS *** -Dealt to s0rrow [2d Jd] +Dealt to Hero [2d Jd] THOUSANDGRAM: calls 60 Georgy80: folds -s0rrow: folds +Hero: folds MoIsonEx: folds hengchang: raises 120 to 180 kosiarz72: folds @@ -2076,7 +2076,7 @@ Seat 2: nenemalo77 (small blind) collected (1320) Seat 3: MexicanGamb (big blind) folded before Flop Seat 4: THOUSANDGRAM folded on the River Seat 5: Georgy80 folded before Flop (didn't bet) -Seat 6: s0rrow folded before Flop (didn't bet) +Seat 6: Hero folded before Flop (didn't bet) Seat 8: MoIsonEx folded before Flop (didn't bet) Seat 9: hengchang folded on the Flop @@ -2089,15 +2089,15 @@ Seat 2: nenemalo77 (11253 in chips) Seat 3: MexicanGamb (2580 in chips) Seat 4: THOUSANDGRAM (2265 in chips) Seat 5: Georgy80 (2730 in chips) -Seat 6: s0rrow (2655 in chips) +Seat 6: Hero (2655 in chips) Seat 8: MoIsonEx (2960 in chips) Seat 9: hengchang (4005 in chips) MexicanGamb: posts small blind 30 THOUSANDGRAM: posts big blind 60 *** HOLE CARDS *** -Dealt to s0rrow [6s Js] +Dealt to Hero [6s Js] Georgy80: folds -s0rrow: folds +Hero: folds MoIsonEx: raises 180 to 240 hengchang: folds kosiarz72: calls 240 @@ -2126,7 +2126,7 @@ Seat 2: nenemalo77 (button) folded before Flop (didn't bet) Seat 3: MexicanGamb (small blind) folded before Flop Seat 4: THOUSANDGRAM (big blind) folded before Flop Seat 5: Georgy80 folded before Flop (didn't bet) -Seat 6: s0rrow folded before Flop (didn't bet) +Seat 6: Hero folded before Flop (didn't bet) Seat 8: MoIsonEx showed [Kd Qc] and won (4220) with a full house, Tens full of Kings Seat 9: hengchang folded before Flop (didn't bet) @@ -2138,7 +2138,7 @@ Seat 1: ratabar111 (5215 in chips) Seat 2: TEJED (1522 in chips) Seat 3: Djkujuhfl (1585 in chips) Seat 4: beatlesmau5 (5130 in chips) -Seat 5: s0rrow (2655 in chips) +Seat 5: Hero (2655 in chips) Seat 6: g0ty4 (1635 in chips) Seat 7: Poker Elfe 1 (12593 in chips) Seat 8: 123456789476 (5855 in chips) @@ -2146,8 +2146,8 @@ Seat 9: CQ47 (967 in chips) Djkujuhfl: posts small blind 30 beatlesmau5: posts big blind 60 *** HOLE CARDS *** -Dealt to s0rrow [Th 4h] -s0rrow: folds +Dealt to Hero [Th 4h] +Hero: folds g0ty4: folds Poker Elfe 1: folds 123456789476: calls 60 @@ -2177,7 +2177,7 @@ Seat 1: ratabar111 folded before Flop Seat 2: TEJED (button) folded before Flop (didn't bet) Seat 3: Djkujuhfl (small blind) folded before Flop Seat 4: beatlesmau5 (big blind) showed [Js Jh] and won (2114) with two pair, Jacks and Tens -Seat 5: s0rrow folded before Flop (didn't bet) +Seat 5: Hero folded before Flop (didn't bet) Seat 6: g0ty4 folded before Flop (didn't bet) Seat 7: Poker Elfe 1 folded before Flop (didn't bet) Seat 8: 123456789476 folded before Flop @@ -2191,14 +2191,14 @@ Seat 1: ratabar111 (5155 in chips) Seat 2: TEJED (1522 in chips) Seat 3: Djkujuhfl (1525 in chips) Seat 4: beatlesmau5 (6277 in chips) -Seat 5: s0rrow (2655 in chips) +Seat 5: Hero (2655 in chips) Seat 6: g0ty4 (1635 in chips) Seat 7: Poker Elfe 1 (12593 in chips) Seat 8: 123456789476 (5795 in chips) beatlesmau5: posts small blind 30 -s0rrow: posts big blind 60 +Hero: posts big blind 60 *** HOLE CARDS *** -Dealt to s0rrow [3h Tc] +Dealt to Hero [3h Tc] g0ty4: folds Poker Elfe 1: folds 123456789476: calls 60 @@ -2206,15 +2206,15 @@ ratabar111: calls 60 TEJED: calls 60 Djkujuhfl: folds beatlesmau5: calls 30 -s0rrow: checks +Hero: checks *** FLOP *** [6d 5d Qh] beatlesmau5: checks -s0rrow: checks +Hero: checks 123456789476: bets 120 ratabar111: calls 120 TEJED: calls 120 beatlesmau5: folds -s0rrow: folds +Hero: folds *** TURN *** [6d 5d Qh] [8c] 123456789476: checks ratabar111: checks @@ -2240,7 +2240,7 @@ Seat 1: ratabar111 folded on the River Seat 2: TEJED showed [Kd 6c] and lost with three of a kind, Sixes Seat 3: Djkujuhfl (button) folded before Flop (didn't bet) Seat 4: beatlesmau5 (small blind) folded on the Flop -Seat 5: s0rrow (big blind) folded on the Flop +Seat 5: Hero (big blind) folded on the Flop Seat 6: g0ty4 folded before Flop (didn't bet) Seat 7: Poker Elfe 1 folded before Flop (didn't bet) Seat 8: 123456789476 showed [6h Ac] and won (3344) with three of a kind, Sixes @@ -2252,21 +2252,21 @@ Table '297808375 3' 9-max Seat #4 is the button Seat 1: ratabar111 (4975 in chips) Seat 3: Djkujuhfl (1525 in chips) Seat 4: beatlesmau5 (6217 in chips) -Seat 5: s0rrow (2595 in chips) +Seat 5: Hero (2595 in chips) Seat 6: g0ty4 (1635 in chips) Seat 7: Poker Elfe 1 (12593 in chips) Seat 8: 123456789476 (7617 in chips) -s0rrow: posts small blind 30 +Hero: posts small blind 30 g0ty4: posts big blind 60 *** HOLE CARDS *** -Dealt to s0rrow [Kh Qc] +Dealt to Hero [Kh Qc] Poker Elfe 1: calls 60 123456789476: calls 60 ratabar111: folds ruslik_28 is connected Djkujuhfl: raises 180 to 240 beatlesmau5: folds -s0rrow: folds +Hero: folds g0ty4: folds Poker Elfe 1: calls 180 123456789476: calls 180 @@ -2289,7 +2289,7 @@ Board [7s 7d 4s 2h] Seat 1: ratabar111 folded before Flop (didn't bet) Seat 3: Djkujuhfl collected (1770) Seat 4: beatlesmau5 (button) folded before Flop (didn't bet) -Seat 5: s0rrow (small blind) folded before Flop +Seat 5: Hero (small blind) folded before Flop Seat 6: g0ty4 (big blind) folded before Flop Seat 7: Poker Elfe 1 folded on the Flop Seat 8: 123456789476 folded on the Turn @@ -2301,7 +2301,7 @@ Table '297808375 3' 9-max Seat #5 is the button Seat 1: ratabar111 (4975 in chips) Seat 3: Djkujuhfl (2575 in chips) Seat 4: beatlesmau5 (6217 in chips) -Seat 5: s0rrow (2565 in chips) +Seat 5: Hero (2565 in chips) Seat 6: g0ty4 (1575 in chips) Seat 7: Poker Elfe 1 (12353 in chips) Seat 8: 123456789476 (6897 in chips) @@ -2309,24 +2309,24 @@ Seat 9: ruslik_28 (2210 in chips) g0ty4: posts small blind 40 Poker Elfe 1: posts big blind 80 *** HOLE CARDS *** -Dealt to s0rrow [Qd Qh] +Dealt to Hero [Qd Qh] 123456789476: folds ruslik_28: folds ratabar111: folds Djkujuhfl: raises 80 to 160 beatlesmau5: folds -s0rrow: raises 400 to 560 +Hero: raises 400 to 560 g0ty4: folds Poker Elfe 1: folds Djkujuhfl: folds -Uncalled bet (400) returned to s0rrow -s0rrow collected 440 from pot +Uncalled bet (400) returned to Hero +Hero collected 440 from pot *** SUMMARY *** Total pot 440 | Rake 0 Seat 1: ratabar111 folded before Flop (didn't bet) Seat 3: Djkujuhfl folded before Flop Seat 4: beatlesmau5 folded before Flop (didn't bet) -Seat 5: s0rrow (button) collected (440) +Seat 5: Hero (button) collected (440) Seat 6: g0ty4 (small blind) folded before Flop Seat 7: Poker Elfe 1 (big blind) folded before Flop Seat 8: 123456789476 folded before Flop (didn't bet) @@ -2339,18 +2339,18 @@ Table '297808375 3' 9-max Seat #6 is the button Seat 1: ratabar111 (4975 in chips) Seat 3: Djkujuhfl (2415 in chips) Seat 4: beatlesmau5 (6217 in chips) -Seat 5: s0rrow (2845 in chips) +Seat 5: Hero (2845 in chips) Seat 6: g0ty4 (1535 in chips) Seat 8: 123456789476 (6897 in chips) Seat 9: ruslik_28 (2210 in chips) 123456789476: posts small blind 40 ruslik_28: posts big blind 80 *** HOLE CARDS *** -Dealt to s0rrow [Jh Td] +Dealt to Hero [Jh Td] ratabar111: calls 80 Djkujuhfl: folds beatlesmau5: folds -s0rrow: folds +Hero: folds g0ty4: folds 123456789476: raises 80 to 160 ruslik_28: calls 80 @@ -2371,7 +2371,7 @@ Board [8s Ah 5c Kh] Seat 1: ratabar111 folded on the Turn Seat 3: Djkujuhfl folded before Flop (didn't bet) Seat 4: beatlesmau5 folded before Flop (didn't bet) -Seat 5: s0rrow folded before Flop (didn't bet) +Seat 5: Hero folded before Flop (didn't bet) Seat 6: g0ty4 (button) folded before Flop (didn't bet) Seat 8: 123456789476 (small blind) collected (480) Seat 9: ruslik_28 (big blind) folded on the Turn @@ -2383,17 +2383,17 @@ Table '297808375 3' 9-max Seat #8 is the button Seat 1: ratabar111 (4815 in chips) Seat 3: Djkujuhfl (2415 in chips) Seat 4: beatlesmau5 (6217 in chips) -Seat 5: s0rrow (2845 in chips) +Seat 5: Hero (2845 in chips) Seat 6: g0ty4 (1535 in chips) Seat 8: 123456789476 (7217 in chips) Seat 9: ruslik_28 (2050 in chips) ruslik_28: posts small blind 40 ratabar111: posts big blind 80 *** HOLE CARDS *** -Dealt to s0rrow [Js 8d] +Dealt to Hero [Js 8d] Djkujuhfl: folds beatlesmau5: folds -s0rrow: folds +Hero: folds g0ty4: raises 240 to 320 123456789476: folds ruslik_28: folds @@ -2405,7 +2405,7 @@ Total pot 200 | Rake 0 Seat 1: ratabar111 (big blind) folded before Flop Seat 3: Djkujuhfl folded before Flop (didn't bet) Seat 4: beatlesmau5 folded before Flop (didn't bet) -Seat 5: s0rrow folded before Flop (didn't bet) +Seat 5: Hero folded before Flop (didn't bet) Seat 6: g0ty4 collected (200) Seat 8: 123456789476 (button) folded before Flop (didn't bet) Seat 9: ruslik_28 (small blind) folded before Flop @@ -2417,16 +2417,16 @@ Table '297808375 3' 9-max Seat #9 is the button Seat 1: ratabar111 (4735 in chips) Seat 3: Djkujuhfl (2415 in chips) Seat 4: beatlesmau5 (6217 in chips) -Seat 5: s0rrow (2845 in chips) +Seat 5: Hero (2845 in chips) Seat 6: g0ty4 (1655 in chips) Seat 8: 123456789476 (7217 in chips) Seat 9: ruslik_28 (2010 in chips) ratabar111: posts small blind 40 Djkujuhfl: posts big blind 80 *** HOLE CARDS *** -Dealt to s0rrow [7s Td] +Dealt to Hero [7s Td] beatlesmau5: folds -s0rrow: folds +Hero: folds g0ty4: folds 123456789476: calls 80 ruslik_28: raises 240 to 320 @@ -2441,7 +2441,7 @@ Total pot 280 | Rake 0 Seat 1: ratabar111 (small blind) folded before Flop Seat 3: Djkujuhfl (big blind) folded before Flop Seat 4: beatlesmau5 folded before Flop (didn't bet) -Seat 5: s0rrow folded before Flop (didn't bet) +Seat 5: Hero folded before Flop (didn't bet) Seat 6: g0ty4 folded before Flop (didn't bet) Seat 8: 123456789476 folded before Flop Seat 9: ruslik_28 (button) collected (280) @@ -2453,15 +2453,15 @@ Table '297808375 3' 9-max Seat #1 is the button Seat 1: ratabar111 (4695 in chips) Seat 3: Djkujuhfl (2335 in chips) Seat 4: beatlesmau5 (6217 in chips) -Seat 5: s0rrow (2845 in chips) +Seat 5: Hero (2845 in chips) Seat 6: g0ty4 (1655 in chips) Seat 8: 123456789476 (7137 in chips) Seat 9: ruslik_28 (2210 in chips) Djkujuhfl: posts small blind 40 beatlesmau5: posts big blind 80 *** HOLE CARDS *** -Dealt to s0rrow [9h 6s] -s0rrow: folds +Dealt to Hero [9h 6s] +Hero: folds g0ty4: raises 160 to 240 123456789476: folds ruslik_28: folds @@ -2476,7 +2476,7 @@ Total pot 200 | Rake 0 Seat 1: ratabar111 (button) folded before Flop (didn't bet) Seat 3: Djkujuhfl (small blind) folded before Flop Seat 4: beatlesmau5 (big blind) folded before Flop -Seat 5: s0rrow folded before Flop (didn't bet) +Seat 5: Hero folded before Flop (didn't bet) Seat 6: g0ty4 collected (200) Seat 8: 123456789476 folded before Flop (didn't bet) Seat 9: ruslik_28 folded before Flop (didn't bet) @@ -2488,45 +2488,45 @@ Table '297808375 3' 9-max Seat #3 is the button Seat 1: ratabar111 (4695 in chips) Seat 3: Djkujuhfl (2295 in chips) Seat 4: beatlesmau5 (6137 in chips) -Seat 5: s0rrow (2845 in chips) +Seat 5: Hero (2845 in chips) Seat 6: g0ty4 (1775 in chips) Seat 8: 123456789476 (7137 in chips) Seat 9: ruslik_28 (2210 in chips) beatlesmau5: posts small blind 40 -s0rrow: posts big blind 80 +Hero: posts big blind 80 *** HOLE CARDS *** -Dealt to s0rrow [6c 5d] +Dealt to Hero [6c 5d] g0ty4: calls 80 123456789476: folds ruslik_28: folds ratabar111: calls 80 Djkujuhfl: folds beatlesmau5: folds -s0rrow: checks +Hero: checks *** FLOP *** [6h 2c 4s] -s0rrow: checks +Hero: checks g0ty4: checks ratabar111: checks *** TURN *** [6h 2c 4s] [Js] -s0rrow: checks +Hero: checks g0ty4: checks ratabar111: checks *** RIVER *** [6h 2c 4s Js] [Qh] -s0rrow: checks +Hero: checks g0ty4: checks ratabar111: checks *** SHOW DOWN *** -s0rrow: shows [6c 5d] (a pair of Sixes) +Hero: shows [6c 5d] (a pair of Sixes) g0ty4: mucks hand ratabar111: mucks hand -s0rrow collected 280 from pot +Hero collected 280 from pot *** SUMMARY *** Total pot 280 | Rake 0 Board [6h 2c 4s Js Qh] Seat 1: ratabar111 mucked [9h Td] Seat 3: Djkujuhfl (button) folded before Flop (didn't bet) Seat 4: beatlesmau5 (small blind) folded before Flop -Seat 5: s0rrow (big blind) showed [6c 5d] and won (280) with a pair of Sixes +Seat 5: Hero (big blind) showed [6c 5d] and won (280) with a pair of Sixes Seat 6: g0ty4 mucked [3c 3h] Seat 8: 123456789476 folded before Flop (didn't bet) Seat 9: ruslik_28 folded before Flop (didn't bet) @@ -2538,20 +2538,20 @@ Table '297808375 3' 9-max Seat #4 is the button Seat 1: ratabar111 (4615 in chips) Seat 3: Djkujuhfl (2295 in chips) Seat 4: beatlesmau5 (6097 in chips) -Seat 5: s0rrow (3045 in chips) +Seat 5: Hero (3045 in chips) Seat 6: g0ty4 (1695 in chips) Seat 8: 123456789476 (7137 in chips) Seat 9: ruslik_28 (2210 in chips) -s0rrow: posts small blind 40 +Hero: posts small blind 40 g0ty4: posts big blind 80 *** HOLE CARDS *** -Dealt to s0rrow [8d 2h] +Dealt to Hero [8d 2h] 123456789476: calls 80 ruslik_28: folds ratabar111: folds Djkujuhfl: folds beatlesmau5: folds -s0rrow: folds +Hero: folds g0ty4: checks *** FLOP *** [2s 5d 9h] g0ty4: checks @@ -2565,7 +2565,7 @@ Board [2s 5d 9h] Seat 1: ratabar111 folded before Flop (didn't bet) Seat 3: Djkujuhfl folded before Flop (didn't bet) Seat 4: beatlesmau5 (button) folded before Flop (didn't bet) -Seat 5: s0rrow (small blind) folded before Flop +Seat 5: Hero (small blind) folded before Flop Seat 6: g0ty4 (big blind) folded on the Flop Seat 8: 123456789476 collected (200) Seat 9: ruslik_28 folded before Flop (didn't bet) @@ -2577,36 +2577,36 @@ Table '297808375 3' 9-max Seat #5 is the button Seat 1: ratabar111 (4615 in chips) Seat 3: Djkujuhfl (2295 in chips) Seat 4: beatlesmau5 (6097 in chips) -Seat 5: s0rrow (3005 in chips) +Seat 5: Hero (3005 in chips) Seat 6: g0ty4 (1615 in chips) Seat 8: 123456789476 (7257 in chips) Seat 9: ruslik_28 (2210 in chips) g0ty4: posts small blind 40 123456789476: posts big blind 80 *** HOLE CARDS *** -Dealt to s0rrow [7c 5h] +Dealt to Hero [7c 5h] ruslik_28: calls 80 ratabar111: folds Djkujuhfl: folds beatlesmau5: folds -s0rrow: calls 80 +Hero: calls 80 g0ty4: folds 123456789476: checks *** FLOP *** [4h Th Ts] 123456789476: checks ruslik_28: checks -s0rrow: bets 240 +Hero: bets 240 123456789476: folds ruslik_28: folds -Uncalled bet (240) returned to s0rrow -s0rrow collected 280 from pot +Uncalled bet (240) returned to Hero +Hero collected 280 from pot *** SUMMARY *** Total pot 280 | Rake 0 Board [4h Th Ts] Seat 1: ratabar111 folded before Flop (didn't bet) Seat 3: Djkujuhfl folded before Flop (didn't bet) Seat 4: beatlesmau5 folded before Flop (didn't bet) -Seat 5: s0rrow (button) collected (280) +Seat 5: Hero (button) collected (280) Seat 6: g0ty4 (small blind) folded before Flop Seat 8: 123456789476 (big blind) folded on the Flop Seat 9: ruslik_28 folded on the Flop @@ -2618,18 +2618,18 @@ Table '297808375 3' 9-max Seat #6 is the button Seat 1: ratabar111 (4615 in chips) Seat 3: Djkujuhfl (2295 in chips) Seat 4: beatlesmau5 (6097 in chips) -Seat 5: s0rrow (3205 in chips) +Seat 5: Hero (3205 in chips) Seat 6: g0ty4 (1575 in chips) Seat 8: 123456789476 (7177 in chips) Seat 9: ruslik_28 (2130 in chips) 123456789476: posts small blind 40 ruslik_28: posts big blind 80 *** HOLE CARDS *** -Dealt to s0rrow [8s 9s] +Dealt to Hero [8s 9s] ratabar111: calls 80 Djkujuhfl: folds beatlesmau5: folds -s0rrow: raises 240 to 320 +Hero: raises 240 to 320 g0ty4: folds 123456789476: calls 280 ruslik_28: calls 240 @@ -2637,25 +2637,25 @@ ratabar111: folds *** FLOP *** [6d 7c 8h] 123456789476: bets 160 ruslik_28: calls 160 -s0rrow: calls 160 +Hero: calls 160 *** TURN *** [6d 7c 8h] [Kd] 123456789476: checks ruslik_28: bets 320 -s0rrow: calls 320 +Hero: calls 320 123456789476: folds *** RIVER *** [6d 7c 8h Kd] [4d] ruslik_28: checks -s0rrow: bets 880 +Hero: bets 880 ruslik_28: folds -Uncalled bet (880) returned to s0rrow -s0rrow collected 2160 from pot +Uncalled bet (880) returned to Hero +Hero collected 2160 from pot *** SUMMARY *** Total pot 2160 | Rake 0 Board [6d 7c 8h Kd 4d] Seat 1: ratabar111 folded before Flop Seat 3: Djkujuhfl folded before Flop (didn't bet) Seat 4: beatlesmau5 folded before Flop (didn't bet) -Seat 5: s0rrow collected (2160) +Seat 5: Hero collected (2160) Seat 6: g0ty4 (button) folded before Flop (didn't bet) Seat 8: 123456789476 (small blind) folded on the Turn Seat 9: ruslik_28 (big blind) folded on the River @@ -2667,17 +2667,17 @@ Table '297808375 3' 9-max Seat #8 is the button Seat 1: ratabar111 (4535 in chips) Seat 3: Djkujuhfl (2295 in chips) Seat 4: beatlesmau5 (6097 in chips) -Seat 5: s0rrow (4565 in chips) +Seat 5: Hero (4565 in chips) Seat 6: g0ty4 (1575 in chips) Seat 8: 123456789476 (6697 in chips) Seat 9: ruslik_28 (1330 in chips) ruslik_28: posts small blind 40 ratabar111: posts big blind 80 *** HOLE CARDS *** -Dealt to s0rrow [Kd Jd] +Dealt to Hero [Kd Jd] Djkujuhfl: folds beatlesmau5: raises 240 to 320 -s0rrow: folds +Hero: folds g0ty4: folds 123456789476: folds ruslik_28: folds @@ -2690,7 +2690,7 @@ Total pot 200 | Rake 0 Seat 1: ratabar111 (big blind) folded before Flop Seat 3: Djkujuhfl folded before Flop (didn't bet) Seat 4: beatlesmau5 collected (200) -Seat 5: s0rrow folded before Flop (didn't bet) +Seat 5: Hero folded before Flop (didn't bet) Seat 6: g0ty4 folded before Flop (didn't bet) Seat 8: 123456789476 (button) folded before Flop (didn't bet) Seat 9: ruslik_28 (small blind) folded before Flop @@ -2702,16 +2702,16 @@ Table '297808375 3' 9-max Seat #9 is the button Seat 1: ratabar111 (4455 in chips) Seat 3: Djkujuhfl (2295 in chips) Seat 4: beatlesmau5 (6217 in chips) -Seat 5: s0rrow (4565 in chips) +Seat 5: Hero (4565 in chips) Seat 6: g0ty4 (1575 in chips) Seat 8: 123456789476 (6697 in chips) Seat 9: ruslik_28 (1290 in chips) ratabar111: posts small blind 40 Djkujuhfl: posts big blind 80 *** HOLE CARDS *** -Dealt to s0rrow [7s 5c] +Dealt to Hero [7s 5c] beatlesmau5: calls 80 -s0rrow: folds +Hero: folds g0ty4: folds 123456789476: calls 80 ruslik_28: raises 1210 to 1290 and is all-in @@ -2734,7 +2734,7 @@ Board [3c Ks 9c Ah Qc] Seat 1: ratabar111 (small blind) folded before Flop Seat 3: Djkujuhfl (big blind) folded before Flop Seat 4: beatlesmau5 folded before Flop -Seat 5: s0rrow folded before Flop (didn't bet) +Seat 5: Hero folded before Flop (didn't bet) Seat 6: g0ty4 folded before Flop (didn't bet) Seat 8: 123456789476 showed [Js Qh] and won (2780) with a pair of Queens Seat 9: ruslik_28 (button) showed [5h 5s] and lost with a pair of Fives @@ -2743,7 +2743,7 @@ Seat 9: ruslik_28 (button) showed [5h 5s] and lost with a pair of Fives PokerStars Game #47655304866: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:03:50 ET Table '297808375 8' 9-max Seat #2 is the button -Seat 1: s0rrow (4565 in chips) +Seat 1: Hero (4565 in chips) Seat 2: ruslan999588 (4436 in chips) Seat 3: titasands (1500 in chips) is sitting out Seat 4: seric1975 (2050 in chips) @@ -2752,7 +2752,7 @@ Seat 6: ramones004 (1845 in chips) Seat 7: Poker Elfe 1 (12353 in chips) Seat 8: Djkujuhfl (2215 in chips) Seat 9: stefan_bg_46 (6515 in chips) -s0rrow: posts the ante 10 +Hero: posts the ante 10 ruslan999588: posts the ante 10 titasands: posts the ante 10 seric1975: posts the ante 10 @@ -2764,13 +2764,13 @@ stefan_bg_46: posts the ante 10 titasands: posts small blind 50 seric1975: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [6c 9s] +Dealt to Hero [6c 9s] Georgy80: folds ramones004: folds Poker Elfe 1: folds Djkujuhfl: raises 300 to 400 stefan_bg_46: folds -s0rrow: folds +Hero: folds ruslan999588: folds titasands: folds seric1975: folds @@ -2779,7 +2779,7 @@ Djkujuhfl collected 340 from pot Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 340 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: ruslan999588 (button) folded before Flop (didn't bet) Seat 3: titasands (small blind) folded before Flop Seat 4: seric1975 (big blind) folded before Flop @@ -2793,7 +2793,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47655322797: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:04:15 ET Table '297808375 8' 9-max Seat #3 is the button -Seat 1: s0rrow (4555 in chips) +Seat 1: Hero (4555 in chips) Seat 2: ruslan999588 (4426 in chips) Seat 3: titasands (1440 in chips) is sitting out Seat 4: seric1975 (1940 in chips) @@ -2802,7 +2802,7 @@ Seat 6: ramones004 (1835 in chips) Seat 7: Poker Elfe 1 (12343 in chips) Seat 8: Djkujuhfl (2445 in chips) Seat 9: stefan_bg_46 (6505 in chips) -s0rrow: posts the ante 10 +Hero: posts the ante 10 ruslan999588: posts the ante 10 titasands: posts the ante 10 seric1975: posts the ante 10 @@ -2814,12 +2814,12 @@ stefan_bg_46: posts the ante 10 seric1975: posts small blind 50 Georgy80: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [7h 9h] +Dealt to Hero [7h 9h] ramones004: folds Poker Elfe 1: calls 100 Djkujuhfl: folds stefan_bg_46: folds -s0rrow: calls 100 +Hero: calls 100 ruslan999588: folds titasands: folds seric1975: folds @@ -2827,15 +2827,15 @@ Georgy80: checks *** FLOP *** [5s Ad 8s] Georgy80: checks Poker Elfe 1: checks -s0rrow: bets 300 +Hero: bets 300 Georgy80: folds Poker Elfe 1: folds -Uncalled bet (300) returned to s0rrow -s0rrow collected 440 from pot +Uncalled bet (300) returned to Hero +Hero collected 440 from pot *** SUMMARY *** Total pot 440 | Rake 0 Board [5s Ad 8s] -Seat 1: s0rrow collected (440) +Seat 1: Hero collected (440) Seat 2: ruslan999588 folded before Flop (didn't bet) Seat 3: titasands (button) folded before Flop (didn't bet) Seat 4: seric1975 (small blind) folded before Flop @@ -2849,7 +2849,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47655351079: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:04:58 ET Table '297808375 8' 9-max Seat #4 is the button -Seat 1: s0rrow (4885 in chips) +Seat 1: Hero (4885 in chips) Seat 2: ruslan999588 (4416 in chips) Seat 3: titasands (1430 in chips) is sitting out Seat 4: seric1975 (1880 in chips) @@ -2858,7 +2858,7 @@ Seat 6: ramones004 (1825 in chips) Seat 7: Poker Elfe 1 (12233 in chips) Seat 8: Djkujuhfl (2435 in chips) Seat 9: stefan_bg_46 (6495 in chips) -s0rrow: posts the ante 10 +Hero: posts the ante 10 ruslan999588: posts the ante 10 titasands: posts the ante 10 seric1975: posts the ante 10 @@ -2870,11 +2870,11 @@ stefan_bg_46: posts the ante 10 Georgy80: posts small blind 50 ramones004: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [8h 7c] +Dealt to Hero [8h 7c] Poker Elfe 1: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds ruslan999588: calls 100 titasands: folds seric1975: folds @@ -2896,7 +2896,7 @@ ruslan999588: doesn't show hand *** SUMMARY *** Total pot 340 | Rake 0 Board [8d 7s Qc 6c Jh] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: ruslan999588 collected (340) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 (button) folded before Flop (didn't bet) @@ -2910,7 +2910,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47655380480: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:05:41 ET Table '297808375 8' 9-max Seat #5 is the button -Seat 1: s0rrow (4875 in chips) +Seat 1: Hero (4875 in chips) Seat 2: ruslan999588 (4646 in chips) Seat 3: titasands (1420 in chips) is sitting out Seat 4: seric1975 (1870 in chips) @@ -2919,7 +2919,7 @@ Seat 6: ramones004 (1715 in chips) Seat 7: Poker Elfe 1 (12223 in chips) Seat 8: Djkujuhfl (2425 in chips) Seat 9: stefan_bg_46 (6485 in chips) -s0rrow: posts the ante 10 +Hero: posts the ante 10 ruslan999588: posts the ante 10 titasands: posts the ante 10 seric1975: posts the ante 10 @@ -2931,10 +2931,10 @@ stefan_bg_46: posts the ante 10 ramones004: posts small blind 50 Poker Elfe 1: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [7c 5h] +Dealt to Hero [7c 5h] Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds ruslan999588: calls 100 titasands: folds seric1975: raises 400 to 500 @@ -2955,7 +2955,7 @@ seric1975 collected 3960 from pot *** SUMMARY *** Total pot 3960 | Rake 0 Board [As 3c 5d Th Ts] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: ruslan999588 folded before Flop Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 showed [Ah Jd] and won (3960) with two pair, Aces and Tens @@ -2969,7 +2969,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47655411366: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:06:27 ET Table '297808375 8' 9-max Seat #6 is the button -Seat 1: s0rrow (4865 in chips) +Seat 1: Hero (4865 in chips) Seat 2: ruslan999588 (4536 in chips) Seat 3: titasands (1410 in chips) is sitting out Seat 4: seric1975 (3960 in chips) @@ -2978,7 +2978,7 @@ Seat 6: ramones004 (1655 in chips) Seat 7: Poker Elfe 1 (10353 in chips) Seat 8: Djkujuhfl (2415 in chips) Seat 9: stefan_bg_46 (6475 in chips) -s0rrow: posts the ante 10 +Hero: posts the ante 10 ruslan999588: posts the ante 10 titasands: posts the ante 10 seric1975: posts the ante 10 @@ -2990,9 +2990,9 @@ stefan_bg_46: posts the ante 10 Poker Elfe 1: posts small blind 50 Djkujuhfl: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [Jd 7d] +Dealt to Hero [Jd 7d] stefan_bg_46: raises 100 to 200 -s0rrow: folds +Hero: folds ruslan999588: folds titasands: folds seric1975: calls 200 @@ -3021,7 +3021,7 @@ seric1975 collected 5790 from pot *** SUMMARY *** Total pot 5790 | Rake 0 Board [6h Ad Jc 5h Kh] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: ruslan999588 folded before Flop (didn't bet) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 showed [Ah 4h] and won (5790) with a flush, Ace high @@ -3035,7 +3035,7 @@ Seat 9: stefan_bg_46 mucked [Kc Tc] PokerStars Game #47655459229: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:07:38 ET Table '297808375 8' 9-max Seat #7 is the button -Seat 1: s0rrow (4855 in chips) +Seat 1: Hero (4855 in chips) Seat 2: ruslan999588 (4526 in chips) Seat 3: titasands (1400 in chips) is sitting out Seat 4: seric1975 (7040 in chips) @@ -3044,7 +3044,7 @@ Seat 6: ramones004 (1645 in chips) Seat 7: Poker Elfe 1 (10143 in chips) Seat 8: Djkujuhfl (2305 in chips) Seat 9: stefan_bg_46 (3765 in chips) -s0rrow: posts the ante 10 +Hero: posts the ante 10 ruslan999588: posts the ante 10 titasands: posts the ante 10 seric1975: posts the ante 10 @@ -3056,8 +3056,8 @@ stefan_bg_46: posts the ante 10 Djkujuhfl: posts small blind 50 stefan_bg_46: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [Jc 5s] -s0rrow: folds +Dealt to Hero [Jc 5s] +Hero: folds ruslan999588: folds titasands: folds seric1975: raises 100 to 200 @@ -3071,7 +3071,7 @@ Uncalled bet (3555) returned to stefan_bg_46 stefan_bg_46 collected 540 from pot *** SUMMARY *** Total pot 540 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: ruslan999588 folded before Flop (didn't bet) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop @@ -3085,7 +3085,7 @@ Seat 9: stefan_bg_46 (big blind) collected (540) PokerStars Game #47655481983: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:08:11 ET Table '297808375 8' 9-max Seat #8 is the button -Seat 1: s0rrow (4845 in chips) +Seat 1: Hero (4845 in chips) Seat 2: ruslan999588 (4516 in chips) Seat 3: titasands (1390 in chips) is sitting out Seat 4: seric1975 (6830 in chips) @@ -3094,7 +3094,7 @@ Seat 6: ramones004 (1635 in chips) Seat 7: Poker Elfe 1 (10133 in chips) Seat 8: Djkujuhfl (2245 in chips) Seat 9: stefan_bg_46 (4095 in chips) -s0rrow: posts the ante 10 +Hero: posts the ante 10 ruslan999588: posts the ante 10 titasands: posts the ante 10 seric1975: posts the ante 10 @@ -3104,9 +3104,9 @@ Poker Elfe 1: posts the ante 10 Djkujuhfl: posts the ante 10 stefan_bg_46: posts the ante 10 stefan_bg_46: posts small blind 50 -s0rrow: posts big blind 100 +Hero: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [Qc 4s] +Dealt to Hero [Qc 4s] ruslan999588: folds titasands: folds seric1975: folds @@ -3115,13 +3115,13 @@ ramones004: folds Poker Elfe 1: folds Djkujuhfl: raises 200 to 300 stefan_bg_46: folds -s0rrow: folds +Hero: folds Uncalled bet (200) returned to Djkujuhfl Djkujuhfl collected 340 from pot Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 340 | Rake 0 -Seat 1: s0rrow (big blind) folded before Flop +Seat 1: Hero (big blind) folded before Flop Seat 2: ruslan999588 folded before Flop (didn't bet) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop (didn't bet) @@ -3135,7 +3135,7 @@ Seat 9: stefan_bg_46 (small blind) folded before Flop PokerStars Game #47655498478: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:08:36 ET Table '297808375 8' 9-max Seat #9 is the button -Seat 1: s0rrow (4735 in chips) +Seat 1: Hero (4735 in chips) Seat 2: ruslan999588 (4506 in chips) Seat 3: titasands (1380 in chips) is sitting out Seat 4: seric1975 (6820 in chips) @@ -3144,7 +3144,7 @@ Seat 6: ramones004 (1625 in chips) Seat 7: Poker Elfe 1 (10123 in chips) Seat 8: Djkujuhfl (2475 in chips) Seat 9: stefan_bg_46 (4035 in chips) -s0rrow: posts the ante 10 +Hero: posts the ante 10 ruslan999588: posts the ante 10 titasands: posts the ante 10 seric1975: posts the ante 10 @@ -3153,10 +3153,10 @@ ramones004: posts the ante 10 Poker Elfe 1: posts the ante 10 Djkujuhfl: posts the ante 10 stefan_bg_46: posts the ante 10 -s0rrow: posts small blind 50 +Hero: posts small blind 50 ruslan999588: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [2h 4s] +Dealt to Hero [2h 4s] titasands: folds seric1975: folds Georgy80: folds @@ -3164,7 +3164,7 @@ ramones004: folds Poker Elfe 1: calls 100 Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds ruslan999588: checks *** FLOP *** [4d 7d 3s] ruslan999588: checks @@ -3182,7 +3182,7 @@ Poker Elfe 1 collected 540 from pot *** SUMMARY *** Total pot 540 | Rake 0 Board [4d 7d 3s 9c 8h] -Seat 1: s0rrow (small blind) folded before Flop +Seat 1: Hero (small blind) folded before Flop Seat 2: ruslan999588 (big blind) showed [Qh 2c] and lost with high card Queen Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop (didn't bet) @@ -3196,7 +3196,7 @@ Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) PokerStars Game #47655518149: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:09:05 ET Table '297808375 8' 9-max Seat #1 is the button -Seat 1: s0rrow (4675 in chips) +Seat 1: Hero (4675 in chips) Seat 2: ruslan999588 (4296 in chips) Seat 3: titasands (1370 in chips) is sitting out Seat 4: seric1975 (6810 in chips) @@ -3205,7 +3205,7 @@ Seat 6: ramones004 (1615 in chips) Seat 7: Poker Elfe 1 (10453 in chips) Seat 8: Djkujuhfl (2465 in chips) Seat 9: stefan_bg_46 (4025 in chips) -s0rrow: posts the ante 10 +Hero: posts the ante 10 ruslan999588: posts the ante 10 titasands: posts the ante 10 seric1975: posts the ante 10 @@ -3217,14 +3217,14 @@ stefan_bg_46: posts the ante 10 ruslan999588: posts small blind 50 titasands: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [2s Kc] +Dealt to Hero [2s Kc] seric1975: raises 300 to 400 Georgy80: calls 400 ramones004: folds Poker Elfe 1: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds ruslan999588: folds titasands: folds *** FLOP *** [Jd 5c 6d] @@ -3235,7 +3235,7 @@ seric1975 collected 1040 from pot *** SUMMARY *** Total pot 1040 | Rake 0 Board [Jd 5c 6d] -Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 1: Hero (button) folded before Flop (didn't bet) Seat 2: ruslan999588 (small blind) folded before Flop Seat 3: titasands (big blind) folded before Flop Seat 4: seric1975 collected (1040) @@ -3249,7 +3249,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47655549895: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:09:52 ET Table '297808375 8' 9-max Seat #2 is the button -Seat 1: s0rrow (4665 in chips) +Seat 1: Hero (4665 in chips) Seat 2: ruslan999588 (4236 in chips) Seat 3: titasands (1260 in chips) is sitting out Seat 4: seric1975 (7440 in chips) @@ -3258,7 +3258,7 @@ Seat 6: ramones004 (1605 in chips) Seat 7: Poker Elfe 1 (10443 in chips) Seat 8: Djkujuhfl (2455 in chips) Seat 9: stefan_bg_46 (4015 in chips) -s0rrow: posts the ante 10 +Hero: posts the ante 10 ruslan999588: posts the ante 10 titasands: posts the ante 10 seric1975: posts the ante 10 @@ -3270,13 +3270,13 @@ stefan_bg_46: posts the ante 10 titasands: posts small blind 50 seric1975: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [Jc 6s] +Dealt to Hero [Jc 6s] Georgy80: raises 245 to 345 ramones004: raises 1250 to 1595 and is all-in Poker Elfe 1: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds ruslan999588: folds titasands: folds seric1975: calls 1495 @@ -3295,7 +3295,7 @@ ramones004 finished the tournament in 34th place *** SUMMARY *** Total pot 4925 | Rake 0 Board [5c Jh Kd 4d Tc] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: ruslan999588 (button) folded before Flop (didn't bet) Seat 3: titasands (small blind) folded before Flop Seat 4: seric1975 (big blind) folded before Flop @@ -3309,7 +3309,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47655583680: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:10:43 ET Table '297808375 8' 9-max Seat #3 is the button -Seat 1: s0rrow (4655 in chips) +Seat 1: Hero (4655 in chips) Seat 2: ruslan999588 (4226 in chips) Seat 3: titasands (1200 in chips) is sitting out Seat 4: seric1975 (5835 in chips) @@ -3317,7 +3317,7 @@ Seat 5: Georgy80 (11369 in chips) Seat 7: Poker Elfe 1 (10433 in chips) Seat 8: Djkujuhfl (2445 in chips) Seat 9: stefan_bg_46 (4005 in chips) -s0rrow: posts the ante 10 +Hero: posts the ante 10 ruslan999588: posts the ante 10 titasands: posts the ante 10 seric1975: posts the ante 10 @@ -3328,11 +3328,11 @@ stefan_bg_46: posts the ante 10 seric1975: posts small blind 50 Georgy80: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [Th 8s] +Dealt to Hero [Th 8s] Poker Elfe 1: calls 100 Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds ruslan999588: folds titasands: folds seric1975: calls 50 @@ -3359,7 +3359,7 @@ Georgy80 collected 2458 from pot *** SUMMARY *** Total pot 2458 | Rake 0 Board [Ad 3h As 2d 3s] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: ruslan999588 folded before Flop (didn't bet) Seat 3: titasands (button) folded before Flop (didn't bet) Seat 4: seric1975 (small blind) folded on the Turn @@ -3372,7 +3372,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47655617101: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:11:33 ET Table '297808375 8' 9-max Seat #4 is the button -Seat 1: s0rrow (4645 in chips) +Seat 1: Hero (4645 in chips) Seat 2: ruslan999588 (4216 in chips) Seat 3: titasands (1190 in chips) is sitting out Seat 4: seric1975 (5725 in chips) @@ -3380,7 +3380,7 @@ Seat 5: Georgy80 (12678 in chips) Seat 7: Poker Elfe 1 (9284 in chips) Seat 8: Djkujuhfl (2435 in chips) Seat 9: stefan_bg_46 (3995 in chips) -s0rrow: posts the ante 10 +Hero: posts the ante 10 ruslan999588: posts the ante 10 titasands: posts the ante 10 seric1975: posts the ante 10 @@ -3391,10 +3391,10 @@ stefan_bg_46: posts the ante 10 Georgy80: posts small blind 50 Poker Elfe 1: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [2h 7d] +Dealt to Hero [2h 7d] Djkujuhfl: folds stefan_bg_46: calls 100 -s0rrow: folds +Hero: folds ruslan999588: folds titasands: folds seric1975: folds @@ -3420,7 +3420,7 @@ stefan_bg_46 collected 1285 from pot *** SUMMARY *** Total pot 2570 | Rake 0 Board [As Ac Ts Jc Qh] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: ruslan999588 folded before Flop (didn't bet) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 (button) folded before Flop (didn't bet) @@ -3433,7 +3433,7 @@ Seat 9: stefan_bg_46 showed [Kc 7c] and won (1285) with a straight, Ten to Ace PokerStars Game #47655644547: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:12:15 ET Table '297808375 8' 9-max Seat #5 is the button -Seat 1: s0rrow (4635 in chips) +Seat 1: Hero (4635 in chips) Seat 2: ruslan999588 (4206 in chips) Seat 3: titasands (1180 in chips) is sitting out Seat 4: seric1975 (5715 in chips) @@ -3441,7 +3441,7 @@ Seat 5: Georgy80 (12758 in chips) Seat 7: Poker Elfe 1 (9174 in chips) Seat 8: Djkujuhfl (2425 in chips) Seat 9: stefan_bg_46 (4075 in chips) -s0rrow: posts the ante 10 +Hero: posts the ante 10 ruslan999588: posts the ante 10 titasands: posts the ante 10 seric1975: posts the ante 10 @@ -3452,9 +3452,9 @@ stefan_bg_46: posts the ante 10 Poker Elfe 1: posts small blind 50 Djkujuhfl: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [Td Qc] +Dealt to Hero [Td Qc] stefan_bg_46: folds -s0rrow: folds +Hero: folds ruslan999588: folds titasands: folds seric1975: raises 100 to 200 @@ -3467,7 +3467,7 @@ Georgy80 collected 630 from pot Georgy80: doesn't show hand *** SUMMARY *** Total pot 630 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: ruslan999588 folded before Flop (didn't bet) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop @@ -3480,7 +3480,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47655662061: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:12:41 ET Table '297808375 8' 9-max Seat #7 is the button -Seat 1: s0rrow (4625 in chips) +Seat 1: Hero (4625 in chips) Seat 2: ruslan999588 (4196 in chips) Seat 3: titasands (1170 in chips) is sitting out Seat 4: seric1975 (5505 in chips) @@ -3488,7 +3488,7 @@ Seat 5: Georgy80 (13178 in chips) Seat 7: Poker Elfe 1 (9114 in chips) Seat 8: Djkujuhfl (2315 in chips) Seat 9: stefan_bg_46 (4065 in chips) -s0rrow: posts the ante 10 +Hero: posts the ante 10 ruslan999588: posts the ante 10 titasands: posts the ante 10 seric1975: posts the ante 10 @@ -3499,8 +3499,8 @@ stefan_bg_46: posts the ante 10 Djkujuhfl: posts small blind 50 stefan_bg_46: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [6h Ks] -s0rrow: folds +Dealt to Hero [6h Ks] +Hero: folds ruslan999588: folds titasands: folds seric1975: folds @@ -3517,7 +3517,7 @@ Georgy80: shows [Jd Jh] (a pair of Jacks) *** SUMMARY *** Total pot 920 | Rake 0 Board [Td 8h 5s] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: ruslan999588 folded before Flop (didn't bet) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop (didn't bet) @@ -3530,7 +3530,7 @@ Seat 9: stefan_bg_46 (big blind) folded before Flop PokerStars Game #47655690913: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:13:25 ET Table '297808375 8' 9-max Seat #8 is the button -Seat 1: s0rrow (4615 in chips) +Seat 1: Hero (4615 in chips) Seat 2: ruslan999588 (4186 in chips) Seat 3: titasands (1160 in chips) is sitting out Seat 4: seric1975 (5495 in chips) @@ -3538,7 +3538,7 @@ Seat 5: Georgy80 (13743 in chips) Seat 7: Poker Elfe 1 (8759 in chips) Seat 8: Djkujuhfl (2255 in chips) Seat 9: stefan_bg_46 (3955 in chips) -s0rrow: posts the ante 15 +Hero: posts the ante 15 ruslan999588: posts the ante 15 titasands: posts the ante 15 seric1975: posts the ante 15 @@ -3547,9 +3547,9 @@ Poker Elfe 1: posts the ante 15 Djkujuhfl: posts the ante 15 stefan_bg_46: posts the ante 15 stefan_bg_46: posts small blind 60 -s0rrow: posts big blind 120 +Hero: posts big blind 120 *** HOLE CARDS *** -Dealt to s0rrow [5s Ks] +Dealt to Hero [5s Ks] ruslan999588: folds titasands: folds seric1975: folds @@ -3557,13 +3557,13 @@ Georgy80: folds Poker Elfe 1: folds Djkujuhfl: raises 205 to 325 stefan_bg_46: folds -s0rrow: folds +Hero: folds Uncalled bet (205) returned to Djkujuhfl Djkujuhfl collected 420 from pot Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 420 | Rake 0 -Seat 1: s0rrow (big blind) folded before Flop +Seat 1: Hero (big blind) folded before Flop Seat 2: ruslan999588 folded before Flop (didn't bet) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop (didn't bet) @@ -3576,7 +3576,7 @@ Seat 9: stefan_bg_46 (small blind) folded before Flop PokerStars Game #47655709885: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:13:54 ET Table '297808375 8' 9-max Seat #9 is the button -Seat 1: s0rrow (4480 in chips) +Seat 1: Hero (4480 in chips) Seat 2: ruslan999588 (4171 in chips) Seat 3: titasands (1145 in chips) is sitting out Seat 4: seric1975 (5480 in chips) @@ -3584,7 +3584,7 @@ Seat 5: Georgy80 (13728 in chips) Seat 7: Poker Elfe 1 (8744 in chips) Seat 8: Djkujuhfl (2540 in chips) Seat 9: stefan_bg_46 (3880 in chips) -s0rrow: posts the ante 15 +Hero: posts the ante 15 ruslan999588: posts the ante 15 titasands: posts the ante 15 seric1975: posts the ante 15 @@ -3592,29 +3592,29 @@ Georgy80: posts the ante 15 Poker Elfe 1: posts the ante 15 Djkujuhfl: posts the ante 15 stefan_bg_46: posts the ante 15 -s0rrow: posts small blind 60 +Hero: posts small blind 60 ruslan999588: posts big blind 120 *** HOLE CARDS *** -Dealt to s0rrow [9s Ad] +Dealt to Hero [9s Ad] titasands: folds seric1975: folds Georgy80: folds Poker Elfe 1: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: raises 240 to 360 +Hero: raises 240 to 360 ruslan999588: calls 240 *** FLOP *** [Jh Kd 8d] -s0rrow: checks +Hero: checks ruslan999588: bets 3796 and is all-in -s0rrow: folds +Hero: folds Uncalled bet (3796) returned to ruslan999588 ruslan999588 collected 840 from pot ruslan999588: doesn't show hand *** SUMMARY *** Total pot 840 | Rake 0 Board [Jh Kd 8d] -Seat 1: s0rrow (small blind) folded on the Flop +Seat 1: Hero (small blind) folded on the Flop Seat 2: ruslan999588 (big blind) collected (840) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop (didn't bet) @@ -3627,7 +3627,7 @@ Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) PokerStars Game #47655739636: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:14:39 ET Table '297808375 8' 9-max Seat #1 is the button -Seat 1: s0rrow (4105 in chips) +Seat 1: Hero (4105 in chips) Seat 2: ruslan999588 (4636 in chips) Seat 3: titasands (1130 in chips) is sitting out Seat 4: seric1975 (5465 in chips) @@ -3635,7 +3635,7 @@ Seat 5: Georgy80 (13713 in chips) Seat 7: Poker Elfe 1 (8729 in chips) Seat 8: Djkujuhfl (2525 in chips) Seat 9: stefan_bg_46 (3865 in chips) -s0rrow: posts the ante 15 +Hero: posts the ante 15 ruslan999588: posts the ante 15 titasands: posts the ante 15 seric1975: posts the ante 15 @@ -3646,13 +3646,13 @@ stefan_bg_46: posts the ante 15 ruslan999588: posts small blind 60 titasands: posts big blind 120 *** HOLE CARDS *** -Dealt to s0rrow [3s 7d] +Dealt to Hero [3s 7d] seric1975: folds Georgy80: folds Poker Elfe 1: calls 120 Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds ruslan999588: calls 60 titasands: folds *** FLOP *** [Td 9s 4s] @@ -3667,7 +3667,7 @@ ruslan999588: doesn't show hand *** SUMMARY *** Total pot 480 | Rake 0 Board [Td 9s 4s Ah] -Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 1: Hero (button) folded before Flop (didn't bet) Seat 2: ruslan999588 (small blind) collected (480) Seat 3: titasands (big blind) folded before Flop Seat 4: seric1975 folded before Flop (didn't bet) @@ -3680,7 +3680,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47655765065: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:15:18 ET Table '297808375 8' 9-max Seat #2 is the button -Seat 1: s0rrow (4090 in chips) +Seat 1: Hero (4090 in chips) Seat 2: ruslan999588 (4981 in chips) Seat 3: titasands (995 in chips) is sitting out Seat 4: seric1975 (5450 in chips) @@ -3688,7 +3688,7 @@ Seat 5: Georgy80 (13698 in chips) Seat 7: Poker Elfe 1 (8594 in chips) Seat 8: Djkujuhfl (2510 in chips) Seat 9: stefan_bg_46 (3850 in chips) -s0rrow: posts the ante 15 +Hero: posts the ante 15 ruslan999588: posts the ante 15 titasands: posts the ante 15 seric1975: posts the ante 15 @@ -3699,12 +3699,12 @@ stefan_bg_46: posts the ante 15 titasands: posts small blind 60 seric1975: posts big blind 120 *** HOLE CARDS *** -Dealt to s0rrow [3h Kh] +Dealt to Hero [3h Kh] Georgy80: raises 312 to 432 Poker Elfe 1: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds ruslan999588: folds titasands: folds seric1975: folds @@ -3713,7 +3713,7 @@ Georgy80 collected 420 from pot Georgy80: doesn't show hand *** SUMMARY *** Total pot 420 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: ruslan999588 (button) folded before Flop (didn't bet) Seat 3: titasands (small blind) folded before Flop Seat 4: seric1975 (big blind) folded before Flop @@ -3726,7 +3726,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47655782271: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:15:44 ET Table '297808375 8' 9-max Seat #3 is the button -Seat 1: s0rrow (4075 in chips) +Seat 1: Hero (4075 in chips) Seat 2: ruslan999588 (4966 in chips) Seat 3: titasands (920 in chips) is sitting out Seat 4: seric1975 (5315 in chips) @@ -3734,7 +3734,7 @@ Seat 5: Georgy80 (13983 in chips) Seat 7: Poker Elfe 1 (8579 in chips) Seat 8: Djkujuhfl (2495 in chips) Seat 9: stefan_bg_46 (3835 in chips) -s0rrow: posts the ante 15 +Hero: posts the ante 15 ruslan999588: posts the ante 15 titasands: posts the ante 15 seric1975: posts the ante 15 @@ -3745,11 +3745,11 @@ stefan_bg_46: posts the ante 15 seric1975: posts small blind 60 Georgy80: posts big blind 120 *** HOLE CARDS *** -Dealt to s0rrow [6c Jh] +Dealt to Hero [6c Jh] Poker Elfe 1: folds Djkujuhfl: raises 240 to 360 stefan_bg_46: folds -s0rrow: folds +Hero: folds ruslan999588: folds titasands: folds seric1975: folds @@ -3759,7 +3759,7 @@ Djkujuhfl collected 420 from pot Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 420 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: ruslan999588 folded before Flop (didn't bet) Seat 3: titasands (button) folded before Flop (didn't bet) Seat 4: seric1975 (small blind) folded before Flop @@ -3772,7 +3772,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47655797210: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:16:06 ET Table '297808375 8' 9-max Seat #4 is the button -Seat 1: s0rrow (4060 in chips) +Seat 1: Hero (4060 in chips) Seat 2: ruslan999588 (4951 in chips) Seat 3: titasands (905 in chips) is sitting out Seat 4: seric1975 (5240 in chips) @@ -3780,7 +3780,7 @@ Seat 5: Georgy80 (13848 in chips) Seat 7: Poker Elfe 1 (8564 in chips) Seat 8: Djkujuhfl (2780 in chips) Seat 9: stefan_bg_46 (3820 in chips) -s0rrow: posts the ante 15 +Hero: posts the ante 15 ruslan999588: posts the ante 15 titasands: posts the ante 15 seric1975: posts the ante 15 @@ -3791,10 +3791,10 @@ stefan_bg_46: posts the ante 15 Georgy80: posts small blind 60 Poker Elfe 1: posts big blind 120 *** HOLE CARDS *** -Dealt to s0rrow [Kd 8c] +Dealt to Hero [Kd 8c] Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds ruslan999588: calls 120 titasands: folds seric1975: folds @@ -3809,7 +3809,7 @@ ruslan999588 collected 420 from pot *** SUMMARY *** Total pot 420 | Rake 0 Board [Ad 3h 4d] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: ruslan999588 collected (420) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 (button) folded before Flop (didn't bet) @@ -3822,7 +3822,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47655816777: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:16:36 ET Table '297808375 8' 9-max Seat #5 is the button -Seat 1: s0rrow (4045 in chips) +Seat 1: Hero (4045 in chips) Seat 2: ruslan999588 (5236 in chips) Seat 3: titasands (890 in chips) is sitting out Seat 4: seric1975 (5225 in chips) @@ -3830,7 +3830,7 @@ Seat 5: Georgy80 (13773 in chips) Seat 7: Poker Elfe 1 (8429 in chips) Seat 8: Djkujuhfl (2765 in chips) Seat 9: stefan_bg_46 (3805 in chips) -s0rrow: posts the ante 15 +Hero: posts the ante 15 ruslan999588: posts the ante 15 titasands: posts the ante 15 seric1975: posts the ante 15 @@ -3841,9 +3841,9 @@ stefan_bg_46: posts the ante 15 Poker Elfe 1: posts small blind 60 Djkujuhfl: posts big blind 120 *** HOLE CARDS *** -Dealt to s0rrow [Td Ah] +Dealt to Hero [Td Ah] stefan_bg_46: calls 120 -s0rrow: calls 120 +Hero: calls 120 ruslan999588: folds titasands: folds seric1975: folds @@ -3854,21 +3854,21 @@ Djkujuhfl: checks Poker Elfe 1: bets 120 Djkujuhfl: folds stefan_bg_46: folds -s0rrow: calls 120 +Hero: calls 120 *** TURN *** [6s Kh 5h] [Js] Poker Elfe 1: bets 120 -s0rrow: raises 360 to 480 +Hero: raises 360 to 480 Poker Elfe 1: calls 360 *** RIVER *** [6s Kh 5h Js] [Tc] Poker Elfe 1: checks -s0rrow: bets 1080 +Hero: bets 1080 Poker Elfe 1: folds -Uncalled bet (1080) returned to s0rrow -s0rrow collected 1800 from pot +Uncalled bet (1080) returned to Hero +Hero collected 1800 from pot *** SUMMARY *** Total pot 1800 | Rake 0 Board [6s Kh 5h Js Tc] -Seat 1: s0rrow collected (1800) +Seat 1: Hero collected (1800) Seat 2: ruslan999588 folded before Flop (didn't bet) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop (didn't bet) @@ -3881,7 +3881,7 @@ Seat 9: stefan_bg_46 folded on the Flop PokerStars Game #47655849138: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:17:25 ET Table '297808375 8' 9-max Seat #7 is the button -Seat 1: s0rrow (5110 in chips) +Seat 1: Hero (5110 in chips) Seat 2: ruslan999588 (5221 in chips) Seat 3: titasands (875 in chips) is sitting out Seat 4: seric1975 (5210 in chips) @@ -3889,7 +3889,7 @@ Seat 5: Georgy80 (13758 in chips) Seat 7: Poker Elfe 1 (7694 in chips) Seat 8: Djkujuhfl (2630 in chips) Seat 9: stefan_bg_46 (3670 in chips) -s0rrow: posts the ante 15 +Hero: posts the ante 15 ruslan999588: posts the ante 15 titasands: posts the ante 15 seric1975: posts the ante 15 @@ -3900,8 +3900,8 @@ stefan_bg_46: posts the ante 15 Djkujuhfl: posts small blind 60 stefan_bg_46: posts big blind 120 *** HOLE CARDS *** -Dealt to s0rrow [6c Tc] -s0rrow: folds +Dealt to Hero [6c Tc] +Hero: folds ruslan999588: folds titasands: folds seric1975: folds @@ -3914,7 +3914,7 @@ Djkujuhfl collected 360 from pot Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 360 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: ruslan999588 folded before Flop (didn't bet) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop (didn't bet) @@ -3927,7 +3927,7 @@ Seat 9: stefan_bg_46 (big blind) folded before Flop PokerStars Game #47655864200: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:17:48 ET Table '297808375 8' 9-max Seat #8 is the button -Seat 1: s0rrow (5095 in chips) +Seat 1: Hero (5095 in chips) Seat 2: ruslan999588 (5206 in chips) Seat 3: titasands (860 in chips) is sitting out Seat 4: seric1975 (5195 in chips) @@ -3935,7 +3935,7 @@ Seat 5: Georgy80 (13743 in chips) Seat 7: Poker Elfe 1 (7679 in chips) Seat 8: Djkujuhfl (2855 in chips) Seat 9: stefan_bg_46 (3535 in chips) -s0rrow: posts the ante 15 +Hero: posts the ante 15 ruslan999588: posts the ante 15 titasands: posts the ante 15 seric1975: posts the ante 15 @@ -3944,9 +3944,9 @@ Poker Elfe 1: posts the ante 15 Djkujuhfl: posts the ante 15 stefan_bg_46: posts the ante 15 stefan_bg_46: posts small blind 60 -s0rrow: posts big blind 120 +Hero: posts big blind 120 *** HOLE CARDS *** -Dealt to s0rrow [Jc Kc] +Dealt to Hero [Jc Kc] ruslan999588: calls 120 titasands: folds seric1975: raises 480 to 600 @@ -3954,7 +3954,7 @@ Georgy80: folds Poker Elfe 1: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds ruslan999588: calls 480 *** FLOP *** [Tc 7c 6d] ruslan999588: bets 4320 @@ -3969,7 +3969,7 @@ seric1975 collected 10660 from pot *** SUMMARY *** Total pot 10660 | Rake 0 Board [Tc 7c 6d 4d 6h] -Seat 1: s0rrow (big blind) folded before Flop +Seat 1: Hero (big blind) folded before Flop Seat 2: ruslan999588 showed [Js As] and lost with a pair of Sixes Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 showed [Qd Qc] and won (10660) with two pair, Queens and Sixes @@ -3982,7 +3982,7 @@ Seat 9: stefan_bg_46 (small blind) folded before Flop PokerStars Game #47655901719: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:18:45 ET Table '297808375 8' 9-max Seat #9 is the button -Seat 1: s0rrow (4960 in chips) +Seat 1: Hero (4960 in chips) Seat 2: ruslan999588 (11 in chips) Seat 3: titasands (845 in chips) is sitting out Seat 4: seric1975 (10660 in chips) @@ -3990,7 +3990,7 @@ Seat 5: Georgy80 (13728 in chips) Seat 7: Poker Elfe 1 (7664 in chips) Seat 8: Djkujuhfl (2840 in chips) Seat 9: stefan_bg_46 (3460 in chips) -s0rrow: posts the ante 15 +Hero: posts the ante 15 ruslan999588: posts the ante 11 and is all-in titasands: posts the ante 15 seric1975: posts the ante 15 @@ -3998,22 +3998,22 @@ Georgy80: posts the ante 15 Poker Elfe 1: posts the ante 15 Djkujuhfl: posts the ante 15 stefan_bg_46: posts the ante 15 -s0rrow: posts small blind 60 +Hero: posts small blind 60 *** HOLE CARDS *** -Dealt to s0rrow [6c 4s] +Dealt to Hero [6c 4s] titasands: folds seric1975: calls 120 Georgy80: folds Poker Elfe 1: calls 120 Djkujuhfl: calls 120 stefan_bg_46: folds -s0rrow: calls 60 +Hero: calls 60 *** FLOP *** [9s 5s Qd] -s0rrow: checks +Hero: checks seric1975: checks Poker Elfe 1: checks Djkujuhfl: bets 404 -s0rrow: folds +Hero: folds seric1975: folds Poker Elfe 1: folds Uncalled bet (404) returned to Djkujuhfl @@ -4029,7 +4029,7 @@ ruslan999588 finished the tournament in 33rd place *** SUMMARY *** Total pot 596 Main pot 88. Side pot 508. | Rake 0 Board [9s 5s Qd Jd 3c] -Seat 1: s0rrow (small blind) folded on the Flop +Seat 1: Hero (small blind) folded on the Flop Seat 2: ruslan999588 (big blind) showed [9c Ts] and lost with a pair of Nines Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 folded on the Flop @@ -4042,14 +4042,14 @@ Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) PokerStars Game #47655946565: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:19:53 ET Table '297808375 8' 9-max Seat #1 is the button -Seat 1: s0rrow (4825 in chips) +Seat 1: Hero (4825 in chips) Seat 3: titasands (830 in chips) is sitting out Seat 4: seric1975 (10525 in chips) Seat 5: Georgy80 (13713 in chips) Seat 7: Poker Elfe 1 (7529 in chips) Seat 8: Djkujuhfl (3301 in chips) Seat 9: stefan_bg_46 (3445 in chips) -s0rrow: posts the ante 15 +Hero: posts the ante 15 titasands: posts the ante 15 seric1975: posts the ante 15 Georgy80: posts the ante 15 @@ -4059,24 +4059,24 @@ stefan_bg_46: posts the ante 15 titasands: posts small blind 60 seric1975: posts big blind 120 *** HOLE CARDS *** -Dealt to s0rrow [8s Js] +Dealt to Hero [8s Js] Georgy80: folds Poker Elfe 1: folds Djkujuhfl: raises 145 to 265 stefan_bg_46: folds -s0rrow: calls 265 +Hero: calls 265 titasands: folds seric1975: folds *** FLOP *** [7c Jh Qc] Djkujuhfl: checks -s0rrow: bets 480 +Hero: bets 480 Djkujuhfl: folds -Uncalled bet (480) returned to s0rrow -s0rrow collected 815 from pot +Uncalled bet (480) returned to Hero +Hero collected 815 from pot *** SUMMARY *** Total pot 815 | Rake 0 Board [7c Jh Qc] -Seat 1: s0rrow (button) collected (815) +Seat 1: Hero (button) collected (815) Seat 3: titasands (small blind) folded before Flop Seat 4: seric1975 (big blind) folded before Flop Seat 5: Georgy80 folded before Flop (didn't bet) @@ -4088,14 +4088,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47655975396: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:20:36 ET Table '297808375 8' 9-max Seat #3 is the button -Seat 1: s0rrow (5360 in chips) +Seat 1: Hero (5360 in chips) Seat 3: titasands (755 in chips) is sitting out Seat 4: seric1975 (10390 in chips) Seat 5: Georgy80 (13698 in chips) Seat 7: Poker Elfe 1 (7514 in chips) Seat 8: Djkujuhfl (3021 in chips) Seat 9: stefan_bg_46 (3430 in chips) -s0rrow: posts the ante 15 +Hero: posts the ante 15 titasands: posts the ante 15 seric1975: posts the ante 15 Georgy80: posts the ante 15 @@ -4105,24 +4105,24 @@ stefan_bg_46: posts the ante 15 seric1975: posts small blind 60 Georgy80: posts big blind 120 *** HOLE CARDS *** -Dealt to s0rrow [Kh Ah] +Dealt to Hero [Kh Ah] Poker Elfe 1: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: raises 240 to 360 +Hero: raises 240 to 360 titasands: folds seric1975: calls 300 Georgy80: folds *** FLOP *** [Jh Kd 5s] seric1975: bets 360 -s0rrow: raises 840 to 1200 +Hero: raises 840 to 1200 seric1975: folds -Uncalled bet (840) returned to s0rrow -s0rrow collected 1665 from pot +Uncalled bet (840) returned to Hero +Hero collected 1665 from pot *** SUMMARY *** Total pot 1665 | Rake 0 Board [Jh Kd 5s] -Seat 1: s0rrow collected (1665) +Seat 1: Hero collected (1665) Seat 3: titasands (button) folded before Flop (didn't bet) Seat 4: seric1975 (small blind) folded on the Flop Seat 5: Georgy80 (big blind) folded before Flop @@ -4134,14 +4134,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47656010121: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:21:29 ET Table '297808375 8' 9-max Seat #4 is the button -Seat 1: s0rrow (6290 in chips) +Seat 1: Hero (6290 in chips) Seat 3: titasands (740 in chips) is sitting out Seat 4: seric1975 (9655 in chips) Seat 5: Georgy80 (13563 in chips) Seat 7: Poker Elfe 1 (7499 in chips) Seat 8: Djkujuhfl (3006 in chips) Seat 9: stefan_bg_46 (3415 in chips) -s0rrow: posts the ante 15 +Hero: posts the ante 15 titasands: posts the ante 15 seric1975: posts the ante 15 Georgy80: posts the ante 15 @@ -4151,10 +4151,10 @@ stefan_bg_46: posts the ante 15 Georgy80: posts small blind 60 Poker Elfe 1: posts big blind 120 *** HOLE CARDS *** -Dealt to s0rrow [Jc 2s] +Dealt to Hero [Jc 2s] Djkujuhfl: raises 240 to 360 stefan_bg_46: folds -s0rrow: folds +Hero: folds titasands: folds seric1975: folds Georgy80: folds @@ -4164,7 +4164,7 @@ Djkujuhfl collected 405 from pot Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 405 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 (button) folded before Flop (didn't bet) Seat 5: Georgy80 (small blind) folded before Flop @@ -4176,14 +4176,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47656021423: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:21:46 ET Table '297808375 8' 9-max Seat #5 is the button -Seat 1: s0rrow (6275 in chips) +Seat 1: Hero (6275 in chips) Seat 3: titasands (725 in chips) is sitting out Seat 4: seric1975 (9640 in chips) Seat 5: Georgy80 (13488 in chips) Seat 7: Poker Elfe 1 (7364 in chips) Seat 8: Djkujuhfl (3276 in chips) Seat 9: stefan_bg_46 (3400 in chips) -s0rrow: posts the ante 15 +Hero: posts the ante 15 titasands: posts the ante 15 seric1975: posts the ante 15 Georgy80: posts the ante 15 @@ -4193,9 +4193,9 @@ stefan_bg_46: posts the ante 15 Poker Elfe 1: posts small blind 60 Djkujuhfl: posts big blind 120 *** HOLE CARDS *** -Dealt to s0rrow [6h 2d] +Dealt to Hero [6h 2d] stefan_bg_46: folds -s0rrow: folds +Hero: folds titasands: folds seric1975: folds Georgy80: raises 312 to 432 @@ -4212,7 +4212,7 @@ Djkujuhfl collected 6687 from pot *** SUMMARY *** Total pot 6687 | Rake 0 Board [8d 6d 2h 4d Js] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop (didn't bet) Seat 5: Georgy80 (button) showed [Jc Ac] and lost with a pair of Jacks @@ -4224,14 +4224,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47656048740: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:22:28 ET Table '297808375 8' 9-max Seat #7 is the button -Seat 1: s0rrow (6260 in chips) +Seat 1: Hero (6260 in chips) Seat 3: titasands (710 in chips) is sitting out Seat 4: seric1975 (9625 in chips) Seat 5: Georgy80 (10212 in chips) Seat 7: Poker Elfe 1 (7289 in chips) Seat 8: Djkujuhfl (6687 in chips) Seat 9: stefan_bg_46 (3385 in chips) -s0rrow: posts the ante 15 +Hero: posts the ante 15 titasands: posts the ante 15 seric1975: posts the ante 15 Georgy80: posts the ante 15 @@ -4241,8 +4241,8 @@ stefan_bg_46: posts the ante 15 Djkujuhfl: posts small blind 60 stefan_bg_46: posts big blind 120 *** HOLE CARDS *** -Dealt to s0rrow [Js Kc] -s0rrow: folds +Dealt to Hero [Js Kc] +Hero: folds titasands: folds seric1975: folds Georgy80: folds @@ -4254,7 +4254,7 @@ Djkujuhfl collected 345 from pot Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 345 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -4266,14 +4266,14 @@ Seat 9: stefan_bg_46 (big blind) folded before Flop PokerStars Game #47656069203: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:22:59 ET Table '297808375 8' 9-max Seat #8 is the button -Seat 1: s0rrow (6245 in chips) +Seat 1: Hero (6245 in chips) Seat 3: titasands (695 in chips) is sitting out Seat 4: seric1975 (9610 in chips) Seat 5: Georgy80 (10197 in chips) Seat 7: Poker Elfe 1 (7274 in chips) Seat 8: Djkujuhfl (6897 in chips) Seat 9: stefan_bg_46 (3250 in chips) -s0rrow: posts the ante 15 +Hero: posts the ante 15 titasands: posts the ante 15 seric1975: posts the ante 15 Georgy80: posts the ante 15 @@ -4281,16 +4281,16 @@ Poker Elfe 1: posts the ante 15 Djkujuhfl: posts the ante 15 stefan_bg_46: posts the ante 15 stefan_bg_46: posts small blind 60 -s0rrow: posts big blind 120 +Hero: posts big blind 120 *** HOLE CARDS *** -Dealt to s0rrow [3c 4s] +Dealt to Hero [3c 4s] titasands: folds seric1975: folds Georgy80: folds Poker Elfe 1: folds Djkujuhfl: raises 240 to 360 stefan_bg_46: calls 300 -s0rrow: folds +Hero: folds *** FLOP *** [8s Ah Td] stefan_bg_46: bets 240 Djkujuhfl: folds @@ -4299,7 +4299,7 @@ stefan_bg_46 collected 945 from pot *** SUMMARY *** Total pot 945 | Rake 0 Board [8s Ah Td] -Seat 1: s0rrow (big blind) folded before Flop +Seat 1: Hero (big blind) folded before Flop Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -4311,36 +4311,36 @@ Seat 9: stefan_bg_46 (small blind) collected (945) PokerStars Game #47656102769: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:23:50 ET Table '297808375 8' 9-max Seat #9 is the button -Seat 1: s0rrow (6110 in chips) +Seat 1: Hero (6110 in chips) Seat 3: titasands (680 in chips) is sitting out Seat 4: seric1975 (9595 in chips) Seat 5: Georgy80 (10182 in chips) Seat 7: Poker Elfe 1 (7259 in chips) Seat 8: Djkujuhfl (6522 in chips) Seat 9: stefan_bg_46 (3820 in chips) -s0rrow: posts the ante 20 +Hero: posts the ante 20 titasands: posts the ante 20 seric1975: posts the ante 20 Georgy80: posts the ante 20 Poker Elfe 1: posts the ante 20 Djkujuhfl: posts the ante 20 stefan_bg_46: posts the ante 20 -s0rrow: posts small blind 75 +Hero: posts small blind 75 titasands: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [6c 5h] +Dealt to Hero [6c 5h] seric1975: folds Georgy80: folds Poker Elfe 1: folds Djkujuhfl: folds stefan_bg_46: raises 150 to 300 -s0rrow: folds +Hero: folds titasands: folds Uncalled bet (150) returned to stefan_bg_46 stefan_bg_46 collected 515 from pot *** SUMMARY *** Total pot 515 | Rake 0 -Seat 1: s0rrow (small blind) folded before Flop +Seat 1: Hero (small blind) folded before Flop Seat 3: titasands (big blind) folded before Flop Seat 4: seric1975 folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -4352,14 +4352,14 @@ Seat 9: stefan_bg_46 (button) collected (515) PokerStars Game #47656112787: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:24:06 ET Table '297808375 8' 9-max Seat #1 is the button -Seat 1: s0rrow (6015 in chips) +Seat 1: Hero (6015 in chips) Seat 3: titasands (510 in chips) is sitting out Seat 4: seric1975 (9575 in chips) Seat 5: Georgy80 (10162 in chips) Seat 7: Poker Elfe 1 (7239 in chips) Seat 8: Djkujuhfl (6502 in chips) Seat 9: stefan_bg_46 (4165 in chips) -s0rrow: posts the ante 20 +Hero: posts the ante 20 titasands: posts the ante 20 seric1975: posts the ante 20 Georgy80: posts the ante 20 @@ -4369,19 +4369,19 @@ stefan_bg_46: posts the ante 20 titasands: posts small blind 75 seric1975: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [Th 3c] +Dealt to Hero [Th 3c] Georgy80: folds Poker Elfe 1: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: raises 300 to 450 +Hero: raises 300 to 450 titasands: folds seric1975: folds -Uncalled bet (300) returned to s0rrow -s0rrow collected 515 from pot +Uncalled bet (300) returned to Hero +Hero collected 515 from pot *** SUMMARY *** Total pot 515 | Rake 0 -Seat 1: s0rrow (button) collected (515) +Seat 1: Hero (button) collected (515) Seat 3: titasands (small blind) folded before Flop Seat 4: seric1975 (big blind) folded before Flop Seat 5: Georgy80 folded before Flop (didn't bet) @@ -4393,14 +4393,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47656123972: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:24:23 ET Table '297808375 8' 9-max Seat #3 is the button -Seat 1: s0rrow (6360 in chips) +Seat 1: Hero (6360 in chips) Seat 3: titasands (415 in chips) is sitting out Seat 4: seric1975 (9405 in chips) Seat 5: Georgy80 (10142 in chips) Seat 7: Poker Elfe 1 (7219 in chips) Seat 8: Djkujuhfl (6482 in chips) Seat 9: stefan_bg_46 (4145 in chips) -s0rrow: posts the ante 20 +Hero: posts the ante 20 titasands: posts the ante 20 seric1975: posts the ante 20 Georgy80: posts the ante 20 @@ -4410,11 +4410,11 @@ stefan_bg_46: posts the ante 20 seric1975: posts small blind 75 Georgy80: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [3c 3d] +Dealt to Hero [3c 3d] Poker Elfe 1: calls 150 Djkujuhfl: raises 450 to 600 stefan_bg_46: folds -s0rrow: folds +Hero: folds titasands: folds seric1975: folds Georgy80: folds @@ -4432,7 +4432,7 @@ Djkujuhfl collected 6644 from pot *** SUMMARY *** Total pot 13289 | Rake 0 Board [Ks Ts 2s 5d 8h] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 3: titasands (button) folded before Flop (didn't bet) Seat 4: seric1975 (small blind) folded before Flop Seat 5: Georgy80 (big blind) folded before Flop @@ -4444,14 +4444,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47656151639: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:25:06 ET Table '297808375 8' 9-max Seat #4 is the button -Seat 1: s0rrow (6340 in chips) +Seat 1: Hero (6340 in chips) Seat 3: titasands (395 in chips) is sitting out Seat 4: seric1975 (9310 in chips) Seat 5: Georgy80 (9972 in chips) Seat 7: Poker Elfe 1 (7382 in chips) Seat 8: Djkujuhfl (6644 in chips) Seat 9: stefan_bg_46 (4125 in chips) -s0rrow: posts the ante 20 +Hero: posts the ante 20 titasands: posts the ante 20 seric1975: posts the ante 20 Georgy80: posts the ante 20 @@ -4461,11 +4461,11 @@ stefan_bg_46: posts the ante 20 Georgy80: posts small blind 75 Poker Elfe 1: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [Jh Td] +Dealt to Hero [Jh Td] Djkujuhfl: folds stefan_bg_46: folds Djkujuhfl said, "hf" -s0rrow: folds +Hero: folds titasands: folds Djkujuhfl said, "nh" seric1975: raises 150 to 300 @@ -4476,7 +4476,7 @@ Uncalled bet (150) returned to seric1975 seric1975 collected 515 from pot *** SUMMARY *** Total pot 515 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 (button) collected (515) Seat 5: Georgy80 (small blind) folded before Flop @@ -4488,7 +4488,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47656174786: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:25:41 ET Table '297808375 8' 9-max Seat #5 is the button -Seat 1: s0rrow (6320 in chips) +Seat 1: Hero (6320 in chips) Seat 2: MexicanGamb (5815 in chips) Seat 3: titasands (375 in chips) is sitting out Seat 4: seric1975 (9655 in chips) @@ -4497,7 +4497,7 @@ Seat 6: Asdelpoker01 (4685 in chips) out of hand (moved from another table into Seat 7: Poker Elfe 1 (7212 in chips) Seat 8: Djkujuhfl (6624 in chips) Seat 9: stefan_bg_46 (4105 in chips) -s0rrow: posts the ante 20 +Hero: posts the ante 20 MexicanGamb: posts the ante 20 titasands: posts the ante 20 seric1975: posts the ante 20 @@ -4508,9 +4508,9 @@ stefan_bg_46: posts the ante 20 Poker Elfe 1: posts small blind 75 Djkujuhfl: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [6h Ad] +Dealt to Hero [6h Ad] stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: folds titasands: folds seric1975: folds @@ -4522,7 +4522,7 @@ Georgy80 collected 535 from pot Georgy80: doesn't show hand *** SUMMARY *** Total pot 535 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop (didn't bet) @@ -4535,7 +4535,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47656186462: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:25:59 ET Table '297808375 8' 9-max Seat #7 is the button -Seat 1: s0rrow (6300 in chips) +Seat 1: Hero (6300 in chips) Seat 2: MexicanGamb (5795 in chips) Seat 3: titasands (355 in chips) is sitting out Seat 4: seric1975 (9635 in chips) @@ -4544,7 +4544,7 @@ Seat 6: Asdelpoker01 (4685 in chips) is sitting out Seat 7: Poker Elfe 1 (7117 in chips) Seat 8: Djkujuhfl (6454 in chips) Seat 9: stefan_bg_46 (4085 in chips) -s0rrow: posts the ante 20 +Hero: posts the ante 20 MexicanGamb: posts the ante 20 titasands: posts the ante 20 seric1975: posts the ante 20 @@ -4556,8 +4556,8 @@ stefan_bg_46: posts the ante 20 Djkujuhfl: posts small blind 75 stefan_bg_46: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [Ac 6d] -s0rrow: folds +Dealt to Hero [Ac 6d] +Hero: folds MexicanGamb: folds titasands: folds seric1975: folds @@ -4582,7 +4582,7 @@ Poker Elfe 1 collected 555 from pot *** SUMMARY *** Total pot 555 | Rake 0 Board [Td 3h 9d 8c 8h] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop (didn't bet) @@ -4596,7 +4596,7 @@ Seat 9: stefan_bg_46 (big blind) showed [6s 5s] and lost with a pair of Eights PokerStars Game #47656211307: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:26:38 ET Table '297808375 8' 9-max Seat #8 is the button -Seat 1: s0rrow (6280 in chips) +Seat 1: Hero (6280 in chips) Seat 2: MexicanGamb (5775 in chips) Seat 3: titasands (335 in chips) is sitting out Seat 4: seric1975 (9615 in chips) @@ -4605,7 +4605,7 @@ Seat 6: Asdelpoker01 (4665 in chips) is sitting out Seat 7: Poker Elfe 1 (7502 in chips) Seat 8: Djkujuhfl (6359 in chips) Seat 9: stefan_bg_46 (3915 in chips) -s0rrow: posts the ante 20 +Hero: posts the ante 20 MexicanGamb: posts the ante 20 titasands: posts the ante 20 seric1975: posts the ante 20 @@ -4615,9 +4615,9 @@ Poker Elfe 1: posts the ante 20 Djkujuhfl: posts the ante 20 stefan_bg_46: posts the ante 20 stefan_bg_46: posts small blind 75 -s0rrow: posts big blind 150 +Hero: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [Kc Ac] +Dealt to Hero [Kc Ac] MexicanGamb: folds titasands: folds seric1975: folds @@ -4626,13 +4626,13 @@ Asdelpoker01: folds Poker Elfe 1: folds Djkujuhfl: raises 251 to 401 stefan_bg_46: folds -s0rrow: raises 649 to 1050 +Hero: raises 649 to 1050 Djkujuhfl: folds -Uncalled bet (649) returned to s0rrow -s0rrow collected 1057 from pot +Uncalled bet (649) returned to Hero +Hero collected 1057 from pot *** SUMMARY *** Total pot 1057 | Rake 0 -Seat 1: s0rrow (big blind) collected (1057) +Seat 1: Hero (big blind) collected (1057) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop (didn't bet) @@ -4646,7 +4646,7 @@ Seat 9: stefan_bg_46 (small blind) folded before Flop PokerStars Game #47656234932: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:27:15 ET Table '297808375 8' 9-max Seat #9 is the button -Seat 1: s0rrow (6916 in chips) +Seat 1: Hero (6916 in chips) Seat 2: MexicanGamb (5755 in chips) Seat 3: titasands (315 in chips) is sitting out Seat 4: seric1975 (9595 in chips) @@ -4655,7 +4655,7 @@ Seat 6: Asdelpoker01 (4645 in chips) is sitting out Seat 7: Poker Elfe 1 (7482 in chips) Seat 8: Djkujuhfl (5938 in chips) Seat 9: stefan_bg_46 (3820 in chips) -s0rrow: posts the ante 20 +Hero: posts the ante 20 MexicanGamb: posts the ante 20 titasands: posts the ante 20 seric1975: posts the ante 20 @@ -4664,10 +4664,10 @@ Asdelpoker01: posts the ante 20 Poker Elfe 1: posts the ante 20 Djkujuhfl: posts the ante 20 stefan_bg_46: posts the ante 20 -s0rrow: posts small blind 75 +Hero: posts small blind 75 MexicanGamb: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [Qh 3h] +Dealt to Hero [Qh 3h] titasands: folds seric1975: calls 150 Georgy80: folds @@ -4675,19 +4675,19 @@ Asdelpoker01: folds Poker Elfe 1: calls 150 Djkujuhfl: folds stefan_bg_46: folds -s0rrow: calls 75 +Hero: calls 75 MexicanGamb: checks *** FLOP *** [4h Qd Th] -s0rrow: bets 600 +Hero: bets 600 MexicanGamb: folds seric1975: folds Poker Elfe 1: folds -Uncalled bet (600) returned to s0rrow -s0rrow collected 780 from pot +Uncalled bet (600) returned to Hero +Hero collected 780 from pot *** SUMMARY *** Total pot 780 | Rake 0 Board [4h Qd Th] -Seat 1: s0rrow (small blind) collected (780) +Seat 1: Hero (small blind) collected (780) Seat 2: MexicanGamb (big blind) folded on the Flop Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 folded on the Flop @@ -4701,7 +4701,7 @@ Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) PokerStars Game #47656255158: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:27:46 ET Table '297808375 8' 9-max Seat #1 is the button -Seat 1: s0rrow (7526 in chips) +Seat 1: Hero (7526 in chips) Seat 2: MexicanGamb (5585 in chips) Seat 3: titasands (295 in chips) is sitting out Seat 4: seric1975 (9425 in chips) @@ -4710,7 +4710,7 @@ Seat 6: Asdelpoker01 (4625 in chips) is sitting out Seat 7: Poker Elfe 1 (7312 in chips) Seat 8: Djkujuhfl (5918 in chips) Seat 9: stefan_bg_46 (3800 in chips) -s0rrow: posts the ante 20 +Hero: posts the ante 20 MexicanGamb: posts the ante 20 titasands: posts the ante 20 seric1975: posts the ante 20 @@ -4722,14 +4722,14 @@ stefan_bg_46: posts the ante 20 MexicanGamb: posts small blind 75 titasands: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [5s Ah] +Dealt to Hero [5s Ah] seric1975: calls 150 Georgy80: folds Asdelpoker01: folds Poker Elfe 1: calls 150 Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: calls 75 titasands: folds *** FLOP *** [9c 8d Tc] @@ -4752,7 +4752,7 @@ seric1975 collected 1230 from pot *** SUMMARY *** Total pot 1230 | Rake 0 Board [9c 8d Tc 6c Ks] -Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 1: Hero (button) folded before Flop (didn't bet) Seat 2: MexicanGamb (small blind) showed [2d Jd] and lost with high card King Seat 3: titasands (big blind) folded before Flop Seat 4: seric1975 showed [8s As] and won (1230) with a pair of Eights @@ -4766,7 +4766,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47656285269: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:28:33 ET Table '297808375 8' 9-max Seat #2 is the button -Seat 1: s0rrow (7506 in chips) +Seat 1: Hero (7506 in chips) Seat 2: MexicanGamb (5265 in chips) Seat 3: titasands (125 in chips) is sitting out Seat 4: seric1975 (10335 in chips) @@ -4775,7 +4775,7 @@ Seat 6: Asdelpoker01 (4605 in chips) is sitting out Seat 7: Poker Elfe 1 (6992 in chips) Seat 8: Djkujuhfl (5898 in chips) Seat 9: stefan_bg_46 (3780 in chips) -s0rrow: posts the ante 20 +Hero: posts the ante 20 MexicanGamb: posts the ante 20 titasands: posts the ante 20 seric1975: posts the ante 20 @@ -4787,21 +4787,21 @@ stefan_bg_46: posts the ante 20 titasands: posts small blind 75 seric1975: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [Jh Td] +Dealt to Hero [Jh Td] Georgy80: folds Asdelpoker01: folds Poker Elfe 1: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: raises 300 to 450 +Hero: raises 300 to 450 MexicanGamb: folds titasands: folds seric1975: folds -Uncalled bet (300) returned to s0rrow -s0rrow collected 555 from pot +Uncalled bet (300) returned to Hero +Hero collected 555 from pot *** SUMMARY *** Total pot 555 | Rake 0 -Seat 1: s0rrow collected (555) +Seat 1: Hero collected (555) Seat 2: MexicanGamb (button) folded before Flop (didn't bet) Seat 3: titasands (small blind) folded before Flop Seat 4: seric1975 (big blind) folded before Flop @@ -4815,7 +4815,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47656323019: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:29:32 ET Table '297808375 8' 9-max Seat #3 is the button -Seat 1: s0rrow (7891 in chips) +Seat 1: Hero (7891 in chips) Seat 2: MexicanGamb (5245 in chips) Seat 3: titasands (30 in chips) is sitting out Seat 4: seric1975 (10165 in chips) @@ -4824,7 +4824,7 @@ Seat 6: Asdelpoker01 (4585 in chips) is sitting out Seat 7: Poker Elfe 1 (6972 in chips) Seat 8: Djkujuhfl (5878 in chips) Seat 9: stefan_bg_46 (3760 in chips) -s0rrow: posts the ante 20 +Hero: posts the ante 20 MexicanGamb: posts the ante 20 titasands: posts the ante 20 seric1975: posts the ante 20 @@ -4836,12 +4836,12 @@ stefan_bg_46: posts the ante 20 seric1975: posts small blind 75 Georgy80: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [Kh Td] +Dealt to Hero [Kh Td] Asdelpoker01: folds Poker Elfe 1: calls 150 Djkujuhfl: folds stefan_bg_46: raises 150 to 300 -s0rrow: folds +Hero: folds MexicanGamb: folds titasands: folds seric1975: raises 600 to 900 @@ -4862,7 +4862,7 @@ stefan_bg_46 collected 4380 from pot *** SUMMARY *** Total pot 4380 | Rake 0 Board [Tc 5d 2h 4c] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 3: titasands (button) folded before Flop (didn't bet) Seat 4: seric1975 (small blind) folded on the Turn @@ -4876,7 +4876,7 @@ Seat 9: stefan_bg_46 collected (4380) PokerStars Game #47656382023: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:31:05 ET Table '297808375 8' 9-max Seat #4 is the button -Seat 1: s0rrow (7871 in chips) +Seat 1: Hero (7871 in chips) Seat 2: MexicanGamb (5225 in chips) Seat 3: titasands (10 in chips) is sitting out Seat 4: seric1975 (8195 in chips) @@ -4885,7 +4885,7 @@ Seat 6: Asdelpoker01 (4565 in chips) is sitting out Seat 7: Poker Elfe 1 (6802 in chips) Seat 8: Djkujuhfl (5858 in chips) Seat 9: stefan_bg_46 (6170 in chips) -s0rrow: posts the ante 20 +Hero: posts the ante 20 MexicanGamb: posts the ante 20 titasands: posts the ante 10 and is all-in seric1975: posts the ante 20 @@ -4897,11 +4897,11 @@ stefan_bg_46: posts the ante 20 Georgy80: posts small blind 75 Asdelpoker01: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [9s 7s] +Dealt to Hero [9s 7s] Poker Elfe 1: folds Djkujuhfl: folds stefan_bg_46: calls 150 -s0rrow: folds +Hero: folds MexicanGamb: folds titasands: folds seric1975: raises 150 to 300 @@ -4927,7 +4927,7 @@ titasands finished the tournament in 26th place *** SUMMARY *** Total pot 995 Main pot 90. Side pot 905. | Rake 0 Board [9c Jd 2c Td 6d] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 3: titasands folded before Flop (didn't bet) Seat 4: seric1975 (button) showed [Ts 8s] and won (995) with a pair of Tens @@ -4941,7 +4941,7 @@ Seat 9: stefan_bg_46 showed [Qd Ac] and lost with high card Ace PokerStars Game #47656414632: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:31:56 ET Table '297808375 8' 9-max Seat #5 is the button -Seat 1: s0rrow (7851 in chips) +Seat 1: Hero (7851 in chips) Seat 2: MexicanGamb (5205 in chips) Seat 4: seric1975 (8870 in chips) Seat 5: Georgy80 (9877 in chips) @@ -4949,7 +4949,7 @@ Seat 6: Asdelpoker01 (4395 in chips) is sitting out Seat 7: Poker Elfe 1 (6782 in chips) Seat 8: Djkujuhfl (5838 in chips) Seat 9: stefan_bg_46 (5850 in chips) -s0rrow: posts the ante 20 +Hero: posts the ante 20 MexicanGamb: posts the ante 20 seric1975: posts the ante 20 Georgy80: posts the ante 20 @@ -4960,10 +4960,10 @@ stefan_bg_46: posts the ante 20 Asdelpoker01: posts small blind 75 Poker Elfe 1: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [8c 3s] +Dealt to Hero [8c 3s] Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: folds Asdelpoker01 has returned seric1975: folds @@ -4975,7 +4975,7 @@ Asdelpoker01 collected 460 from pot Asdelpoker01: doesn't show hand *** SUMMARY *** Total pot 460 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop (didn't bet) Seat 5: Georgy80 (button) folded before Flop (didn't bet) @@ -4988,7 +4988,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47656431192: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:32:22 ET Table '297808375 8' 9-max Seat #6 is the button -Seat 1: s0rrow (7831 in chips) +Seat 1: Hero (7831 in chips) Seat 2: MexicanGamb (5185 in chips) Seat 4: seric1975 (8850 in chips) Seat 5: Georgy80 (9857 in chips) @@ -4996,7 +4996,7 @@ Seat 6: Asdelpoker01 (4685 in chips) Seat 7: Poker Elfe 1 (6612 in chips) Seat 8: Djkujuhfl (5818 in chips) Seat 9: stefan_bg_46 (5830 in chips) -s0rrow: posts the ante 20 +Hero: posts the ante 20 MexicanGamb: posts the ante 20 seric1975: posts the ante 20 Georgy80: posts the ante 20 @@ -5007,9 +5007,9 @@ stefan_bg_46: posts the ante 20 Poker Elfe 1: posts small blind 75 Djkujuhfl: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [2s 6d] +Dealt to Hero [2s 6d] stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: folds seric1975: folds Georgy80: folds @@ -5028,7 +5028,7 @@ Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 1060 | Rake 0 Board [Jd 8c 2d] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -5041,7 +5041,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47656469092: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:33:22 ET Table '297808375 8' 9-max Seat #7 is the button -Seat 1: s0rrow (7811 in chips) +Seat 1: Hero (7811 in chips) Seat 2: MexicanGamb (5165 in chips) Seat 4: seric1975 (8830 in chips) Seat 5: Georgy80 (9837 in chips) @@ -5049,7 +5049,7 @@ Seat 6: Asdelpoker01 (4665 in chips) is sitting out Seat 7: Poker Elfe 1 (6142 in chips) Seat 8: Djkujuhfl (6408 in chips) Seat 9: stefan_bg_46 (5810 in chips) -s0rrow: posts the ante 25 +Hero: posts the ante 25 MexicanGamb: posts the ante 25 seric1975: posts the ante 25 Georgy80: posts the ante 25 @@ -5060,8 +5060,8 @@ stefan_bg_46: posts the ante 25 Djkujuhfl: posts small blind 100 stefan_bg_46: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [4h 2d] -s0rrow: folds +Dealt to Hero [4h 2d] +Hero: folds MexicanGamb: folds seric1975: folds Georgy80: folds @@ -5091,7 +5091,7 @@ Djkujuhfl collected 3200 from pot *** SUMMARY *** Total pot 3200 | Rake 0 Board [Ks Qs 4d 4s Ah] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -5104,7 +5104,7 @@ Seat 9: stefan_bg_46 (big blind) mucked [Qh Jc] PokerStars Game #47656506175: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:34:21 ET Table '297808375 8' 9-max Seat #8 is the button -Seat 1: s0rrow (7786 in chips) +Seat 1: Hero (7786 in chips) Seat 2: MexicanGamb (5140 in chips) Seat 4: seric1975 (8805 in chips) Seat 5: Georgy80 (9812 in chips) @@ -5112,7 +5112,7 @@ Seat 6: Asdelpoker01 (4640 in chips) is sitting out Seat 7: Poker Elfe 1 (5117 in chips) Seat 8: Djkujuhfl (8583 in chips) Seat 9: stefan_bg_46 (4785 in chips) -s0rrow: posts the ante 25 +Hero: posts the ante 25 MexicanGamb: posts the ante 25 seric1975: posts the ante 25 Georgy80: posts the ante 25 @@ -5121,9 +5121,9 @@ Poker Elfe 1: posts the ante 25 Djkujuhfl: posts the ante 25 stefan_bg_46: posts the ante 25 stefan_bg_46: posts small blind 100 -s0rrow: posts big blind 200 +Hero: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [Th 5s] +Dealt to Hero [Th 5s] MexicanGamb: folds seric1975: raises 600 to 800 Georgy80: folds @@ -5131,12 +5131,12 @@ Asdelpoker01: folds Poker Elfe 1: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds Uncalled bet (600) returned to seric1975 seric1975 collected 700 from pot *** SUMMARY *** Total pot 700 | Rake 0 -Seat 1: s0rrow (big blind) folded before Flop +Seat 1: Hero (big blind) folded before Flop Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 4: seric1975 collected (700) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -5149,7 +5149,7 @@ Seat 9: stefan_bg_46 (small blind) folded before Flop PokerStars Game #47656519295: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:34:42 ET Table '297808375 8' 9-max Seat #9 is the button -Seat 1: s0rrow (7561 in chips) +Seat 1: Hero (7561 in chips) Seat 2: MexicanGamb (5115 in chips) Seat 4: seric1975 (9280 in chips) Seat 5: Georgy80 (9787 in chips) @@ -5157,7 +5157,7 @@ Seat 6: Asdelpoker01 (4615 in chips) is sitting out Seat 7: Poker Elfe 1 (5092 in chips) Seat 8: Djkujuhfl (8558 in chips) Seat 9: stefan_bg_46 (4660 in chips) -s0rrow: posts the ante 25 +Hero: posts the ante 25 MexicanGamb: posts the ante 25 seric1975: posts the ante 25 Georgy80: posts the ante 25 @@ -5165,37 +5165,37 @@ Asdelpoker01: posts the ante 25 Poker Elfe 1: posts the ante 25 Djkujuhfl: posts the ante 25 stefan_bg_46: posts the ante 25 -s0rrow: posts small blind 100 +Hero: posts small blind 100 MexicanGamb: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [Qd Ac] +Dealt to Hero [Qd Ac] seric1975: folds Georgy80: folds Asdelpoker01: folds Poker Elfe 1: folds Djkujuhfl: raises 400 to 600 stefan_bg_46: folds -s0rrow: calls 500 +Hero: calls 500 MexicanGamb: folds *** FLOP *** [Jc Jh 6d] -s0rrow: checks +Hero: checks Djkujuhfl: bets 800 -s0rrow: calls 800 +Hero: calls 800 *** TURN *** [Jc Jh 6d] [2d] -s0rrow: checks +Hero: checks Djkujuhfl: bets 1000 -s0rrow: raises 1000 to 2000 +Hero: raises 1000 to 2000 Djkujuhfl: calls 1000 *** RIVER *** [Jc Jh 6d 2d] [9c] -s0rrow: bets 4136 and is all-in +Hero: bets 4136 and is all-in Djkujuhfl: folds -Uncalled bet (4136) returned to s0rrow -s0rrow collected 7200 from pot -s0rrow: shows [Qd Ac] (a pair of Jacks) +Uncalled bet (4136) returned to Hero +Hero collected 7200 from pot +Hero: shows [Qd Ac] (a pair of Jacks) *** SUMMARY *** Total pot 7200 | Rake 0 Board [Jc Jh 6d 2d 9c] -Seat 1: s0rrow (small blind) collected (7200) +Seat 1: Hero (small blind) collected (7200) Seat 2: MexicanGamb (big blind) folded before Flop Seat 4: seric1975 folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -5208,7 +5208,7 @@ Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) PokerStars Game #47656571191: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:36:04 ET Table '297808375 8' 9-max Seat #1 is the button -Seat 1: s0rrow (11336 in chips) +Seat 1: Hero (11336 in chips) Seat 2: MexicanGamb (4890 in chips) Seat 4: seric1975 (9255 in chips) Seat 5: Georgy80 (9762 in chips) @@ -5216,7 +5216,7 @@ Seat 6: Asdelpoker01 (4590 in chips) is sitting out Seat 7: Poker Elfe 1 (5067 in chips) Seat 8: Djkujuhfl (5133 in chips) Seat 9: stefan_bg_46 (4635 in chips) -s0rrow: posts the ante 25 +Hero: posts the ante 25 MexicanGamb: posts the ante 25 seric1975: posts the ante 25 Georgy80: posts the ante 25 @@ -5227,20 +5227,20 @@ stefan_bg_46: posts the ante 25 MexicanGamb: posts small blind 100 seric1975: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [2s 2c] +Dealt to Hero [2s 2c] Georgy80: folds Asdelpoker01: folds Asdelpoker01 is disconnected Poker Elfe 1: folds Djkujuhfl: folds stefan_bg_46: raises 200 to 400 -s0rrow: calls 400 +Hero: calls 400 MexicanGamb: calls 300 seric1975: folds *** FLOP *** [Kh Ac 5d] MexicanGamb: checks stefan_bg_46: bets 400 -s0rrow: folds +Hero: folds Asdelpoker01 is connected Asdelpoker01 has returned MexicanGamb: calls 400 @@ -5258,7 +5258,7 @@ stefan_bg_46 collected 3200 from pot *** SUMMARY *** Total pot 3200 | Rake 0 Board [Kh Ac 5d 3s 9s] -Seat 1: s0rrow (button) folded on the Flop +Seat 1: Hero (button) folded on the Flop Seat 2: MexicanGamb (small blind) showed [Kc 6c] and lost with a pair of Kings Seat 4: seric1975 (big blind) folded before Flop Seat 5: Georgy80 folded before Flop (didn't bet) @@ -5271,7 +5271,7 @@ Seat 9: stefan_bg_46 showed [As 6h] and won (3200) with a pair of Aces PokerStars Game #47656625677: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:37:30 ET Table '297808375 8' 9-max Seat #2 is the button -Seat 1: s0rrow (10911 in chips) +Seat 1: Hero (10911 in chips) Seat 2: MexicanGamb (3665 in chips) Seat 4: seric1975 (9030 in chips) Seat 5: Georgy80 (9737 in chips) @@ -5279,7 +5279,7 @@ Seat 6: Asdelpoker01 (4565 in chips) Seat 7: Poker Elfe 1 (5042 in chips) Seat 8: Djkujuhfl (5108 in chips) Seat 9: stefan_bg_46 (6610 in chips) -s0rrow: posts the ante 25 +Hero: posts the ante 25 MexicanGamb: posts the ante 25 seric1975: posts the ante 25 Georgy80: posts the ante 25 @@ -5290,12 +5290,12 @@ stefan_bg_46: posts the ante 25 seric1975: posts small blind 100 Georgy80: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [2s Js] +Dealt to Hero [2s Js] Asdelpoker01: raises 4340 to 4540 and is all-in Poker Elfe 1: folds Djkujuhfl: raises 543 to 5083 and is all-in stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: folds seric1975: folds Georgy80: folds @@ -5312,7 +5312,7 @@ Asdelpoker01 finished the tournament in 23rd place *** SUMMARY *** Total pot 9580 | Rake 0 Board [3s 8s 7c 3h 4h] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb (button) folded before Flop (didn't bet) Seat 4: seric1975 (small blind) folded before Flop Seat 5: Georgy80 (big blind) folded before Flop @@ -5325,14 +5325,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47656645203: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:38:00 ET Table '297808375 8' 9-max Seat #4 is the button -Seat 1: s0rrow (10886 in chips) +Seat 1: Hero (10886 in chips) Seat 2: MexicanGamb (3640 in chips) Seat 4: seric1975 (8905 in chips) Seat 5: Georgy80 (9512 in chips) Seat 7: Poker Elfe 1 (5017 in chips) Seat 8: Djkujuhfl (10123 in chips) Seat 9: stefan_bg_46 (6585 in chips) -s0rrow: posts the ante 25 +Hero: posts the ante 25 MexicanGamb: posts the ante 25 seric1975: posts the ante 25 Georgy80: posts the ante 25 @@ -5342,35 +5342,35 @@ stefan_bg_46: posts the ante 25 Georgy80: posts small blind 100 Poker Elfe 1: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [Kc Js] +Dealt to Hero [Kc Js] Djkujuhfl: folds stefan_bg_46: folds -s0rrow: raises 400 to 600 +Hero: raises 400 to 600 MexicanGamb: calls 600 seric1975: folds Georgy80: folds Poker Elfe 1: calls 400 *** FLOP *** [5d Ac 5c] Poker Elfe 1: checks -s0rrow: checks +Hero: checks MexicanGamb: checks *** TURN *** [5d Ac 5c] [7d] Poker Elfe 1: checks -s0rrow: checks +Hero: checks MexicanGamb: bets 600 Poker Elfe 1: folds -s0rrow: calls 600 +Hero: calls 600 *** RIVER *** [5d Ac 5c 7d] [7h] -s0rrow: checks +Hero: checks MexicanGamb: bets 800 -s0rrow: folds +Hero: folds Uncalled bet (800) returned to MexicanGamb MexicanGamb collected 3275 from pot MexicanGamb: doesn't show hand *** SUMMARY *** Total pot 3275 | Rake 0 Board [5d Ac 5c 7d 7h] -Seat 1: s0rrow folded on the River +Seat 1: Hero folded on the River Seat 2: MexicanGamb collected (3275) Seat 4: seric1975 (button) folded before Flop (didn't bet) Seat 5: Georgy80 (small blind) folded before Flop @@ -5382,14 +5382,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47656688694: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:39:09 ET Table '297808375 8' 9-max Seat #5 is the button -Seat 1: s0rrow (9661 in chips) +Seat 1: Hero (9661 in chips) Seat 2: MexicanGamb (5690 in chips) Seat 4: seric1975 (8880 in chips) Seat 5: Georgy80 (9387 in chips) Seat 7: Poker Elfe 1 (4392 in chips) Seat 8: Djkujuhfl (10098 in chips) Seat 9: stefan_bg_46 (6560 in chips) -s0rrow: posts the ante 25 +Hero: posts the ante 25 MexicanGamb: posts the ante 25 seric1975: posts the ante 25 Georgy80: posts the ante 25 @@ -5399,9 +5399,9 @@ stefan_bg_46: posts the ante 25 Poker Elfe 1: posts small blind 100 Djkujuhfl: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [Qd 3s] +Dealt to Hero [Qd 3s] stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: raises 465 to 665 seric1975: folds Georgy80: folds @@ -5412,7 +5412,7 @@ MexicanGamb collected 675 from pot MexicanGamb: doesn't show hand *** SUMMARY *** Total pot 675 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb collected (675) Seat 4: seric1975 folded before Flop (didn't bet) Seat 5: Georgy80 (button) folded before Flop (didn't bet) @@ -5424,14 +5424,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47656706371: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:39:37 ET Table '297808375 8' 9-max Seat #7 is the button -Seat 1: s0rrow (9636 in chips) +Seat 1: Hero (9636 in chips) Seat 2: MexicanGamb (6140 in chips) Seat 4: seric1975 (8855 in chips) Seat 5: Georgy80 (9362 in chips) Seat 7: Poker Elfe 1 (4267 in chips) Seat 8: Djkujuhfl (9873 in chips) Seat 9: stefan_bg_46 (6535 in chips) -s0rrow: posts the ante 25 +Hero: posts the ante 25 MexicanGamb: posts the ante 25 seric1975: posts the ante 25 Georgy80: posts the ante 25 @@ -5441,8 +5441,8 @@ stefan_bg_46: posts the ante 25 Djkujuhfl: posts small blind 100 stefan_bg_46: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [3d Ks] -s0rrow: folds +Dealt to Hero [3d Ks] +Hero: folds MexicanGamb: folds seric1975: folds Georgy80: folds @@ -5468,7 +5468,7 @@ stefan_bg_46 collected 3687 from pot *** SUMMARY *** Total pot 7375 | Rake 0 Board [6c 6s Js 2d Ah] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -5480,14 +5480,14 @@ Seat 9: stefan_bg_46 (big blind) showed [6h 3c] and won (3687) with three of a k PokerStars Game #47656753035: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:40:49 ET Table '297808375 8' 9-max Seat #8 is the button -Seat 1: s0rrow (9611 in chips) +Seat 1: Hero (9611 in chips) Seat 2: MexicanGamb (6115 in chips) Seat 4: seric1975 (8830 in chips) Seat 5: Georgy80 (9337 in chips) Seat 7: Poker Elfe 1 (4242 in chips) Seat 8: Djkujuhfl (9936 in chips) Seat 9: stefan_bg_46 (6597 in chips) -s0rrow: posts the ante 25 +Hero: posts the ante 25 MexicanGamb: posts the ante 25 seric1975: posts the ante 25 Georgy80: posts the ante 25 @@ -5495,22 +5495,22 @@ Poker Elfe 1: posts the ante 25 Djkujuhfl: posts the ante 25 stefan_bg_46: posts the ante 25 stefan_bg_46: posts small blind 100 -s0rrow: posts big blind 200 +Hero: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [4h Ks] +Dealt to Hero [4h Ks] MexicanGamb: raises 490 to 690 seric1975: folds Georgy80: folds Poker Elfe 1: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds Uncalled bet (490) returned to MexicanGamb MexicanGamb collected 675 from pot MexicanGamb: doesn't show hand *** SUMMARY *** Total pot 675 | Rake 0 -Seat 1: s0rrow (big blind) folded before Flop +Seat 1: Hero (big blind) folded before Flop Seat 2: MexicanGamb collected (675) Seat 4: seric1975 folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -5522,37 +5522,37 @@ Seat 9: stefan_bg_46 (small blind) folded before Flop PokerStars Game #47656770690: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:41:17 ET Table '297808375 8' 9-max Seat #9 is the button -Seat 1: s0rrow (9386 in chips) +Seat 1: Hero (9386 in chips) Seat 2: MexicanGamb (6565 in chips) Seat 4: seric1975 (8805 in chips) Seat 5: Georgy80 (9312 in chips) Seat 7: Poker Elfe 1 (4217 in chips) Seat 8: Djkujuhfl (9911 in chips) Seat 9: stefan_bg_46 (6472 in chips) -s0rrow: posts the ante 25 +Hero: posts the ante 25 MexicanGamb: posts the ante 25 seric1975: posts the ante 25 Georgy80: posts the ante 25 Poker Elfe 1: posts the ante 25 Djkujuhfl: posts the ante 25 stefan_bg_46: posts the ante 25 -s0rrow: posts small blind 100 +Hero: posts small blind 100 MexicanGamb: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [3d 6d] +Dealt to Hero [3d 6d] seric1975: folds Georgy80: folds Poker Elfe 1: folds Djkujuhfl: raises 355 to 555 stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: folds Uncalled bet (355) returned to Djkujuhfl Djkujuhfl collected 675 from pot Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 675 | Rake 0 -Seat 1: s0rrow (small blind) folded before Flop +Seat 1: Hero (small blind) folded before Flop Seat 2: MexicanGamb (big blind) folded before Flop Seat 4: seric1975 folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -5564,14 +5564,14 @@ Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) PokerStars Game #47656789310: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:41:46 ET Table '297808375 8' 9-max Seat #1 is the button -Seat 1: s0rrow (9261 in chips) +Seat 1: Hero (9261 in chips) Seat 2: MexicanGamb (6340 in chips) Seat 4: seric1975 (8780 in chips) Seat 5: Georgy80 (9287 in chips) Seat 7: Poker Elfe 1 (4192 in chips) Seat 8: Djkujuhfl (10361 in chips) Seat 9: stefan_bg_46 (6447 in chips) -s0rrow: posts the ante 25 +Hero: posts the ante 25 MexicanGamb: posts the ante 25 seric1975: posts the ante 25 Georgy80: posts the ante 25 @@ -5581,33 +5581,33 @@ stefan_bg_46: posts the ante 25 MexicanGamb: posts small blind 100 seric1975: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [9c Ks] +Dealt to Hero [9c Ks] Georgy80: folds Poker Elfe 1: calls 200 Djkujuhfl: folds stefan_bg_46: calls 200 -s0rrow: calls 200 +Hero: calls 200 MexicanGamb: folds seric1975: checks *** FLOP *** [Js 3d Tc] seric1975: checks Poker Elfe 1: checks stefan_bg_46: checks -s0rrow: checks +Hero: checks *** TURN *** [Js 3d Tc] [8h] seric1975: checks Poker Elfe 1: checks stefan_bg_46: checks -s0rrow: bets 800 +Hero: bets 800 seric1975: folds Poker Elfe 1: folds stefan_bg_46: folds -Uncalled bet (800) returned to s0rrow -s0rrow collected 1075 from pot +Uncalled bet (800) returned to Hero +Hero collected 1075 from pot *** SUMMARY *** Total pot 1075 | Rake 0 Board [Js 3d Tc 8h] -Seat 1: s0rrow (button) collected (1075) +Seat 1: Hero (button) collected (1075) Seat 2: MexicanGamb (small blind) folded before Flop Seat 4: seric1975 (big blind) folded on the Turn Seat 5: Georgy80 folded before Flop (didn't bet) @@ -5619,14 +5619,14 @@ Seat 9: stefan_bg_46 folded on the Turn PokerStars Game #47656823014: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:42:37 ET Table '297808375 8' 9-max Seat #2 is the button -Seat 1: s0rrow (10111 in chips) +Seat 1: Hero (10111 in chips) Seat 2: MexicanGamb (6215 in chips) Seat 4: seric1975 (8555 in chips) Seat 5: Georgy80 (9262 in chips) Seat 7: Poker Elfe 1 (3967 in chips) Seat 8: Djkujuhfl (10336 in chips) Seat 9: stefan_bg_46 (6222 in chips) -s0rrow: posts the ante 25 +Hero: posts the ante 25 MexicanGamb: posts the ante 25 seric1975: posts the ante 25 Georgy80: posts the ante 25 @@ -5636,19 +5636,19 @@ stefan_bg_46: posts the ante 25 seric1975: posts small blind 100 Georgy80: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [7d 6h] +Dealt to Hero [7d 6h] Poker Elfe 1: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: raises 400 to 600 +Hero: raises 400 to 600 MexicanGamb: folds seric1975: folds Georgy80: folds -Uncalled bet (400) returned to s0rrow -s0rrow collected 675 from pot +Uncalled bet (400) returned to Hero +Hero collected 675 from pot *** SUMMARY *** Total pot 675 | Rake 0 -Seat 1: s0rrow collected (675) +Seat 1: Hero collected (675) Seat 2: MexicanGamb (button) folded before Flop (didn't bet) Seat 4: seric1975 (small blind) folded before Flop Seat 5: Georgy80 (big blind) folded before Flop @@ -5660,14 +5660,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47656838606: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:43:01 ET Table '297808375 8' 9-max Seat #4 is the button -Seat 1: s0rrow (10561 in chips) +Seat 1: Hero (10561 in chips) Seat 2: MexicanGamb (6190 in chips) Seat 4: seric1975 (8430 in chips) Seat 5: Georgy80 (9037 in chips) Seat 7: Poker Elfe 1 (3942 in chips) Seat 8: Djkujuhfl (10311 in chips) Seat 9: stefan_bg_46 (6197 in chips) -s0rrow: posts the ante 25 +Hero: posts the ante 25 MexicanGamb: posts the ante 25 seric1975: posts the ante 25 Georgy80: posts the ante 25 @@ -5677,10 +5677,10 @@ stefan_bg_46: posts the ante 25 Georgy80: posts small blind 100 Poker Elfe 1: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [2d 5c] +Dealt to Hero [2d 5c] Djkujuhfl: folds stefan_bg_46: raises 200 to 400 -s0rrow: folds +Hero: folds MexicanGamb: folds seric1975: folds Georgy80: folds @@ -5689,7 +5689,7 @@ Uncalled bet (200) returned to stefan_bg_46 stefan_bg_46 collected 675 from pot *** SUMMARY *** Total pot 675 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 4: seric1975 (button) folded before Flop (didn't bet) Seat 5: Georgy80 (small blind) folded before Flop @@ -5701,14 +5701,14 @@ Seat 9: stefan_bg_46 collected (675) PokerStars Game #47656854341: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:43:25 ET Table '297808375 8' 9-max Seat #5 is the button -Seat 1: s0rrow (10536 in chips) +Seat 1: Hero (10536 in chips) Seat 2: MexicanGamb (6165 in chips) Seat 4: seric1975 (8405 in chips) Seat 5: Georgy80 (8912 in chips) Seat 7: Poker Elfe 1 (3717 in chips) Seat 8: Djkujuhfl (10286 in chips) Seat 9: stefan_bg_46 (6647 in chips) -s0rrow: posts the ante 30 +Hero: posts the ante 30 MexicanGamb: posts the ante 30 seric1975: posts the ante 30 Georgy80: posts the ante 30 @@ -5718,9 +5718,9 @@ stefan_bg_46: posts the ante 30 Poker Elfe 1: posts small blind 125 Djkujuhfl: posts big blind 250 *** HOLE CARDS *** -Dealt to s0rrow [Jd 7c] +Dealt to Hero [Jd 7c] stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: raises 500 to 750 seric1975: folds Georgy80: folds @@ -5731,7 +5731,7 @@ MexicanGamb collected 835 from pot MexicanGamb: doesn't show hand *** SUMMARY *** Total pot 835 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb collected (835) Seat 4: seric1975 folded before Flop (didn't bet) Seat 5: Georgy80 (button) folded before Flop (didn't bet) @@ -5743,14 +5743,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47656867057: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:43:45 ET Table '297808375 8' 9-max Seat #7 is the button -Seat 1: s0rrow (10506 in chips) +Seat 1: Hero (10506 in chips) Seat 2: MexicanGamb (6720 in chips) Seat 4: seric1975 (8375 in chips) Seat 5: Georgy80 (8882 in chips) Seat 7: Poker Elfe 1 (3562 in chips) Seat 8: Djkujuhfl (10006 in chips) Seat 9: stefan_bg_46 (6617 in chips) -s0rrow: posts the ante 30 +Hero: posts the ante 30 MexicanGamb: posts the ante 30 seric1975: posts the ante 30 Georgy80: posts the ante 30 @@ -5760,8 +5760,8 @@ stefan_bg_46: posts the ante 30 Djkujuhfl: posts small blind 125 stefan_bg_46: posts big blind 250 *** HOLE CARDS *** -Dealt to s0rrow [2h Ts] -s0rrow: folds +Dealt to Hero [2h Ts] +Hero: folds MexicanGamb: folds seric1975: folds Georgy80: folds @@ -5777,7 +5777,7 @@ stefan_bg_46 collected 710 from pot *** SUMMARY *** Total pot 710 | Rake 0 Board [9h 5c 8s] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 4: seric1975 folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -5789,34 +5789,34 @@ Seat 9: stefan_bg_46 (big blind) collected (710) PokerStars Game #47656888903: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:44:19 ET Table '297808375 8' 9-max Seat #8 is the button -Seat 1: s0rrow (10476 in chips) +Seat 1: Hero (10476 in chips) Seat 2: MexicanGamb (6690 in chips) Seat 5: Georgy80 (8852 in chips) Seat 7: Poker Elfe 1 (3532 in chips) Seat 8: Djkujuhfl (9726 in chips) Seat 9: stefan_bg_46 (7047 in chips) -s0rrow: posts the ante 30 +Hero: posts the ante 30 MexicanGamb: posts the ante 30 Georgy80: posts the ante 30 Poker Elfe 1: posts the ante 30 Djkujuhfl: posts the ante 30 stefan_bg_46: posts the ante 30 stefan_bg_46: posts small blind 125 -s0rrow: posts big blind 250 +Hero: posts big blind 250 *** HOLE CARDS *** -Dealt to s0rrow [Ad 6s] +Dealt to Hero [Ad 6s] MexicanGamb: folds Georgy80: raises 250 to 500 Poker Elfe 1: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds Uncalled bet (250) returned to Georgy80 Georgy80 collected 805 from pot Georgy80: doesn't show hand *** SUMMARY *** Total pot 805 | Rake 0 -Seat 1: s0rrow (big blind) folded before Flop +Seat 1: Hero (big blind) folded before Flop Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 5: Georgy80 collected (805) Seat 7: Poker Elfe 1 folded before Flop (didn't bet) @@ -5827,34 +5827,34 @@ Seat 9: stefan_bg_46 (small blind) folded before Flop PokerStars Game #47656900619: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:44:37 ET Table '297808375 8' 9-max Seat #9 is the button -Seat 1: s0rrow (10196 in chips) +Seat 1: Hero (10196 in chips) Seat 2: MexicanGamb (6660 in chips) Seat 5: Georgy80 (9377 in chips) Seat 7: Poker Elfe 1 (3502 in chips) Seat 8: Djkujuhfl (9696 in chips) Seat 9: stefan_bg_46 (6892 in chips) -s0rrow: posts the ante 30 +Hero: posts the ante 30 MexicanGamb: posts the ante 30 Georgy80: posts the ante 30 Poker Elfe 1: posts the ante 30 Djkujuhfl: posts the ante 30 stefan_bg_46: posts the ante 30 -s0rrow: posts small blind 125 +Hero: posts small blind 125 MexicanGamb: posts big blind 250 *** HOLE CARDS *** -Dealt to s0rrow [6s 8c] +Dealt to Hero [6s 8c] Georgy80: folds Poker Elfe 1: folds Djkujuhfl: raises 750 to 1000 stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: folds Uncalled bet (750) returned to Djkujuhfl Djkujuhfl collected 805 from pot Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 805 | Rake 0 -Seat 1: s0rrow (small blind) folded before Flop +Seat 1: Hero (small blind) folded before Flop Seat 2: MexicanGamb (big blind) folded before Flop Seat 5: Georgy80 folded before Flop (didn't bet) Seat 7: Poker Elfe 1 folded before Flop (didn't bet) @@ -5865,13 +5865,13 @@ Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) PokerStars Game #47656916060: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:45:01 ET Table '297808375 8' 9-max Seat #1 is the button -Seat 1: s0rrow (10041 in chips) +Seat 1: Hero (10041 in chips) Seat 2: MexicanGamb (6380 in chips) Seat 5: Georgy80 (9347 in chips) Seat 7: Poker Elfe 1 (3472 in chips) Seat 8: Djkujuhfl (10221 in chips) Seat 9: stefan_bg_46 (6862 in chips) -s0rrow: posts the ante 30 +Hero: posts the ante 30 MexicanGamb: posts the ante 30 Georgy80: posts the ante 30 Poker Elfe 1: posts the ante 30 @@ -5880,11 +5880,11 @@ stefan_bg_46: posts the ante 30 MexicanGamb: posts small blind 125 Georgy80: posts big blind 250 *** HOLE CARDS *** -Dealt to s0rrow [9d 4s] +Dealt to Hero [9d 4s] Poker Elfe 1: calls 250 Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: calls 125 Georgy80: raises 350 to 600 Poker Elfe 1: calls 350 @@ -5910,7 +5910,7 @@ Georgy80 collected 4880 from pot *** SUMMARY *** Total pot 4880 | Rake 0 Board [8d 5c 8s Ac 6c] -Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 1: Hero (button) folded before Flop (didn't bet) Seat 2: MexicanGamb (small blind) folded on the Flop Seat 5: Georgy80 (big blind) showed [Ah Ad] and won (4880) with a full house, Aces full of Eights Seat 7: Poker Elfe 1 mucked [Tc Ts] @@ -5921,7 +5921,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47656957039: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:46:05 ET Table '297808375 8' 9-max Seat #2 is the button -Seat 1: s0rrow (10011 in chips) +Seat 1: Hero (10011 in chips) Seat 2: MexicanGamb (5750 in chips) Seat 3: madrk (3216 in chips) out of hand (moved from another table into small blind) Seat 4: pokergott68 (5665 in chips) out of hand (moved from another table into small blind) @@ -5930,7 +5930,7 @@ Seat 6: Vitinho1983 (9420 in chips) Seat 7: Poker Elfe 1 (1392 in chips) Seat 8: Djkujuhfl (10191 in chips) Seat 9: stefan_bg_46 (6832 in chips) -s0rrow: posts the ante 30 +Hero: posts the ante 30 MexicanGamb: posts the ante 30 Georgy80: posts the ante 30 Vitinho1983: posts the ante 30 @@ -5940,11 +5940,11 @@ stefan_bg_46: posts the ante 30 Georgy80: posts small blind 125 Vitinho1983: posts big blind 250 *** HOLE CARDS *** -Dealt to s0rrow [3h 2s] +Dealt to Hero [3h 2s] Poker Elfe 1: raises 1112 to 1362 and is all-in Djkujuhfl: raises 1112 to 2474 stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: folds Georgy80: folds Vitinho1983: folds @@ -5961,7 +5961,7 @@ Poker Elfe 1 finished the tournament in 18th place *** SUMMARY *** Total pot 3309 | Rake 0 Board [Ts 6d 7c 9c Td] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb (button) folded before Flop (didn't bet) Seat 5: Georgy80 (small blind) folded before Flop Seat 6: Vitinho1983 (big blind) folded before Flop @@ -5973,7 +5973,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47656981310: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:46:42 ET Table '297808375 8' 9-max Seat #5 is the button -Seat 1: s0rrow (9981 in chips) +Seat 1: Hero (9981 in chips) Seat 2: MexicanGamb (5720 in chips) Seat 3: madrk (3216 in chips) Seat 4: pokergott68 (5665 in chips) is sitting out @@ -5981,7 +5981,7 @@ Seat 5: Georgy80 (11992 in chips) Seat 6: Vitinho1983 (9140 in chips) Seat 8: Djkujuhfl (12108 in chips) Seat 9: stefan_bg_46 (6802 in chips) -s0rrow: posts the ante 30 +Hero: posts the ante 30 MexicanGamb: posts the ante 30 madrk: posts the ante 30 pokergott68: posts the ante 30 @@ -5992,9 +5992,9 @@ stefan_bg_46: posts the ante 30 Vitinho1983: posts small blind 125 Djkujuhfl: posts big blind 250 *** HOLE CARDS *** -Dealt to s0rrow [7d 4h] +Dealt to Hero [7d 4h] stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: folds madrk: folds pokergott68: folds @@ -6024,7 +6024,7 @@ Vitinho1983 finished the tournament in 17th place *** SUMMARY *** Total pot 18460 | Rake 0 Board [6c Ah 7c 7s 3s] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 3: madrk folded before Flop (didn't bet) Seat 4: pokergott68 folded before Flop (didn't bet) @@ -6037,14 +6037,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47657019801: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:47:42 ET Table '297808375 8' 9-max Seat #8 is the button -Seat 1: s0rrow (9951 in chips) +Seat 1: Hero (9951 in chips) Seat 2: MexicanGamb (5690 in chips) Seat 3: madrk (3186 in chips) Seat 4: pokergott68 (5635 in chips) Seat 5: Georgy80 (11962 in chips) Seat 8: Djkujuhfl (21428 in chips) Seat 9: stefan_bg_46 (6772 in chips) -s0rrow: posts the ante 30 +Hero: posts the ante 30 MexicanGamb: posts the ante 30 madrk: posts the ante 30 pokergott68: posts the ante 30 @@ -6052,9 +6052,9 @@ Georgy80: posts the ante 30 Djkujuhfl: posts the ante 30 stefan_bg_46: posts the ante 30 stefan_bg_46: posts small blind 125 -s0rrow: posts big blind 250 +Hero: posts big blind 250 *** HOLE CARDS *** -Dealt to s0rrow [Jh Ah] +Dealt to Hero [Jh Ah] MexicanGamb: folds madrk: folds pokergott68: folds @@ -6062,14 +6062,14 @@ Georgy80: folds 123456789476 is connected Djkujuhfl: calls 250 stefan_bg_46: calls 125 -s0rrow: raises 1000 to 1250 +Hero: raises 1000 to 1250 Djkujuhfl: folds stefan_bg_46: folds -Uncalled bet (1000) returned to s0rrow -s0rrow collected 960 from pot +Uncalled bet (1000) returned to Hero +Hero collected 960 from pot *** SUMMARY *** Total pot 960 | Rake 0 -Seat 1: s0rrow (big blind) collected (960) +Seat 1: Hero (big blind) collected (960) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 3: madrk folded before Flop (didn't bet) Seat 4: pokergott68 folded before Flop (didn't bet) @@ -6081,7 +6081,7 @@ Seat 9: stefan_bg_46 (small blind) folded before Flop PokerStars Game #47657039562: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:48:13 ET Table '297808375 8' 9-max Seat #9 is the button -Seat 1: s0rrow (10631 in chips) +Seat 1: Hero (10631 in chips) Seat 2: MexicanGamb (5660 in chips) Seat 3: madrk (3156 in chips) Seat 4: pokergott68 (5605 in chips) @@ -6089,7 +6089,7 @@ Seat 5: Georgy80 (11932 in chips) Seat 6: 123456789476 (8616 in chips) Seat 8: Djkujuhfl (21148 in chips) Seat 9: stefan_bg_46 (6492 in chips) -s0rrow: posts the ante 30 +Hero: posts the ante 30 MexicanGamb: posts the ante 30 madrk: posts the ante 30 pokergott68: posts the ante 30 @@ -6097,23 +6097,23 @@ Georgy80: posts the ante 30 123456789476: posts the ante 30 Djkujuhfl: posts the ante 30 stefan_bg_46: posts the ante 30 -s0rrow: posts small blind 125 +Hero: posts small blind 125 MexicanGamb: posts big blind 250 *** HOLE CARDS *** -Dealt to s0rrow [7d 4d] +Dealt to Hero [7d 4d] madrk: folds pokergott68: folds Georgy80: folds 123456789476: raises 250 to 500 Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: folds Uncalled bet (250) returned to 123456789476 123456789476 collected 865 from pot *** SUMMARY *** Total pot 865 | Rake 0 -Seat 1: s0rrow (small blind) folded before Flop +Seat 1: Hero (small blind) folded before Flop Seat 2: MexicanGamb (big blind) folded before Flop Seat 3: madrk folded before Flop (didn't bet) Seat 4: pokergott68 folded before Flop (didn't bet) @@ -6126,7 +6126,7 @@ Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) PokerStars Game #47657052271: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:48:33 ET Table '297808375 8' 9-max Seat #1 is the button -Seat 1: s0rrow (10476 in chips) +Seat 1: Hero (10476 in chips) Seat 2: MexicanGamb (5380 in chips) Seat 3: madrk (3126 in chips) Seat 4: pokergott68 (5575 in chips) @@ -6134,7 +6134,7 @@ Seat 5: Georgy80 (11902 in chips) Seat 6: 123456789476 (9201 in chips) Seat 8: Djkujuhfl (21118 in chips) Seat 9: stefan_bg_46 (6462 in chips) -s0rrow: posts the ante 30 +Hero: posts the ante 30 MexicanGamb: posts the ante 30 madrk: posts the ante 30 pokergott68: posts the ante 30 @@ -6145,13 +6145,13 @@ stefan_bg_46: posts the ante 30 MexicanGamb: posts small blind 125 madrk: posts big blind 250 *** HOLE CARDS *** -Dealt to s0rrow [Kd 2s] +Dealt to Hero [Kd 2s] pokergott68: folds Georgy80: raises 350 to 600 123456789476: calls 600 Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: folds madrk: folds *** FLOP *** [6c Jh 6h] @@ -6167,7 +6167,7 @@ Uncalled bet (500) returned to 123456789476 *** SUMMARY *** Total pot 2815 | Rake 0 Board [6c Jh 6h Ah] -Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 1: Hero (button) folded before Flop (didn't bet) Seat 2: MexicanGamb (small blind) folded before Flop Seat 3: madrk (big blind) folded before Flop Seat 4: pokergott68 folded before Flop (didn't bet) @@ -6180,7 +6180,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47657092296: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:49:36 ET Table '297808375 8' 9-max Seat #2 is the button -Seat 1: s0rrow (10446 in chips) +Seat 1: Hero (10446 in chips) Seat 2: MexicanGamb (5225 in chips) Seat 3: madrk (2846 in chips) Seat 4: pokergott68 (5545 in chips) @@ -6188,7 +6188,7 @@ Seat 5: Georgy80 (10772 in chips) Seat 6: 123456789476 (10886 in chips) Seat 8: Djkujuhfl (21088 in chips) Seat 9: stefan_bg_46 (6432 in chips) -s0rrow: posts the ante 30 +Hero: posts the ante 30 MexicanGamb: posts the ante 30 madrk: posts the ante 30 pokergott68: posts the ante 30 @@ -6199,25 +6199,25 @@ stefan_bg_46: posts the ante 30 madrk: posts small blind 125 pokergott68: posts big blind 250 *** HOLE CARDS *** -Dealt to s0rrow [5d Jd] +Dealt to Hero [5d Jd] Georgy80: folds 123456789476: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: raises 500 to 750 +Hero: raises 500 to 750 MexicanGamb: folds madrk: folds pokergott68: calls 500 *** FLOP *** [5c 2s 2d] pokergott68: checks -s0rrow: bets 1250 +Hero: bets 1250 pokergott68: folds -Uncalled bet (1250) returned to s0rrow -s0rrow collected 1865 from pot +Uncalled bet (1250) returned to Hero +Hero collected 1865 from pot *** SUMMARY *** Total pot 1865 | Rake 0 Board [5c 2s 2d] -Seat 1: s0rrow collected (1865) +Seat 1: Hero collected (1865) Seat 2: MexicanGamb (button) folded before Flop (didn't bet) Seat 3: madrk (small blind) folded before Flop Seat 4: pokergott68 (big blind) folded on the Flop @@ -6230,7 +6230,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47657111180: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:50:05 ET Table '297808375 8' 9-max Seat #3 is the button -Seat 1: s0rrow (11531 in chips) +Seat 1: Hero (11531 in chips) Seat 2: MexicanGamb (5195 in chips) Seat 3: madrk (2691 in chips) Seat 4: pokergott68 (4765 in chips) @@ -6238,7 +6238,7 @@ Seat 5: Georgy80 (10742 in chips) Seat 6: 123456789476 (10856 in chips) Seat 8: Djkujuhfl (21058 in chips) Seat 9: stefan_bg_46 (6402 in chips) -s0rrow: posts the ante 30 +Hero: posts the ante 30 MexicanGamb: posts the ante 30 madrk: posts the ante 30 pokergott68: posts the ante 30 @@ -6249,11 +6249,11 @@ stefan_bg_46: posts the ante 30 pokergott68: posts small blind 125 Georgy80: posts big blind 250 *** HOLE CARDS *** -Dealt to s0rrow [8d Jd] +Dealt to Hero [8d Jd] 123456789476: folds Djkujuhfl: folds stefan_bg_46: calls 250 -s0rrow: folds +Hero: folds MexicanGamb: folds madrk: calls 250 pokergott68: calls 125 @@ -6282,7 +6282,7 @@ madrk collected 1240 from pot *** SUMMARY *** Total pot 1240 | Rake 0 Board [5s 9c Qd 9h Jh] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 3: madrk (button) showed [Th 8h] and won (1240) with a straight, Eight to Queen Seat 4: pokergott68 (small blind) showed [4s 6s] and lost with a pair of Nines @@ -6295,7 +6295,7 @@ Seat 9: stefan_bg_46 showed [7d 7c] and lost with two pair, Nines and Sevens PokerStars Game #47657138068: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:50:47 ET Table '297808375 8' 9-max Seat #4 is the button -Seat 1: s0rrow (11501 in chips) +Seat 1: Hero (11501 in chips) Seat 2: MexicanGamb (5165 in chips) Seat 3: madrk (3651 in chips) Seat 4: pokergott68 (4485 in chips) @@ -6303,7 +6303,7 @@ Seat 5: Georgy80 (10462 in chips) Seat 6: 123456789476 (10826 in chips) Seat 8: Djkujuhfl (21028 in chips) Seat 9: stefan_bg_46 (6122 in chips) -s0rrow: posts the ante 30 +Hero: posts the ante 30 MexicanGamb: posts the ante 30 madrk: posts the ante 30 pokergott68: posts the ante 30 @@ -6314,10 +6314,10 @@ stefan_bg_46: posts the ante 30 Georgy80: posts small blind 125 123456789476: posts big blind 250 *** HOLE CARDS *** -Dealt to s0rrow [8h Th] +Dealt to Hero [8h Th] Djkujuhfl: raises 375 to 625 stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: folds madrk: folds pokergott68: calls 625 @@ -6332,7 +6332,7 @@ Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 1865 | Rake 0 Board [5h 4h 4s] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 3: madrk folded before Flop (didn't bet) Seat 4: pokergott68 (button) folded on the Flop @@ -6345,7 +6345,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47657171385: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:51:40 ET Table '297808375 8' 9-max Seat #5 is the button -Seat 1: s0rrow (11471 in chips) +Seat 1: Hero (11471 in chips) Seat 2: MexicanGamb (5135 in chips) Seat 3: madrk (3621 in chips) Seat 4: pokergott68 (3830 in chips) @@ -6353,7 +6353,7 @@ Seat 5: Georgy80 (10307 in chips) Seat 6: 123456789476 (10546 in chips) Seat 8: Djkujuhfl (22238 in chips) Seat 9: stefan_bg_46 (6092 in chips) -s0rrow: posts the ante 30 +Hero: posts the ante 30 MexicanGamb: posts the ante 30 madrk: posts the ante 30 pokergott68: posts the ante 30 @@ -6364,9 +6364,9 @@ stefan_bg_46: posts the ante 30 123456789476: posts small blind 125 Djkujuhfl: posts big blind 250 *** HOLE CARDS *** -Dealt to s0rrow [Qd 5d] +Dealt to Hero [Qd 5d] stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: folds madrk: folds pokergott68: folds @@ -6377,7 +6377,7 @@ Djkujuhfl collected 490 from pot Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 490 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 3: madrk folded before Flop (didn't bet) Seat 4: pokergott68 folded before Flop (didn't bet) @@ -6390,7 +6390,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47657183750: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:51:59 ET Table '297808375 8' 9-max Seat #6 is the button -Seat 1: s0rrow (11441 in chips) +Seat 1: Hero (11441 in chips) Seat 2: MexicanGamb (5105 in chips) Seat 3: madrk (3591 in chips) Seat 4: pokergott68 (3800 in chips) @@ -6398,7 +6398,7 @@ Seat 5: Georgy80 (10277 in chips) Seat 6: 123456789476 (10391 in chips) Seat 8: Djkujuhfl (22573 in chips) Seat 9: stefan_bg_46 (6062 in chips) -s0rrow: posts the ante 30 +Hero: posts the ante 30 MexicanGamb: posts the ante 30 madrk: posts the ante 30 pokergott68: posts the ante 30 @@ -6409,8 +6409,8 @@ stefan_bg_46: posts the ante 30 Djkujuhfl: posts small blind 125 stefan_bg_46: posts big blind 250 *** HOLE CARDS *** -Dealt to s0rrow [7h Kh] -s0rrow: folds +Dealt to Hero [7h Kh] +Hero: folds MexicanGamb: folds madrk: folds pokergott68: folds @@ -6433,7 +6433,7 @@ stefan_bg_46 collected 2615 from pot *** SUMMARY *** Total pot 2615 | Rake 0 Board [8d 3h 2c 5c Jc] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 3: madrk folded before Flop (didn't bet) Seat 4: pokergott68 folded before Flop (didn't bet) @@ -6446,7 +6446,7 @@ Seat 9: stefan_bg_46 (big blind) collected (2615) PokerStars Game #47657213923: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:52:46 ET Table '297808375 8' 9-max Seat #8 is the button -Seat 1: s0rrow (11411 in chips) +Seat 1: Hero (11411 in chips) Seat 2: MexicanGamb (5075 in chips) Seat 3: madrk (3561 in chips) Seat 4: pokergott68 (3770 in chips) @@ -6454,7 +6454,7 @@ Seat 5: Georgy80 (9997 in chips) Seat 6: 123456789476 (9361 in chips) Seat 8: Djkujuhfl (22418 in chips) Seat 9: stefan_bg_46 (7647 in chips) -s0rrow: posts the ante 30 +Hero: posts the ante 30 MexicanGamb: posts the ante 30 madrk: posts the ante 30 pokergott68: posts the ante 30 @@ -6463,9 +6463,9 @@ Georgy80: posts the ante 30 Djkujuhfl: posts the ante 30 stefan_bg_46: posts the ante 30 stefan_bg_46: posts small blind 125 -s0rrow: posts big blind 250 +Hero: posts big blind 250 *** HOLE CARDS *** -Dealt to s0rrow [5s 9h] +Dealt to Hero [5s 9h] MexicanGamb: folds madrk: folds pokergott68: folds @@ -6473,13 +6473,13 @@ Georgy80: raises 350 to 600 123456789476: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds Uncalled bet (350) returned to Georgy80 Georgy80 collected 865 from pot Georgy80: doesn't show hand *** SUMMARY *** Total pot 865 | Rake 0 -Seat 1: s0rrow (big blind) folded before Flop +Seat 1: Hero (big blind) folded before Flop Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 3: madrk folded before Flop (didn't bet) Seat 4: pokergott68 folded before Flop (didn't bet) @@ -6492,7 +6492,7 @@ Seat 9: stefan_bg_46 (small blind) folded before Flop PokerStars Game #47657227914: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:53:08 ET Table '297808375 8' 9-max Seat #9 is the button -Seat 1: s0rrow (11131 in chips) +Seat 1: Hero (11131 in chips) Seat 2: MexicanGamb (5045 in chips) Seat 3: madrk (3531 in chips) Seat 4: pokergott68 (3740 in chips) @@ -6500,7 +6500,7 @@ Seat 5: Georgy80 (10582 in chips) Seat 6: 123456789476 (9331 in chips) Seat 8: Djkujuhfl (22388 in chips) Seat 9: stefan_bg_46 (7492 in chips) -s0rrow: posts the ante 30 +Hero: posts the ante 30 MexicanGamb: posts the ante 30 madrk: posts the ante 30 pokergott68: posts the ante 30 @@ -6508,35 +6508,35 @@ Georgy80: posts the ante 30 123456789476: posts the ante 30 Djkujuhfl: posts the ante 30 stefan_bg_46: posts the ante 30 -s0rrow: posts small blind 125 +Hero: posts small blind 125 MexicanGamb: posts big blind 250 *** HOLE CARDS *** -Dealt to s0rrow [2h Ah] +Dealt to Hero [2h Ah] madrk: calls 250 pokergott68: calls 250 Georgy80: folds 123456789476: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: calls 125 +Hero: calls 125 MexicanGamb: checks *** FLOP *** [5s Ks 6d] -s0rrow: checks +Hero: checks MexicanGamb: checks madrk: checks pokergott68: checks *** TURN *** [5s Ks 6d] [8d] -s0rrow: checks +Hero: checks MexicanGamb: checks madrk: checks pokergott68: checks *** RIVER *** [5s Ks 6d 8d] [Jd] -s0rrow: checks +Hero: checks MexicanGamb: checks madrk: checks pokergott68: checks *** SHOW DOWN *** -s0rrow: shows [2h Ah] (high card Ace) +Hero: shows [2h Ah] (high card Ace) MexicanGamb: shows [3s Ad] (high card Ace) madrk: shows [3c 3h] (a pair of Threes) pokergott68: shows [Tc Jc] (a pair of Jacks) @@ -6544,7 +6544,7 @@ pokergott68 collected 1240 from pot *** SUMMARY *** Total pot 1240 | Rake 0 Board [5s Ks 6d 8d Jd] -Seat 1: s0rrow (small blind) showed [2h Ah] and lost with high card Ace +Seat 1: Hero (small blind) showed [2h Ah] and lost with high card Ace Seat 2: MexicanGamb (big blind) showed [3s Ad] and lost with high card Ace Seat 3: madrk showed [3c 3h] and lost with a pair of Threes Seat 4: pokergott68 showed [Tc Jc] and won (1240) with a pair of Jacks @@ -6557,7 +6557,7 @@ Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) PokerStars Game #47657435279: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 12:59:49 ET Table '297808375 8' 9-max Seat #1 is the button -Seat 1: s0rrow (10851 in chips) +Seat 1: Hero (10851 in chips) Seat 2: MexicanGamb (4765 in chips) Seat 3: madrk (3251 in chips) Seat 4: pokergott68 (4700 in chips) @@ -6565,7 +6565,7 @@ Seat 5: Georgy80 (10552 in chips) Seat 6: 123456789476 (9301 in chips) Seat 8: Djkujuhfl (22358 in chips) Seat 9: stefan_bg_46 (7462 in chips) -s0rrow: posts the ante 40 +Hero: posts the ante 40 MexicanGamb: posts the ante 40 madrk: posts the ante 40 pokergott68: posts the ante 40 @@ -6576,24 +6576,24 @@ stefan_bg_46: posts the ante 40 MexicanGamb: posts small blind 150 madrk: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [7h 5d] +Dealt to Hero [7h 5d] pokergott68: folds Georgy80: folds 123456789476: folds Djkujuhfl: raises 425 to 725 stefan_bg_46: folds -s0rrow: raises 1075 to 1800 +Hero: raises 1075 to 1800 MexicanGamb: folds madrk: folds Djkujuhfl has timed out Djkujuhfl: folds -Uncalled bet (1075) returned to s0rrow +Uncalled bet (1075) returned to Hero Djkujuhfl is sitting out -s0rrow collected 2220 from pot +Hero collected 2220 from pot Djkujuhfl has returned *** SUMMARY *** Total pot 2220 | Rake 0 -Seat 1: s0rrow (button) collected (2220) +Seat 1: Hero (button) collected (2220) Seat 2: MexicanGamb (small blind) folded before Flop Seat 3: madrk (big blind) folded before Flop Seat 4: pokergott68 folded before Flop (didn't bet) @@ -6606,7 +6606,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47657489543: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:01:20 ET Table '297808375 8' 9-max Seat #2 is the button -Seat 1: s0rrow (12306 in chips) +Seat 1: Hero (12306 in chips) Seat 2: MexicanGamb (4575 in chips) Seat 3: madrk (2911 in chips) Seat 4: pokergott68 (4660 in chips) @@ -6614,7 +6614,7 @@ Seat 5: Georgy80 (10512 in chips) Seat 6: 123456789476 (9261 in chips) Seat 8: Djkujuhfl (21593 in chips) Seat 9: stefan_bg_46 (7422 in chips) -s0rrow: posts the ante 40 +Hero: posts the ante 40 MexicanGamb: posts the ante 40 madrk: posts the ante 40 pokergott68: posts the ante 40 @@ -6625,20 +6625,20 @@ stefan_bg_46: posts the ante 40 madrk: posts small blind 150 pokergott68: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [9c 7c] +Dealt to Hero [9c 7c] Georgy80: folds 123456789476: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: raises 600 to 900 +Hero: raises 600 to 900 MexicanGamb: folds madrk: folds pokergott68: folds -Uncalled bet (600) returned to s0rrow -s0rrow collected 1070 from pot +Uncalled bet (600) returned to Hero +Hero collected 1070 from pot *** SUMMARY *** Total pot 1070 | Rake 0 -Seat 1: s0rrow collected (1070) +Seat 1: Hero collected (1070) Seat 2: MexicanGamb (button) folded before Flop (didn't bet) Seat 3: madrk (small blind) folded before Flop Seat 4: pokergott68 (big blind) folded before Flop @@ -6651,7 +6651,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47657511858: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:01:55 ET Table '297808375 8' 9-max Seat #3 is the button -Seat 1: s0rrow (13036 in chips) +Seat 1: Hero (13036 in chips) Seat 2: MexicanGamb (4535 in chips) Seat 3: madrk (2721 in chips) Seat 4: pokergott68 (4320 in chips) @@ -6659,7 +6659,7 @@ Seat 5: Georgy80 (10472 in chips) Seat 6: 123456789476 (9221 in chips) Seat 8: Djkujuhfl (21553 in chips) Seat 9: stefan_bg_46 (7382 in chips) -s0rrow: posts the ante 40 +Hero: posts the ante 40 MexicanGamb: posts the ante 40 madrk: posts the ante 40 pokergott68: posts the ante 40 @@ -6670,11 +6670,11 @@ stefan_bg_46: posts the ante 40 pokergott68: posts small blind 150 Georgy80: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [7s Jd] +Dealt to Hero [7s Jd] 123456789476: calls 300 Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: calls 300 madrk: raises 2381 to 2681 and is all-in pokergott68: folds @@ -6686,7 +6686,7 @@ madrk collected 1670 from pot madrk: doesn't show hand *** SUMMARY *** Total pot 1670 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop Seat 3: madrk (button) collected (1670) Seat 4: pokergott68 (small blind) folded before Flop @@ -6699,7 +6699,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47657535544: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:02:33 ET Table '297808375 8' 9-max Seat #4 is the button -Seat 1: s0rrow (12996 in chips) +Seat 1: Hero (12996 in chips) Seat 2: MexicanGamb (4195 in chips) Seat 3: madrk (4051 in chips) Seat 4: pokergott68 (4130 in chips) @@ -6707,7 +6707,7 @@ Seat 5: Georgy80 (10132 in chips) Seat 6: 123456789476 (8881 in chips) Seat 8: Djkujuhfl (21513 in chips) Seat 9: stefan_bg_46 (7342 in chips) -s0rrow: posts the ante 40 +Hero: posts the ante 40 MexicanGamb: posts the ante 40 madrk: posts the ante 40 pokergott68: posts the ante 40 @@ -6718,10 +6718,10 @@ stefan_bg_46: posts the ante 40 Georgy80: posts small blind 150 123456789476: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [5s Ks] +Dealt to Hero [5s Ks] Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: raises 600 to 900 madrk: folds pokergott68: calls 900 @@ -6739,7 +6739,7 @@ MexicanGamb: doesn't show hand *** SUMMARY *** Total pot 2570 | Rake 0 Board [8s 3h 5h Qh] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb collected (2570) Seat 3: madrk folded before Flop (didn't bet) Seat 4: pokergott68 (button) folded on the Turn @@ -6752,7 +6752,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47657556286: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:03:05 ET Table '297808375 8' 9-max Seat #5 is the button -Seat 1: s0rrow (12956 in chips) +Seat 1: Hero (12956 in chips) Seat 2: MexicanGamb (5825 in chips) Seat 3: madrk (4011 in chips) Seat 4: pokergott68 (3190 in chips) @@ -6760,7 +6760,7 @@ Seat 5: Georgy80 (9942 in chips) Seat 6: 123456789476 (8541 in chips) Seat 8: Djkujuhfl (21473 in chips) Seat 9: stefan_bg_46 (7302 in chips) -s0rrow: posts the ante 40 +Hero: posts the ante 40 MexicanGamb: posts the ante 40 madrk: posts the ante 40 pokergott68: posts the ante 40 @@ -6771,9 +6771,9 @@ stefan_bg_46: posts the ante 40 123456789476: posts small blind 150 Djkujuhfl: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [7h Tc] +Dealt to Hero [7h Tc] stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: folds madrk: folds pokergott68: folds @@ -6785,7 +6785,7 @@ Georgy80 collected 1070 from pot Georgy80: doesn't show hand *** SUMMARY *** Total pot 1070 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 3: madrk folded before Flop (didn't bet) Seat 4: pokergott68 folded before Flop (didn't bet) @@ -6798,7 +6798,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47657593528: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:04:03 ET Table '297808375 8' 9-max Seat #6 is the button -Seat 1: s0rrow (12916 in chips) +Seat 1: Hero (12916 in chips) Seat 2: MexicanGamb (5785 in chips) Seat 3: madrk (3971 in chips) Seat 4: pokergott68 (3150 in chips) @@ -6806,7 +6806,7 @@ Seat 5: Georgy80 (10672 in chips) Seat 6: 123456789476 (8351 in chips) Seat 8: Djkujuhfl (21133 in chips) Seat 9: stefan_bg_46 (7262 in chips) -s0rrow: posts the ante 40 +Hero: posts the ante 40 MexicanGamb: posts the ante 40 madrk: posts the ante 40 pokergott68: posts the ante 40 @@ -6817,8 +6817,8 @@ stefan_bg_46: posts the ante 40 Djkujuhfl: posts small blind 150 stefan_bg_46: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [6c 5h] -s0rrow: folds +Dealt to Hero [6c 5h] +Hero: folds MexicanGamb: folds madrk: folds pokergott68: folds @@ -6831,7 +6831,7 @@ Djkujuhfl collected 920 from pot Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 920 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 3: madrk folded before Flop (didn't bet) Seat 4: pokergott68 folded before Flop (didn't bet) @@ -6844,7 +6844,7 @@ Seat 9: stefan_bg_46 (big blind) folded before Flop PokerStars Game #47657626557: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:04:50 ET Table '297808375 8' 9-max Seat #8 is the button -Seat 1: s0rrow (12876 in chips) +Seat 1: Hero (12876 in chips) Seat 2: MexicanGamb (5745 in chips) Seat 3: madrk (3931 in chips) Seat 4: pokergott68 (3110 in chips) @@ -6852,7 +6852,7 @@ Seat 5: Georgy80 (10632 in chips) Seat 6: 123456789476 (8311 in chips) Seat 8: Djkujuhfl (21713 in chips) Seat 9: stefan_bg_46 (6922 in chips) -s0rrow: posts the ante 40 +Hero: posts the ante 40 MexicanGamb: posts the ante 40 madrk: posts the ante 40 pokergott68: posts the ante 40 @@ -6861,9 +6861,9 @@ Georgy80: posts the ante 40 Djkujuhfl: posts the ante 40 stefan_bg_46: posts the ante 40 stefan_bg_46: posts small blind 150 -s0rrow: posts big blind 300 +Hero: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [6h 9s] +Dealt to Hero [6h 9s] MexicanGamb: folds madrk: folds pokergott68: folds @@ -6871,12 +6871,12 @@ Georgy80: folds 123456789476: raises 300 to 600 Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds Uncalled bet (300) returned to 123456789476 123456789476 collected 1070 from pot *** SUMMARY *** Total pot 1070 | Rake 0 -Seat 1: s0rrow (big blind) folded before Flop +Seat 1: Hero (big blind) folded before Flop Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 3: madrk folded before Flop (didn't bet) Seat 4: pokergott68 folded before Flop (didn't bet) @@ -6889,7 +6889,7 @@ Seat 9: stefan_bg_46 (small blind) folded before Flop PokerStars Game #47657644189: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:05:16 ET Table '297808375 8' 9-max Seat #9 is the button -Seat 1: s0rrow (12536 in chips) +Seat 1: Hero (12536 in chips) Seat 2: MexicanGamb (5705 in chips) Seat 3: madrk (3891 in chips) Seat 4: pokergott68 (3070 in chips) @@ -6897,7 +6897,7 @@ Seat 5: Georgy80 (10592 in chips) Seat 6: 123456789476 (9041 in chips) Seat 8: Djkujuhfl (21673 in chips) Seat 9: stefan_bg_46 (6732 in chips) -s0rrow: posts the ante 40 +Hero: posts the ante 40 MexicanGamb: posts the ante 40 madrk: posts the ante 40 pokergott68: posts the ante 40 @@ -6905,23 +6905,23 @@ Georgy80: posts the ante 40 123456789476: posts the ante 40 Djkujuhfl: posts the ante 40 stefan_bg_46: posts the ante 40 -s0rrow: posts small blind 150 +Hero: posts small blind 150 MexicanGamb: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [6s Ac] +Dealt to Hero [6s Ac] madrk: folds pokergott68: folds Georgy80: folds 123456789476: calls 300 Djkujuhfl: folds stefan_bg_46: folds -s0rrow: calls 150 +Hero: calls 150 MexicanGamb: checks *** FLOP *** [Jc Kh 5s] -s0rrow: checks +Hero: checks MexicanGamb: checks 123456789476: bets 300 -s0rrow: folds +Hero: folds MexicanGamb: raises 600 to 900 123456789476: folds Uncalled bet (600) returned to MexicanGamb @@ -6930,7 +6930,7 @@ MexicanGamb: doesn't show hand *** SUMMARY *** Total pot 1820 | Rake 0 Board [Jc Kh 5s] -Seat 1: s0rrow (small blind) folded on the Flop +Seat 1: Hero (small blind) folded on the Flop Seat 2: MexicanGamb (big blind) collected (1820) Seat 3: madrk folded before Flop (didn't bet) Seat 4: pokergott68 folded before Flop (didn't bet) @@ -6943,7 +6943,7 @@ Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) PokerStars Game #47657685969: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:06:18 ET Table '297808375 8' 9-max Seat #1 is the button -Seat 1: s0rrow (12196 in chips) +Seat 1: Hero (12196 in chips) Seat 2: MexicanGamb (6885 in chips) Seat 3: madrk (3851 in chips) Seat 4: pokergott68 (3030 in chips) @@ -6951,7 +6951,7 @@ Seat 5: Georgy80 (10552 in chips) Seat 6: 123456789476 (8401 in chips) Seat 8: Djkujuhfl (21633 in chips) Seat 9: stefan_bg_46 (6692 in chips) -s0rrow: posts the ante 40 +Hero: posts the ante 40 MexicanGamb: posts the ante 40 madrk: posts the ante 40 pokergott68: posts the ante 40 @@ -6962,28 +6962,28 @@ stefan_bg_46: posts the ante 40 MexicanGamb: posts small blind 150 madrk: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [Ah 3d] +Dealt to Hero [Ah 3d] pokergott68: folds Georgy80: folds 123456789476: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: raises 600 to 900 +Hero: raises 600 to 900 MexicanGamb: calls 750 madrk: folds *** FLOP *** [7h 8h 7c] MexicanGamb: checks -s0rrow: checks +Hero: checks *** TURN *** [7h 8h 7c] [Ad] MexicanGamb: checks -s0rrow: bets 2100 +Hero: bets 2100 MexicanGamb: folds -Uncalled bet (2100) returned to s0rrow -s0rrow collected 2420 from pot +Uncalled bet (2100) returned to Hero +Hero collected 2420 from pot *** SUMMARY *** Total pot 2420 | Rake 0 Board [7h 8h 7c Ad] -Seat 1: s0rrow (button) collected (2420) +Seat 1: Hero (button) collected (2420) Seat 2: MexicanGamb (small blind) folded on the Turn Seat 3: madrk (big blind) folded before Flop Seat 4: pokergott68 folded before Flop (didn't bet) @@ -6996,7 +6996,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47657716576: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:07:02 ET Table '297808375 8' 9-max Seat #2 is the button -Seat 1: s0rrow (13676 in chips) +Seat 1: Hero (13676 in chips) Seat 2: MexicanGamb (5945 in chips) Seat 3: madrk (3511 in chips) Seat 4: pokergott68 (2990 in chips) @@ -7004,7 +7004,7 @@ Seat 5: Georgy80 (10512 in chips) Seat 6: 123456789476 (8361 in chips) Seat 8: Djkujuhfl (21593 in chips) Seat 9: stefan_bg_46 (6652 in chips) -s0rrow: posts the ante 40 +Hero: posts the ante 40 MexicanGamb: posts the ante 40 madrk: posts the ante 40 pokergott68: posts the ante 40 @@ -7015,12 +7015,12 @@ stefan_bg_46: posts the ante 40 madrk: posts small blind 150 pokergott68: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [6h 9h] +Dealt to Hero [6h 9h] Georgy80: folds 123456789476: folds Djkujuhfl: raises 900 to 1200 stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: folds madrk: folds pokergott68: calls 900 @@ -7040,7 +7040,7 @@ Djkujuhfl collected 2870 from pot *** SUMMARY *** Total pot 2870 | Rake 0 Board [7c 3c 5d 7d Ks] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb (button) folded before Flop (didn't bet) Seat 3: madrk (small blind) folded before Flop Seat 4: pokergott68 (big blind) showed [Qs Jh] and lost with a pair of Sevens @@ -7053,7 +7053,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47657761659: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:08:08 ET Table '297808375 8' 9-max Seat #3 is the button -Seat 1: s0rrow (13636 in chips) +Seat 1: Hero (13636 in chips) Seat 2: MexicanGamb (5905 in chips) Seat 3: madrk (3321 in chips) Seat 4: pokergott68 (1750 in chips) @@ -7061,7 +7061,7 @@ Seat 5: Georgy80 (10472 in chips) Seat 6: 123456789476 (8321 in chips) Seat 8: Djkujuhfl (23223 in chips) Seat 9: stefan_bg_46 (6612 in chips) -s0rrow: posts the ante 40 +Hero: posts the ante 40 MexicanGamb: posts the ante 40 madrk: posts the ante 40 pokergott68: posts the ante 40 @@ -7072,11 +7072,11 @@ stefan_bg_46: posts the ante 40 pokergott68: posts small blind 150 Georgy80: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [4d Ah] +Dealt to Hero [4d Ah] 123456789476: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: raises 600 to 900 madrk: folds pokergott68: folds @@ -7086,7 +7086,7 @@ MexicanGamb collected 1070 from pot MexicanGamb: doesn't show hand *** SUMMARY *** Total pot 1070 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb collected (1070) Seat 3: madrk (button) folded before Flop (didn't bet) Seat 4: pokergott68 (small blind) folded before Flop @@ -7099,7 +7099,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47657774523: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:08:27 ET Table '297808375 8' 9-max Seat #4 is the button -Seat 1: s0rrow (13596 in chips) +Seat 1: Hero (13596 in chips) Seat 2: MexicanGamb (6635 in chips) Seat 3: madrk (3281 in chips) Seat 4: pokergott68 (1560 in chips) @@ -7107,7 +7107,7 @@ Seat 5: Georgy80 (10132 in chips) Seat 6: 123456789476 (8281 in chips) Seat 8: Djkujuhfl (23183 in chips) Seat 9: stefan_bg_46 (6572 in chips) -s0rrow: posts the ante 40 +Hero: posts the ante 40 MexicanGamb: posts the ante 40 madrk: posts the ante 40 pokergott68: posts the ante 40 @@ -7118,10 +7118,10 @@ stefan_bg_46: posts the ante 40 Georgy80: posts small blind 150 123456789476: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [5c 4h] +Dealt to Hero [5c 4h] Djkujuhfl: folds stefan_bg_46: calls 300 -s0rrow: folds +Hero: folds MexicanGamb: raises 995 to 1295 madrk: folds pokergott68: folds @@ -7133,7 +7133,7 @@ MexicanGamb collected 1370 from pot MexicanGamb: doesn't show hand *** SUMMARY *** Total pot 1370 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb collected (1370) Seat 3: madrk folded before Flop (didn't bet) Seat 4: pokergott68 (button) folded before Flop (didn't bet) @@ -7146,7 +7146,7 @@ Seat 9: stefan_bg_46 folded before Flop PokerStars Game #47657798709: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:09:02 ET Table '297808375 8' 9-max Seat #5 is the button -Seat 1: s0rrow (13556 in chips) +Seat 1: Hero (13556 in chips) Seat 2: MexicanGamb (7665 in chips) Seat 3: madrk (3241 in chips) Seat 4: pokergott68 (1520 in chips) @@ -7154,7 +7154,7 @@ Seat 5: Georgy80 (9942 in chips) Seat 6: 123456789476 (7941 in chips) Seat 8: Djkujuhfl (23143 in chips) Seat 9: stefan_bg_46 (6232 in chips) -s0rrow: posts the ante 50 +Hero: posts the ante 50 MexicanGamb: posts the ante 50 madrk: posts the ante 50 pokergott68: posts the ante 50 @@ -7165,9 +7165,9 @@ stefan_bg_46: posts the ante 50 123456789476: posts small blind 200 Djkujuhfl: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [Jd 9s] +Dealt to Hero [Jd 9s] stefan_bg_46: raises 400 to 800 -s0rrow: folds +Hero: folds MexicanGamb: folds madrk: raises 2391 to 3191 and is all-in pokergott68: folds @@ -7188,7 +7188,7 @@ madrk finished the tournament in 15th place *** SUMMARY *** Total pot 7382 | Rake 0 Board [4h 8d 2d Jc 6s] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 3: madrk showed [Td Th] and lost with a pair of Tens Seat 4: pokergott68 folded before Flop (didn't bet) @@ -7201,14 +7201,14 @@ Seat 9: stefan_bg_46 showed [Ks Kc] and won (7382) with a pair of Kings PokerStars Game #47657821857: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:09:36 ET Table '297808375 8' 9-max Seat #6 is the button -Seat 1: s0rrow (13506 in chips) +Seat 1: Hero (13506 in chips) Seat 2: MexicanGamb (7615 in chips) Seat 4: pokergott68 (1470 in chips) Seat 5: Georgy80 (9892 in chips) Seat 6: 123456789476 (7691 in chips) Seat 8: Djkujuhfl (22693 in chips) Seat 9: stefan_bg_46 (10373 in chips) -s0rrow: posts the ante 50 +Hero: posts the ante 50 MexicanGamb: posts the ante 50 pokergott68: posts the ante 50 Georgy80: posts the ante 50 @@ -7218,8 +7218,8 @@ stefan_bg_46: posts the ante 50 Djkujuhfl: posts small blind 200 stefan_bg_46: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [2h 5d] -s0rrow: folds +Dealt to Hero [2h 5d] +Hero: folds MexicanGamb: folds pokergott68: folds Georgy80: folds @@ -7238,7 +7238,7 @@ Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 1150 | Rake 0 Board [7d 3d 9s 4d] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 4: pokergott68 folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -7250,14 +7250,14 @@ Seat 9: stefan_bg_46 (big blind) folded on the Turn PokerStars Game #47657856528: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:10:27 ET Table '297808375 8' 9-max Seat #8 is the button -Seat 1: s0rrow (13456 in chips) +Seat 1: Hero (13456 in chips) Seat 2: MexicanGamb (7565 in chips) Seat 4: pokergott68 (1420 in chips) Seat 5: Georgy80 (9842 in chips) Seat 6: 123456789476 (7641 in chips) Seat 8: Djkujuhfl (23393 in chips) Seat 9: stefan_bg_46 (9923 in chips) -s0rrow: posts the ante 50 +Hero: posts the ante 50 MexicanGamb: posts the ante 50 pokergott68: posts the ante 50 Georgy80: posts the ante 50 @@ -7265,28 +7265,28 @@ Georgy80: posts the ante 50 Djkujuhfl: posts the ante 50 stefan_bg_46: posts the ante 50 stefan_bg_46: posts small blind 200 -s0rrow: posts big blind 400 +Hero: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [As Jd] +Dealt to Hero [As Jd] MexicanGamb: folds pokergott68: raises 970 to 1370 and is all-in Georgy80: folds 123456789476: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: calls 970 +Hero: calls 970 *** FLOP *** [Td 2c Ks] *** TURN *** [Td 2c Ks] [8c] *** RIVER *** [Td 2c Ks 8c] [Th] *** SHOW DOWN *** -s0rrow: shows [As Jd] (a pair of Tens) +Hero: shows [As Jd] (a pair of Tens) pokergott68: shows [Ah Jh] (a pair of Tens) -s0rrow collected 1645 from pot +Hero collected 1645 from pot pokergott68 collected 1645 from pot *** SUMMARY *** Total pot 3290 | Rake 0 Board [Td 2c Ks 8c Th] -Seat 1: s0rrow (big blind) showed [As Jd] and won (1645) with a pair of Tens +Seat 1: Hero (big blind) showed [As Jd] and won (1645) with a pair of Tens Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 4: pokergott68 showed [Ah Jh] and won (1645) with a pair of Tens Seat 5: Georgy80 folded before Flop (didn't bet) @@ -7298,30 +7298,30 @@ Seat 9: stefan_bg_46 (small blind) folded before Flop PokerStars Game #47657892885: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:11:20 ET Table '297808375 8' 9-max Seat #9 is the button -Seat 1: s0rrow (13681 in chips) +Seat 1: Hero (13681 in chips) Seat 2: MexicanGamb (7515 in chips) Seat 4: pokergott68 (1645 in chips) Seat 5: Georgy80 (9792 in chips) Seat 6: 123456789476 (7591 in chips) Seat 8: Djkujuhfl (23343 in chips) Seat 9: stefan_bg_46 (9673 in chips) -s0rrow: posts the ante 50 +Hero: posts the ante 50 MexicanGamb: posts the ante 50 pokergott68: posts the ante 50 Georgy80: posts the ante 50 123456789476: posts the ante 50 Djkujuhfl: posts the ante 50 stefan_bg_46: posts the ante 50 -s0rrow: posts small blind 200 +Hero: posts small blind 200 MexicanGamb: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [4d Qc] +Dealt to Hero [4d Qc] pokergott68: folds Georgy80: calls 400 123456789476: calls 400 Djkujuhfl: folds stefan_bg_46: raises 400 to 800 -s0rrow: folds +Hero: folds MexicanGamb: folds Georgy80: calls 400 123456789476: calls 400 @@ -7343,7 +7343,7 @@ Georgy80 collected 4950 from pot *** SUMMARY *** Total pot 4950 | Rake 0 Board [4c 5h 8c Kd 3s] -Seat 1: s0rrow (small blind) folded before Flop +Seat 1: Hero (small blind) folded before Flop Seat 2: MexicanGamb (big blind) folded before Flop Seat 4: pokergott68 folded before Flop (didn't bet) Seat 5: Georgy80 showed [Jh Ad] and won (4950) with high card Ace @@ -7355,14 +7355,14 @@ Seat 9: stefan_bg_46 (button) folded on the Flop PokerStars Game #47657924822: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:12:06 ET Table '297808375 8' 9-max Seat #1 is the button -Seat 1: s0rrow (13431 in chips) +Seat 1: Hero (13431 in chips) Seat 2: MexicanGamb (7065 in chips) Seat 4: pokergott68 (1595 in chips) Seat 5: Georgy80 (13092 in chips) Seat 6: 123456789476 (5941 in chips) Seat 8: Djkujuhfl (23293 in chips) Seat 9: stefan_bg_46 (8823 in chips) -s0rrow: posts the ante 50 +Hero: posts the ante 50 MexicanGamb: posts the ante 50 pokergott68: posts the ante 50 Georgy80: posts the ante 50 @@ -7372,12 +7372,12 @@ stefan_bg_46: posts the ante 50 MexicanGamb: posts small blind 200 pokergott68: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [4d Js] +Dealt to Hero [4d Js] Georgy80: folds 123456789476: calls 400 Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: folds pokergott68: checks *** FLOP *** [As 7d 8d] @@ -7389,7 +7389,7 @@ Uncalled bet (400) returned to 123456789476 *** SUMMARY *** Total pot 1350 | Rake 0 Board [As 7d 8d] -Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 1: Hero (button) folded before Flop (didn't bet) Seat 2: MexicanGamb (small blind) folded before Flop Seat 4: pokergott68 (big blind) folded on the Flop Seat 5: Georgy80 folded before Flop (didn't bet) @@ -7401,14 +7401,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47657949881: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:12:44 ET Table '297808375 8' 9-max Seat #2 is the button -Seat 1: s0rrow (13381 in chips) +Seat 1: Hero (13381 in chips) Seat 2: MexicanGamb (6815 in chips) Seat 4: pokergott68 (1145 in chips) Seat 5: Georgy80 (13042 in chips) Seat 6: 123456789476 (6841 in chips) Seat 8: Djkujuhfl (23243 in chips) Seat 9: stefan_bg_46 (8773 in chips) -s0rrow: posts the ante 50 +Hero: posts the ante 50 MexicanGamb: posts the ante 50 pokergott68: posts the ante 50 Georgy80: posts the ante 50 @@ -7418,19 +7418,19 @@ stefan_bg_46: posts the ante 50 pokergott68: posts small blind 200 Georgy80: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [8h 9h] +Dealt to Hero [8h 9h] 123456789476: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: raises 800 to 1200 +Hero: raises 800 to 1200 MexicanGamb: folds pokergott68: folds Georgy80: folds -Uncalled bet (800) returned to s0rrow -s0rrow collected 1350 from pot +Uncalled bet (800) returned to Hero +Hero collected 1350 from pot *** SUMMARY *** Total pot 1350 | Rake 0 -Seat 1: s0rrow collected (1350) +Seat 1: Hero collected (1350) Seat 2: MexicanGamb (button) folded before Flop (didn't bet) Seat 4: pokergott68 (small blind) folded before Flop Seat 5: Georgy80 (big blind) folded before Flop @@ -7442,14 +7442,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47657963281: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:13:03 ET Table '297808375 8' 9-max Seat #4 is the button -Seat 1: s0rrow (14281 in chips) +Seat 1: Hero (14281 in chips) Seat 2: MexicanGamb (6765 in chips) Seat 4: pokergott68 (895 in chips) Seat 5: Georgy80 (12592 in chips) Seat 6: 123456789476 (6791 in chips) Seat 8: Djkujuhfl (23193 in chips) Seat 9: stefan_bg_46 (8723 in chips) -s0rrow: posts the ante 50 +Hero: posts the ante 50 MexicanGamb: posts the ante 50 pokergott68: posts the ante 50 Georgy80: posts the ante 50 @@ -7459,23 +7459,23 @@ stefan_bg_46: posts the ante 50 Georgy80: posts small blind 200 123456789476: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [4d 3h] +Dealt to Hero [4d 3h] Djkujuhfl: folds stefan_bg_46: folds -s0rrow: raises 800 to 1200 +Hero: raises 800 to 1200 MexicanGamb: folds pokergott68: folds Georgy80: folds 123456789476: calls 800 *** FLOP *** [Ts 3d Ks] 123456789476: bets 5541 and is all-in -s0rrow: folds +Hero: folds Uncalled bet (5541) returned to 123456789476 123456789476 collected 2950 from pot *** SUMMARY *** Total pot 2950 | Rake 0 Board [Ts 3d Ks] -Seat 1: s0rrow folded on the Flop +Seat 1: Hero folded on the Flop Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 4: pokergott68 (button) folded before Flop (didn't bet) Seat 5: Georgy80 (small blind) folded before Flop @@ -7487,14 +7487,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47658001297: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:14:00 ET Table '297808375 8' 9-max Seat #5 is the button -Seat 1: s0rrow (13031 in chips) +Seat 1: Hero (13031 in chips) Seat 2: MexicanGamb (6715 in chips) Seat 4: pokergott68 (845 in chips) Seat 5: Georgy80 (12342 in chips) Seat 6: 123456789476 (8491 in chips) Seat 8: Djkujuhfl (23143 in chips) Seat 9: stefan_bg_46 (8673 in chips) -s0rrow: posts the ante 50 +Hero: posts the ante 50 MexicanGamb: posts the ante 50 pokergott68: posts the ante 50 Georgy80: posts the ante 50 @@ -7504,9 +7504,9 @@ stefan_bg_46: posts the ante 50 123456789476: posts small blind 200 Djkujuhfl: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [7d Qh] +Dealt to Hero [7d Qh] stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: folds pokergott68: folds Georgy80: folds @@ -7516,7 +7516,7 @@ Djkujuhfl collected 750 from pot Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 750 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 4: pokergott68 folded before Flop (didn't bet) Seat 5: Georgy80 (button) folded before Flop (didn't bet) @@ -7528,14 +7528,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47658026359: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:14:37 ET Table '297808375 8' 9-max Seat #6 is the button -Seat 1: s0rrow (12981 in chips) +Seat 1: Hero (12981 in chips) Seat 2: MexicanGamb (6665 in chips) Seat 4: pokergott68 (795 in chips) Seat 5: Georgy80 (12292 in chips) Seat 6: 123456789476 (8241 in chips) Seat 8: Djkujuhfl (23643 in chips) Seat 9: stefan_bg_46 (8623 in chips) -s0rrow: posts the ante 50 +Hero: posts the ante 50 MexicanGamb: posts the ante 50 pokergott68: posts the ante 50 Georgy80: posts the ante 50 @@ -7545,8 +7545,8 @@ stefan_bg_46: posts the ante 50 Djkujuhfl: posts small blind 200 stefan_bg_46: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [Td 9c] -s0rrow: folds +Dealt to Hero [Td 9c] +Hero: folds MexicanGamb: folds pokergott68: folds Georgy80: folds @@ -7562,7 +7562,7 @@ Uncalled bet (800) returned to 123456789476 *** SUMMARY *** Total pot 2150 | Rake 0 Board [9d 7s 7h] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 4: pokergott68 folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -7574,14 +7574,14 @@ Seat 9: stefan_bg_46 (big blind) folded on the Flop PokerStars Game #47658054747: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:15:19 ET Table '297808375 8' 9-max Seat #8 is the button -Seat 1: s0rrow (12931 in chips) +Seat 1: Hero (12931 in chips) Seat 2: MexicanGamb (6615 in chips) Seat 4: pokergott68 (745 in chips) Seat 5: Georgy80 (12242 in chips) Seat 6: 123456789476 (9541 in chips) Seat 8: Djkujuhfl (23393 in chips) Seat 9: stefan_bg_46 (7773 in chips) -s0rrow: posts the ante 50 +Hero: posts the ante 50 MexicanGamb: posts the ante 50 pokergott68: posts the ante 50 Georgy80: posts the ante 50 @@ -7589,26 +7589,26 @@ Georgy80: posts the ante 50 Djkujuhfl: posts the ante 50 stefan_bg_46: posts the ante 50 stefan_bg_46: posts small blind 200 -s0rrow: posts big blind 400 +Hero: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [2h 8s] +Dealt to Hero [2h 8s] MexicanGamb: folds pokergott68: folds Georgy80: folds 123456789476: folds Djkujuhfl: folds stefan_bg_46: calls 200 -s0rrow: checks +Hero: checks *** FLOP *** [9d Jd Td] stefan_bg_46: checks -s0rrow: bets 400 +Hero: bets 400 stefan_bg_46: folds -Uncalled bet (400) returned to s0rrow -s0rrow collected 1150 from pot +Uncalled bet (400) returned to Hero +Hero collected 1150 from pot *** SUMMARY *** Total pot 1150 | Rake 0 Board [9d Jd Td] -Seat 1: s0rrow (big blind) collected (1150) +Seat 1: Hero (big blind) collected (1150) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 4: pokergott68 folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -7620,30 +7620,30 @@ Seat 9: stefan_bg_46 (small blind) folded on the Flop PokerStars Game #47658082255: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:16:00 ET Table '297808375 8' 9-max Seat #9 is the button -Seat 1: s0rrow (13631 in chips) +Seat 1: Hero (13631 in chips) Seat 2: MexicanGamb (6565 in chips) Seat 4: pokergott68 (695 in chips) Seat 5: Georgy80 (12192 in chips) Seat 6: 123456789476 (9491 in chips) Seat 8: Djkujuhfl (23343 in chips) Seat 9: stefan_bg_46 (7323 in chips) -s0rrow: posts the ante 50 +Hero: posts the ante 50 MexicanGamb: posts the ante 50 pokergott68: posts the ante 50 Georgy80: posts the ante 50 123456789476: posts the ante 50 Djkujuhfl: posts the ante 50 stefan_bg_46: posts the ante 50 -s0rrow: posts small blind 200 +Hero: posts small blind 200 MexicanGamb: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [3d As] +Dealt to Hero [3d As] pokergott68: folds Georgy80: folds 123456789476: calls 400 Djkujuhfl: calls 400 stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: checks *** FLOP *** [Qc 2d 6c] MexicanGamb: checks @@ -7655,7 +7655,7 @@ Uncalled bet (800) returned to 123456789476 *** SUMMARY *** Total pot 1750 | Rake 0 Board [Qc 2d 6c] -Seat 1: s0rrow (small blind) folded before Flop +Seat 1: Hero (small blind) folded before Flop Seat 2: MexicanGamb (big blind) folded on the Flop Seat 4: pokergott68 folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -7667,14 +7667,14 @@ Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) PokerStars Game #47658105879: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:16:36 ET Table '297808375 8' 9-max Seat #1 is the button -Seat 1: s0rrow (13381 in chips) +Seat 1: Hero (13381 in chips) Seat 2: MexicanGamb (6115 in chips) Seat 4: pokergott68 (645 in chips) Seat 5: Georgy80 (12142 in chips) Seat 6: 123456789476 (10791 in chips) Seat 8: Djkujuhfl (22893 in chips) Seat 9: stefan_bg_46 (7273 in chips) -s0rrow: posts the ante 50 +Hero: posts the ante 50 MexicanGamb: posts the ante 50 pokergott68: posts the ante 50 Georgy80: posts the ante 50 @@ -7684,12 +7684,12 @@ stefan_bg_46: posts the ante 50 MexicanGamb: posts small blind 200 pokergott68: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [Js 9c] +Dealt to Hero [Js 9c] Georgy80: calls 400 123456789476: raises 400 to 800 Djkujuhfl: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds MexicanGamb: folds pokergott68: folds Georgy80: calls 400 @@ -7705,7 +7705,7 @@ Georgy80: doesn't show hand *** SUMMARY *** Total pot 2550 | Rake 0 Board [Tc 7h 4h 4s] -Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 1: Hero (button) folded before Flop (didn't bet) Seat 2: MexicanGamb (small blind) folded before Flop Seat 4: pokergott68 (big blind) folded before Flop Seat 5: Georgy80 collected (2550) @@ -7717,14 +7717,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47658174164: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:18:17 ET Table '297808375 8' 9-max Seat #2 is the button -Seat 1: s0rrow (13331 in chips) +Seat 1: Hero (13331 in chips) Seat 2: MexicanGamb (5865 in chips) Seat 4: pokergott68 (195 in chips) Seat 5: Georgy80 (13842 in chips) Seat 6: 123456789476 (9941 in chips) Seat 8: Djkujuhfl (22843 in chips) Seat 9: stefan_bg_46 (7223 in chips) -s0rrow: posts the ante 50 +Hero: posts the ante 50 MexicanGamb: posts the ante 50 pokergott68: posts the ante 50 Georgy80: posts the ante 50 @@ -7734,31 +7734,31 @@ stefan_bg_46: posts the ante 50 pokergott68: posts small blind 145 and is all-in Georgy80: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [4h 8c] +Dealt to Hero [4h 8c] 123456789476: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: calls 400 +Hero: calls 400 MexicanGamb: folds Georgy80: checks *** FLOP *** [8h Jc Qd] Georgy80: checks -s0rrow: checks +Hero: checks *** TURN *** [8h Jc Qd] [4d] Georgy80: checks -s0rrow: bets 400 +Hero: bets 400 Georgy80: folds -Uncalled bet (400) returned to s0rrow +Uncalled bet (400) returned to Hero *** RIVER *** [8h Jc Qd 4d] [9d] *** SHOW DOWN *** -s0rrow: shows [4h 8c] (two pair, Eights and Fours) -s0rrow collected 510 from side pot +Hero: shows [4h 8c] (two pair, Eights and Fours) +Hero collected 510 from side pot pokergott68: shows [5h Td] (a straight, Eight to Queen) pokergott68 collected 785 from main pot *** SUMMARY *** Total pot 1295 Main pot 785. Side pot 510. | Rake 0 Board [8h Jc Qd 4d 9d] -Seat 1: s0rrow showed [4h 8c] and won (510) with two pair, Eights and Fours +Seat 1: Hero showed [4h 8c] and won (510) with two pair, Eights and Fours Seat 2: MexicanGamb (button) folded before Flop (didn't bet) Seat 4: pokergott68 (small blind) showed [5h Td] and won (785) with a straight, Eight to Queen Seat 5: Georgy80 (big blind) folded on the Turn @@ -7770,14 +7770,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47658203143: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:19:00 ET Table '297808375 8' 9-max Seat #4 is the button -Seat 1: s0rrow (13391 in chips) +Seat 1: Hero (13391 in chips) Seat 2: MexicanGamb (5815 in chips) Seat 4: pokergott68 (785 in chips) Seat 5: Georgy80 (13392 in chips) Seat 6: 123456789476 (9891 in chips) Seat 8: Djkujuhfl (22793 in chips) Seat 9: stefan_bg_46 (7173 in chips) -s0rrow: posts the ante 60 +Hero: posts the ante 60 MexicanGamb: posts the ante 60 pokergott68: posts the ante 60 Georgy80: posts the ante 60 @@ -7787,26 +7787,26 @@ stefan_bg_46: posts the ante 60 Georgy80: posts small blind 250 123456789476: posts big blind 500 *** HOLE CARDS *** -Dealt to s0rrow [Qs 9d] +Dealt to Hero [Qs 9d] Djkujuhfl: folds stefan_bg_46: folds -s0rrow: raises 1000 to 1500 +Hero: raises 1000 to 1500 MexicanGamb: folds pokergott68: calls 725 and is all-in Georgy80: folds 123456789476: folds -Uncalled bet (775) returned to s0rrow +Uncalled bet (775) returned to Hero *** FLOP *** [Ac 9s Jc] *** TURN *** [Ac 9s Jc] [4c] *** RIVER *** [Ac 9s Jc 4c] [Kh] *** SHOW DOWN *** -s0rrow: shows [Qs 9d] (a pair of Nines) +Hero: shows [Qs 9d] (a pair of Nines) pokergott68: shows [As 3s] (a pair of Aces) pokergott68 collected 2620 from pot *** SUMMARY *** Total pot 2620 | Rake 0 Board [Ac 9s Jc 4c Kh] -Seat 1: s0rrow showed [Qs 9d] and lost with a pair of Nines +Seat 1: Hero showed [Qs 9d] and lost with a pair of Nines Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 4: pokergott68 (button) showed [As 3s] and won (2620) with a pair of Aces Seat 5: Georgy80 (small blind) folded before Flop @@ -7818,14 +7818,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47658224354: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:19:31 ET Table '297808375 8' 9-max Seat #5 is the button -Seat 1: s0rrow (12606 in chips) +Seat 1: Hero (12606 in chips) Seat 2: MexicanGamb (5755 in chips) Seat 4: pokergott68 (2620 in chips) Seat 5: Georgy80 (13082 in chips) Seat 6: 123456789476 (9331 in chips) Seat 8: Djkujuhfl (22733 in chips) Seat 9: stefan_bg_46 (7113 in chips) -s0rrow: posts the ante 60 +Hero: posts the ante 60 MexicanGamb: posts the ante 60 pokergott68: posts the ante 60 Georgy80: posts the ante 60 @@ -7835,9 +7835,9 @@ stefan_bg_46: posts the ante 60 123456789476: posts small blind 250 Djkujuhfl: posts big blind 500 *** HOLE CARDS *** -Dealt to s0rrow [5s Qc] +Dealt to Hero [5s Qc] stefan_bg_46: raises 500 to 1000 -s0rrow: folds +Hero: folds MexicanGamb: folds pokergott68: folds Georgy80: folds @@ -7854,7 +7854,7 @@ stefan_bg_46 collected 4920 from pot *** SUMMARY *** Total pot 4920 | Rake 0 Board [7s Ks Js] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 4: pokergott68 folded before Flop (didn't bet) Seat 5: Georgy80 (button) folded before Flop (didn't bet) @@ -7866,14 +7866,14 @@ Seat 9: stefan_bg_46 collected (4920) PokerStars Game #47658274214: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:20:46 ET Table '297808375 8' 9-max Seat #6 is the button -Seat 1: s0rrow (12546 in chips) +Seat 1: Hero (12546 in chips) Seat 2: MexicanGamb (5695 in chips) Seat 4: pokergott68 (2560 in chips) Seat 5: Georgy80 (13022 in chips) Seat 6: 123456789476 (7771 in chips) Seat 8: Djkujuhfl (21173 in chips) Seat 9: stefan_bg_46 (10473 in chips) -s0rrow: posts the ante 60 +Hero: posts the ante 60 MexicanGamb: posts the ante 60 pokergott68: posts the ante 60 Georgy80: posts the ante 60 @@ -7883,8 +7883,8 @@ stefan_bg_46: posts the ante 60 Djkujuhfl: posts small blind 250 stefan_bg_46: posts big blind 500 *** HOLE CARDS *** -Dealt to s0rrow [2d 7h] -s0rrow: folds +Dealt to Hero [2d 7h] +Hero: folds MexicanGamb: folds pokergott68: folds Georgy80: calls 500 @@ -7903,7 +7903,7 @@ Georgy80: doesn't show hand *** SUMMARY *** Total pot 1920 | Rake 0 Board [Qc 9c 7d] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: MexicanGamb folded before Flop (didn't bet) Seat 4: pokergott68 folded before Flop (didn't bet) Seat 5: Georgy80 collected (1920) @@ -7915,14 +7915,14 @@ Seat 9: stefan_bg_46 (big blind) folded on the Flop PokerStars Game #47658305074: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:21:31 ET Table '297808375 8' 9-max Seat #8 is the button -Seat 1: s0rrow (12486 in chips) +Seat 1: Hero (12486 in chips) Seat 2: MexicanGamb (5635 in chips) Seat 4: pokergott68 (2500 in chips) Seat 5: Georgy80 (14382 in chips) Seat 6: 123456789476 (7711 in chips) Seat 8: Djkujuhfl (20613 in chips) Seat 9: stefan_bg_46 (9913 in chips) -s0rrow: posts the ante 60 +Hero: posts the ante 60 MexicanGamb: posts the ante 60 pokergott68: posts the ante 60 Georgy80: posts the ante 60 @@ -7930,9 +7930,9 @@ Georgy80: posts the ante 60 Djkujuhfl: posts the ante 60 stefan_bg_46: posts the ante 60 stefan_bg_46: posts small blind 250 -s0rrow: posts big blind 500 +Hero: posts big blind 500 *** HOLE CARDS *** -Dealt to s0rrow [5c 5s] +Dealt to Hero [5c 5s] MexicanGamb: raises 1000 to 1500 pokergott68: folds Georgy80: folds @@ -7942,22 +7942,22 @@ Djkujuhfl: folds Djkujuhfl is sitting out stefan_bg_46: folds Djkujuhfl has returned -s0rrow: raises 10926 to 12426 and is all-in +Hero: raises 10926 to 12426 and is all-in MexicanGamb: calls 4075 and is all-in -Uncalled bet (6851) returned to s0rrow +Uncalled bet (6851) returned to Hero *** FLOP *** [Tc 5h 7d] *** TURN *** [Tc 5h 7d] [As] *** RIVER *** [Tc 5h 7d As] [6c] *** SHOW DOWN *** -s0rrow: shows [5c 5s] (three of a kind, Fives) +Hero: shows [5c 5s] (three of a kind, Fives) MexicanGamb: shows [Qc Kc] (high card Ace) -s0rrow collected 11820 from pot -s0rrow wins the $0.25 bounty for eliminating MexicanGamb +Hero collected 11820 from pot +Hero wins the $0.25 bounty for eliminating MexicanGamb MexicanGamb finished the tournament in 13th place *** SUMMARY *** Total pot 11820 | Rake 0 Board [Tc 5h 7d As 6c] -Seat 1: s0rrow (big blind) showed [5c 5s] and won (11820) with three of a kind, Fives +Seat 1: Hero (big blind) showed [5c 5s] and won (11820) with three of a kind, Fives Seat 2: MexicanGamb showed [Qc Kc] and lost with high card Ace Seat 4: pokergott68 folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -7969,34 +7969,34 @@ Seat 9: stefan_bg_46 (small blind) folded before Flop PokerStars Game #47658350278: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:22:37 ET Table '297808375 8' 9-max Seat #9 is the button -Seat 1: s0rrow (18671 in chips) +Seat 1: Hero (18671 in chips) Seat 4: pokergott68 (2440 in chips) Seat 5: Georgy80 (14322 in chips) Seat 6: 123456789476 (7651 in chips) Seat 8: Djkujuhfl (20553 in chips) Seat 9: stefan_bg_46 (9603 in chips) -s0rrow: posts the ante 60 +Hero: posts the ante 60 pokergott68: posts the ante 60 Georgy80: posts the ante 60 123456789476: posts the ante 60 Djkujuhfl: posts the ante 60 stefan_bg_46: posts the ante 60 -s0rrow: posts small blind 250 +Hero: posts small blind 250 pokergott68: posts big blind 500 *** HOLE CARDS *** -Dealt to s0rrow [Qs 4s] +Dealt to Hero [Qs 4s] Georgy80: folds 123456789476: folds Djkujuhfl: raises 1500 to 2000 stefan_bg_46: folds -s0rrow: folds +Hero: folds pokergott68: folds Uncalled bet (1500) returned to Djkujuhfl Djkujuhfl collected 1610 from pot Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 1610 | Rake 0 -Seat 1: s0rrow (small blind) folded before Flop +Seat 1: Hero (small blind) folded before Flop Seat 4: pokergott68 (big blind) folded before Flop Seat 5: Georgy80 folded before Flop (didn't bet) Seat 6: 123456789476 folded before Flop (didn't bet) @@ -8007,13 +8007,13 @@ Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) PokerStars Game #47658362133: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:22:55 ET Table '297808375 8' 9-max Seat #1 is the button -Seat 1: s0rrow (18361 in chips) +Seat 1: Hero (18361 in chips) Seat 4: pokergott68 (1880 in chips) Seat 5: Georgy80 (14262 in chips) Seat 6: 123456789476 (7591 in chips) Seat 8: Djkujuhfl (21603 in chips) Seat 9: stefan_bg_46 (9543 in chips) -s0rrow: posts the ante 60 +Hero: posts the ante 60 pokergott68: posts the ante 60 Georgy80: posts the ante 60 123456789476: posts the ante 60 @@ -8022,11 +8022,11 @@ stefan_bg_46: posts the ante 60 pokergott68: posts small blind 250 Georgy80: posts big blind 500 *** HOLE CARDS *** -Dealt to s0rrow [6s 4s] +Dealt to Hero [6s 4s] 123456789476: folds Djkujuhfl: raises 1000 to 1500 stefan_bg_46: folds -s0rrow: folds +Hero: folds pokergott68: folds Georgy80: folds Uncalled bet (1000) returned to Djkujuhfl @@ -8034,7 +8034,7 @@ Djkujuhfl collected 1610 from pot Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 1610 | Rake 0 -Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 1: Hero (button) folded before Flop (didn't bet) Seat 4: pokergott68 (small blind) folded before Flop Seat 5: Georgy80 (big blind) folded before Flop Seat 6: 123456789476 folded before Flop (didn't bet) @@ -8045,13 +8045,13 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47658379474: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:23:20 ET Table '297808375 8' 9-max Seat #4 is the button -Seat 1: s0rrow (18301 in chips) +Seat 1: Hero (18301 in chips) Seat 4: pokergott68 (1570 in chips) Seat 5: Georgy80 (13702 in chips) Seat 6: 123456789476 (7531 in chips) Seat 8: Djkujuhfl (22653 in chips) Seat 9: stefan_bg_46 (9483 in chips) -s0rrow: posts the ante 60 +Hero: posts the ante 60 pokergott68: posts the ante 60 Georgy80: posts the ante 60 123456789476: posts the ante 60 @@ -8060,24 +8060,24 @@ stefan_bg_46: posts the ante 60 Georgy80: posts small blind 250 123456789476: posts big blind 500 *** HOLE CARDS *** -Dealt to s0rrow [Ah Kc] +Dealt to Hero [Ah Kc] Djkujuhfl: raises 1000 to 1500 stefan_bg_46: folds -s0rrow: raises 2000 to 3500 +Hero: raises 2000 to 3500 pokergott68: folds Georgy80: folds 123456789476: folds Djkujuhfl: calls 2000 *** FLOP *** [Th Ad Qh] Djkujuhfl: bets 4000 -s0rrow: raises 10741 to 14741 and is all-in +Hero: raises 10741 to 14741 and is all-in Djkujuhfl: folds -Uncalled bet (10741) returned to s0rrow -s0rrow collected 16110 from pot +Uncalled bet (10741) returned to Hero +Hero collected 16110 from pot *** SUMMARY *** Total pot 16110 | Rake 0 Board [Th Ad Qh] -Seat 1: s0rrow collected (16110) +Seat 1: Hero collected (16110) Seat 4: pokergott68 (button) folded before Flop (didn't bet) Seat 5: Georgy80 (small blind) folded before Flop Seat 6: 123456789476 (big blind) folded before Flop @@ -8088,13 +8088,13 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47658410311: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:24:06 ET Table '297808375 8' 9-max Seat #5 is the button -Seat 1: s0rrow (26851 in chips) +Seat 1: Hero (26851 in chips) Seat 4: pokergott68 (1510 in chips) Seat 5: Georgy80 (13392 in chips) Seat 6: 123456789476 (6971 in chips) Seat 8: Djkujuhfl (15093 in chips) Seat 9: stefan_bg_46 (9423 in chips) -s0rrow: posts the ante 60 +Hero: posts the ante 60 pokergott68: posts the ante 60 Georgy80: posts the ante 60 123456789476: posts the ante 60 @@ -8103,9 +8103,9 @@ stefan_bg_46: posts the ante 60 123456789476: posts small blind 250 Djkujuhfl: posts big blind 500 *** HOLE CARDS *** -Dealt to s0rrow [3d 6s] +Dealt to Hero [3d 6s] stefan_bg_46: folds -s0rrow: folds +Hero: folds pokergott68: folds Georgy80: folds 123456789476: raises 500 to 1000 @@ -8124,7 +8124,7 @@ Djkujuhfl wins the $0.25 bounty for eliminating 123456789476 *** SUMMARY *** Total pot 14182 | Rake 0 Board [Kd Ts 3s 9c 8d] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 4: pokergott68 folded before Flop (didn't bet) Seat 5: Georgy80 (button) folded before Flop (didn't bet) Seat 6: 123456789476 (small blind) showed [Qc 8c] and lost with a pair of Eights @@ -8135,45 +8135,45 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47658430135: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:24:35 ET Table '297808375 8' 9-max Seat #8 is the button -Seat 1: s0rrow (26791 in chips) +Seat 1: Hero (26791 in chips) Seat 4: pokergott68 (1450 in chips) Seat 5: Georgy80 (13332 in chips) Seat 8: Djkujuhfl (22304 in chips) Seat 9: stefan_bg_46 (9363 in chips) -s0rrow: posts the ante 60 +Hero: posts the ante 60 pokergott68: posts the ante 60 Georgy80: posts the ante 60 Djkujuhfl: posts the ante 60 stefan_bg_46: posts the ante 60 stefan_bg_46: posts small blind 250 -s0rrow: posts big blind 500 +Hero: posts big blind 500 *** HOLE CARDS *** -Dealt to s0rrow [4c 3c] +Dealt to Hero [4c 3c] pokergott68: folds Georgy80: folds Djkujuhfl: raises 1000 to 1500 stefan_bg_46: calls 1250 -s0rrow: calls 1000 +Hero: calls 1000 *** FLOP *** [Ac 7c 9s] stefan_bg_46: checks -s0rrow: checks +Hero: checks Djkujuhfl: bets 4000 stefan_bg_46: folds -s0rrow: calls 4000 +Hero: calls 4000 *** TURN *** [Ac 7c 9s] [9h] -s0rrow: checks +Hero: checks Djkujuhfl: checks *** RIVER *** [Ac 7c 9s 9h] [5c] -s0rrow: bets 7500 +Hero: bets 7500 Djkujuhfl: calls 7500 *** SHOW DOWN *** -s0rrow: shows [4c 3c] (a flush, Ace high) +Hero: shows [4c 3c] (a flush, Ace high) Djkujuhfl: mucks hand -s0rrow collected 27800 from pot +Hero collected 27800 from pot *** SUMMARY *** Total pot 27800 | Rake 0 Board [Ac 7c 9s 9h 5c] -Seat 1: s0rrow (big blind) showed [4c 3c] and won (27800) with a flush, Ace high +Seat 1: Hero (big blind) showed [4c 3c] and won (27800) with a flush, Ace high Seat 4: pokergott68 folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) Seat 8: Djkujuhfl (button) mucked [Kd Ah] @@ -8183,37 +8183,37 @@ Seat 9: stefan_bg_46 (small blind) folded on the Flop PokerStars Game #47658474121: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:25:40 ET Table '297808375 8' 9-max Seat #9 is the button -Seat 1: s0rrow (41531 in chips) +Seat 1: Hero (41531 in chips) Seat 4: pokergott68 (1390 in chips) Seat 5: Georgy80 (13272 in chips) Seat 8: Djkujuhfl (9244 in chips) Seat 9: stefan_bg_46 (7803 in chips) -s0rrow: posts the ante 60 +Hero: posts the ante 60 pokergott68: posts the ante 60 Georgy80: posts the ante 60 Djkujuhfl: posts the ante 60 stefan_bg_46: posts the ante 60 -s0rrow: posts small blind 250 +Hero: posts small blind 250 pokergott68: posts big blind 500 *** HOLE CARDS *** -Dealt to s0rrow [8h Kd] +Dealt to Hero [8h Kd] Georgy80: folds Djkujuhfl: folds stefan_bg_46: folds -s0rrow: raises 1000 to 1500 +Hero: raises 1000 to 1500 pokergott68: calls 830 and is all-in -Uncalled bet (170) returned to s0rrow +Uncalled bet (170) returned to Hero *** FLOP *** [5c 6h 8s] *** TURN *** [5c 6h 8s] [2h] *** RIVER *** [5c 6h 8s 2h] [5d] *** SHOW DOWN *** -s0rrow: shows [8h Kd] (two pair, Eights and Fives) +Hero: shows [8h Kd] (two pair, Eights and Fives) pokergott68: shows [As 9h] (a pair of Fives) -s0rrow collected 2960 from pot +Hero collected 2960 from pot *** SUMMARY *** Total pot 2960 | Rake 0 Board [5c 6h 8s 2h 5d] -Seat 1: s0rrow (small blind) showed [8h Kd] and won (2960) with two pair, Eights and Fives +Seat 1: Hero (small blind) showed [8h Kd] and won (2960) with two pair, Eights and Fives Seat 4: pokergott68 (big blind) showed [As 9h] and lost with a pair of Fives Seat 5: Georgy80 folded before Flop (didn't bet) Seat 8: Djkujuhfl folded before Flop (didn't bet) @@ -8223,7 +8223,7 @@ Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) PokerStars Game #47658505979: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:26:27 ET Table '297808375 7' 9-max Seat #4 is the button -Seat 1: s0rrow (43101 in chips) +Seat 1: Hero (43101 in chips) Seat 2: darsOK (48112 in chips) Seat 3: sptsfan56 (17456 in chips) Seat 4: MoIsonEx (19516 in chips) @@ -8232,7 +8232,7 @@ Seat 6: seric1975 (6860 in chips) Seat 7: Djkujuhfl (9184 in chips) Seat 8: AALuckyBucks (14816 in chips) Seat 9: stefan_bg_46 (7743 in chips) -s0rrow: posts the ante 60 +Hero: posts the ante 60 darsOK: posts the ante 60 sptsfan56: posts the ante 60 MoIsonEx: posts the ante 60 @@ -8243,10 +8243,10 @@ stefan_bg_46: posts the ante 60 seric1975: posts small blind 250 Djkujuhfl: posts big blind 500 *** HOLE CARDS *** -Dealt to s0rrow [Jc 7s] +Dealt to Hero [Jc 7s] AALuckyBucks: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds darsOK: calls 500 sptsfan56: folds MoIsonEx: folds @@ -8263,7 +8263,7 @@ Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 1980 | Rake 0 Board [Jh 9c 2s] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK folded on the Flop Seat 3: sptsfan56 folded before Flop (didn't bet) Seat 4: MoIsonEx (button) folded before Flop (didn't bet) @@ -8276,7 +8276,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47658536512: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:27:12 ET Table '297808375 7' 9-max Seat #6 is the button -Seat 1: s0rrow (43041 in chips) +Seat 1: Hero (43041 in chips) Seat 2: darsOK (47552 in chips) Seat 3: sptsfan56 (17396 in chips) Seat 4: MoIsonEx (19456 in chips) @@ -8285,7 +8285,7 @@ Seat 6: seric1975 (6300 in chips) Seat 7: Djkujuhfl (10604 in chips) Seat 8: AALuckyBucks (14756 in chips) Seat 9: stefan_bg_46 (7683 in chips) -s0rrow: posts the ante 60 +Hero: posts the ante 60 darsOK: posts the ante 60 sptsfan56: posts the ante 60 MoIsonEx: posts the ante 60 @@ -8297,9 +8297,9 @@ stefan_bg_46: posts the ante 60 Djkujuhfl: posts small blind 250 AALuckyBucks: posts big blind 500 *** HOLE CARDS *** -Dealt to s0rrow [Qh 9c] +Dealt to Hero [Qh 9c] stefan_bg_46: folds -s0rrow: folds +Hero: folds darsOK: raises 3000 to 3500 sptsfan56: folds MoIsonEx: folds @@ -8312,7 +8312,7 @@ darsOK collected 1790 from pot darsOK: doesn't show hand *** SUMMARY *** Total pot 1790 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK collected (1790) Seat 3: sptsfan56 folded before Flop (didn't bet) Seat 4: MoIsonEx folded before Flop (didn't bet) @@ -8326,7 +8326,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47658557149: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:27:42 ET Table '297808375 7' 9-max Seat #7 is the button -Seat 1: s0rrow (42981 in chips) +Seat 1: Hero (42981 in chips) Seat 2: darsOK (48782 in chips) Seat 3: sptsfan56 (17336 in chips) Seat 4: MoIsonEx (19396 in chips) @@ -8335,7 +8335,7 @@ Seat 6: seric1975 (6240 in chips) Seat 7: Djkujuhfl (10294 in chips) Seat 8: AALuckyBucks (14196 in chips) Seat 9: stefan_bg_46 (7623 in chips) -s0rrow: posts the ante 60 +Hero: posts the ante 60 darsOK: posts the ante 60 sptsfan56: posts the ante 60 MoIsonEx: posts the ante 60 @@ -8347,8 +8347,8 @@ stefan_bg_46: posts the ante 60 AALuckyBucks: posts small blind 250 stefan_bg_46: posts big blind 500 *** HOLE CARDS *** -Dealt to s0rrow [9h 8d] -s0rrow: folds +Dealt to Hero [9h 8d] +Hero: folds darsOK: raises 500 to 1000 sptsfan56: calls 1000 MoIsonEx: folds @@ -8376,7 +8376,7 @@ sptsfan56 collected 24290 from pot *** SUMMARY *** Total pot 24290 | Rake 0 Board [5d Ks Qs Ac 4c] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK showed [Th Ad] and lost with a pair of Aces Seat 3: sptsfan56 showed [5h Kh] and won (24290) with two pair, Kings and Fives Seat 4: MoIsonEx folded before Flop (didn't bet) @@ -8390,7 +8390,7 @@ Seat 9: stefan_bg_46 (big blind) folded before Flop PokerStars Game #47658591764: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:28:33 ET Table '297808375 7' 9-max Seat #8 is the button -Seat 1: s0rrow (42921 in chips) +Seat 1: Hero (42921 in chips) Seat 2: darsOK (37222 in chips) Seat 3: sptsfan56 (30066 in chips) Seat 4: MoIsonEx (19336 in chips) @@ -8399,7 +8399,7 @@ Seat 6: seric1975 (6180 in chips) Seat 7: Djkujuhfl (10234 in chips) Seat 8: AALuckyBucks (13886 in chips) Seat 9: stefan_bg_46 (7063 in chips) -s0rrow: posts the ante 60 +Hero: posts the ante 60 darsOK: posts the ante 60 sptsfan56: posts the ante 60 MoIsonEx: posts the ante 60 @@ -8409,9 +8409,9 @@ Djkujuhfl: posts the ante 60 AALuckyBucks: posts the ante 60 stefan_bg_46: posts the ante 60 stefan_bg_46: posts small blind 250 -s0rrow: posts big blind 500 +Hero: posts big blind 500 *** HOLE CARDS *** -Dealt to s0rrow [Td Ac] +Dealt to Hero [Td Ac] darsOK: calls 500 sptsfan56: folds MoIsonEx: folds @@ -8420,21 +8420,21 @@ seric1975: folds Djkujuhfl: folds AALuckyBucks: folds stefan_bg_46: raises 500 to 1000 -s0rrow: calls 500 +Hero: calls 500 darsOK: calls 500 *** FLOP *** [3c 3h 9h] stefan_bg_46: checks -s0rrow: checks +Hero: checks darsOK: bets 4500 stefan_bg_46: folds -s0rrow: folds +Hero: folds Uncalled bet (4500) returned to darsOK darsOK collected 3540 from pot darsOK: doesn't show hand *** SUMMARY *** Total pot 3540 | Rake 0 Board [3c 3h 9h] -Seat 1: s0rrow (big blind) folded on the Flop +Seat 1: Hero (big blind) folded on the Flop Seat 2: darsOK collected (3540) Seat 3: sptsfan56 folded before Flop (didn't bet) Seat 4: MoIsonEx folded before Flop (didn't bet) @@ -8448,7 +8448,7 @@ Seat 9: stefan_bg_46 (small blind) folded on the Flop PokerStars Game #47658622167: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:29:18 ET Table '297808375 7' 9-max Seat #9 is the button -Seat 1: s0rrow (41861 in chips) +Seat 1: Hero (41861 in chips) Seat 2: darsOK (39702 in chips) Seat 3: sptsfan56 (30006 in chips) Seat 4: MoIsonEx (19276 in chips) @@ -8457,7 +8457,7 @@ Seat 6: seric1975 (6120 in chips) Seat 7: Djkujuhfl (10174 in chips) Seat 8: AALuckyBucks (13826 in chips) Seat 9: stefan_bg_46 (6003 in chips) -s0rrow: posts the ante 70 +Hero: posts the ante 70 darsOK: posts the ante 70 sptsfan56: posts the ante 70 MoIsonEx: posts the ante 70 @@ -8466,10 +8466,10 @@ seric1975: posts the ante 70 Djkujuhfl: posts the ante 70 AALuckyBucks: posts the ante 70 stefan_bg_46: posts the ante 70 -s0rrow: posts small blind 300 +Hero: posts small blind 300 darsOK: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [6d 6s] +Dealt to Hero [6d 6s] sptsfan56: folds MoIsonEx: folds Georgy80: folds @@ -8477,27 +8477,27 @@ seric1975: folds Djkujuhfl: folds AALuckyBucks: folds stefan_bg_46: folds -s0rrow: calls 300 +Hero: calls 300 darsOK: checks *** FLOP *** [9c 2h 4d] -s0rrow: checks +Hero: checks darsOK: bets 600 -s0rrow: calls 600 +Hero: calls 600 *** TURN *** [9c 2h 4d] [7h] -s0rrow: checks +Hero: checks darsOK: bets 600 -s0rrow: calls 600 +Hero: calls 600 *** RIVER *** [9c 2h 4d 7h] [Qs] -s0rrow: checks +Hero: checks darsOK: checks *** SHOW DOWN *** -s0rrow: shows [6d 6s] (a pair of Sixes) +Hero: shows [6d 6s] (a pair of Sixes) darsOK: mucks hand -s0rrow collected 4230 from pot +Hero collected 4230 from pot *** SUMMARY *** Total pot 4230 | Rake 0 Board [9c 2h 4d 7h Qs] -Seat 1: s0rrow (small blind) showed [6d 6s] and won (4230) with a pair of Sixes +Seat 1: Hero (small blind) showed [6d 6s] and won (4230) with a pair of Sixes Seat 2: darsOK (big blind) mucked [8c 2c] Seat 3: sptsfan56 folded before Flop (didn't bet) Seat 4: MoIsonEx folded before Flop (didn't bet) @@ -8511,7 +8511,7 @@ Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) PokerStars Game #47658653603: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:30:03 ET Table '297808375 7' 9-max Seat #1 is the button -Seat 1: s0rrow (44221 in chips) +Seat 1: Hero (44221 in chips) Seat 2: darsOK (37832 in chips) Seat 3: sptsfan56 (29936 in chips) Seat 4: MoIsonEx (19206 in chips) @@ -8520,7 +8520,7 @@ Seat 6: seric1975 (6050 in chips) Seat 7: Djkujuhfl (10104 in chips) Seat 8: AALuckyBucks (13756 in chips) Seat 9: stefan_bg_46 (5933 in chips) -s0rrow: posts the ante 70 +Hero: posts the ante 70 darsOK: posts the ante 70 sptsfan56: posts the ante 70 MoIsonEx: posts the ante 70 @@ -8532,14 +8532,14 @@ stefan_bg_46: posts the ante 70 darsOK: posts small blind 300 sptsfan56: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [Ad 4s] +Dealt to Hero [Ad 4s] MoIsonEx: folds Georgy80: folds seric1975: folds Djkujuhfl: raises 1399 to 1999 AALuckyBucks: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds darsOK: folds sptsfan56: folds Uncalled bet (1399) returned to Djkujuhfl @@ -8547,7 +8547,7 @@ Djkujuhfl collected 2130 from pot Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 2130 | Rake 0 -Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 1: Hero (button) folded before Flop (didn't bet) Seat 2: darsOK (small blind) folded before Flop Seat 3: sptsfan56 (big blind) folded before Flop Seat 4: MoIsonEx folded before Flop (didn't bet) @@ -8561,7 +8561,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47658674375: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:30:33 ET Table '297808375 7' 9-max Seat #2 is the button -Seat 1: s0rrow (44151 in chips) +Seat 1: Hero (44151 in chips) Seat 2: darsOK (37462 in chips) Seat 3: sptsfan56 (29266 in chips) Seat 4: MoIsonEx (19136 in chips) @@ -8570,7 +8570,7 @@ Seat 6: seric1975 (5980 in chips) Seat 7: Djkujuhfl (11564 in chips) Seat 8: AALuckyBucks (13686 in chips) Seat 9: stefan_bg_46 (5863 in chips) -s0rrow: posts the ante 70 +Hero: posts the ante 70 darsOK: posts the ante 70 sptsfan56: posts the ante 70 MoIsonEx: posts the ante 70 @@ -8582,13 +8582,13 @@ stefan_bg_46: posts the ante 70 sptsfan56: posts small blind 300 MoIsonEx: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [Ah 8d] +Dealt to Hero [Ah 8d] Georgy80: folds seric1975: folds Djkujuhfl: folds AALuckyBucks: folds stefan_bg_46: raises 600 to 1200 -s0rrow: folds +Hero: folds darsOK: folds sptsfan56: folds MoIsonEx: folds @@ -8596,7 +8596,7 @@ Uncalled bet (600) returned to stefan_bg_46 stefan_bg_46 collected 2130 from pot *** SUMMARY *** Total pot 2130 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK (button) folded before Flop (didn't bet) Seat 3: sptsfan56 (small blind) folded before Flop Seat 4: MoIsonEx (big blind) folded before Flop @@ -8610,7 +8610,7 @@ Seat 9: stefan_bg_46 collected (2130) PokerStars Game #47658686418: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:30:50 ET Table '297808375 7' 9-max Seat #3 is the button -Seat 1: s0rrow (44081 in chips) +Seat 1: Hero (44081 in chips) Seat 2: darsOK (37392 in chips) Seat 3: sptsfan56 (28896 in chips) Seat 4: MoIsonEx (18466 in chips) @@ -8619,7 +8619,7 @@ Seat 6: seric1975 (5910 in chips) Seat 7: Djkujuhfl (11494 in chips) Seat 8: AALuckyBucks (13616 in chips) Seat 9: stefan_bg_46 (7323 in chips) -s0rrow: posts the ante 70 +Hero: posts the ante 70 darsOK: posts the ante 70 sptsfan56: posts the ante 70 MoIsonEx: posts the ante 70 @@ -8631,12 +8631,12 @@ stefan_bg_46: posts the ante 70 MoIsonEx: posts small blind 300 Georgy80: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [8d 9h] +Dealt to Hero [8d 9h] seric1975: folds Djkujuhfl: folds AALuckyBucks: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds darsOK: folds sptsfan56: folds MoIsonEx: folds @@ -8645,7 +8645,7 @@ Georgy80 collected 1230 from pot Georgy80: doesn't show hand *** SUMMARY *** Total pot 1230 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK folded before Flop (didn't bet) Seat 3: sptsfan56 (button) folded before Flop (didn't bet) Seat 4: MoIsonEx (small blind) folded before Flop @@ -8659,7 +8659,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47658701573: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:31:13 ET Table '297808375 7' 9-max Seat #4 is the button -Seat 1: s0rrow (44011 in chips) +Seat 1: Hero (44011 in chips) Seat 2: darsOK (37322 in chips) Seat 3: sptsfan56 (28826 in chips) Seat 4: MoIsonEx (18096 in chips) @@ -8668,7 +8668,7 @@ Seat 6: seric1975 (5840 in chips) Seat 7: Djkujuhfl (11424 in chips) Seat 8: AALuckyBucks (13546 in chips) Seat 9: stefan_bg_46 (7253 in chips) -s0rrow: posts the ante 70 +Hero: posts the ante 70 darsOK: posts the ante 70 sptsfan56: posts the ante 70 MoIsonEx: posts the ante 70 @@ -8680,11 +8680,11 @@ stefan_bg_46: posts the ante 70 Georgy80: posts small blind 300 seric1975: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [3c 4c] +Dealt to Hero [3c 4c] Djkujuhfl: folds AALuckyBucks: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds darsOK: folds sptsfan56: raises 1800 to 2400 MoIsonEx: folds @@ -8695,7 +8695,7 @@ sptsfan56 collected 2130 from pot sptsfan56: doesn't show hand *** SUMMARY *** Total pot 2130 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK folded before Flop (didn't bet) Seat 3: sptsfan56 collected (2130) Seat 4: MoIsonEx (button) folded before Flop (didn't bet) @@ -8709,7 +8709,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47658722448: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:31:42 ET Table '297808375 7' 9-max Seat #5 is the button -Seat 1: s0rrow (43941 in chips) +Seat 1: Hero (43941 in chips) Seat 2: darsOK (37252 in chips) Seat 3: sptsfan56 (30286 in chips) Seat 4: MoIsonEx (18026 in chips) @@ -8718,7 +8718,7 @@ Seat 6: seric1975 (5170 in chips) Seat 7: Djkujuhfl (11354 in chips) Seat 8: AALuckyBucks (13476 in chips) Seat 9: stefan_bg_46 (7183 in chips) -s0rrow: posts the ante 70 +Hero: posts the ante 70 darsOK: posts the ante 70 sptsfan56: posts the ante 70 MoIsonEx: posts the ante 70 @@ -8730,10 +8730,10 @@ stefan_bg_46: posts the ante 70 seric1975: posts small blind 300 Djkujuhfl: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [Ah Qc] +Dealt to Hero [Ah Qc] AALuckyBucks: folds stefan_bg_46: folds -s0rrow: raises 1200 to 1800 +Hero: raises 1200 to 1800 darsOK: folds sptsfan56: calls 1800 MoIsonEx: folds @@ -8741,23 +8741,23 @@ Georgy80: folds seric1975: folds Djkujuhfl: folds *** FLOP *** [Js Kh Ts] -s0rrow: checks +Hero: checks sptsfan56: bets 3000 -s0rrow: raises 5400 to 8400 +Hero: raises 5400 to 8400 sptsfan56: raises 20016 to 28416 and is all-in -s0rrow: calls 20016 +Hero: calls 20016 *** TURN *** [Js Kh Ts] [2d] *** RIVER *** [Js Kh Ts 2d] [3h] *** SHOW DOWN *** -s0rrow: shows [Ah Qc] (a straight, Ten to Ace) +Hero: shows [Ah Qc] (a straight, Ten to Ace) sptsfan56: shows [Tc Jc] (two pair, Jacks and Tens) -s0rrow collected 61962 from pot -s0rrow wins the $0.25 bounty for eliminating sptsfan56 +Hero collected 61962 from pot +Hero wins the $0.25 bounty for eliminating sptsfan56 sptsfan56 finished the tournament in 9th place and received $2.70. *** SUMMARY *** Total pot 61962 | Rake 0 Board [Js Kh Ts 2d 3h] -Seat 1: s0rrow showed [Ah Qc] and won (61962) with a straight, Ten to Ace +Seat 1: Hero showed [Ah Qc] and won (61962) with a straight, Ten to Ace Seat 2: darsOK folded before Flop (didn't bet) Seat 3: sptsfan56 showed [Tc Jc] and lost with two pair, Jacks and Tens Seat 4: MoIsonEx folded before Flop (didn't bet) @@ -8771,7 +8771,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47658761782: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:32:39 ET Table '297808375 7' 9-max Seat #6 is the button -Seat 1: s0rrow (75617 in chips) +Seat 1: Hero (75617 in chips) Seat 2: darsOK (37182 in chips) Seat 4: MoIsonEx (17956 in chips) Seat 5: Georgy80 (13242 in chips) @@ -8779,7 +8779,7 @@ Seat 6: seric1975 (4800 in chips) Seat 7: Djkujuhfl (10684 in chips) Seat 8: AALuckyBucks (13406 in chips) Seat 9: stefan_bg_46 (7113 in chips) -s0rrow: posts the ante 70 +Hero: posts the ante 70 darsOK: posts the ante 70 MoIsonEx: posts the ante 70 Georgy80: posts the ante 70 @@ -8790,9 +8790,9 @@ stefan_bg_46: posts the ante 70 Djkujuhfl: posts small blind 300 AALuckyBucks: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [7s 4d] +Dealt to Hero [7s 4d] stefan_bg_46: folds -s0rrow: folds +Hero: folds darsOK said, "nice" darsOK: folds MoIsonEx: folds @@ -8805,7 +8805,7 @@ Djkujuhfl collected 1760 from pot Djkujuhfl: doesn't show hand *** SUMMARY *** Total pot 1760 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK folded before Flop (didn't bet) Seat 4: MoIsonEx folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -8818,7 +8818,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47658780867: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:33:07 ET Table '297808375 7' 9-max Seat #7 is the button -Seat 1: s0rrow (75547 in chips) +Seat 1: Hero (75547 in chips) Seat 2: darsOK (37112 in chips) Seat 4: MoIsonEx (17886 in chips) Seat 5: Georgy80 (13172 in chips) @@ -8826,7 +8826,7 @@ Seat 6: seric1975 (4730 in chips) Seat 7: Djkujuhfl (11774 in chips) Seat 8: AALuckyBucks (12736 in chips) Seat 9: stefan_bg_46 (7043 in chips) -s0rrow: posts the ante 70 +Hero: posts the ante 70 darsOK: posts the ante 70 MoIsonEx: posts the ante 70 Georgy80: posts the ante 70 @@ -8837,8 +8837,8 @@ stefan_bg_46: posts the ante 70 AALuckyBucks: posts small blind 300 stefan_bg_46: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [Qh 6c] -s0rrow: folds +Dealt to Hero [Qh 6c] +Hero: folds darsOK: raises 600 to 1200 MoIsonEx: raises 2400 to 3600 Georgy80: folds @@ -8857,7 +8857,7 @@ MoIsonEx: doesn't show hand *** SUMMARY *** Total pot 8660 | Rake 0 Board [5d Jd 4c] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK folded on the Flop Seat 4: MoIsonEx collected (8660) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -8870,7 +8870,7 @@ Seat 9: stefan_bg_46 (big blind) folded before Flop PokerStars Game #47658806411: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:33:44 ET Table '297808375 7' 9-max Seat #8 is the button -Seat 1: s0rrow (75477 in chips) +Seat 1: Hero (75477 in chips) Seat 2: darsOK (33442 in chips) Seat 4: MoIsonEx (22876 in chips) Seat 5: Georgy80 (13102 in chips) @@ -8878,7 +8878,7 @@ Seat 6: seric1975 (4660 in chips) Seat 7: Djkujuhfl (11704 in chips) Seat 8: AALuckyBucks (12366 in chips) Seat 9: stefan_bg_46 (6373 in chips) -s0rrow: posts the ante 70 +Hero: posts the ante 70 darsOK: posts the ante 70 MoIsonEx: posts the ante 70 Georgy80: posts the ante 70 @@ -8887,9 +8887,9 @@ Djkujuhfl: posts the ante 70 AALuckyBucks: posts the ante 70 stefan_bg_46: posts the ante 70 stefan_bg_46: posts small blind 300 -s0rrow: posts big blind 600 +Hero: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [2s 3h] +Dealt to Hero [2s 3h] darsOK: raises 1200 to 1800 MoIsonEx: folds Georgy80: folds @@ -8897,12 +8897,12 @@ seric1975: folds Djkujuhfl: folds AALuckyBucks: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds Uncalled bet (1200) returned to darsOK darsOK collected 2060 from pot *** SUMMARY *** Total pot 2060 | Rake 0 -Seat 1: s0rrow (big blind) folded before Flop +Seat 1: Hero (big blind) folded before Flop Seat 2: darsOK collected (2060) Seat 4: MoIsonEx folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -8915,7 +8915,7 @@ Seat 9: stefan_bg_46 (small blind) folded before Flop PokerStars Game #47658817059: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:34:00 ET Table '297808375 7' 9-max Seat #9 is the button -Seat 1: s0rrow (74807 in chips) +Seat 1: Hero (74807 in chips) Seat 2: darsOK (34832 in chips) Seat 4: MoIsonEx (22806 in chips) Seat 5: Georgy80 (13032 in chips) @@ -8923,7 +8923,7 @@ Seat 6: seric1975 (4590 in chips) Seat 7: Djkujuhfl (11634 in chips) Seat 8: AALuckyBucks (12296 in chips) Seat 9: stefan_bg_46 (6003 in chips) -s0rrow: posts the ante 70 +Hero: posts the ante 70 darsOK: posts the ante 70 MoIsonEx: posts the ante 70 Georgy80: posts the ante 70 @@ -8931,24 +8931,24 @@ seric1975: posts the ante 70 Djkujuhfl: posts the ante 70 AALuckyBucks: posts the ante 70 stefan_bg_46: posts the ante 70 -s0rrow: posts small blind 300 +Hero: posts small blind 300 darsOK: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [4c Kd] +Dealt to Hero [4c Kd] MoIsonEx: folds Georgy80: folds seric1975: calls 600 Djkujuhfl: folds AALuckyBucks: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds darsOK: raises 3600 to 4200 seric1975: folds Uncalled bet (3600) returned to darsOK darsOK collected 2060 from pot *** SUMMARY *** Total pot 2060 | Rake 0 -Seat 1: s0rrow (small blind) folded before Flop +Seat 1: Hero (small blind) folded before Flop Seat 2: darsOK (big blind) collected (2060) Seat 4: MoIsonEx folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -8961,7 +8961,7 @@ Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) PokerStars Game #47658835690: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:34:27 ET Table '297808375 7' 9-max Seat #1 is the button -Seat 1: s0rrow (74437 in chips) +Seat 1: Hero (74437 in chips) Seat 2: darsOK (36222 in chips) Seat 4: MoIsonEx (22736 in chips) Seat 5: Georgy80 (12962 in chips) @@ -8969,7 +8969,7 @@ Seat 6: seric1975 (3920 in chips) Seat 7: Djkujuhfl (11564 in chips) Seat 8: AALuckyBucks (12226 in chips) Seat 9: stefan_bg_46 (5933 in chips) -s0rrow: posts the ante 70 +Hero: posts the ante 70 darsOK: posts the ante 70 MoIsonEx: posts the ante 70 Georgy80: posts the ante 70 @@ -8980,13 +8980,13 @@ stefan_bg_46: posts the ante 70 darsOK: posts small blind 300 MoIsonEx: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [8d 6s] +Dealt to Hero [8d 6s] Georgy80: folds seric1975: folds Djkujuhfl: folds AALuckyBucks: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds darsOK: calls 300 MoIsonEx: checks *** FLOP *** [4c Ts 9c] @@ -8997,7 +8997,7 @@ darsOK collected 1760 from pot *** SUMMARY *** Total pot 1760 | Rake 0 Board [4c Ts 9c] -Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 1: Hero (button) folded before Flop (didn't bet) Seat 2: darsOK (small blind) collected (1760) Seat 4: MoIsonEx (big blind) folded on the Flop Seat 5: Georgy80 folded before Flop (didn't bet) @@ -9010,7 +9010,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47658854489: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:34:55 ET Table '297808375 7' 9-max Seat #2 is the button -Seat 1: s0rrow (74367 in chips) +Seat 1: Hero (74367 in chips) Seat 2: darsOK (37312 in chips) Seat 4: MoIsonEx (22066 in chips) Seat 5: Georgy80 (12892 in chips) @@ -9018,7 +9018,7 @@ Seat 6: seric1975 (3850 in chips) Seat 7: Djkujuhfl (11494 in chips) Seat 8: AALuckyBucks (12156 in chips) Seat 9: stefan_bg_46 (5863 in chips) -s0rrow: posts the ante 70 +Hero: posts the ante 70 darsOK: posts the ante 70 MoIsonEx: posts the ante 70 Georgy80: posts the ante 70 @@ -9029,12 +9029,12 @@ stefan_bg_46: posts the ante 70 MoIsonEx: posts small blind 300 Georgy80: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [8d Ac] +Dealt to Hero [8d Ac] seric1975: folds Djkujuhfl: folds AALuckyBucks: raises 11486 to 12086 and is all-in stefan_bg_46: folds -s0rrow: folds +Hero: folds darsOK: folds MoIsonEx: folds Georgy80: folds @@ -9043,7 +9043,7 @@ AALuckyBucks collected 2060 from pot AALuckyBucks: doesn't show hand *** SUMMARY *** Total pot 2060 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK (button) folded before Flop (didn't bet) Seat 4: MoIsonEx (small blind) folded before Flop Seat 5: Georgy80 (big blind) folded before Flop @@ -9056,7 +9056,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47658875388: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:35:19 ET Table '297808375 7' 9-max Seat #4 is the button -Seat 1: s0rrow (74297 in chips) +Seat 1: Hero (74297 in chips) Seat 2: darsOK (37242 in chips) Seat 4: MoIsonEx (21696 in chips) Seat 5: Georgy80 (12222 in chips) @@ -9064,7 +9064,7 @@ Seat 6: seric1975 (3780 in chips) Seat 7: Djkujuhfl (11424 in chips) Seat 8: AALuckyBucks (13546 in chips) Seat 9: stefan_bg_46 (5793 in chips) -s0rrow: posts the ante 70 +Hero: posts the ante 70 darsOK: posts the ante 70 MoIsonEx: posts the ante 70 Georgy80: posts the ante 70 @@ -9075,11 +9075,11 @@ stefan_bg_46: posts the ante 70 Georgy80: posts small blind 300 seric1975: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [2c Th] +Dealt to Hero [2c Th] Djkujuhfl: folds AALuckyBucks: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds darsOK: calls 600 MoIsonEx: folds Georgy80: folds @@ -9099,7 +9099,7 @@ darsOK collected 2060 from pot *** SUMMARY *** Total pot 2060 | Rake 0 Board [Js 9c Td Ah Qs] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK collected (2060) Seat 4: MoIsonEx (button) folded before Flop (didn't bet) Seat 5: Georgy80 (small blind) folded before Flop @@ -9112,7 +9112,7 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47658925172: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:36:30 ET Table '297808375 7' 9-max Seat #5 is the button -Seat 1: s0rrow (74227 in chips) +Seat 1: Hero (74227 in chips) Seat 2: darsOK (38632 in chips) Seat 4: MoIsonEx (21626 in chips) Seat 5: Georgy80 (11852 in chips) @@ -9120,7 +9120,7 @@ Seat 6: seric1975 (3110 in chips) Seat 7: Djkujuhfl (11354 in chips) Seat 8: AALuckyBucks (13476 in chips) Seat 9: stefan_bg_46 (5723 in chips) -s0rrow: posts the ante 70 +Hero: posts the ante 70 darsOK: posts the ante 70 MoIsonEx: posts the ante 70 Georgy80: posts the ante 70 @@ -9131,10 +9131,10 @@ stefan_bg_46: posts the ante 70 seric1975: posts small blind 300 Djkujuhfl: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [Qs 3c] +Dealt to Hero [Qs 3c] AALuckyBucks: folds stefan_bg_46: calls 600 -s0rrow: folds +Hero: folds darsOK: raises 600 to 1200 MoIsonEx: folds Georgy80: folds @@ -9158,7 +9158,7 @@ Djkujuhfl finished the tournament in 8th place and received $3.24. *** SUMMARY *** Total pot 24028 | Rake 0 Board [Jc 3h Kh 4c 4d] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK showed [Qh Kd] and won (24028) with two pair, Kings and Fours Seat 4: MoIsonEx folded before Flop (didn't bet) Seat 5: Georgy80 (button) folded before Flop (didn't bet) @@ -9171,14 +9171,14 @@ Seat 9: stefan_bg_46 folded before Flop PokerStars Game #47658985166: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:37:51 ET Table '297808375 7' 9-max Seat #6 is the button -Seat 1: s0rrow (74157 in chips) +Seat 1: Hero (74157 in chips) Seat 2: darsOK (51306 in chips) Seat 4: MoIsonEx (21556 in chips) Seat 5: Georgy80 (11782 in chips) Seat 6: seric1975 (2740 in chips) Seat 8: AALuckyBucks (13406 in chips) Seat 9: stefan_bg_46 (5053 in chips) -s0rrow: posts the ante 70 +Hero: posts the ante 70 darsOK: posts the ante 70 MoIsonEx: posts the ante 70 Georgy80: posts the ante 70 @@ -9188,19 +9188,19 @@ stefan_bg_46: posts the ante 70 AALuckyBucks: posts small blind 300 stefan_bg_46: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [4s 4c] -s0rrow: raises 1200 to 1800 +Dealt to Hero [4s 4c] +Hero: raises 1200 to 1800 darsOK: folds MoIsonEx: folds Georgy80: folds seric1975: folds AALuckyBucks: folds stefan_bg_46: folds -Uncalled bet (1200) returned to s0rrow -s0rrow collected 1990 from pot +Uncalled bet (1200) returned to Hero +Hero collected 1990 from pot *** SUMMARY *** Total pot 1990 | Rake 0 -Seat 1: s0rrow collected (1990) +Seat 1: Hero collected (1990) Seat 2: darsOK folded before Flop (didn't bet) Seat 4: MoIsonEx folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -9212,14 +9212,14 @@ Seat 9: stefan_bg_46 (big blind) folded before Flop PokerStars Game #47658999400: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:38:10 ET Table '297808375 7' 9-max Seat #8 is the button -Seat 1: s0rrow (75477 in chips) +Seat 1: Hero (75477 in chips) Seat 2: darsOK (51236 in chips) Seat 4: MoIsonEx (21486 in chips) Seat 5: Georgy80 (11712 in chips) Seat 6: seric1975 (2670 in chips) Seat 8: AALuckyBucks (13036 in chips) Seat 9: stefan_bg_46 (4383 in chips) -s0rrow: posts the ante 70 +Hero: posts the ante 70 darsOK: posts the ante 70 MoIsonEx: posts the ante 70 Georgy80: posts the ante 70 @@ -9227,27 +9227,27 @@ seric1975: posts the ante 70 AALuckyBucks: posts the ante 70 stefan_bg_46: posts the ante 70 stefan_bg_46: posts small blind 300 -s0rrow: posts big blind 600 +Hero: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [7d 3h] +Dealt to Hero [7d 3h] darsOK: calls 600 MoIsonEx: folds Georgy80: folds seric1975: folds AALuckyBucks: folds stefan_bg_46: folds -s0rrow: checks +Hero: checks *** FLOP *** [Ks Qd Kd] -s0rrow: checks +Hero: checks darsOK: bets 600 -s0rrow: folds +Hero: folds Uncalled bet (600) returned to darsOK darsOK collected 1990 from pot darsOK: doesn't show hand *** SUMMARY *** Total pot 1990 | Rake 0 Board [Ks Qd Kd] -Seat 1: s0rrow (big blind) folded on the Flop +Seat 1: Hero (big blind) folded on the Flop Seat 2: darsOK collected (1990) Seat 4: MoIsonEx folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -9259,37 +9259,37 @@ Seat 9: stefan_bg_46 (small blind) folded before Flop PokerStars Game #47659019101: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:38:37 ET Table '297808375 7' 9-max Seat #9 is the button -Seat 1: s0rrow (74807 in chips) +Seat 1: Hero (74807 in chips) Seat 2: darsOK (52556 in chips) Seat 4: MoIsonEx (21416 in chips) Seat 5: Georgy80 (11642 in chips) Seat 6: seric1975 (2600 in chips) Seat 8: AALuckyBucks (12966 in chips) Seat 9: stefan_bg_46 (4013 in chips) -s0rrow: posts the ante 70 +Hero: posts the ante 70 darsOK: posts the ante 70 MoIsonEx: posts the ante 70 Georgy80: posts the ante 70 seric1975: posts the ante 70 AALuckyBucks: posts the ante 70 stefan_bg_46: posts the ante 70 -s0rrow: posts small blind 300 +Hero: posts small blind 300 darsOK: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [Ad 7h] +Dealt to Hero [Ad 7h] MoIsonEx: raises 1200 to 1800 Georgy80: folds seric1975: folds AALuckyBucks: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds darsOK: folds Uncalled bet (1200) returned to MoIsonEx MoIsonEx collected 1990 from pot MoIsonEx: doesn't show hand *** SUMMARY *** Total pot 1990 | Rake 0 -Seat 1: s0rrow (small blind) folded before Flop +Seat 1: Hero (small blind) folded before Flop Seat 2: darsOK (big blind) folded before Flop Seat 4: MoIsonEx collected (1990) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -9301,14 +9301,14 @@ Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) PokerStars Game #47659037345: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:39:02 ET Table '297808375 7' 9-max Seat #1 is the button -Seat 1: s0rrow (74437 in chips) +Seat 1: Hero (74437 in chips) Seat 2: darsOK (51886 in chips) Seat 4: MoIsonEx (22736 in chips) Seat 5: Georgy80 (11572 in chips) Seat 6: seric1975 (2530 in chips) Seat 8: AALuckyBucks (12896 in chips) Seat 9: stefan_bg_46 (3943 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 @@ -9318,12 +9318,12 @@ stefan_bg_46: posts the ante 85 darsOK: posts small blind 350 MoIsonEx: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [5c Qd] +Dealt to Hero [5c Qd] Georgy80: folds seric1975: folds AALuckyBucks: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds darsOK: raises 700 to 1400 MoIsonEx: calls 700 *** FLOP *** [6h Ad Ts] @@ -9339,7 +9339,7 @@ MoIsonEx: doesn't show hand *** SUMMARY *** Total pot 8995 | Rake 0 Board [6h Ad Ts Ac] -Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 1: Hero (button) folded before Flop (didn't bet) Seat 2: darsOK (small blind) folded on the Turn Seat 4: MoIsonEx (big blind) collected (8995) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -9351,14 +9351,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47659067053: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:39:42 ET Table '297808375 7' 9-max Seat #2 is the button -Seat 1: s0rrow (74352 in chips) +Seat 1: Hero (74352 in chips) Seat 2: darsOK (47601 in chips) Seat 4: MoIsonEx (27446 in chips) Seat 5: Georgy80 (11487 in chips) Seat 6: seric1975 (2445 in chips) Seat 8: AALuckyBucks (12811 in chips) Seat 9: stefan_bg_46 (3858 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 @@ -9368,11 +9368,11 @@ stefan_bg_46: posts the ante 85 MoIsonEx: posts small blind 350 Georgy80: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [7d 5d] +Dealt to Hero [7d 5d] seric1975: folds AALuckyBucks: raises 12026 to 12726 and is all-in stefan_bg_46: folds -s0rrow: folds +Hero: folds darsOK: folds MoIsonEx: folds Georgy80: folds @@ -9381,7 +9381,7 @@ AALuckyBucks collected 2345 from pot AALuckyBucks: doesn't show hand *** SUMMARY *** Total pot 2345 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK (button) folded before Flop (didn't bet) Seat 4: MoIsonEx (small blind) folded before Flop Seat 5: Georgy80 (big blind) folded before Flop @@ -9393,14 +9393,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47659091389: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:40:15 ET Table '297808375 7' 9-max Seat #4 is the button -Seat 1: s0rrow (74267 in chips) +Seat 1: Hero (74267 in chips) Seat 2: darsOK (47516 in chips) Seat 4: MoIsonEx (27011 in chips) Seat 5: Georgy80 (10702 in chips) Seat 6: seric1975 (2360 in chips) Seat 8: AALuckyBucks (14371 in chips) Seat 9: stefan_bg_46 (3773 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 @@ -9410,26 +9410,26 @@ stefan_bg_46: posts the ante 85 Georgy80: posts small blind 350 seric1975: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [Ac Kc] +Dealt to Hero [Ac Kc] AALuckyBucks: raises 13586 to 14286 and is all-in stefan_bg_46: folds -s0rrow: raises 13586 to 27872 +Hero: raises 13586 to 27872 darsOK: folds MoIsonEx: folds Georgy80: folds seric1975: folds -Uncalled bet (13586) returned to s0rrow +Uncalled bet (13586) returned to Hero *** FLOP *** [7s 2h 6d] *** TURN *** [7s 2h 6d] [4h] *** RIVER *** [7s 2h 6d 4h] [4c] *** SHOW DOWN *** AALuckyBucks: shows [Ts Th] (two pair, Tens and Fours) -s0rrow: shows [Ac Kc] (a pair of Fours) +Hero: shows [Ac Kc] (a pair of Fours) AALuckyBucks collected 30217 from pot *** SUMMARY *** Total pot 30217 | Rake 0 Board [7s 2h 6d 4h 4c] -Seat 1: s0rrow showed [Ac Kc] and lost with a pair of Fours +Seat 1: Hero showed [Ac Kc] and lost with a pair of Fours Seat 2: darsOK folded before Flop (didn't bet) Seat 4: MoIsonEx (button) folded before Flop (didn't bet) Seat 5: Georgy80 (small blind) folded before Flop @@ -9441,14 +9441,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47659116072: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:40:49 ET Table '297808375 7' 9-max Seat #5 is the button -Seat 1: s0rrow (59896 in chips) +Seat 1: Hero (59896 in chips) Seat 2: darsOK (47431 in chips) Seat 4: MoIsonEx (26926 in chips) Seat 5: Georgy80 (10267 in chips) Seat 6: seric1975 (1575 in chips) Seat 8: AALuckyBucks (30217 in chips) Seat 9: stefan_bg_46 (3688 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 @@ -9458,9 +9458,9 @@ stefan_bg_46: posts the ante 85 seric1975: posts small blind 350 AALuckyBucks: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [7c Qd] +Dealt to Hero [7c Qd] stefan_bg_46: folds -s0rrow: folds +Hero: folds darsOK: folds MoIsonEx: folds Georgy80: folds @@ -9470,7 +9470,7 @@ AALuckyBucks collected 1295 from pot AALuckyBucks: doesn't show hand *** SUMMARY *** Total pot 1295 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK folded before Flop (didn't bet) Seat 4: MoIsonEx folded before Flop (didn't bet) Seat 5: Georgy80 (button) folded before Flop (didn't bet) @@ -9482,14 +9482,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47659129286: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:41:07 ET Table '297808375 7' 9-max Seat #6 is the button -Seat 1: s0rrow (59811 in chips) +Seat 1: Hero (59811 in chips) Seat 2: darsOK (47346 in chips) Seat 4: MoIsonEx (26841 in chips) Seat 5: Georgy80 (10182 in chips) Seat 6: seric1975 (1140 in chips) Seat 8: AALuckyBucks (31077 in chips) Seat 9: stefan_bg_46 (3603 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 @@ -9499,8 +9499,8 @@ stefan_bg_46: posts the ante 85 AALuckyBucks: posts small blind 350 stefan_bg_46: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [Tc Qd] -s0rrow: folds +Dealt to Hero [Tc Qd] +Hero: folds darsOK: folds MoIsonEx: raises 1400 to 2100 Georgy80: folds @@ -9512,7 +9512,7 @@ MoIsonEx collected 2345 from pot MoIsonEx: doesn't show hand *** SUMMARY *** Total pot 2345 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK folded before Flop (didn't bet) Seat 4: MoIsonEx collected (2345) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -9524,14 +9524,14 @@ Seat 9: stefan_bg_46 (big blind) folded before Flop PokerStars Game #47659142719: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:41:25 ET Table '297808375 7' 9-max Seat #8 is the button -Seat 1: s0rrow (59726 in chips) +Seat 1: Hero (59726 in chips) Seat 2: darsOK (47261 in chips) Seat 4: MoIsonEx (28401 in chips) Seat 5: Georgy80 (10097 in chips) Seat 6: seric1975 (1055 in chips) Seat 8: AALuckyBucks (30642 in chips) Seat 9: stefan_bg_46 (2818 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 @@ -9539,20 +9539,20 @@ seric1975: posts the ante 85 AALuckyBucks: posts the ante 85 stefan_bg_46: posts the ante 85 stefan_bg_46: posts small blind 350 -s0rrow: posts big blind 700 +Hero: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [Qs 4h] +Dealt to Hero [Qs 4h] darsOK: folds MoIsonEx: folds Georgy80: folds seric1975: folds AALuckyBucks: folds stefan_bg_46: folds -Uncalled bet (350) returned to s0rrow -s0rrow collected 1295 from pot +Uncalled bet (350) returned to Hero +Hero collected 1295 from pot *** SUMMARY *** Total pot 1295 | Rake 0 -Seat 1: s0rrow (big blind) collected (1295) +Seat 1: Hero (big blind) collected (1295) Seat 2: darsOK folded before Flop (didn't bet) Seat 4: MoIsonEx folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -9564,43 +9564,43 @@ Seat 9: stefan_bg_46 (small blind) folded before Flop PokerStars Game #47659158111: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:41:46 ET Table '297808375 7' 9-max Seat #9 is the button -Seat 1: s0rrow (60586 in chips) +Seat 1: Hero (60586 in chips) Seat 2: darsOK (47176 in chips) Seat 4: MoIsonEx (28316 in chips) Seat 5: Georgy80 (10012 in chips) Seat 6: seric1975 (970 in chips) Seat 8: AALuckyBucks (30557 in chips) Seat 9: stefan_bg_46 (2383 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 seric1975: posts the ante 85 AALuckyBucks: posts the ante 85 stefan_bg_46: posts the ante 85 -s0rrow: posts small blind 350 +Hero: posts small blind 350 darsOK: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [Ts Tc] +Dealt to Hero [Ts Tc] MoIsonEx: folds Georgy80: raises 9227 to 9927 and is all-in seric1975: folds AALuckyBucks: folds stefan_bg_46: folds -s0rrow: raises 50574 to 60501 and is all-in +Hero: raises 50574 to 60501 and is all-in darsOK: folds -Uncalled bet (50574) returned to s0rrow +Uncalled bet (50574) returned to Hero *** FLOP *** [3d 3h As] *** TURN *** [3d 3h As] [Ah] *** RIVER *** [3d 3h As Ah] [6h] *** SHOW DOWN *** -s0rrow: shows [Ts Tc] (two pair, Aces and Tens) +Hero: shows [Ts Tc] (two pair, Aces and Tens) Georgy80: shows [Ks Kh] (two pair, Aces and Kings) Georgy80 collected 21149 from pot *** SUMMARY *** Total pot 21149 | Rake 0 Board [3d 3h As Ah 6h] -Seat 1: s0rrow (small blind) showed [Ts Tc] and lost with two pair, Aces and Tens +Seat 1: Hero (small blind) showed [Ts Tc] and lost with two pair, Aces and Tens Seat 2: darsOK (big blind) folded before Flop Seat 4: MoIsonEx folded before Flop (didn't bet) Seat 5: Georgy80 showed [Ks Kh] and won (21149) with two pair, Aces and Kings @@ -9612,14 +9612,14 @@ Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) PokerStars Game #47659182569: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:42:20 ET Table '297808375 7' 9-max Seat #1 is the button -Seat 1: s0rrow (50574 in chips) +Seat 1: Hero (50574 in chips) Seat 2: darsOK (46391 in chips) Seat 4: MoIsonEx (28231 in chips) Seat 5: Georgy80 (21149 in chips) Seat 6: seric1975 (885 in chips) Seat 8: AALuckyBucks (30472 in chips) Seat 9: stefan_bg_46 (2298 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 @@ -9629,31 +9629,31 @@ stefan_bg_46: posts the ante 85 darsOK: posts small blind 350 MoIsonEx: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [Th Ts] +Dealt to Hero [Th Ts] Georgy80: folds seric1975: folds AALuckyBucks: folds stefan_bg_46: folds -s0rrow: raises 1400 to 2100 +Hero: raises 1400 to 2100 darsOK: folds MoIsonEx: calls 1400 *** FLOP *** [8s Jd Ac] MoIsonEx: checks -s0rrow: checks +Hero: checks *** TURN *** [8s Jd Ac] [8h] MoIsonEx: bets 2100 -s0rrow: calls 2100 +Hero: calls 2100 *** RIVER *** [8s Jd Ac 8h] [5d] MoIsonEx: bets 2800 -s0rrow: calls 2800 +Hero: calls 2800 *** SHOW DOWN *** MoIsonEx: shows [Jc Kc] (two pair, Jacks and Eights) -s0rrow: mucks hand +Hero: mucks hand MoIsonEx collected 14945 from pot *** SUMMARY *** Total pot 14945 | Rake 0 Board [8s Jd Ac 8h 5d] -Seat 1: s0rrow (button) mucked [Th Ts] +Seat 1: Hero (button) mucked [Th Ts] Seat 2: darsOK (small blind) folded before Flop Seat 4: MoIsonEx (big blind) showed [Jc Kc] and won (14945) with two pair, Jacks and Eights Seat 5: Georgy80 folded before Flop (didn't bet) @@ -9665,14 +9665,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47659209539: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:42:57 ET Table '297808375 7' 9-max Seat #2 is the button -Seat 1: s0rrow (43489 in chips) +Seat 1: Hero (43489 in chips) Seat 2: darsOK (45956 in chips) Seat 4: MoIsonEx (36091 in chips) Seat 5: Georgy80 (21064 in chips) Seat 6: seric1975 (800 in chips) Seat 8: AALuckyBucks (30387 in chips) Seat 9: stefan_bg_46 (2213 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 @@ -9682,11 +9682,11 @@ stefan_bg_46: posts the ante 85 MoIsonEx: posts small blind 350 Georgy80: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [2s Th] +Dealt to Hero [2s Th] seric1975: folds AALuckyBucks: folds stefan_bg_46: folds -s0rrow: folds +Hero: folds darsOK: folds MoIsonEx: calls 350 Georgy80: checks @@ -9702,7 +9702,7 @@ MoIsonEx: doesn't show hand *** SUMMARY *** Total pot 1995 | Rake 0 Board [As 3d 6s 7c] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK (button) folded before Flop (didn't bet) Seat 4: MoIsonEx (small blind) collected (1995) Seat 5: Georgy80 (big blind) folded on the Turn @@ -9714,14 +9714,14 @@ Seat 9: stefan_bg_46 folded before Flop (didn't bet) PokerStars Game #47659234486: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:43:31 ET Table '297808375 7' 9-max Seat #4 is the button -Seat 1: s0rrow (43404 in chips) +Seat 1: Hero (43404 in chips) Seat 2: darsOK (45871 in chips) Seat 4: MoIsonEx (37301 in chips) Seat 5: Georgy80 (20279 in chips) Seat 6: seric1975 (715 in chips) Seat 8: AALuckyBucks (30302 in chips) Seat 9: stefan_bg_46 (2128 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 @@ -9731,10 +9731,10 @@ stefan_bg_46: posts the ante 85 Georgy80: posts small blind 350 seric1975: posts big blind 630 and is all-in *** HOLE CARDS *** -Dealt to s0rrow [3d As] +Dealt to Hero [3d As] AALuckyBucks: raises 1470 to 2100 stefan_bg_46: calls 2043 and is all-in -s0rrow: folds +Hero: folds darsOK: raises 6300 to 8400 MoIsonEx: folds Georgy80: folds @@ -9757,7 +9757,7 @@ seric1975 finished the tournament in 7th place and received $3.82. *** SUMMARY *** Total pot 7818 Main pot 3465. Side pot-1 4239. Side pot-2 114. | Rake 0 Board [Td 5s 4c 6d 5c] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK showed [Ah Ad] and won (7818) with two pair, Aces and Fives Seat 4: MoIsonEx (button) folded before Flop (didn't bet) Seat 5: Georgy80 (small blind) folded before Flop @@ -9769,32 +9769,32 @@ Seat 9: stefan_bg_46 showed [Kh Kc] and lost with two pair, Kings and Fives PokerStars Game #47659262551: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:44:10 ET Table '297808375 7' 9-max Seat #5 is the button -Seat 1: s0rrow (43319 in chips) +Seat 1: Hero (43319 in chips) Seat 2: darsOK (51504 in chips) Seat 4: MoIsonEx (37216 in chips) Seat 5: Georgy80 (19844 in chips) Seat 8: AALuckyBucks (28117 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 AALuckyBucks: posts the ante 85 AALuckyBucks: posts small blind 350 -s0rrow: posts big blind 700 +Hero: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [Jd 8c] +Dealt to Hero [Jd 8c] darsOK: raises 700 to 1400 MoIsonEx: folds Georgy80: folds AALuckyBucks: raises 26632 to 28032 and is all-in -s0rrow: folds +Hero: folds darsOK: folds Uncalled bet (26632) returned to AALuckyBucks AALuckyBucks collected 3925 from pot AALuckyBucks: doesn't show hand *** SUMMARY *** Total pot 3925 | Rake 0 -Seat 1: s0rrow (big blind) folded before Flop +Seat 1: Hero (big blind) folded before Flop Seat 2: darsOK folded before Flop Seat 4: MoIsonEx folded before Flop (didn't bet) Seat 5: Georgy80 (button) folded before Flop (didn't bet) @@ -9804,43 +9804,43 @@ Seat 8: AALuckyBucks (small blind) collected (3925) PokerStars Game #47659304733: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:45:09 ET Table '297808375 7' 9-max Seat #8 is the button -Seat 1: s0rrow (42534 in chips) +Seat 1: Hero (42534 in chips) Seat 2: darsOK (50019 in chips) Seat 4: MoIsonEx (37131 in chips) Seat 5: Georgy80 (19759 in chips) Seat 8: AALuckyBucks (30557 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 AALuckyBucks: posts the ante 85 -s0rrow: posts small blind 350 +Hero: posts small blind 350 darsOK: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [8c 6c] +Dealt to Hero [8c 6c] MoIsonEx: folds Georgy80: folds AALuckyBucks: folds -s0rrow: calls 350 +Hero: calls 350 darsOK: checks *** FLOP *** [Tc 5c 9h] -s0rrow: checks +Hero: checks darsOK: bets 700 -s0rrow: calls 700 +Hero: calls 700 *** TURN *** [Tc 5c 9h] [Jd] -s0rrow: checks +Hero: checks darsOK: bets 700 -s0rrow: calls 700 +Hero: calls 700 *** RIVER *** [Tc 5c 9h Jd] [2s] -s0rrow: checks +Hero: checks darsOK: bets 2100 -s0rrow: folds +Hero: folds Uncalled bet (2100) returned to darsOK darsOK collected 4625 from pot *** SUMMARY *** Total pot 4625 | Rake 0 Board [Tc 5c 9h Jd 2s] -Seat 1: s0rrow (small blind) folded on the River +Seat 1: Hero (small blind) folded on the River Seat 2: darsOK (big blind) collected (4625) Seat 4: MoIsonEx folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -9850,12 +9850,12 @@ Seat 8: AALuckyBucks (button) folded before Flop (didn't bet) PokerStars Game #47659336011: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:45:53 ET Table '297808375 7' 9-max Seat #1 is the button -Seat 1: s0rrow (40349 in chips) +Seat 1: Hero (40349 in chips) Seat 2: darsOK (52459 in chips) Seat 4: MoIsonEx (37046 in chips) Seat 5: Georgy80 (19674 in chips) Seat 8: AALuckyBucks (30472 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 @@ -9863,17 +9863,17 @@ AALuckyBucks: posts the ante 85 darsOK: posts small blind 350 MoIsonEx: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [4d Kh] +Dealt to Hero [4d Kh] Georgy80: folds AALuckyBucks: folds -s0rrow: raises 1400 to 2100 +Hero: raises 1400 to 2100 darsOK: folds MoIsonEx: folds -Uncalled bet (1400) returned to s0rrow -s0rrow collected 2175 from pot +Uncalled bet (1400) returned to Hero +Hero collected 2175 from pot *** SUMMARY *** Total pot 2175 | Rake 0 -Seat 1: s0rrow (button) collected (2175) +Seat 1: Hero (button) collected (2175) Seat 2: darsOK (small blind) folded before Flop Seat 4: MoIsonEx (big blind) folded before Flop Seat 5: Georgy80 folded before Flop (didn't bet) @@ -9883,12 +9883,12 @@ Seat 8: AALuckyBucks folded before Flop (didn't bet) PokerStars Game #47659351859: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:46:15 ET Table '297808375 7' 9-max Seat #2 is the button -Seat 1: s0rrow (41739 in chips) +Seat 1: Hero (41739 in chips) Seat 2: darsOK (52024 in chips) Seat 4: MoIsonEx (36261 in chips) Seat 5: Georgy80 (19589 in chips) Seat 8: AALuckyBucks (30387 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 @@ -9896,9 +9896,9 @@ AALuckyBucks: posts the ante 85 MoIsonEx: posts small blind 350 Georgy80: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [2s Th] +Dealt to Hero [2s Th] AALuckyBucks: folds -s0rrow: folds +Hero: folds darsOK: raises 2100 to 2800 MoIsonEx: folds Georgy80: raises 16704 to 19504 and is all-in @@ -9913,7 +9913,7 @@ Georgy80 collected 39783 from pot *** SUMMARY *** Total pot 39783 | Rake 0 Board [6c 2d As 7s 4d] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK (button) showed [Td Kc] and lost with high card Ace Seat 4: MoIsonEx (small blind) folded before Flop Seat 5: Georgy80 (big blind) showed [Js Jh] and won (39783) with a pair of Jacks @@ -9923,12 +9923,12 @@ Seat 8: AALuckyBucks folded before Flop (didn't bet) PokerStars Game #47659373560: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:46:45 ET Table '297808375 7' 9-max Seat #4 is the button -Seat 1: s0rrow (41654 in chips) +Seat 1: Hero (41654 in chips) Seat 2: darsOK (32435 in chips) Seat 4: MoIsonEx (35826 in chips) Seat 5: Georgy80 (39783 in chips) Seat 8: AALuckyBucks (30302 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 @@ -9936,8 +9936,8 @@ AALuckyBucks: posts the ante 85 Georgy80: posts small blind 350 AALuckyBucks: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [8d 5c] -s0rrow: folds +Dealt to Hero [8d 5c] +Hero: folds darsOK: folds MoIsonEx: folds Georgy80: folds @@ -9946,7 +9946,7 @@ AALuckyBucks collected 1125 from pot AALuckyBucks: doesn't show hand *** SUMMARY *** Total pot 1125 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK folded before Flop (didn't bet) Seat 4: MoIsonEx (button) folded before Flop (didn't bet) Seat 5: Georgy80 (small blind) folded before Flop @@ -9956,31 +9956,31 @@ Seat 8: AALuckyBucks (big blind) collected (1125) PokerStars Game #47659382879: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:46:58 ET Table '297808375 7' 9-max Seat #5 is the button -Seat 1: s0rrow (41569 in chips) +Seat 1: Hero (41569 in chips) Seat 2: darsOK (32350 in chips) Seat 4: MoIsonEx (35741 in chips) Seat 5: Georgy80 (39348 in chips) Seat 8: AALuckyBucks (30992 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 AALuckyBucks: posts the ante 85 AALuckyBucks: posts small blind 350 -s0rrow: posts big blind 700 +Hero: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [3c Js] +Dealt to Hero [3c Js] darsOK: folds MoIsonEx: folds Georgy80: folds AALuckyBucks: raises 2100 to 2800 -s0rrow: folds +Hero: folds Uncalled bet (2100) returned to AALuckyBucks AALuckyBucks collected 1825 from pot AALuckyBucks: doesn't show hand *** SUMMARY *** Total pot 1825 | Rake 0 -Seat 1: s0rrow (big blind) folded before Flop +Seat 1: Hero (big blind) folded before Flop Seat 2: darsOK folded before Flop (didn't bet) Seat 4: MoIsonEx folded before Flop (didn't bet) Seat 5: Georgy80 (button) folded before Flop (didn't bet) @@ -9990,31 +9990,31 @@ Seat 8: AALuckyBucks (small blind) collected (1825) PokerStars Game #47659393522: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:47:13 ET Table '297808375 7' 9-max Seat #8 is the button -Seat 1: s0rrow (40784 in chips) +Seat 1: Hero (40784 in chips) Seat 2: darsOK (32265 in chips) Seat 4: MoIsonEx (35656 in chips) Seat 5: Georgy80 (39263 in chips) Seat 8: AALuckyBucks (32032 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 AALuckyBucks: posts the ante 85 -s0rrow: posts small blind 350 +Hero: posts small blind 350 darsOK: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [Jh 3h] +Dealt to Hero [Jh 3h] MoIsonEx: folds Georgy80: folds AALuckyBucks: folds -s0rrow: raises 1400 to 2100 +Hero: raises 1400 to 2100 darsOK: raises 11900 to 14000 -s0rrow: folds +Hero: folds Uncalled bet (11900) returned to darsOK darsOK collected 4625 from pot *** SUMMARY *** Total pot 4625 | Rake 0 -Seat 1: s0rrow (small blind) folded before Flop +Seat 1: Hero (small blind) folded before Flop Seat 2: darsOK (big blind) collected (4625) Seat 4: MoIsonEx folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -10024,12 +10024,12 @@ Seat 8: AALuckyBucks (button) folded before Flop (didn't bet) PokerStars Game #47659410940: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:47:37 ET Table '297808375 7' 9-max Seat #1 is the button -Seat 1: s0rrow (38599 in chips) +Seat 1: Hero (38599 in chips) Seat 2: darsOK (34705 in chips) Seat 4: MoIsonEx (35571 in chips) Seat 5: Georgy80 (39178 in chips) Seat 8: AALuckyBucks (31947 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 @@ -10037,17 +10037,17 @@ AALuckyBucks: posts the ante 85 darsOK: posts small blind 350 MoIsonEx: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [4s 5s] +Dealt to Hero [4s 5s] Georgy80: folds AALuckyBucks: folds -s0rrow: raises 1400 to 2100 +Hero: raises 1400 to 2100 darsOK: folds MoIsonEx: folds -Uncalled bet (1400) returned to s0rrow -s0rrow collected 2175 from pot +Uncalled bet (1400) returned to Hero +Hero collected 2175 from pot *** SUMMARY *** Total pot 2175 | Rake 0 -Seat 1: s0rrow (button) collected (2175) +Seat 1: Hero (button) collected (2175) Seat 2: darsOK (small blind) folded before Flop Seat 4: MoIsonEx (big blind) folded before Flop Seat 5: Georgy80 folded before Flop (didn't bet) @@ -10057,12 +10057,12 @@ Seat 8: AALuckyBucks folded before Flop (didn't bet) PokerStars Game #47659422965: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:47:53 ET Table '297808375 7' 9-max Seat #2 is the button -Seat 1: s0rrow (39989 in chips) +Seat 1: Hero (39989 in chips) Seat 2: darsOK (34270 in chips) Seat 4: MoIsonEx (34786 in chips) Seat 5: Georgy80 (39093 in chips) Seat 8: AALuckyBucks (31862 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 @@ -10070,9 +10070,9 @@ AALuckyBucks: posts the ante 85 MoIsonEx: posts small blind 350 Georgy80: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [2c 8d] +Dealt to Hero [2c 8d] AALuckyBucks: folds -s0rrow: folds +Hero: folds darsOK: calls 700 MoIsonEx: calls 350 Georgy80: checks @@ -10093,7 +10093,7 @@ MoIsonEx collected 17925 from pot *** SUMMARY *** Total pot 17925 | Rake 0 Board [7d 4s Ad Ac Ah] -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK (button) mucked [3s 3h] Seat 4: MoIsonEx (small blind) showed [6d 4d] and won (17925) with a full house, Aces full of Fours Seat 5: Georgy80 (big blind) folded on the Flop @@ -10103,12 +10103,12 @@ Seat 8: AALuckyBucks folded before Flop (didn't bet) PokerStars Game #47659447144: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:48:27 ET Table '297808375 7' 9-max Seat #4 is the button -Seat 1: s0rrow (39904 in chips) +Seat 1: Hero (39904 in chips) Seat 2: darsOK (25785 in chips) Seat 4: MoIsonEx (44226 in chips) Seat 5: Georgy80 (38308 in chips) Seat 8: AALuckyBucks (31777 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 @@ -10116,8 +10116,8 @@ AALuckyBucks: posts the ante 85 Georgy80: posts small blind 350 AALuckyBucks: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [4h 6h] -s0rrow: folds +Dealt to Hero [4h 6h] +Hero: folds darsOK: folds MoIsonEx: folds Georgy80: folds @@ -10126,7 +10126,7 @@ AALuckyBucks collected 1125 from pot AALuckyBucks: doesn't show hand *** SUMMARY *** Total pot 1125 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK folded before Flop (didn't bet) Seat 4: MoIsonEx (button) folded before Flop (didn't bet) Seat 5: Georgy80 (small blind) folded before Flop @@ -10136,33 +10136,33 @@ Seat 8: AALuckyBucks (big blind) collected (1125) PokerStars Game #47659455874: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:48:39 ET Table '297808375 7' 9-max Seat #5 is the button -Seat 1: s0rrow (39819 in chips) +Seat 1: Hero (39819 in chips) Seat 2: darsOK (25700 in chips) Seat 4: MoIsonEx (44141 in chips) Seat 5: Georgy80 (37873 in chips) Seat 8: AALuckyBucks (32467 in chips) -s0rrow: posts the ante 85 +Hero: posts the ante 85 darsOK: posts the ante 85 MoIsonEx: posts the ante 85 Georgy80: posts the ante 85 AALuckyBucks: posts the ante 85 AALuckyBucks: posts small blind 350 -s0rrow: posts big blind 700 +Hero: posts big blind 700 *** HOLE CARDS *** -Dealt to s0rrow [3c Ac] +Dealt to Hero [3c Ac] darsOK: folds MoIsonEx: folds Georgy80: raises 1400 to 2100 AALuckyBucks: folds -s0rrow: raises 2800 to 4900 +Hero: raises 2800 to 4900 Georgy80: raises 32888 to 37788 and is all-in -s0rrow: folds +Hero: folds Uncalled bet (32888) returned to Georgy80 Georgy80 collected 10575 from pot Georgy80: doesn't show hand *** SUMMARY *** Total pot 10575 | Rake 0 -Seat 1: s0rrow (big blind) folded before Flop +Seat 1: Hero (big blind) folded before Flop Seat 2: darsOK folded before Flop (didn't bet) Seat 4: MoIsonEx folded before Flop (didn't bet) Seat 5: Georgy80 (button) collected (10575) @@ -10172,31 +10172,31 @@ Seat 8: AALuckyBucks (small blind) folded before Flop PokerStars Game #47659477187: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVII (400/800) - 2010/08/03 13:49:09 ET Table '297808375 7' 9-max Seat #8 is the button -Seat 1: s0rrow (34834 in chips) +Seat 1: Hero (34834 in chips) Seat 2: darsOK (25615 in chips) Seat 4: MoIsonEx (44056 in chips) Seat 5: Georgy80 (43463 in chips) Seat 8: AALuckyBucks (32032 in chips) -s0rrow: posts the ante 100 +Hero: posts the ante 100 darsOK: posts the ante 100 MoIsonEx: posts the ante 100 Georgy80: posts the ante 100 AALuckyBucks: posts the ante 100 -s0rrow: posts small blind 400 +Hero: posts small blind 400 darsOK: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [7c 9d] +Dealt to Hero [7c 9d] MoIsonEx: folds Georgy80: folds AALuckyBucks: raises 2400 to 3200 -s0rrow: folds +Hero: folds darsOK: folds Uncalled bet (2400) returned to AALuckyBucks AALuckyBucks collected 2500 from pot AALuckyBucks: doesn't show hand *** SUMMARY *** Total pot 2500 | Rake 0 -Seat 1: s0rrow (small blind) folded before Flop +Seat 1: Hero (small blind) folded before Flop Seat 2: darsOK (big blind) folded before Flop Seat 4: MoIsonEx folded before Flop (didn't bet) Seat 5: Georgy80 folded before Flop (didn't bet) @@ -10206,12 +10206,12 @@ Seat 8: AALuckyBucks (button) collected (2500) PokerStars Game #47659489360: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVII (400/800) - 2010/08/03 13:49:26 ET Table '297808375 7' 9-max Seat #1 is the button -Seat 1: s0rrow (34334 in chips) +Seat 1: Hero (34334 in chips) Seat 2: darsOK (24715 in chips) Seat 4: MoIsonEx (43956 in chips) Seat 5: Georgy80 (43363 in chips) Seat 8: AALuckyBucks (33632 in chips) -s0rrow: posts the ante 100 +Hero: posts the ante 100 darsOK: posts the ante 100 MoIsonEx: posts the ante 100 Georgy80: posts the ante 100 @@ -10219,17 +10219,17 @@ AALuckyBucks: posts the ante 100 darsOK: posts small blind 400 MoIsonEx: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [9d As] +Dealt to Hero [9d As] Georgy80: folds AALuckyBucks: folds -s0rrow: raises 800 to 1600 +Hero: raises 800 to 1600 darsOK: folds MoIsonEx: folds -Uncalled bet (800) returned to s0rrow -s0rrow collected 2500 from pot +Uncalled bet (800) returned to Hero +Hero collected 2500 from pot *** SUMMARY *** Total pot 2500 | Rake 0 -Seat 1: s0rrow (button) collected (2500) +Seat 1: Hero (button) collected (2500) Seat 2: darsOK (small blind) folded before Flop Seat 4: MoIsonEx (big blind) folded before Flop Seat 5: Georgy80 folded before Flop (didn't bet) @@ -10239,12 +10239,12 @@ Seat 8: AALuckyBucks folded before Flop (didn't bet) PokerStars Game #47659498991: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVII (400/800) - 2010/08/03 13:49:39 ET Table '297808375 7' 9-max Seat #2 is the button -Seat 1: s0rrow (35934 in chips) +Seat 1: Hero (35934 in chips) Seat 2: darsOK (24215 in chips) Seat 4: MoIsonEx (43056 in chips) Seat 5: Georgy80 (43263 in chips) Seat 8: AALuckyBucks (33532 in chips) -s0rrow: posts the ante 100 +Hero: posts the ante 100 darsOK: posts the ante 100 MoIsonEx: posts the ante 100 Georgy80: posts the ante 100 @@ -10252,9 +10252,9 @@ AALuckyBucks: posts the ante 100 MoIsonEx: posts small blind 400 Georgy80: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [8d 7c] +Dealt to Hero [8d 7c] AALuckyBucks: folds -s0rrow: folds +Hero: folds darsOK: folds MoIsonEx: folds Uncalled bet (400) returned to Georgy80 @@ -10262,7 +10262,7 @@ Georgy80 collected 1300 from pot Georgy80: shows [Qs Qd] (a pair of Queens) *** SUMMARY *** Total pot 1300 | Rake 0 -Seat 1: s0rrow folded before Flop (didn't bet) +Seat 1: Hero folded before Flop (didn't bet) Seat 2: darsOK (button) folded before Flop (didn't bet) Seat 4: MoIsonEx (small blind) folded before Flop Seat 5: Georgy80 (big blind) collected (1300) @@ -10272,12 +10272,12 @@ Seat 8: AALuckyBucks folded before Flop (didn't bet) PokerStars Game #47659506322: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVII (400/800) - 2010/08/03 13:49:49 ET Table '297808375 7' 9-max Seat #4 is the button -Seat 1: s0rrow (35834 in chips) +Seat 1: Hero (35834 in chips) Seat 2: darsOK (24115 in chips) Seat 4: MoIsonEx (42556 in chips) Seat 5: Georgy80 (44063 in chips) Seat 8: AALuckyBucks (33432 in chips) -s0rrow: posts the ante 100 +Hero: posts the ante 100 darsOK: posts the ante 100 MoIsonEx: posts the ante 100 Georgy80: posts the ante 100 @@ -10285,17 +10285,17 @@ AALuckyBucks: posts the ante 100 Georgy80: posts small blind 400 AALuckyBucks: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [Ah As] -s0rrow: raises 1600 to 2400 +Dealt to Hero [Ah As] +Hero: raises 1600 to 2400 darsOK: folds MoIsonEx: folds Georgy80: folds AALuckyBucks: folds -Uncalled bet (1600) returned to s0rrow -s0rrow collected 2500 from pot +Uncalled bet (1600) returned to Hero +Hero collected 2500 from pot *** SUMMARY *** Total pot 2500 | Rake 0 -Seat 1: s0rrow collected (2500) +Seat 1: Hero collected (2500) Seat 2: darsOK folded before Flop (didn't bet) Seat 4: MoIsonEx (button) folded before Flop (didn't bet) Seat 5: Georgy80 (small blind) folded before Flop @@ -10305,29 +10305,29 @@ Seat 8: AALuckyBucks (big blind) folded before Flop PokerStars Game #47659515689: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVII (400/800) - 2010/08/03 13:50:03 ET Table '297808375 7' 9-max Seat #5 is the button -Seat 1: s0rrow (37434 in chips) +Seat 1: Hero (37434 in chips) Seat 2: darsOK (24015 in chips) Seat 4: MoIsonEx (42456 in chips) Seat 5: Georgy80 (43563 in chips) Seat 8: AALuckyBucks (32532 in chips) -s0rrow: posts the ante 100 +Hero: posts the ante 100 darsOK: posts the ante 100 MoIsonEx: posts the ante 100 Georgy80: posts the ante 100 AALuckyBucks: posts the ante 100 AALuckyBucks: posts small blind 400 -s0rrow: posts big blind 800 +Hero: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [Th 3h] +Dealt to Hero [Th 3h] darsOK: folds MoIsonEx: folds Georgy80: folds AALuckyBucks: folds -Uncalled bet (400) returned to s0rrow -s0rrow collected 1300 from pot +Uncalled bet (400) returned to Hero +Hero collected 1300 from pot *** SUMMARY *** Total pot 1300 | Rake 0 -Seat 1: s0rrow (big blind) collected (1300) +Seat 1: Hero (big blind) collected (1300) Seat 2: darsOK folded before Flop (didn't bet) Seat 4: MoIsonEx folded before Flop (didn't bet) Seat 5: Georgy80 (button) folded before Flop (didn't bet) @@ -10337,44 +10337,44 @@ Seat 8: AALuckyBucks (small blind) folded before Flop PokerStars Game #47659525439: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVII (400/800) - 2010/08/03 13:50:16 ET Table '297808375 7' 9-max Seat #8 is the button -Seat 1: s0rrow (38234 in chips) +Seat 1: Hero (38234 in chips) Seat 2: darsOK (23915 in chips) Seat 4: MoIsonEx (42356 in chips) Seat 5: Georgy80 (43463 in chips) Seat 8: AALuckyBucks (32032 in chips) -s0rrow: posts the ante 100 +Hero: posts the ante 100 darsOK: posts the ante 100 MoIsonEx: posts the ante 100 Georgy80: posts the ante 100 AALuckyBucks: posts the ante 100 -s0rrow: posts small blind 400 +Hero: posts small blind 400 darsOK: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [Kd Jd] +Dealt to Hero [Kd Jd] MoIsonEx: raises 1600 to 2400 Georgy80: folds AALuckyBucks: folds -s0rrow: calls 2000 +Hero: calls 2000 darsOK: folds *** FLOP *** [3h 7d 3d] -s0rrow: checks +Hero: checks MoIsonEx: bets 3200 -s0rrow: raises 12000 to 15200 +Hero: raises 12000 to 15200 MoIsonEx: calls 12000 *** TURN *** [3h 7d 3d] [Ks] -s0rrow: bets 20534 and is all-in +Hero: bets 20534 and is all-in MoIsonEx: calls 20534 *** RIVER *** [3h 7d 3d Ks] [6h] *** SHOW DOWN *** -s0rrow: shows [Kd Jd] (two pair, Kings and Threes) +Hero: shows [Kd Jd] (two pair, Kings and Threes) MoIsonEx: shows [7c 7h] (a full house, Sevens full of Threes) MoIsonEx collected 77568 from pot -MoIsonEx wins the $0.25 bounty for eliminating s0rrow -s0rrow finished the tournament in 5th place and received $6.30. +MoIsonEx wins the $0.25 bounty for eliminating Hero +Hero finished the tournament in 5th place and received $6.30. *** SUMMARY *** Total pot 77568 | Rake 0 Board [3h 7d 3d Ks 6h] -Seat 1: s0rrow (small blind) showed [Kd Jd] and lost with two pair, Kings and Threes +Seat 1: Hero (small blind) showed [Kd Jd] and lost with two pair, Kings and Threes Seat 2: darsOK (big blind) folded before Flop Seat 4: MoIsonEx showed [7c 7h] and won (77568) with a full house, Sevens full of Threes Seat 5: Georgy80 folded before Flop (didn't bet) 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 index cbbcc7ab..0e6a816f 100644 --- 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 @@ -4,7 +4,7 @@ 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 5: Hero (1375 in chips) is sitting out Seat 6: Lochdale (2300 in chips) Seat 7: linkeloehtje (3290 in chips) Seat 8: hookstar22 (1480 in chips) @@ -12,16 +12,16 @@ Seat 9: maikel76 (5445 in chips) Lochdale: posts small blind 15 linkeloehtje: posts big blind 30 *** HOLE CARDS *** -Dealt to s0rrow [5c 5d] +Dealt to Hero [5c 5d] hookstar22: calls 30 maikel76: folds -s0rrow is connected -s0rrow has returned +Hero is connected +Hero has returned whitehot: calls 30 J.R.66350: calls 30 HoddePodde: folds rrk775: calls 30 -s0rrow: calls 30 +Hero: calls 30 Lochdale: calls 15 linkeloehtje: checks *** FLOP *** [9s 7c 6d] @@ -31,26 +31,26 @@ hookstar22: folds whitehot: calls 90 J.R.66350: calls 90 rrk775: folds -s0rrow: calls 90 +Hero: 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 +Hero: 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 +Hero: 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 +Hero: mucks hand J.R.66350 collected 1380 from pot *** SUMMARY *** Total pot 1380 | Rake 0 @@ -59,7 +59,7 @@ 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 5: Hero (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 @@ -73,7 +73,7 @@ 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 5: Hero (1075 in chips) Seat 6: Lochdale (2090 in chips) Seat 7: linkeloehtje (2990 in chips) Seat 8: hookstar22 (1450 in chips) @@ -81,13 +81,13 @@ Seat 9: maikel76 (5445 in chips) linkeloehtje: posts small blind 15 hookstar22: posts big blind 30 *** HOLE CARDS *** -Dealt to s0rrow [3c Qs] +Dealt to Hero [3c Qs] maikel76: folds whitehot: folds J.R.66350: raises 2430 to 2460 and is all-in HoddePodde: folds rrk775: folds -s0rrow: folds +Hero: folds Lochdale: calls 2090 and is all-in linkeloehtje: folds hookstar22: folds @@ -105,7 +105,7 @@ 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 5: Hero 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 @@ -119,7 +119,7 @@ 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 5: Hero (1075 in chips) Seat 6: Lochdale (4225 in chips) Seat 7: linkeloehtje (2975 in chips) Seat 8: hookstar22 (1420 in chips) @@ -127,12 +127,12 @@ Seat 9: maikel76 (5445 in chips) hookstar22: posts small blind 15 maikel76: posts big blind 30 *** HOLE CARDS *** -Dealt to s0rrow [8c 2s] +Dealt to Hero [8c 2s] whitehot: folds J.R.66350: folds HoddePodde: raises 150 to 180 rrk775: calls 180 -s0rrow: folds +Hero: folds Lochdale: folds linkeloehtje: calls 180 hookstar22: folds @@ -158,7 +158,7 @@ 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 5: Hero 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 @@ -172,7 +172,7 @@ 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 5: Hero (1075 in chips) Seat 6: Lochdale (4225 in chips) Seat 7: linkeloehtje (1605 in chips) Seat 8: hookstar22 (1405 in chips) @@ -180,11 +180,11 @@ Seat 9: maikel76 (5265 in chips) maikel76: posts small blind 15 whitehot: posts big blind 30 *** HOLE CARDS *** -Dealt to s0rrow [4c 4s] +Dealt to Hero [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 +Hero: calls 1075 and is all-in Lochdale: folds linkeloehtje: folds hookstar22: folds @@ -195,11 +195,11 @@ whitehot: folds *** 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) +Hero: 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 +Hero 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] @@ -207,7 +207,7 @@ 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 5: Hero 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) @@ -221,7 +221,7 @@ 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 5: Hero (3000 in chips) Seat 6: Lochdale (4225 in chips) Seat 7: linkeloehtje (1605 in chips) Seat 8: hookstar22 (1405 in chips) @@ -229,10 +229,10 @@ 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] +Dealt to Hero [Jc 6d] HoddePodde: folds rrk775: folds -s0rrow: folds +Hero: folds Lochdale: folds linkeloehtje: folds hookstar22: folds @@ -255,7 +255,7 @@ 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 5: Hero 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) @@ -269,7 +269,7 @@ 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 5: Hero (3000 in chips) Seat 6: Lochdale (4225 in chips) Seat 7: linkeloehtje (1605 in chips) Seat 8: hookstar22 (1405 in chips) @@ -277,9 +277,9 @@ 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] +Dealt to Hero [5h Ad] rrk775: calls 30 -s0rrow: folds +Hero: folds Lochdale: folds linkeloehtje: folds hookstar22: raises 60 to 90 @@ -300,7 +300,7 @@ 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 5: Hero 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 @@ -314,7 +314,7 @@ 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 5: Hero (3000 in chips) Seat 6: Lochdale (4225 in chips) Seat 7: linkeloehtje (1605 in chips) Seat 8: hookstar22 (1315 in chips) @@ -322,8 +322,8 @@ 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 +Dealt to Hero [2c 5d] +Hero: folds Lochdale: calls 30 linkeloehtje: folds hookstar22: calls 30 @@ -355,7 +355,7 @@ 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 5: Hero 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 @@ -369,15 +369,15 @@ 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 5: Hero (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 +Hero: posts big blind 30 *** HOLE CARDS *** -Dealt to s0rrow [9c 2s] +Dealt to Hero [9c 2s] Lochdale: calls 30 linkeloehtje: folds hookstar22: calls 30 @@ -386,25 +386,25 @@ whitehot: folds J.R.66350: folds HoddePodde: folds rrk775: calls 15 -s0rrow: checks +Hero: checks *** FLOP *** [7s Kh 2d] rrk775: checks -s0rrow: checks +Hero: checks Lochdale: checks hookstar22: checks *** TURN *** [7s Kh 2d] [6h] rrk775: checks -s0rrow: checks +Hero: checks Lochdale: checks hookstar22: checks *** RIVER *** [7s Kh 2d 6h] [Ts] rrk775: checks -s0rrow: checks +Hero: checks Lochdale: checks hookstar22: checks *** SHOW DOWN *** rrk775: shows [Jc 8h] (high card King) -s0rrow: shows [9c 2s] (a pair of Deuces) +Hero: shows [9c 2s] (a pair of Deuces) Lochdale: shows [5c 5d] (a pair of Fives) hookstar22: mucks hand Lochdale collected 120 from pot @@ -415,7 +415,7 @@ 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 5: Hero (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] @@ -429,15 +429,15 @@ 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 5: Hero (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 +Hero: posts small blind 15 Lochdale: posts big blind 30 *** HOLE CARDS *** -Dealt to s0rrow [Qs Td] +Dealt to Hero [Qs Td] linkeloehtje: folds hookstar22: folds maikel76: folds @@ -445,18 +445,18 @@ whitehot: folds J.R.66350: calls 30 HoddePodde: folds rrk775: folds -s0rrow: calls 15 +Hero: calls 15 Lochdale: checks *** FLOP *** [Qd As Ah] -s0rrow: checks +Hero: checks Lochdale: checks J.R.66350: checks *** TURN *** [Qd As Ah] [Th] -s0rrow: bets 120 +Hero: bets 120 Lochdale: folds J.R.66350: folds -s0rrow collected 90 from pot -s0rrow: doesn't show hand +Hero collected 90 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 90 | Rake 0 Board [Qd As Ah Th] @@ -464,7 +464,7 @@ 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 5: Hero (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) @@ -478,7 +478,7 @@ 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 5: Hero (3030 in chips) Seat 6: Lochdale (4255 in chips) Seat 7: linkeloehtje (1605 in chips) Seat 8: hookstar22 (2140 in chips) @@ -486,33 +486,33 @@ Seat 9: maikel76 (5160 in chips) Lochdale: posts small blind 15 linkeloehtje: posts big blind 30 *** HOLE CARDS *** -Dealt to s0rrow [Jc Ac] +Dealt to Hero [Jc Ac] hookstar22: folds maikel76: folds whitehot: calls 30 J.R.66350: folds HoddePodde: folds rrk775: raises 120 to 150 -s0rrow: calls 150 +Hero: calls 150 Lochdale: calls 135 linkeloehtje: folds whitehot: folds *** FLOP *** [Ad Qh Td] Lochdale: checks rrk775: bets 210 -s0rrow: calls 210 +Hero: calls 210 Lochdale: folds *** TURN *** [Ad Qh Td] [2d] rrk775: checks -s0rrow: checks +Hero: checks *** RIVER *** [Ad Qh Td 2d] [8s] rrk775: checks -s0rrow: bets 300 +Hero: bets 300 rrk775: calls 300 *** SHOW DOWN *** -s0rrow: shows [Jc Ac] (a pair of Aces) +Hero: shows [Jc Ac] (a pair of Aces) rrk775: mucks hand -s0rrow collected 1530 from pot +Hero collected 1530 from pot rrk775 said, "nh" *** SUMMARY *** Total pot 1530 | Rake 0 @@ -521,7 +521,7 @@ 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 5: Hero (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) @@ -535,7 +535,7 @@ 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 5: Hero (3900 in chips) Seat 6: Lochdale (4105 in chips) Seat 7: linkeloehtje (1575 in chips) Seat 8: hookstar22 (2140 in chips) @@ -543,13 +543,13 @@ Seat 9: maikel76 (5160 in chips) linkeloehtje: posts small blind 15 hookstar22: posts big blind 30 *** HOLE CARDS *** -Dealt to s0rrow [6h 6d] +Dealt to Hero [6h 6d] maikel76: folds whitehot: folds J.R.66350: calls 30 HoddePodde: raises 90 to 120 rrk775: folds -s0rrow: calls 120 +Hero: calls 120 Lochdale: folds linkeloehtje: folds hookstar22: folds @@ -557,7 +557,7 @@ J.R.66350: calls 90 *** FLOP *** [9h 2h Jc] J.R.66350: checks HoddePodde: bets 230 -s0rrow: folds +Hero: folds J.R.66350: calls 230 *** TURN *** [9h 2h Jc] [2c] J.R.66350: checks @@ -576,7 +576,7 @@ 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 5: Hero 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 @@ -590,7 +590,7 @@ 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 5: Hero (3780 in chips) Seat 6: Lochdale (4105 in chips) Seat 7: linkeloehtje (1560 in chips) Seat 8: hookstar22 (2110 in chips) @@ -598,12 +598,12 @@ Seat 9: maikel76 (5160 in chips) hookstar22: posts small blind 25 maikel76: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [8d Kh] +Dealt to Hero [8d Kh] whitehot: folds J.R.66350: folds HoddePodde: folds rrk775: folds -s0rrow: folds +Hero: folds Lochdale: raises 50 to 100 linkeloehtje: folds hookstar22: folds @@ -627,7 +627,7 @@ 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 5: Hero 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 @@ -641,7 +641,7 @@ 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 5: Hero (3780 in chips) Seat 6: Lochdale (3855 in chips) Seat 7: linkeloehtje (1560 in chips) Seat 8: hookstar22 (2085 in chips) @@ -649,11 +649,11 @@ Seat 9: maikel76 (5435 in chips) maikel76: posts small blind 25 whitehot: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [8s Jc] +Dealt to Hero [8s Jc] J.R.66350: calls 50 HoddePodde: folds rrk775: folds -s0rrow: folds +Hero: folds Lochdale: calls 50 linkeloehtje: folds hookstar22: calls 50 @@ -689,7 +689,7 @@ 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 5: Hero 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 @@ -703,7 +703,7 @@ 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 5: Hero (3780 in chips) Seat 6: Lochdale (3255 in chips) Seat 7: linkeloehtje (1560 in chips) Seat 8: hookstar22 (2835 in chips) @@ -711,10 +711,10 @@ 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] +Dealt to Hero [7d 3d] HoddePodde: folds rrk775: folds -s0rrow: folds +Hero: folds Lochdale: folds linkeloehtje: folds hookstar22: raises 50 to 100 @@ -728,7 +728,7 @@ 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 5: Hero 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) @@ -742,7 +742,7 @@ 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 5: Hero (3780 in chips) Seat 6: Lochdale (3255 in chips) Seat 7: linkeloehtje (1560 in chips) Seat 8: hookstar22 (2910 in chips) @@ -750,9 +750,9 @@ 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] +Dealt to Hero [4s 8h] rrk775: calls 50 -s0rrow: folds +Hero: folds Lochdale: raises 100 to 150 linkeloehtje: folds hookstar22: folds @@ -784,7 +784,7 @@ 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 5: Hero 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) @@ -798,7 +798,7 @@ 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 5: Hero (3780 in chips) Seat 6: Lochdale (3000 in chips) Seat 7: linkeloehtje (1560 in chips) Seat 8: hookstar22 (2910 in chips) @@ -806,8 +806,8 @@ 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 +Dealt to Hero [9s 3c] +Hero: folds Lochdale: folds linkeloehtje: folds hookstar22: calls 50 @@ -827,7 +827,7 @@ 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 5: Hero 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 @@ -841,15 +841,15 @@ 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 5: Hero (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 +Hero: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [7s 9h] +Dealt to Hero [7s 9h] Lochdale: folds linkeloehtje: calls 50 hookstar22: calls 50 @@ -858,23 +858,23 @@ whitehot: calls 50 J.R.66350: folds HoddePodde: folds rrk775: calls 25 -s0rrow: checks +Hero: checks *** FLOP *** [Ac 3s Th] rrk775: checks -s0rrow: checks +Hero: checks linkeloehtje: checks hookstar22: checks maikel76: checks whitehot: checks *** TURN *** [Ac 3s Th] [3d] rrk775: checks -s0rrow: checks +Hero: checks linkeloehtje: bets 100 hookstar22: folds maikel76: folds whitehot: folds rrk775: folds -s0rrow: folds +Hero: folds linkeloehtje collected 300 from pot linkeloehtje: doesn't show hand *** SUMMARY *** @@ -884,7 +884,7 @@ 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 5: Hero (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 @@ -898,15 +898,15 @@ 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 5: Hero (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 +Hero: posts small blind 25 Lochdale: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [9d Kd] +Dealt to Hero [9d Kd] linkeloehtje: folds hookstar22: folds maikel76: raises 350 to 400 @@ -914,7 +914,7 @@ whitehot: folds J.R.66350: folds HoddePodde: calls 400 rrk775: folds -s0rrow: folds +Hero: folds Lochdale: calls 350 *** FLOP *** [Ah Tc 8c] Lochdale: checks @@ -936,7 +936,7 @@ 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 5: Hero (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) @@ -950,7 +950,7 @@ 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 5: Hero (3705 in chips) Seat 6: Lochdale (3000 in chips) Seat 7: linkeloehtje (1810 in chips) Seat 8: hookstar22 (2810 in chips) @@ -958,14 +958,14 @@ Seat 9: maikel76 (8610 in chips) Lochdale: posts small blind 25 linkeloehtje: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [Ks 9h] +Dealt to Hero [Ks 9h] hookstar22: folds maikel76: folds whitehot: folds J.R.66350: folds HoddePodde: folds rrk775: raises 200 to 250 -s0rrow: folds +Hero: folds Lochdale: raises 2750 to 3000 and is all-in linkeloehtje: folds rrk775: folds @@ -977,7 +977,7 @@ 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 5: Hero (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) @@ -991,7 +991,7 @@ 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 5: Hero (3705 in chips) Seat 6: Lochdale (3300 in chips) Seat 7: linkeloehtje (1760 in chips) Seat 8: hookstar22 (2810 in chips) @@ -999,13 +999,13 @@ Seat 9: maikel76 (8610 in chips) linkeloehtje: posts small blind 25 hookstar22: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [3h 2s] +Dealt to Hero [3h 2s] maikel76: folds whitehot: folds J.R.66350: folds HoddePodde: calls 50 rrk775: raises 200 to 250 -s0rrow: folds +Hero: folds Lochdale: raises 3050 to 3300 and is all-in linkeloehtje: folds hookstar22: folds @@ -1025,7 +1025,7 @@ 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 5: Hero 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 @@ -1039,7 +1039,7 @@ 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 5: Hero (3705 in chips) Seat 6: Lochdale (6725 in chips) Seat 7: linkeloehtje (1735 in chips) Seat 8: hookstar22 (2760 in chips) @@ -1047,12 +1047,12 @@ Seat 9: maikel76 (8610 in chips) hookstar22: posts small blind 25 maikel76: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [7d As] +Dealt to Hero [7d As] whitehot: calls 50 J.R.66350: calls 50 HoddePodde: folds rrk775: raises 10620 to 10670 and is all-in -s0rrow: folds +Hero: folds Lochdale: folds linkeloehtje: calls 1735 and is all-in hookstar22: folds @@ -1077,7 +1077,7 @@ 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 5: Hero 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 @@ -1091,7 +1091,7 @@ 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 5: Hero (3705 in chips) Seat 6: Lochdale (6725 in chips) Seat 7: diablo_nz (7456 in chips) Seat 8: hookstar22 (2735 in chips) @@ -1099,11 +1099,11 @@ Seat 9: maikel76 (8560 in chips) maikel76: posts small blind 25 whitehot: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [Jc Jd] +Dealt to Hero [Jc Jd] J.R.66350: folds HoddePodde: folds rrk775: raises 7790 to 7840 and is all-in -s0rrow: calls 3705 and is all-in +Hero: calls 3705 and is all-in Lochdale: folds diablo_nz: folds hookstar22: folds @@ -1114,8 +1114,8 @@ whitehot: folds *** 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 +Hero: shows [Jc Jd] (two pair, Jacks and Fives) +Hero collected 7485 from pot *** SUMMARY *** Total pot 7485 | Rake 0 Board [5c 9s 5h Tc 2h] @@ -1123,7 +1123,7 @@ 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 5: Hero 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) @@ -1137,7 +1137,7 @@ 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 5: Hero (7485 in chips) Seat 6: Lochdale (6725 in chips) Seat 7: diablo_nz (7456 in chips) Seat 8: hookstar22 (2735 in chips) @@ -1145,10 +1145,10 @@ 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] +Dealt to Hero [Kc 8h] HoddePodde: folds rrk775: raises 4085 to 4135 and is all-in -s0rrow: folds +Hero: folds Lochdale: folds diablo_nz: folds hookstar22: folds @@ -1163,7 +1163,7 @@ 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 5: Hero 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) @@ -1177,7 +1177,7 @@ 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 5: Hero (7485 in chips) Seat 6: Lochdale (6725 in chips) Seat 7: diablo_nz (7456 in chips) Seat 8: hookstar22 (2735 in chips) @@ -1185,9 +1185,9 @@ 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] +Dealt to Hero [6h 4s] rrk775: folds -s0rrow: folds +Hero: folds Lochdale: folds diablo_nz: folds hookstar22: folds @@ -1203,7 +1203,7 @@ 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 5: Hero 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) @@ -1217,7 +1217,7 @@ 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 5: Hero (7485 in chips) Seat 6: Lochdale (6725 in chips) Seat 7: diablo_nz (7456 in chips) Seat 8: hookstar22 (2735 in chips) @@ -1225,8 +1225,8 @@ 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 +Dealt to Hero [2s 7s] +Hero: folds Lochdale: calls 50 diablo_nz: calls 50 hookstar22: folds @@ -1252,7 +1252,7 @@ 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 5: Hero 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) @@ -1266,15 +1266,15 @@ 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 5: Hero (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 +Hero: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [7h 7c] +Dealt to Hero [7h 7c] Lochdale: folds diablo_nz: folds hookstar22: calls 50 @@ -1283,15 +1283,15 @@ whitehot: folds J.R.66350: calls 50 HoddePodde: folds rrk775: calls 25 -s0rrow: checks +Hero: checks *** FLOP *** [9s 3c Jc] rrk775: checks -s0rrow: checks +Hero: checks hookstar22: bets 200 maikel76: calls 200 J.R.66350: calls 200 rrk775: calls 200 -s0rrow: folds +Hero: folds *** TURN *** [9s 3c Jc] [2h] rrk775: checks hookstar22: bets 650 @@ -1312,7 +1312,7 @@ 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 5: Hero (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 @@ -1326,15 +1326,15 @@ 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 5: Hero (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 +Hero: posts small blind 25 Lochdale: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [4h Jc] +Dealt to Hero [4h Jc] diablo_nz: calls 50 hookstar22: calls 50 maikel76: calls 50 @@ -1342,7 +1342,7 @@ whitehot: folds J.R.66350: calls 50 HoddePodde: folds rrk775: raises 8220 to 8270 and is all-in -s0rrow: folds +Hero: folds Lochdale: folds diablo_nz: folds hookstar22: folds @@ -1363,7 +1363,7 @@ 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 5: Hero (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 @@ -1377,7 +1377,7 @@ 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 5: Hero (7410 in chips) Seat 6: Lochdale (2465 in chips) Seat 7: diablo_nz (7356 in chips) Seat 8: hookstar22 (5485 in chips) @@ -1385,14 +1385,14 @@ Seat 9: maikel76 (8310 in chips) Lochdale: posts small blind 25 diablo_nz: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [Ad Js] +Dealt to Hero [Ad Js] hookstar22: calls 50 maikel76: folds whitehot: folds J.R.66350: calls 50 HoddePodde: folds rrk775: folds -s0rrow: calls 50 +Hero: calls 50 Lochdale: calls 25 diablo_nz: checks *** FLOP *** [2s 5c Th] @@ -1400,13 +1400,13 @@ Lochdale: checks diablo_nz: checks hookstar22: checks J.R.66350: checks -s0rrow: checks +Hero: checks *** TURN *** [2s 5c Th] [5s] Lochdale: bets 150 diablo_nz: calls 150 hookstar22: folds J.R.66350: folds -s0rrow: folds +Hero: folds *** RIVER *** [2s 5c Th 5s] [As] Lochdale: bets 200 diablo_nz: calls 200 @@ -1421,7 +1421,7 @@ 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 5: Hero (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 @@ -1435,7 +1435,7 @@ 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 5: Hero (7360 in chips) Seat 6: Lochdale (3015 in chips) Seat 7: diablo_nz (6956 in chips) Seat 8: hookstar22 (5435 in chips) @@ -1443,13 +1443,13 @@ Seat 9: maikel76 (8310 in chips) diablo_nz: posts small blind 25 hookstar22: posts big blind 50 *** HOLE CARDS *** -Dealt to s0rrow [7h Qd] +Dealt to Hero [7h Qd] maikel76: folds whitehot: folds J.R.66350: folds HoddePodde: folds rrk775: folds -s0rrow: folds +Hero: folds Lochdale: folds diablo_nz: calls 25 hookstar22: checks @@ -1468,7 +1468,7 @@ 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 5: Hero 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 @@ -1482,7 +1482,7 @@ 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 5: Hero (7360 in chips) Seat 6: Lochdale (3015 in chips) Seat 7: diablo_nz (7056 in chips) Seat 8: hookstar22 (5335 in chips) @@ -1490,12 +1490,12 @@ Seat 9: maikel76 (8310 in chips) hookstar22: posts small blind 50 maikel76: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [Js Ts] +Dealt to Hero [Js Ts] whitehot: folds J.R.66350: folds HoddePodde: folds rrk775: raises 9020 to 9120 and is all-in -s0rrow: folds +Hero: folds Lochdale: calls 3015 and is all-in diablo_nz: folds hookstar22: folds @@ -1515,7 +1515,7 @@ 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 5: Hero 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 @@ -1529,7 +1529,7 @@ 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 5: Hero (7360 in chips) Seat 6: Lochdale (3000 in chips) Seat 7: diablo_nz (7056 in chips) Seat 8: hookstar22 (5285 in chips) @@ -1537,11 +1537,11 @@ Seat 9: maikel76 (8210 in chips) maikel76: posts small blind 50 whitehot: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [4s 9d] +Dealt to Hero [4s 9d] J.R.66350: folds HoddePodde: folds rrk775: folds -s0rrow: folds +Hero: folds Lochdale: raises 200 to 300 diablo_nz: folds hookstar22: folds @@ -1569,7 +1569,7 @@ 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 5: Hero 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) @@ -1583,7 +1583,7 @@ 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 5: Hero (7360 in chips) Seat 6: Lochdale (1900 in chips) Seat 7: diablo_nz (7056 in chips) Seat 8: hookstar22 (5285 in chips) @@ -1591,10 +1591,10 @@ 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] +Dealt to Hero [3d 4h] HoddePodde: folds rrk775: raises 12185 to 12285 and is all-in -s0rrow: folds +Hero: folds Lochdale: calls 1900 and is all-in diablo_nz: folds hookstar22: folds @@ -1615,7 +1615,7 @@ 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 5: Hero 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) @@ -1629,7 +1629,7 @@ 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 5: Hero (7360 in chips) Seat 6: Lochdale (3950 in chips) Seat 7: diablo_nz (7056 in chips) Seat 8: hookstar22 (5285 in chips) @@ -1637,9 +1637,9 @@ 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] +Dealt to Hero [3h Ac] rrk775: folds -s0rrow: folds +Hero: folds Lochdale: folds diablo_nz: folds hookstar22: folds @@ -1659,7 +1659,7 @@ 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 5: Hero 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) @@ -1673,7 +1673,7 @@ 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 5: Hero (7360 in chips) Seat 6: Lochdale (3950 in chips) Seat 7: diablo_nz (7056 in chips) Seat 8: hookstar22 (5285 in chips) @@ -1681,8 +1681,8 @@ 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 +Dealt to Hero [4d Jc] +Hero: folds Lochdale: folds diablo_nz: folds hookstar22: folds @@ -1715,7 +1715,7 @@ 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 5: Hero 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) @@ -1729,15 +1729,15 @@ 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 5: Hero (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 +Hero: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [Ad Kc] +Dealt to Hero [Ad Kc] Lochdale: folds diablo_nz: calls 100 hookstar22: folds @@ -1746,13 +1746,13 @@ whitehot: folds J.R.66350: folds HoddePodde: folds rrk775: calls 50 -s0rrow: checks +Hero: checks *** FLOP *** [7h 4s 5h] rrk775: checks -s0rrow: checks +Hero: checks diablo_nz: bets 500 rrk775: calls 500 -s0rrow: folds +Hero: folds *** TURN *** [7h 4s 5h] [Qh] rrk775: checks diablo_nz: bets 500 @@ -1766,7 +1766,7 @@ 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 5: Hero (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) @@ -1780,15 +1780,15 @@ 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 5: Hero (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 +Hero: posts small blind 50 Lochdale: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [9d Qs] +Dealt to Hero [9d Qs] diablo_nz: folds hookstar22: calls 100 maikel76: calls 100 @@ -1796,7 +1796,7 @@ whitehot: folds J.R.66350: calls 100 HoddePodde: folds rrk775: raises 400 to 500 -s0rrow: folds +Hero: folds Lochdale: calls 400 hookstar22: folds maikel76: calls 400 @@ -1829,7 +1829,7 @@ 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 5: Hero (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 @@ -1843,7 +1843,7 @@ 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 5: Hero (7210 in chips) Seat 6: Lochdale (3450 in chips) Seat 7: diablo_nz (7756 in chips) Seat 8: hookstar22 (5185 in chips) @@ -1851,14 +1851,14 @@ Seat 9: maikel76 (5710 in chips) Lochdale: posts small blind 50 diablo_nz: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [Jc 7s] +Dealt to Hero [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 +Hero: folds Lochdale: calls 3400 and is all-in diablo_nz: folds maikel76: folds @@ -1878,7 +1878,7 @@ 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 5: Hero (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) @@ -1892,7 +1892,7 @@ 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 5: Hero (7210 in chips) Seat 6: Lochdale (3000 in chips) Seat 7: diablo_nz (7656 in chips) Seat 8: hookstar22 (5185 in chips) @@ -1900,13 +1900,13 @@ Seat 9: maikel76 (5610 in chips) diablo_nz: posts small blind 50 hookstar22: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [4c Tc] +Dealt to Hero [4c Tc] maikel76: calls 100 whitehot: calls 100 J.R.66350: calls 100 HoddePodde: raises 500 to 600 rrk775: calls 600 -s0rrow: folds +Hero: folds Lochdale: raises 2400 to 3000 and is all-in diablo_nz: folds hookstar22: folds @@ -1930,7 +1930,7 @@ 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 5: Hero 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 @@ -1944,7 +1944,7 @@ 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 5: Hero (7210 in chips) Seat 6: Lochdale (3000 in chips) Seat 7: diablo_nz (7606 in chips) Seat 8: hookstar22 (5085 in chips) @@ -1952,13 +1952,13 @@ Seat 9: maikel76 (5510 in chips) hookstar22: posts small blind 50 maikel76: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [8c Jc] +Dealt to Hero [8c Jc] hookstar22 said, "omg" whitehot: folds J.R.66350: folds HoddePodde: folds rrk775: folds -s0rrow: folds +Hero: folds Lochdale: folds diablo_nz: folds hookstar22: calls 50 @@ -1979,7 +1979,7 @@ 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 5: Hero 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 @@ -1993,7 +1993,7 @@ 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 5: Hero (7210 in chips) Seat 6: Lochdale (3000 in chips) Seat 7: diablo_nz (7606 in chips) Seat 8: hookstar22 (4785 in chips) @@ -2001,12 +2001,12 @@ Seat 9: maikel76 (5810 in chips) maikel76: posts small blind 50 whitehot: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [Td 4s] +Dealt to Hero [Td 4s] hookstar22 said, "nh" J.R.66350: folds HoddePodde: folds rrk775: raises 200 to 300 -s0rrow: folds +Hero: folds Lochdale: raises 2700 to 3000 and is all-in diablo_nz: folds hookstar22: folds @@ -2027,7 +2027,7 @@ 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 5: Hero 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) @@ -2041,7 +2041,7 @@ 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 5: Hero (7210 in chips) Seat 6: Lochdale (6150 in chips) Seat 7: diablo_nz (7606 in chips) Seat 8: hookstar22 (4785 in chips) @@ -2049,10 +2049,10 @@ 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] +Dealt to Hero [Kc 6s] HoddePodde: folds rrk775: raises 8035 to 8135 and is all-in -s0rrow: folds +Hero: folds Lochdale: folds diablo_nz: folds hookstar22: folds @@ -2067,7 +2067,7 @@ 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 5: Hero 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) @@ -2081,7 +2081,7 @@ 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 5: Hero (7210 in chips) Seat 6: Lochdale (6150 in chips) Seat 7: diablo_nz (7606 in chips) Seat 8: hookstar22 (4785 in chips) @@ -2089,9 +2089,9 @@ 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] +Dealt to Hero [3d 3s] rrk775: raises 8185 to 8285 and is all-in -s0rrow: folds +Hero: folds Lochdale: folds diablo_nz: folds hookstar22: folds @@ -2115,7 +2115,7 @@ 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 5: Hero 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) @@ -2129,7 +2129,7 @@ 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 5: Hero (7210 in chips) Seat 6: Lochdale (6150 in chips) Seat 7: diablo_nz (7606 in chips) Seat 8: hookstar22 (4785 in chips) @@ -2137,8 +2137,8 @@ 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 +Dealt to Hero [7s 4s] +Hero: folds Lochdale: folds diablo_nz: calls 100 hookstar22: folds @@ -2162,7 +2162,7 @@ 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 5: Hero 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) @@ -2176,15 +2176,15 @@ 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 5: Hero (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 +Hero: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [Jc 9d] +Dealt to Hero [Jc 9d] Lochdale: folds diablo_nz: folds hookstar22: raises 4685 to 4785 and is all-in @@ -2193,7 +2193,7 @@ whitehot: folds J.R.66350: raises 3865 to 8650 and is all-in HoddePodde: folds rrk775: folds -s0rrow: folds +Hero: folds *** FLOP *** [6h As 2h] *** TURN *** [6h As 2h] [4d] *** RIVER *** [6h As 2h 4d] [Qs] @@ -2209,7 +2209,7 @@ 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 5: Hero (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 @@ -2223,15 +2223,15 @@ 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 5: Hero (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 +Hero: posts small blind 50 Lochdale: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [Qs Qc] +Dealt to Hero [Qs Qc] diablo_nz: calls 100 hookstar22: folds maikel76: folds @@ -2239,22 +2239,22 @@ whitehot: folds J.R.66350: calls 100 HoddePodde: folds rrk775: folds -s0rrow: calls 50 +Hero: calls 50 Lochdale: raises 300 to 400 diablo_nz: calls 300 J.R.66350: calls 300 -s0rrow: calls 300 +Hero: calls 300 *** FLOP *** [Td 2d 4c] -s0rrow: bets 6710 and is all-in +Hero: 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) +Hero: shows [Qs Qc] (a pair of Queens) Lochdale: shows [Js Jh] (a pair of Jacks) -s0rrow collected 7188 from side pot +Hero 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 @@ -2265,7 +2265,7 @@ 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 5: Hero (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) @@ -2279,7 +2279,7 @@ 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 5: Hero (8148 in chips) Seat 6: Lochdale (3000 in chips) Seat 7: diablo_nz (8068 in chips) Seat 8: hookstar22 (3000 in chips) @@ -2287,14 +2287,14 @@ Seat 9: maikel76 (17330 in chips) Lochdale: posts small blind 50 diablo_nz: posts big blind 100 *** HOLE CARDS *** -Dealt to s0rrow [5s 7h] +Dealt to Hero [5s 7h] hookstar22: folds maikel76: folds whitehot: folds J.R.66350: folds HoddePodde: folds rrk775: raises 300 to 400 -s0rrow: folds +Hero: folds Lochdale: raises 2600 to 3000 and is all-in diablo_nz: calls 2900 rrk775: raises 7100 to 10100 and is all-in @@ -2316,7 +2316,7 @@ 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 5: Hero (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) @@ -2330,19 +2330,19 @@ 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 5: Hero (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] +Dealt to Hero [2h Th] whitehot: folds J.R.66350: calls 100 HoddePodde: calls 100 rrk775: calls 100 -s0rrow: folds +Hero: folds Lochdale: raises 2900 to 3000 and is all-in hookstar22: folds maikel76: folds @@ -2357,7 +2357,7 @@ 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 5: Hero 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 @@ -2370,18 +2370,18 @@ 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 5: Hero (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] +Dealt to Hero [7h Qh] J.R.66350: folds HoddePodde: folds rrk775: calls 100 -s0rrow: folds +Hero: folds Lochdale: folds hookstar22: folds maikel76: calls 50 @@ -2403,7 +2403,7 @@ 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 5: Hero 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) @@ -2416,36 +2416,36 @@ 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 5: Hero (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] +Dealt to Hero [Kc Kd] HoddePodde: folds rrk775: folds -s0rrow: raises 300 to 450 +Hero: raises 300 to 450 Lochdale: folds hookstar22: folds maikel76: calls 450 whitehot: folds J.R.66350: folds *** FLOP *** [Qs 3d 4h] -s0rrow: bets 600 +Hero: bets 600 maikel76: raises 600 to 1200 -s0rrow: calls 600 +Hero: calls 600 *** TURN *** [Qs 3d 4h] [Ks] -s0rrow: bets 600 +Hero: bets 600 maikel76: calls 600 *** RIVER *** [Qs 3d 4h Ks] [7s] -s0rrow: checks +Hero: checks maikel76: checks *** SHOW DOWN *** -s0rrow: shows [Kc Kd] (three of a kind, Kings) +Hero: shows [Kc Kd] (three of a kind, Kings) maikel76: mucks hand -s0rrow collected 4725 from pot +Hero collected 4725 from pot *** SUMMARY *** Total pot 4725 | Rake 0 Board [Qs 3d 4h Ks 7s] @@ -2453,7 +2453,7 @@ 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 5: Hero 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] @@ -2466,20 +2466,20 @@ 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 5: Hero (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] +Dealt to Hero [9d 3d] maikel76 said, "nh" rrk775: folds -s0rrow: folds +Hero: folds Lochdale: folds hookstar22: folds -s0rrow said, "nice check" +Hero said, "nice check" maikel76: raises 450 to 600 whitehot: folds J.R.66350: calls 525 @@ -2505,7 +2505,7 @@ 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 5: Hero 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 @@ -2518,15 +2518,15 @@ 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 5: Hero (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 +Dealt to Hero [Qd Js] +Hero: calls 150 Lochdale: folds hookstar22: folds maikel76: calls 150 @@ -2537,25 +2537,25 @@ rrk775: checks *** FLOP *** [Ks 3c Jd] HoddePodde: checks rrk775: checks -s0rrow: checks +Hero: checks snowboardr21 is connected maikel76: checks J.R.66350: checks *** TURN *** [Ks 3c Jd] [3h] HoddePodde: checks rrk775: checks -s0rrow: bets 150 +Hero: bets 150 maikel76: folds J.R.66350: calls 150 HoddePodde: folds rrk775: folds *** RIVER *** [Ks 3c Jd 3h] [8h] -s0rrow: checks +Hero: checks J.R.66350: checks *** SHOW DOWN *** -s0rrow: shows [Qd Js] (two pair, Jacks and Threes) +Hero: shows [Qd Js] (two pair, Jacks and Threes) J.R.66350: mucks hand -s0rrow collected 1050 from pot +Hero collected 1050 from pot *** SUMMARY *** Total pot 1050 | Rake 0 Board [Ks 3c Jd 3h 8h] @@ -2563,7 +2563,7 @@ 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 5: Hero 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 @@ -2576,15 +2576,15 @@ 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 5: Hero (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 +Hero: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [Jd Ac] +Dealt to Hero [Jd Ac] Lochdale: folds snowboardr21: folds hookstar22: folds @@ -2593,13 +2593,13 @@ whitehot: folds J.R.66350: folds HoddePodde: folds rrk775: calls 375 -s0rrow: calls 300 +Hero: calls 300 *** FLOP *** [Tc 9s 5d] rrk775: checks -s0rrow: checks +Hero: checks maikel76: bets 600 rrk775: calls 600 -s0rrow: folds +Hero: folds *** TURN *** [Tc 9s 5d] [Td] rrk775: bets 1200 maikel76: calls 1200 @@ -2617,7 +2617,7 @@ 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 5: Hero (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) @@ -2631,15 +2631,15 @@ 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 5: Hero (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 +Hero: posts small blind 75 Lochdale: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [Ks Tc] +Dealt to Hero [Ks Tc] snowboardr21: calls 150 hookstar22: folds maikel76: folds @@ -2647,19 +2647,19 @@ whitehot: folds J.R.66350: calls 150 HoddePodde: folds rrk775: folds -s0rrow: calls 75 +Hero: calls 75 Lochdale: checks *** FLOP *** [2h 8s 4d] -s0rrow: checks +Hero: checks Lochdale: checks snowboardr21: checks J.R.66350: checks *** TURN *** [2h 8s 4d] [Jd] -s0rrow: checks +Hero: checks Lochdale: checks snowboardr21: checks J.R.66350: bets 450 -s0rrow: folds +Hero: folds Lochdale: folds snowboardr21: folds J.R.66350 collected 600 from pot @@ -2670,7 +2670,7 @@ 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 5: Hero (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) @@ -2684,7 +2684,7 @@ 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 5: Hero (12773 in chips) Seat 6: Lochdale (5300 in chips) Seat 7: snowboardr21 (17405 in chips) Seat 8: hookstar22 (4950 in chips) @@ -2692,14 +2692,14 @@ Seat 9: maikel76 (12855 in chips) Lochdale: posts small blind 75 snowboardr21: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [4c Ac] +Dealt to Hero [4c Ac] hookstar22: raises 450 to 600 maikel76: folds whitehot: folds J.R.66350: raises 1500 to 2100 HoddePodde: folds rrk775: folds -s0rrow: folds +Hero: folds Lochdale: raises 3200 to 5300 and is all-in snowboardr21: folds hookstar22: calls 4350 and is all-in @@ -2720,7 +2720,7 @@ 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 5: Hero (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 @@ -2733,7 +2733,7 @@ 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 4: Hero (12773 in chips) Seat 5: stoplost (8225 in chips) Seat 6: puddles1985 (8650 in chips) Seat 7: Angie0502 (2295 in chips) @@ -2742,10 +2742,10 @@ Seat 9: Tsetung (6720 in chips) Tsetung: posts small blind 75 Old Brother: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [Jh Qd] +Dealt to Hero [Jh Qd] fantasticsme: raises 740 to 890 and is all-in ToqueSuave69: folds -s0rrow: folds +Hero: folds stoplost: folds puddles1985: folds Angie0502: folds @@ -2759,7 +2759,7 @@ 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 4: Hero 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) @@ -2773,7 +2773,7 @@ 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 4: Hero (12773 in chips) Seat 5: stoplost (8225 in chips) Seat 6: puddles1985 (8650 in chips) Seat 7: Angie0502 (2295 in chips) @@ -2782,9 +2782,9 @@ Seat 9: Tsetung (6645 in chips) Old Brother: posts small blind 75 fantasticsme: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [Ad Qs] +Dealt to Hero [Ad Qs] ToqueSuave69: calls 150 -s0rrow: calls 150 +Hero: calls 150 stoplost: raises 600 to 750 puddles1985: folds Angie0502: folds @@ -2793,7 +2793,7 @@ Tsetung: folds Old Brother: folds fantasticsme: calls 600 ToqueSuave69: calls 600 -s0rrow: folds +Hero: folds *** FLOP *** [3h Kh Jc] fantasticsme: bets 365 and is all-in ToqueSuave69: raises 365 to 730 @@ -2818,7 +2818,7 @@ 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 4: Hero 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) @@ -2831,16 +2831,16 @@ PokerStars Game #12637920202: Tournament #63858762, $5.00+$0.50 Hold'em No Limit 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 4: Hero (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 +Hero: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [Ah 9d] +Dealt to Hero [Ah 9d] stoplost: folds puddles1985: folds ToqueSuave69 said, "sorry, stopwatch, spit happens!!" @@ -2849,23 +2849,23 @@ Angie0502: calls 150 Tsetung: folds Old Brother: folds ToqueSuave69: raises 150 to 300 -s0rrow: calls 150 +Hero: calls 150 Angie0502: calls 150 *** FLOP *** [6c 4c 3c] ToqueSuave69: checks -s0rrow: checks +Hero: checks Angie0502: checks *** TURN *** [6c 4c 3c] [Kd] ToqueSuave69: checks -s0rrow: checks +Hero: checks Angie0502: checks *** RIVER *** [6c 4c 3c Kd] [Th] ToqueSuave69: checks -s0rrow: checks +Hero: checks Angie0502: checks *** SHOW DOWN *** ToqueSuave69: shows [6h Ac] (a pair of Sixes) -s0rrow: mucks hand +Hero: mucks hand azhooligan is connected Angie0502: mucks hand ToqueSuave69 collected 900 from pot @@ -2874,7 +2874,7 @@ 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 4: Hero (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] @@ -2888,16 +2888,16 @@ 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 4: Hero (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 +Hero: posts small blind 75 stoplost: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [As 4s] +Dealt to Hero [As 4s] ToqueSuave69 said, "That hand blew" puddles1985: calls 150 Angie0502: folds @@ -2906,14 +2906,14 @@ Tsetung: folds Old Brother: folds azhooligan: folds ToqueSuave69: calls 150 -s0rrow: calls 75 +Hero: calls 75 stoplost: checks *** FLOP *** [3h 7s Th] -s0rrow: checks +Hero: checks stoplost: checks puddles1985: bets 300 ToqueSuave69: calls 300 -s0rrow: folds +Hero: folds stoplost: folds *** TURN *** [3h 7s Th] [Qd] puddles1985: bets 600 @@ -2926,7 +2926,7 @@ 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 4: Hero (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) @@ -2940,7 +2940,7 @@ 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 4: Hero (12173 in chips) Seat 5: stoplost (3595 in chips) Seat 6: puddles1985 (9400 in chips) Seat 7: Angie0502 (1995 in chips) @@ -2949,14 +2949,14 @@ Seat 9: Tsetung (6645 in chips) stoplost: posts small blind 75 puddles1985: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [8h Qc] +Dealt to Hero [8h Qc] Angie0502: folds 2.7 acequeen: raises 300 to 450 Tsetung: folds Old Brother: folds azhooligan: folds ToqueSuave69: calls 450 -s0rrow: folds +Hero: folds stoplost: folds puddles1985: calls 300 *** FLOP *** [6d 5d 7c] @@ -2973,7 +2973,7 @@ 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 4: Hero (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) @@ -2987,7 +2987,7 @@ 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 4: Hero (12173 in chips) Seat 5: stoplost (3520 in chips) Seat 6: puddles1985 (8950 in chips) Seat 7: Angie0502 (1995 in chips) @@ -2996,13 +2996,13 @@ Seat 9: Tsetung (6645 in chips) puddles1985: posts small blind 75 Angie0502: posts big blind 150 *** HOLE CARDS *** -Dealt to s0rrow [7h 4h] +Dealt to Hero [7h 4h] 2.7 acequeen: folds Tsetung: folds Old Brother: folds azhooligan: folds ToqueSuave69: calls 150 -s0rrow: folds +Hero: folds stoplost: folds puddles1985: calls 75 Angie0502: checks @@ -3022,7 +3022,7 @@ 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 4: Hero 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 @@ -3036,7 +3036,7 @@ 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 4: Hero (12173 in chips) Seat 5: stoplost (3520 in chips) Seat 6: puddles1985 (9250 in chips) Seat 7: Angie0502 (1845 in chips) @@ -3045,12 +3045,12 @@ 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] +Dealt to Hero [Ah 3d] Tsetung: folds Old Brother: folds azhooligan: folds ToqueSuave69: calls 150 -s0rrow: folds +Hero: folds stoplost: folds puddles1985: calls 150 Angie0502: raises 1695 to 1845 and is all-in @@ -3070,7 +3070,7 @@ 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 4: Hero 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 @@ -3084,7 +3084,7 @@ 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 4: Hero (12173 in chips) Seat 5: stoplost (3520 in chips) Seat 6: puddles1985 (9100 in chips) Seat 7: Angie0502 (3990 in chips) @@ -3093,11 +3093,11 @@ 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] +Dealt to Hero [6c 3d] Old Brother: folds azhooligan: calls 150 ToqueSuave69: raises 150 to 300 -s0rrow: folds +Hero: folds stoplost: folds puddles1985: calls 300 Angie0502: folds @@ -3133,7 +3133,7 @@ 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 4: Hero 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) @@ -3147,7 +3147,7 @@ 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 4: Hero (12173 in chips) Seat 5: stoplost (3520 in chips) Seat 6: puddles1985 (5320 in chips) Seat 7: Angie0502 (3990 in chips) @@ -3156,10 +3156,10 @@ Seat 9: Tsetung (6495 in chips) Tsetung: posts small blind 100 Old Brother: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [6d 9d] +Dealt to Hero [6d 9d] azhooligan: folds ToqueSuave69: folds -s0rrow: folds +Hero: folds stoplost is disconnected stoplost is connected ToqueSuave69 said, "that's what happens when you don't pay attention!!" @@ -3176,7 +3176,7 @@ 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 4: Hero 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) @@ -3190,7 +3190,7 @@ 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 4: Hero (12173 in chips) Seat 5: stoplost (3820 in chips) Seat 6: puddles1985 (5320 in chips) Seat 7: Angie0502 (3990 in chips) @@ -3199,9 +3199,9 @@ Seat 9: Tsetung (6395 in chips) Old Brother: posts small blind 100 azhooligan: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [9h 3h] +Dealt to Hero [9h 3h] ToqueSuave69: calls 200 -s0rrow: folds +Hero: folds stoplost: folds puddles1985: folds Angie0502: folds @@ -3233,7 +3233,7 @@ 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 4: Hero 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) @@ -3247,7 +3247,7 @@ 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 4: Hero (12173 in chips) Seat 5: stoplost (3820 in chips) Seat 6: puddles1985 (5320 in chips) Seat 7: Angie0502 (3990 in chips) @@ -3256,8 +3256,8 @@ 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 +Dealt to Hero [6h 2c] +Hero: folds stoplost: folds puddles1985: raises 400 to 600 Angie0502: folds @@ -3292,7 +3292,7 @@ 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 4: Hero 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) @@ -3306,16 +3306,16 @@ 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 4: Hero (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 +Hero: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [Jc 4h] +Dealt to Hero [Jc 4h] stoplost: folds puddles1985: calls 200 Angie0502: folds @@ -3326,7 +3326,7 @@ Tsetung: folds Old Brother: folds azhooligan: folds ToqueSuave69: raises 200 to 400 -s0rrow: folds +Hero: folds puddles1985: calls 200 *** FLOP *** [3h Ts 4d] ToqueSuave69: bets 200 @@ -3347,7 +3347,7 @@ 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 4: Hero (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) @@ -3366,17 +3366,17 @@ 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) +Seat 9: Hero (11973 in chips) I am 8: posts small blind 100 fetchmeabeer: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [7c Kc] +Dealt to Hero [7c Kc] markd7: calls 200 CawfeKid: folds rapidrush: folds Jumping: folds BigDoob: raises 1485 to 1685 and is all-in -s0rrow: folds +Hero: folds anaconda1234: folds I am 8: folds fetchmeabeer: folds @@ -3400,7 +3400,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -3413,15 +3413,15 @@ 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) +Seat 9: Hero (11973 in chips) fetchmeabeer: posts small blind 100 markd7: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [9s 8h] +Dealt to Hero [9s 8h] CawfeKid: folds rapidrush: calls 200 Jumping: folds -s0rrow: folds +Hero: folds anaconda1234: folds I am 8: folds fetchmeabeer: calls 100 @@ -3449,7 +3449,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -3462,14 +3462,14 @@ 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) +Seat 9: Hero (11973 in chips) markd7: posts small blind 100 CawfeKid: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [Ah 7s] +Dealt to Hero [Ah 7s] rapidrush: calls 200 Jumping: folds -s0rrow: folds +Hero: folds anaconda1234: folds I am 8: folds fetchmeabeer: folds @@ -3499,7 +3499,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -3513,14 +3513,14 @@ 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) +Seat 9: Hero (11973 in chips) CawfeKid: posts small blind 100 rapidrush: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [5d 3d] +Dealt to Hero [5d 3d] Jumping: folds jackie001: calls 200 -s0rrow: folds +Hero: folds anaconda1234: folds I am 8: calls 200 fetchmeabeer: folds @@ -3545,7 +3545,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -3559,13 +3559,13 @@ 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) +Seat 9: Hero (11973 in chips) rapidrush: posts small blind 100 Jumping: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [8c 4h] +Dealt to Hero [8c 4h] jackie001: calls 200 -s0rrow: folds +Hero: folds anaconda1234: folds I am 8: folds fetchmeabeer: folds @@ -3594,7 +3594,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -3608,12 +3608,12 @@ 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) +Seat 9: Hero (11973 in chips) Jumping: posts small blind 100 jackie001: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [Qh 4s] -s0rrow: folds +Dealt to Hero [Qh 4s] +Hero: folds anaconda1234: folds I am 8: folds fetchmeabeer: folds @@ -3633,7 +3633,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -3647,11 +3647,11 @@ 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) +Seat 9: Hero (11973 in chips) jackie001: posts small blind 100 -s0rrow: posts big blind 200 +Hero: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [9d 2s] +Dealt to Hero [9d 2s] anaconda1234: folds I am 8: folds fetchmeabeer: raises 400 to 600 @@ -3660,7 +3660,7 @@ CawfeKid: folds rapidrush: calls 600 Jumping: folds jackie001: folds -s0rrow: folds +Hero: folds *** FLOP *** [6h 9c 8d] fetchmeabeer: bets 1000 rapidrush: folds @@ -3677,7 +3677,7 @@ 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 +Seat 9: Hero (big blind) folded before Flop @@ -3691,11 +3691,11 @@ 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 +Seat 9: Hero (11773 in chips) +Hero: posts small blind 100 anaconda1234: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [Td 8h] +Dealt to Hero [Td 8h] I am 8: folds fetchmeabeer: folds markd7: folds @@ -3703,10 +3703,10 @@ CawfeKid: folds rapidrush: folds Jumping: folds jackie001: calls 200 -s0rrow: calls 100 +Hero: calls 100 anaconda1234: raises 4195 to 4395 and is all-in jackie001: calls 4195 -s0rrow: folds +Hero: folds *** FLOP *** [7d Jd Kc] *** TURN *** [7d Jd Kc] [6c] *** RIVER *** [7d Jd Kc 6c] [Kh] @@ -3725,7 +3725,7 @@ 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 +Seat 9: Hero (small blind) folded before Flop @@ -3739,18 +3739,18 @@ 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) +Seat 9: Hero (11573 in chips) anaconda1234: posts small blind 100 I am 8: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [Ks 6d] +Dealt to Hero [Ks 6d] fetchmeabeer: raises 400 to 600 markd7: folds CawfeKid: folds rapidrush: folds Jumping: folds jackie001: calls 600 -s0rrow: folds +Hero: folds anaconda1234: folds I am 8: folds *** FLOP *** [Ac 9c 2c] @@ -3779,7 +3779,7 @@ 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) +Seat 9: Hero (button) folded before Flop (didn't bet) @@ -3793,17 +3793,17 @@ 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) +Seat 9: Hero (11573 in chips) I am 8: posts small blind 100 fetchmeabeer: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [Kd Ts] +Dealt to Hero [Kd Ts] markd7: folds CawfeKid: folds rapidrush: folds Jumping: folds jackie001: raises 400 to 600 -s0rrow: folds +Hero: folds anaconda1234: folds I am 8: raises 2890 to 3490 and is all-in fetchmeabeer: folds @@ -3826,7 +3826,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -3839,15 +3839,15 @@ 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) +Seat 9: Hero (11573 in chips) markd7: posts small blind 100 CawfeKid: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [5d 6c] +Dealt to Hero [5d 6c] rapidrush: folds Jumping: folds jackie001: raises 200 to 400 -s0rrow: folds +Hero: folds anaconda1234: folds fetchmeabeer: calls 400 markd7: folds @@ -3869,7 +3869,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -3882,14 +3882,14 @@ 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) +Seat 9: Hero (11573 in chips) CawfeKid: posts small blind 100 rapidrush: posts big blind 200 *** HOLE CARDS *** -Dealt to s0rrow [4d 9h] +Dealt to Hero [4d 9h] Jumping: folds jackie001: calls 200 -s0rrow: folds +Hero: folds anaconda1234: folds fetchmeabeer: folds markd7: raises 600 to 800 @@ -3922,7 +3922,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -3936,7 +3936,7 @@ 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) +Seat 9: Hero (11573 in chips) anaconda1234: posts the ante 25 PS2 MAN: posts the ante 25 fetchmeabeer: posts the ante 25 @@ -3945,13 +3945,13 @@ 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 +Hero: posts the ante 25 rapidrush: posts small blind 150 Jumping: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [2d 6s] +Dealt to Hero [2d 6s] jackie001: folds -s0rrow: folds +Hero: folds anaconda1234: raises 300 to 600 PS2 MAN: folds fetchmeabeer: folds @@ -3976,7 +3976,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -3990,7 +3990,7 @@ 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) +Seat 9: Hero (11548 in chips) anaconda1234: posts the ante 25 PS2 MAN: posts the ante 25 fetchmeabeer: posts the ante 25 @@ -3999,12 +3999,12 @@ 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 +Hero: posts the ante 25 Jumping: posts small blind 150 jackie001: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [4c 8d] -s0rrow: folds +Dealt to Hero [4c 8d] +Hero: folds anaconda1234: raises 300 to 600 markd7 said, "been there and back" PS2 MAN: folds @@ -4025,7 +4025,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -4039,7 +4039,7 @@ 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) +Seat 9: Hero (11523 in chips) anaconda1234: posts the ante 25 PS2 MAN: posts the ante 25 fetchmeabeer: posts the ante 25 @@ -4048,11 +4048,11 @@ 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 +Hero: posts the ante 25 jackie001: posts small blind 150 -s0rrow: posts big blind 300 +Hero: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [8h Th] +Dealt to Hero [8h Th] anaconda1234: folds PS2 MAN: folds fetchmeabeer: folds @@ -4062,24 +4062,24 @@ CawfeKid: folds rapidrush: calls 300 Jumping: folds jackie001: calls 150 -s0rrow: checks +Hero: checks *** FLOP *** [6d 2c Tc] jackie001: bets 300 -s0rrow: calls 300 +Hero: calls 300 rapidrush: calls 300 *** TURN *** [6d 2c Tc] [Js] jackie001: bets 300 -s0rrow: calls 300 +Hero: calls 300 rapidrush: calls 300 *** RIVER *** [6d 2c Tc Js] [5c] jackie001: bets 600 fetchmeabeer is disconnected fetchmeabeer is connected -s0rrow: calls 600 +Hero: calls 600 rapidrush: calls 600 *** SHOW DOWN *** jackie001: shows [4d 9c] (high card Jack) -s0rrow: shows [8h Th] (a pair of Tens) +Hero: shows [8h Th] (a pair of Tens) rapidrush: shows [Qd Jc] (a pair of Jacks) rapidrush collected 4725 from pot *** SUMMARY *** @@ -4093,7 +4093,7 @@ 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 +Seat 9: Hero (big blind) showed [8h Th] and lost with a pair of Tens @@ -4107,7 +4107,7 @@ 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) +Seat 9: Hero (9998 in chips) anaconda1234: posts the ante 25 PS2 MAN: posts the ante 25 fetchmeabeer: posts the ante 25 @@ -4116,11 +4116,11 @@ 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 +Hero: posts the ante 25 +Hero: posts small blind 150 anaconda1234: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [Ts 2s] +Dealt to Hero [Ts 2s] markd7 said, "ok" PS2 MAN: folds fetchmeabeer: folds @@ -4129,7 +4129,7 @@ CawfeKid: folds rapidrush: folds Jumping: folds jackie001: calls 300 -s0rrow: folds +Hero: folds anaconda1234: checks *** FLOP *** [2h 9h 9s] anaconda1234: bets 1200 @@ -4154,7 +4154,7 @@ 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 +Seat 9: Hero (small blind) folded before Flop @@ -4168,7 +4168,7 @@ 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) +Seat 9: Hero (9823 in chips) anaconda1234: posts the ante 25 PS2 MAN: posts the ante 25 fetchmeabeer: posts the ante 25 @@ -4177,27 +4177,27 @@ 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 +Hero: posts the ante 25 anaconda1234: posts small blind 150 PS2 MAN: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [Ks 9d] +Dealt to Hero [Ks 9d] fetchmeabeer: folds markd7: folds CawfeKid: folds rapidrush: folds Jumping: folds jackie001: calls 300 -s0rrow: calls 300 +Hero: calls 300 anaconda1234: raises 600 to 900 PS2 MAN: calls 600 jackie001: calls 600 -s0rrow: calls 600 +Hero: calls 600 *** FLOP *** [Qs 7c 6h] anaconda1234: bets 300 PS2 MAN: calls 300 jackie001: raises 300 to 600 -s0rrow: folds +Hero: folds anaconda1234: calls 300 PS2 MAN: calls 300 *** TURN *** [Qs 7c 6h] [3s] @@ -4223,7 +4223,7 @@ 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 +Seat 9: Hero (button) folded on the Flop @@ -4237,7 +4237,7 @@ 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) +Seat 9: Hero (8898 in chips) anaconda1234: posts the ante 25 PS2 MAN: posts the ante 25 fetchmeabeer: posts the ante 25 @@ -4246,31 +4246,31 @@ 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 +Hero: posts the ante 25 PS2 MAN: posts small blind 150 fetchmeabeer: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [Jh Jc] +Dealt to Hero [Jh Jc] markd7: folds CawfeKid: folds rapidrush: folds Jumping: folds jackie001: folds -s0rrow: raises 600 to 900 +Hero: raises 600 to 900 anaconda1234: calls 900 PS2 MAN: calls 750 fetchmeabeer: folds *** FLOP *** [Kc Qh 2d] PS2 MAN: checks -s0rrow: checks +Hero: checks anaconda1234: bets 300 PS2 MAN: folds -s0rrow: calls 300 +Hero: calls 300 *** TURN *** [Kc Qh 2d] [Kh] -s0rrow: bets 1200 +Hero: bets 1200 anaconda1234: folds -s0rrow collected 3825 from pot -s0rrow: doesn't show hand +Hero collected 3825 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 3825 | Rake 0 Board [Kc Qh 2d Kh] @@ -4282,7 +4282,7 @@ 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) +Seat 9: Hero collected (3825) @@ -4296,7 +4296,7 @@ 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) +Seat 9: Hero (11498 in chips) anaconda1234: posts the ante 25 PS2 MAN: posts the ante 25 fetchmeabeer: posts the ante 25 @@ -4305,16 +4305,16 @@ 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 +Hero: posts the ante 25 fetchmeabeer: posts small blind 150 markd7: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [3h 2c] +Dealt to Hero [3h 2c] CawfeKid: folds rapidrush: calls 300 Jumping: folds jackie001: calls 300 -s0rrow: folds +Hero: folds anaconda1234: folds PS2 MAN: raises 1896 to 2196 and is all-in fetchmeabeer: folds @@ -4339,7 +4339,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -4352,7 +4352,7 @@ 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) +Seat 9: Hero (11473 in chips) anaconda1234: posts the ante 25 fetchmeabeer: posts the ante 25 markd7: posts the ante 25 @@ -4360,15 +4360,15 @@ 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 +Hero: posts the ante 25 markd7: posts small blind 150 CawfeKid: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [Qd Kc] +Dealt to Hero [Qd Kc] rapidrush: calls 300 Jumping: folds jackie001: raises 600 to 900 -s0rrow: folds +Hero: folds anaconda1234: folds fetchmeabeer: folds markd7: folds @@ -4390,7 +4390,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -4403,7 +4403,7 @@ 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) +Seat 9: Hero (11448 in chips) anaconda1234: posts the ante 25 fetchmeabeer: posts the ante 25 markd7: posts the ante 25 @@ -4411,14 +4411,14 @@ 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 +Hero: posts the ante 25 CawfeKid: posts small blind 150 rapidrush: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [Qd Qs] +Dealt to Hero [Qd Qs] Jumping: folds jackie001: raises 300 to 600 -s0rrow: raises 900 to 1500 +Hero: raises 900 to 1500 anaconda1234: folds fetchmeabeer: folds markd7: folds @@ -4427,15 +4427,15 @@ rapidrush: folds jackie001: calls 900 *** FLOP *** [Ts 5s 4s] jackie001: bets 1200 -s0rrow: calls 1200 +Hero: calls 1200 *** TURN *** [Ts 5s 4s] [6c] jackie001: bets 51915 and is all-in -s0rrow: calls 8723 and is all-in +Hero: 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 +Hero: shows [Qd Qs] (two pair, Queens and Fives) +Hero collected 23496 from pot *** SUMMARY *** Total pot 23496 | Rake 0 Board [Ts 5s 4s 6c 5d] @@ -4446,7 +4446,7 @@ 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 +Seat 9: Hero showed [Qd Qs] and won (23496) with two pair, Queens and Fives @@ -4459,7 +4459,7 @@ 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) +Seat 9: Hero (23496 in chips) anaconda1234: posts the ante 25 fetchmeabeer: posts the ante 25 markd7: posts the ante 25 @@ -4467,13 +4467,13 @@ 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 +Hero: posts the ante 25 rapidrush: posts small blind 150 Jumping: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [4d Ks] +Dealt to Hero [4d Ks] jackie001: calls 300 -s0rrow: folds +Hero: folds anaconda1234: raises 900 to 1200 fetchmeabeer: folds markd7: folds @@ -4493,7 +4493,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -4506,7 +4506,7 @@ 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) +Seat 9: Hero (23471 in chips) anaconda1234: posts the ante 25 fetchmeabeer: posts the ante 25 markd7: posts the ante 25 @@ -4514,12 +4514,12 @@ 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 +Hero: posts the ante 25 Jumping: posts small blind 150 jackie001: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [Jd 4c] -s0rrow: folds +Dealt to Hero [Jd 4c] +Hero: folds anaconda1234: raises 600 to 900 fetchmeabeer: folds markd7: folds @@ -4553,7 +4553,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -4566,7 +4566,7 @@ 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) +Seat 9: Hero (23446 in chips) borik52: posts the ante 25 fetchmeabeer: posts the ante 25 markd7: posts the ante 25 @@ -4574,11 +4574,11 @@ 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 +Hero: posts the ante 25 jackie001: posts small blind 150 -s0rrow: posts big blind 300 +Hero: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [Js 2d] +Dealt to Hero [Js 2d] borik52: calls 300 fetchmeabeer: folds markd7: calls 300 @@ -4586,25 +4586,25 @@ CawfeKid: calls 300 rapidrush: calls 300 Jumping: folds jackie001: calls 150 -s0rrow: checks +Hero: checks *** FLOP *** [2h 6d 2c] jackie001: bets 900 -s0rrow: calls 900 +Hero: calls 900 borik52: folds markd7: folds CawfeKid: folds rapidrush: calls 900 *** TURN *** [2h 6d 2c] [Td] jackie001: bets 300 -s0rrow: calls 300 +Hero: calls 300 rapidrush: calls 300 *** RIVER *** [2h 6d 2c Td] [Qc] jackie001: checks -s0rrow: bets 900 +Hero: bets 900 rapidrush: folds jackie001: folds -s0rrow collected 5600 from pot -s0rrow: doesn't show hand +Hero collected 5600 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 5600 | Rake 0 Board [2h 6d 2c Td Qc] @@ -4615,7 +4615,7 @@ 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) +Seat 9: Hero (big blind) collected (5600) @@ -4628,7 +4628,7 @@ 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) +Seat 9: Hero (27521 in chips) borik52: posts the ante 25 fetchmeabeer: posts the ante 25 markd7: posts the ante 25 @@ -4636,24 +4636,24 @@ 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 +Hero: posts the ante 25 +Hero: posts small blind 150 borik52: posts big blind 300 *** HOLE CARDS *** -Dealt to s0rrow [Kd Qc] +Dealt to Hero [Kd Qc] fetchmeabeer: folds markd7: folds CawfeKid: folds rapidrush: folds Jumping: folds jackie001: calls 300 -s0rrow: calls 150 +Hero: calls 150 borik52: checks *** FLOP *** [4s 7h As] -s0rrow: checks +Hero: checks borik52: bets 300 jackie001: calls 300 -s0rrow: folds +Hero: folds *** TURN *** [4s 7h As] [3d] borik52: checks jackie001: bets 1200 @@ -4670,7 +4670,7 @@ 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 +Seat 9: Hero (small blind) folded on the Flop @@ -4683,7 +4683,7 @@ 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) +Seat 9: Hero (27196 in chips) borik52: posts the ante 25 fetchmeabeer: posts the ante 25 markd7: posts the ante 25 @@ -4691,17 +4691,17 @@ 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 +Hero: posts the ante 25 borik52: posts small blind 200 fetchmeabeer: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [4d Ts] +Dealt to Hero [4d Ts] markd7: folds CawfeKid: folds rapidrush: folds Jumping: folds jackie001: calls 400 -s0rrow: folds +Hero: folds borik52: calls 200 fetchmeabeer: checks *** FLOP *** [Kh 6s Qd] @@ -4721,7 +4721,7 @@ 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) +Seat 9: Hero (button) folded before Flop (didn't bet) @@ -4734,7 +4734,7 @@ 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) +Seat 9: Hero (27171 in chips) borik52: posts the ante 25 fetchmeabeer: posts the ante 25 markd7: posts the ante 25 @@ -4742,16 +4742,16 @@ 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 +Hero: posts the ante 25 fetchmeabeer: posts small blind 200 markd7: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [9h As] +Dealt to Hero [9h As] CawfeKid: folds rapidrush: folds Jumping: folds jackie001: folds -s0rrow: folds +Hero: folds borik52: calls 400 fetchmeabeer: raises 1200 to 1600 markd7: folds @@ -4767,7 +4767,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -4780,7 +4780,7 @@ 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) +Seat 9: Hero (27146 in chips) borik52: posts the ante 25 fetchmeabeer: posts the ante 25 markd7: posts the ante 25 @@ -4788,15 +4788,15 @@ 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 +Hero: posts the ante 25 markd7: posts small blind 200 CawfeKid: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [3c Ac] +Dealt to Hero [3c Ac] rapidrush: calls 400 Jumping: folds jackie001: calls 400 -s0rrow: folds +Hero: folds borik52: calls 400 fetchmeabeer: calls 400 markd7: calls 200 @@ -4830,7 +4830,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -4844,7 +4844,7 @@ 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) +Seat 9: Hero (27121 in chips) dirk2340: posts the ante 25 borik52: posts the ante 25 fetchmeabeer: posts the ante 25 @@ -4853,14 +4853,14 @@ 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 +Hero: posts the ante 25 CawfeKid: posts small blind 200 rapidrush: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [9d 8c] +Dealt to Hero [9d 8c] Jumping: folds jackie001: calls 400 -s0rrow: folds +Hero: folds dirk2340: folds borik52: folds fetchmeabeer: calls 400 @@ -4897,7 +4897,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -4911,7 +4911,7 @@ 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) +Seat 9: Hero (27096 in chips) dirk2340: posts the ante 25 borik52: posts the ante 25 fetchmeabeer: posts the ante 25 @@ -4920,13 +4920,13 @@ 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 +Hero: posts the ante 25 rapidrush: posts small blind 200 Jumping: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [2d 2h] +Dealt to Hero [2d 2h] jackie001: raises 400 to 800 -s0rrow: folds +Hero: folds dirk2340: folds borik52: folds fetchmeabeer: folds @@ -4951,7 +4951,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -4965,7 +4965,7 @@ 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) +Seat 9: Hero (27071 in chips) dirk2340: posts the ante 25 borik52: posts the ante 25 fetchmeabeer: posts the ante 25 @@ -4974,12 +4974,12 @@ 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 +Hero: posts the ante 25 Jumping: posts small blind 200 jackie001: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [3d 6d] -s0rrow: folds +Dealt to Hero [3d 6d] +Hero: folds dirk2340: raises 800 to 1200 borik52: folds fetchmeabeer: folds @@ -5013,7 +5013,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -5027,7 +5027,7 @@ 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) +Seat 9: Hero (27046 in chips) dirk2340: posts the ante 25 borik52: posts the ante 25 fetchmeabeer: posts the ante 25 @@ -5036,11 +5036,11 @@ 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 +Hero: posts the ante 25 jackie001: posts small blind 200 -s0rrow: posts big blind 400 +Hero: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [Js Jc] +Dealt to Hero [Js Jc] dirk2340: folds borik52: folds fetchmeabeer: folds @@ -5049,8 +5049,8 @@ CawfeKid: folds rapidrush: folds Jumping: folds jackie001: folds -s0rrow collected 625 from pot -s0rrow: shows [Js Jc] (a pair of Jacks) +Hero collected 625 from pot +Hero: shows [Js Jc] (a pair of Jacks) *** SUMMARY *** Total pot 625 | Rake 0 Seat 1: dirk2340 folded before Flop (didn't bet) @@ -5061,7 +5061,7 @@ 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) +Seat 9: Hero (big blind) collected (625) @@ -5075,7 +5075,7 @@ 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) +Seat 9: Hero (27446 in chips) dirk2340: posts the ante 25 borik52: posts the ante 25 fetchmeabeer: posts the ante 25 @@ -5084,11 +5084,11 @@ 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 +Hero: posts the ante 25 +Hero: posts small blind 200 dirk2340: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [7d 6d] +Dealt to Hero [7d 6d] borik52: folds fetchmeabeer: raises 800 to 1200 markd7: folds @@ -5096,7 +5096,7 @@ CawfeKid: folds rapidrush: calls 1200 Jumping: folds jackie001: calls 1200 -s0rrow: folds +Hero: folds dirk2340: calls 800 *** FLOP *** [9h Ts Jc] dirk2340: checks @@ -5131,7 +5131,7 @@ 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 +Seat 9: Hero (small blind) folded before Flop @@ -5145,7 +5145,7 @@ 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) +Seat 9: Hero (27221 in chips) dirk2340: posts the ante 25 borik52: posts the ante 25 fetchmeabeer: posts the ante 25 @@ -5154,18 +5154,18 @@ 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 +Hero: posts the ante 25 dirk2340: posts small blind 200 borik52: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [As Qs] +Dealt to Hero [As Qs] fetchmeabeer: calls 400 markd7: folds CawfeKid: folds rapidrush: calls 400 Jumping: folds jackie001: calls 400 -s0rrow: calls 400 +Hero: calls 400 dirk2340: calls 200 borik52: checks *** FLOP *** [4h 7s 6d] @@ -5174,14 +5174,14 @@ borik52: checks fetchmeabeer: checks rapidrush: checks jackie001: checks -s0rrow: checks +Hero: checks *** TURN *** [4h 7s 6d] [3c] dirk2340: bets 800 borik52: folds fetchmeabeer: folds rapidrush: folds jackie001: calls 800 -s0rrow: folds +Hero: folds *** RIVER *** [4h 7s 6d 3c] [6s] dirk2340: bets 1200 jackie001: folds @@ -5198,7 +5198,7 @@ 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 +Seat 9: Hero (button) folded on the Turn @@ -5212,7 +5212,7 @@ 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) +Seat 9: Hero (26796 in chips) dirk2340: posts the ante 25 borik52: posts the ante 25 fetchmeabeer: posts the ante 25 @@ -5221,17 +5221,17 @@ 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 +Hero: posts the ante 25 borik52: posts small blind 200 fetchmeabeer: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [Qd 7h] +Dealt to Hero [Qd 7h] markd7: folds CawfeKid: folds rapidrush: calls 400 Jumping: raises 1200 to 1600 jackie001: folds -s0rrow: folds +Hero: folds dirk2340: folds borik52: folds fetchmeabeer: folds @@ -5256,7 +5256,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -5270,7 +5270,7 @@ 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) +Seat 9: Hero (26771 in chips) dirk2340: posts the ante 25 borik52: posts the ante 25 fetchmeabeer: posts the ante 25 @@ -5279,16 +5279,16 @@ 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 +Hero: posts the ante 25 fetchmeabeer: posts small blind 200 markd7: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [3s Tc] +Dealt to Hero [3s Tc] CawfeKid: folds rapidrush: folds Jumping: calls 400 jackie001: folds -s0rrow: folds +Hero: folds dirk2340: folds borik52: folds markd7 said, "hey jackie where did all ur chips go" @@ -5313,7 +5313,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -5327,7 +5327,7 @@ 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) +Seat 9: Hero (26746 in chips) dirk2340: posts the ante 25 borik52: posts the ante 25 fetchmeabeer: posts the ante 25 @@ -5336,15 +5336,15 @@ 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 +Hero: posts the ante 25 markd7: posts small blind 200 CawfeKid: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [3d Jd] +Dealt to Hero [3d Jd] rapidrush: calls 400 Jumping: folds jackie001: calls 400 -s0rrow: folds +Hero: folds dirk2340: folds borik52: folds fetchmeabeer: folds @@ -5381,7 +5381,7 @@ Seat 5: CawfeKid (big blind) showed [6s 5d] and lost with a straight, Deuce to S 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -5394,7 +5394,7 @@ 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) +Seat 9: Hero (26721 in chips) dirk2340: posts the ante 25 borik52: posts the ante 25 fetchmeabeer: posts the ante 25 @@ -5402,13 +5402,13 @@ 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 +Hero: posts the ante 25 rapidrush: posts small blind 200 Jumping: posts big blind 400 *** HOLE CARDS *** -Dealt to s0rrow [3h 6c] +Dealt to Hero [3h 6c] jackie001: raises 400 to 800 -s0rrow: folds +Hero: folds dirk2340: folds borik52: calls 800 fetchmeabeer: folds @@ -5444,7 +5444,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -5456,19 +5456,19 @@ 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) +Seat 9: Hero (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 +Hero: posts the ante 50 Jumping: posts small blind 300 jackie001: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [9h Ts] -s0rrow: folds +Dealt to Hero [9h Ts] +Hero: folds dirk2340: folds fetchmeabeer: raises 1200 to 1800 markd7: folds @@ -5485,7 +5485,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -5497,18 +5497,18 @@ 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) +Seat 9: Hero (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 +Hero: posts the ante 50 jackie001: posts small blind 300 -s0rrow: posts big blind 600 +Hero: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [Ts 7d] +Dealt to Hero [Ts 7d] dirk2340: folds fetchmeabeer: folds sanfe68 is connected @@ -5517,8 +5517,8 @@ markd7: folds rapidrush: folds Jumping: folds jackie001: folds -s0rrow collected 950 from pot -s0rrow: doesn't show hand +Hero collected 950 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 950 | Rake 0 Seat 1: dirk2340 folded before Flop (didn't bet) @@ -5527,7 +5527,7 @@ 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) +Seat 9: Hero (big blind) collected (950) @@ -5541,7 +5541,7 @@ 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) +Seat 9: Hero (27246 in chips) dirk2340: posts the ante 50 sanfe68: posts the ante 50 fetchmeabeer: posts the ante 50 @@ -5550,11 +5550,11 @@ 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 +Hero: posts the ante 50 +Hero: posts small blind 300 dirk2340: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [Kh 2s] +Dealt to Hero [Kh 2s] sanfe68: folds fetchmeabeer: folds markd7: calls 600 @@ -5562,14 +5562,14 @@ darbo1: calls 600 rapidrush: folds Jumping: folds jackie001: folds -s0rrow: calls 300 +Hero: calls 300 dirk2340: checks *** FLOP *** [4d 7d Td] -s0rrow: checks +Hero: checks dirk2340: checks markd7: bets 1200 darbo1: raises 2400 to 3600 -s0rrow: folds +Hero: folds dirk2340: folds markd7: calls 2400 *** TURN *** [4d 7d Td] [4s] @@ -5593,7 +5593,7 @@ 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 +Seat 9: Hero (small blind) folded on the Flop @@ -5607,7 +5607,7 @@ 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) +Seat 9: Hero (26596 in chips) dirk2340: posts the ante 50 sanfe68: posts the ante 50 fetchmeabeer: posts the ante 50 @@ -5616,18 +5616,18 @@ 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 +Hero: posts the ante 50 dirk2340: posts small blind 300 sanfe68: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [8c 4d] +Dealt to Hero [8c 4d] fetchmeabeer: folds markd7: folds darbo1: raises 5435 to 6035 and is all-in rapidrush: folds Jumping: folds jackie001: folds -s0rrow: folds +Hero: folds dirk2340: folds sanfe68: folds darbo1 collected 1950 from pot @@ -5641,7 +5641,7 @@ 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) +Seat 9: Hero (button) folded before Flop (didn't bet) @@ -5655,7 +5655,7 @@ 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) +Seat 9: Hero (26546 in chips) dirk2340: posts the ante 50 sanfe68: posts the ante 50 fetchmeabeer: posts the ante 50 @@ -5664,33 +5664,33 @@ 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 +Hero: posts the ante 50 sanfe68: posts small blind 300 fetchmeabeer: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [Jd 9s] +Dealt to Hero [Jd 9s] markd7: folds darbo1: folds rapidrush: folds Jumping: folds jackie001: folds -s0rrow: raises 1200 to 1800 +Hero: raises 1200 to 1800 dirk2340: calls 1800 sanfe68: folds fetchmeabeer: folds *** FLOP *** [Qh Th 2d] -s0rrow: checks +Hero: checks dirk2340: checks *** TURN *** [Qh Th 2d] [9c] -s0rrow: bets 1800 +Hero: bets 1800 dirk2340: calls 1800 *** RIVER *** [Qh Th 2d 9c] [Qs] -s0rrow: checks +Hero: checks dirk2340: checks *** SHOW DOWN *** -s0rrow: shows [Jd 9s] (two pair, Queens and Nines) +Hero: shows [Jd 9s] (two pair, Queens and Nines) dirk2340: mucks hand -s0rrow collected 8550 from pot +Hero collected 8550 from pot *** SUMMARY *** Total pot 8550 | Rake 0 Board [Qh Th 2d 9c Qs] @@ -5702,7 +5702,7 @@ 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 +Seat 9: Hero showed [Jd 9s] and won (8550) with two pair, Queens and Nines @@ -5716,7 +5716,7 @@ 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) +Seat 9: Hero (31446 in chips) dirk2340: posts the ante 50 sanfe68: posts the ante 50 fetchmeabeer: posts the ante 50 @@ -5725,22 +5725,22 @@ 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 +Hero: posts the ante 50 fetchmeabeer: posts small blind 300 markd7: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [Jd Ah] +Dealt to Hero [Jd Ah] darbo1: folds rapidrush: folds Jumping: folds jackie001: folds -s0rrow: raises 1200 to 1800 +Hero: raises 1200 to 1800 dirk2340: folds sanfe68: folds fetchmeabeer: folds markd7: folds -s0rrow collected 1950 from pot -s0rrow: doesn't show hand +Hero collected 1950 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 1950 | Rake 0 Seat 1: dirk2340 folded before Flop (didn't bet) @@ -5751,7 +5751,7 @@ 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) +Seat 9: Hero collected (1950) @@ -5765,7 +5765,7 @@ 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) +Seat 9: Hero (32746 in chips) dirk2340: posts the ante 50 sanfe68: posts the ante 50 fetchmeabeer: posts the ante 50 @@ -5774,15 +5774,15 @@ 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 +Hero: posts the ante 50 markd7: posts small blind 300 darbo1: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [4d 5h] +Dealt to Hero [4d 5h] rapidrush: folds Jumping: folds jackie001: folds -s0rrow: folds +Hero: folds dirk2340: raises 1200 to 1800 sanfe68: folds fetchmeabeer: folds @@ -5813,7 +5813,7 @@ Seat 5: darbo1 (big blind) showed [3c 3s] and won (15220) with a full house, Thr 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -5827,7 +5827,7 @@ 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) +Seat 9: Hero (32696 in chips) dirk2340: posts the ante 50 sanfe68: posts the ante 50 fetchmeabeer: posts the ante 50 @@ -5836,14 +5836,14 @@ 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 +Hero: posts the ante 50 darbo1: posts small blind 300 rapidrush: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [Ks 5s] +Dealt to Hero [Ks 5s] Jumping: folds jackie001: calls 600 -s0rrow: folds +Hero: folds dirk2340: folds sanfe68: folds fetchmeabeer: folds @@ -5877,7 +5877,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -5891,7 +5891,7 @@ 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) +Seat 9: Hero (32646 in chips) dirk2340: posts the ante 50 sanfe68: posts the ante 50 fetchmeabeer: posts the ante 50 @@ -5900,13 +5900,13 @@ 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 +Hero: posts the ante 50 rapidrush: posts small blind 300 Jumping: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [Tc Jh] +Dealt to Hero [Tc Jh] jackie001: folds -s0rrow: folds +Hero: folds dirk2340: folds sanfe68: folds fetchmeabeer: raises 1200 to 1800 @@ -5935,7 +5935,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -5949,7 +5949,7 @@ 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) +Seat 9: Hero (32596 in chips) dirk2340: posts the ante 50 sanfe68: posts the ante 50 fetchmeabeer: posts the ante 50 @@ -5958,13 +5958,13 @@ 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 +Hero: posts the ante 50 Jumping: posts small blind 300 jackie001: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [7h As] +Dealt to Hero [7h As] markd7 said, "aj no good" -s0rrow: folds +Hero: folds dirk2340: calls 600 sanfe68: folds fetchmeabeer: folds @@ -5999,7 +5999,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -6013,7 +6013,7 @@ 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) +Seat 9: Hero (32546 in chips) dirk2340: posts the ante 50 sanfe68: posts the ante 50 fetchmeabeer: posts the ante 50 @@ -6022,11 +6022,11 @@ 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 +Hero: posts the ante 50 jackie001: posts small blind 300 -s0rrow: posts big blind 600 +Hero: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [8d 3d] +Dealt to Hero [8d 3d] dirk2340: folds sanfe68: folds fetchmeabeer: folds @@ -6035,7 +6035,7 @@ darbo1: folds rapidrush: calls 600 Jumping: raises 1200 to 1800 jackie001: folds -s0rrow: folds +Hero: folds markd7: folds rapidrush: calls 1200 *** FLOP *** [6h 7c Qh] @@ -6054,7 +6054,7 @@ 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 +Seat 9: Hero (big blind) folded before Flop @@ -6068,7 +6068,7 @@ 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) +Seat 9: Hero (31896 in chips) dirk2340: posts the ante 50 sanfe68: posts the ante 50 fetchmeabeer: posts the ante 50 @@ -6077,11 +6077,11 @@ 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 +Hero: posts the ante 50 +Hero: posts small blind 300 dirk2340: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [Jd 5s] +Dealt to Hero [Jd 5s] sanfe68: folds fetchmeabeer: folds markd7: calls 600 @@ -6089,7 +6089,7 @@ darbo1: raises 1200 to 1800 rapidrush: folds Jumping: folds jackie001: folds -s0rrow: folds +Hero: folds dirk2340: folds markd7: calls 1200 *** FLOP *** [7s Kc Qs] @@ -6117,7 +6117,7 @@ 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 +Seat 9: Hero (small blind) folded before Flop @@ -6131,7 +6131,7 @@ 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) +Seat 9: Hero (31546 in chips) dirk2340: posts the ante 50 sanfe68: posts the ante 50 fetchmeabeer: posts the ante 50 @@ -6140,18 +6140,18 @@ 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 +Hero: posts the ante 50 dirk2340: posts small blind 300 sanfe68: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [3c 2c] +Dealt to Hero [3c 2c] fetchmeabeer: folds markd7: calls 600 darbo1: calls 600 rapidrush: calls 600 Jumping: folds jackie001: folds -s0rrow: folds +Hero: folds dirk2340: calls 300 sanfe68: checks *** FLOP *** [4h Ah 4s] @@ -6184,7 +6184,7 @@ 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) +Seat 9: Hero (button) folded before Flop (didn't bet) @@ -6198,7 +6198,7 @@ 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) +Seat 9: Hero (31496 in chips) dirk2340: posts the ante 50 sanfe68: posts the ante 50 fetchmeabeer: posts the ante 50 @@ -6207,17 +6207,17 @@ 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 +Hero: posts the ante 50 sanfe68: posts small blind 300 fetchmeabeer: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [Th 4d] +Dealt to Hero [Th 4d] markd7: calls 600 darbo1: calls 600 rapidrush: folds Jumping: folds jackie001: folds -s0rrow: folds +Hero: folds dirk2340: folds sanfe68: folds fetchmeabeer: checks @@ -6248,7 +6248,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -6262,7 +6262,7 @@ 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) +Seat 9: Hero (31446 in chips) dirk2340: posts the ante 50 sanfe68: posts the ante 50 fetchmeabeer: posts the ante 50 @@ -6271,16 +6271,16 @@ 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 +Hero: posts the ante 50 fetchmeabeer: posts small blind 300 markd7: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [8d 5d] +Dealt to Hero [8d 5d] darbo1: calls 600 rapidrush: folds Jumping: folds jackie001: raises 600 to 1200 -s0rrow: folds +Hero: folds dirk2340: folds sanfe68: calls 1200 fetchmeabeer: raises 17289 to 18489 and is all-in @@ -6307,7 +6307,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -6320,7 +6320,7 @@ 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) +Seat 9: Hero (31396 in chips) dirk2340: posts the ante 50 sanfe68: posts the ante 50 markd7: posts the ante 50 @@ -6328,15 +6328,15 @@ 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 +Hero: posts the ante 50 darbo1: posts small blind 300 rapidrush: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [Th Js] +Dealt to Hero [Th Js] Jumping: folds jackie001: folds themexican24 is connected -s0rrow: calls 600 +Hero: calls 600 dirk2340: calls 600 sanfe68: folds markd7: folds @@ -6345,18 +6345,18 @@ rapidrush: checks *** FLOP *** [Ts 8s Tc] darbo1: bets 600 rapidrush: folds -s0rrow: calls 600 +Hero: calls 600 dirk2340: folds *** TURN *** [Ts 8s Tc] [9h] darbo1: bets 600 -s0rrow: raises 1200 to 1800 +Hero: raises 1200 to 1800 darbo1: calls 1200 *** RIVER *** [Ts 8s Tc 9h] [8d] darbo1: checks -s0rrow: bets 2400 +Hero: bets 2400 darbo1: folds -s0rrow collected 7600 from pot -s0rrow: doesn't show hand +Hero collected 7600 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 7600 | Rake 0 Board [Ts 8s Tc 9h 8d] @@ -6367,7 +6367,7 @@ 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) +Seat 9: Hero collected (7600) @@ -6381,7 +6381,7 @@ 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) +Seat 9: Hero (35946 in chips) dirk2340: posts the ante 50 sanfe68: posts the ante 50 themexican24: posts the ante 50 @@ -6390,13 +6390,13 @@ 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 +Hero: posts the ante 50 rapidrush: posts small blind 300 Jumping: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [Tc 2s] +Dealt to Hero [Tc 2s] jackie001: calls 600 -s0rrow: folds +Hero: folds dirk2340: calls 600 sanfe68: folds themexican24: folds @@ -6430,7 +6430,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -6444,7 +6444,7 @@ 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) +Seat 9: Hero (35896 in chips) dirk2340: posts the ante 50 sanfe68: posts the ante 50 themexican24: posts the ante 50 @@ -6453,12 +6453,12 @@ 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 +Hero: posts the ante 50 Jumping: posts small blind 300 jackie001: posts big blind 600 *** HOLE CARDS *** -Dealt to s0rrow [3s Ad] -s0rrow: folds +Dealt to Hero [3s Ad] +Hero: folds dirk2340: calls 600 sanfe68: raises 600 to 1200 themexican24: calls 1200 @@ -6498,7 +6498,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -6512,7 +6512,7 @@ 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) +Seat 9: Hero (35846 in chips) dirk2340: posts the ante 75 sanfe68: posts the ante 75 themexican24: posts the ante 75 @@ -6521,11 +6521,11 @@ 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 +Hero: posts the ante 75 jackie001: posts small blind 400 -s0rrow: posts big blind 800 +Hero: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [Ks 6c] +Dealt to Hero [Ks 6c] dirk2340: folds sanfe68: calls 800 themexican24: folds @@ -6534,14 +6534,14 @@ darbo1: folds rapidrush: calls 800 Jumping: folds jackie001: calls 400 -s0rrow: checks +Hero: checks *** FLOP *** [7s Ac 2d] jackie001: checks -s0rrow: checks +Hero: checks sanfe68: checks rapidrush: bets 1600 jackie001: folds -s0rrow: folds +Hero: folds sanfe68: calls 1600 *** TURN *** [7s Ac 2d] [Jh] sanfe68: checks @@ -6564,7 +6564,7 @@ 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 +Seat 9: Hero (big blind) folded on the Flop @@ -6578,7 +6578,7 @@ 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) +Seat 9: Hero (34971 in chips) dirk2340: posts the ante 75 sanfe68: posts the ante 75 themexican24: posts the ante 75 @@ -6587,11 +6587,11 @@ 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 +Hero: posts the ante 75 +Hero: posts small blind 400 dirk2340: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [Kc 4h] +Dealt to Hero [Kc 4h] sanfe68: folds themexican24: folds markd7: folds @@ -6599,13 +6599,13 @@ darbo1: folds rapidrush: folds Jumping: folds jackie001: calls 800 -s0rrow: calls 400 +Hero: calls 400 dirk2340: checks *** FLOP *** [Ac Jh 2h] -s0rrow: checks +Hero: checks dirk2340: checks jackie001: bets 2400 -s0rrow: folds +Hero: folds dirk2340: folds jackie001 collected 3075 from pot jackie001: doesn't show hand @@ -6620,7 +6620,7 @@ 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 +Seat 9: Hero (small blind) folded on the Flop @@ -6634,7 +6634,7 @@ 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) +Seat 9: Hero (34096 in chips) dirk2340: posts the ante 75 sanfe68: posts the ante 75 themexican24: posts the ante 75 @@ -6643,18 +6643,18 @@ 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 +Hero: posts the ante 75 dirk2340: posts small blind 400 sanfe68: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [2h 6d] +Dealt to Hero [2h 6d] themexican24: folds markd7: folds darbo1: raises 800 to 1600 rapidrush: calls 1600 Jumping: folds jackie001: folds -s0rrow: folds +Hero: folds dirk2340: calls 1200 sanfe68: calls 800 *** FLOP *** [7c 4s 5h] @@ -6685,7 +6685,7 @@ 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) +Seat 9: Hero (button) folded before Flop (didn't bet) @@ -6699,7 +6699,7 @@ 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) +Seat 9: Hero (34021 in chips) dirk2340: posts the ante 75 sanfe68: posts the ante 75 themexican24: posts the ante 75 @@ -6708,35 +6708,35 @@ 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 +Hero: posts the ante 75 sanfe68: posts small blind 400 themexican24: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [Ac Kh] +Dealt to Hero [Ac Kh] markd7: folds darbo1: folds rapidrush: folds Jumping: folds jackie001: raises 800 to 1600 -s0rrow: calls 1600 +Hero: calls 1600 dirk2340: folds sanfe68: folds themexican24: folds *** FLOP *** [3d Ah Qs] jackie001: checks -s0rrow: bets 2400 +Hero: bets 2400 jackie001: calls 2400 *** TURN *** [3d Ah Qs] [6d] jackie001: checks -s0rrow: bets 1600 +Hero: bets 1600 jackie001: calls 1600 *** RIVER *** [3d Ah Qs 6d] [Qh] jackie001: checks -s0rrow: checks +Hero: 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 +Hero: shows [Ac Kh] (two pair, Aces and Queens - King kicker) +Hero collected 13075 from pot *** SUMMARY *** Total pot 13075 | Rake 0 Board [3d Ah Qs 6d Qh] @@ -6748,7 +6748,7 @@ 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 +Seat 9: Hero showed [Ac Kh] and won (13075) with two pair, Aces and Queens @@ -6762,7 +6762,7 @@ 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) +Seat 9: Hero (41421 in chips) dirk2340: posts the ante 75 sanfe68: posts the ante 75 themexican24: posts the ante 75 @@ -6771,16 +6771,16 @@ 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 +Hero: posts the ante 75 themexican24: posts small blind 400 markd7: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [Qs 8d] +Dealt to Hero [Qs 8d] darbo1: folds rapidrush: folds Jumping: folds jackie001: calls 800 -s0rrow: folds +Hero: folds dirk2340: folds sanfe68: folds themexican24: calls 400 @@ -6812,7 +6812,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -6825,7 +6825,7 @@ 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) +Seat 9: Hero (41346 in chips) dirk2340: posts the ante 75 sanfe68: posts the ante 75 markd7: posts the ante 75 @@ -6833,14 +6833,14 @@ 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 +Hero: posts the ante 75 darbo1: posts small blind 400 rapidrush: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [9s 4d] +Dealt to Hero [9s 4d] Jumping: folds jackie001: calls 800 -s0rrow: folds +Hero: folds dirk2340: folds sanfe68: folds markd7: folds @@ -6873,7 +6873,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -6886,7 +6886,7 @@ 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) +Seat 9: Hero (41271 in chips) dirk2340: posts the ante 75 sanfe68: posts the ante 75 markd7: posts the ante 75 @@ -6894,13 +6894,13 @@ 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 +Hero: posts the ante 75 rapidrush: posts small blind 400 Jumping: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [6h Ad] +Dealt to Hero [6h Ad] jackie001: calls 800 -s0rrow: folds +Hero: folds dirk2340: calls 800 sanfe68: folds markd7: folds @@ -6933,7 +6933,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -6946,7 +6946,7 @@ 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) +Seat 9: Hero (41196 in chips) dirk2340: posts the ante 75 sanfe68: posts the ante 75 markd7: posts the ante 75 @@ -6954,12 +6954,12 @@ 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 +Hero: posts the ante 75 Jumping: posts small blind 400 jackie001: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [6d 8h] -s0rrow: folds +Dealt to Hero [6d 8h] +Hero: folds dirk2340: folds sanfe68: calls 800 markd7: folds @@ -6990,7 +6990,7 @@ 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) +Seat 9: Hero folded before Flop (didn't bet) @@ -7003,7 +7003,7 @@ 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) +Seat 9: Hero (41121 in chips) dirk2340: posts the ante 75 sanfe68: posts the ante 75 markd7: posts the ante 75 @@ -7011,11 +7011,11 @@ 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 +Hero: posts the ante 75 jackie001: posts small blind 400 -s0rrow: posts big blind 800 +Hero: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [Ah Kh] +Dealt to Hero [Ah Kh] dirk2340: folds sanfe68: folds markd7: folds @@ -7023,10 +7023,10 @@ darbo1: folds rapidrush: calls 800 Jumping: folds jackie001: calls 400 -s0rrow: checks +Hero: checks *** FLOP *** [9s Qs 3h] jackie001: bets 800 -s0rrow: folds +Hero: folds rapidrush: calls 800 *** TURN *** [9s Qs 3h] [Ac] jackie001: bets 800 @@ -7048,7 +7048,7 @@ 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 +Seat 9: Hero (big blind) folded on the Flop @@ -7061,7 +7061,7 @@ 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) +Seat 9: Hero (40246 in chips) dirk2340: posts the ante 75 sanfe68: posts the ante 75 markd7: posts the ante 75 @@ -7069,18 +7069,18 @@ 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 +Hero: posts the ante 75 +Hero: posts small blind 400 dirk2340: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [3s 7d] +Dealt to Hero [3s 7d] sanfe68: calls 800 markd7: folds darbo1: folds rapidrush: folds Jumping: folds jackie001: calls 800 -s0rrow: folds +Hero: folds dirk2340: checks *** FLOP *** [2s 8c 3d] dirk2340: checks @@ -7109,7 +7109,7 @@ 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 +Seat 9: Hero (small blind) folded before Flop @@ -7122,7 +7122,7 @@ 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) +Seat 9: Hero (39771 in chips) dirk2340: posts the ante 75 sanfe68: posts the ante 75 markd7: posts the ante 75 @@ -7130,17 +7130,17 @@ 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 +Hero: posts the ante 75 dirk2340: posts small blind 400 sanfe68: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [8d 9h] +Dealt to Hero [8d 9h] markd7: folds darbo1: calls 800 rapidrush: folds Jumping: folds jackie001: calls 800 -s0rrow: folds +Hero: folds dirk2340: calls 400 sanfe68: raises 2400 to 3200 darbo1: calls 2400 @@ -7162,7 +7162,7 @@ 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) +Seat 9: Hero (button) folded before Flop (didn't bet) @@ -7175,7 +7175,7 @@ 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) +Seat 9: Hero (39696 in chips) dirk2340: posts the ante 75 sanfe68: posts the ante 75 markd7: posts the ante 75 @@ -7183,16 +7183,16 @@ 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 +Hero: posts the ante 75 sanfe68: posts small blind 400 markd7: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [Qc Th] +Dealt to Hero [Qc Th] darbo1: calls 800 rapidrush: folds Jumping: folds jackie001: calls 800 -s0rrow: calls 800 +Hero: calls 800 dirk2340: calls 800 sanfe68: calls 400 markd7: checks @@ -7201,7 +7201,7 @@ sanfe68: checks markd7: checks darbo1: checks jackie001: bets 800 -s0rrow: calls 800 +Hero: calls 800 dirk2340: calls 800 sanfe68: calls 800 markd7: calls 800 @@ -7211,11 +7211,11 @@ sanfe68: checks markd7: bets 2400 darbo1: folds jackie001: folds -s0rrow: calls 2400 +Hero: calls 2400 dirk2340: raises 860 to 3260 and is all-in sanfe68: raises 9705 to 12965 and is all-in markd7: folds -s0rrow: folds +Hero: folds *** RIVER *** [Ts 6c 7c 7s] [2d] *** SHOW DOWN *** sanfe68: shows [7h Kd] (three of a kind, Sevens) @@ -7231,7 +7231,7 @@ 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 +Seat 9: Hero folded on the Turn @@ -7244,7 +7244,7 @@ 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 8: Hero (35621 in chips) Seat 9: HangingBalls (7261 in chips) jt2007: posts the ante 75 yapa2yapa: posts the ante 75 @@ -7253,27 +7253,27 @@ 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 +Hero: 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] +Dealt to Hero [Jc Jd] Jumping: folds TRYINGHARD: folds -s0rrow: raises 1600 to 2400 +Hero: 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 +Hero: 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) +Hero: 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) @@ -7289,7 +7289,7 @@ 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 8: Hero showed [Jc Jd] and lost with a pair of Jacks Seat 9: HangingBalls showed [9d 9h] and lost with a pair of Nines @@ -7303,7 +7303,7 @@ 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) +Seat 8: Hero (27870 in chips) jt2007: posts the ante 75 yapa2yapa: posts the ante 75 patrick sph: posts the ante 75 @@ -7311,13 +7311,13 @@ 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 +Hero: posts the ante 75 ethegreat1: posts small blind 400 Jumping: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [Tc 7s] +Dealt to Hero [Tc 7s] TRYINGHARD: folds -s0rrow: folds +Hero: folds jt2007: folds yapa2yapa: folds patrick sph: folds @@ -7340,7 +7340,7 @@ 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) +Seat 8: Hero folded before Flop (didn't bet) @@ -7353,7 +7353,7 @@ 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) +Seat 8: Hero (27795 in chips) jt2007: posts the ante 75 yapa2yapa: posts the ante 75 patrick sph: posts the ante 75 @@ -7361,12 +7361,12 @@ 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 +Hero: posts the ante 75 Jumping: posts small blind 400 TRYINGHARD: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [4d 2d] -s0rrow: folds +Dealt to Hero [4d 2d] +Hero: folds jt2007: folds yapa2yapa: folds patrick sph: folds @@ -7385,7 +7385,7 @@ 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) +Seat 8: Hero folded before Flop (didn't bet) @@ -7398,7 +7398,7 @@ 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) +Seat 8: Hero (27720 in chips) jt2007: posts the ante 75 yapa2yapa: posts the ante 75 patrick sph: posts the ante 75 @@ -7406,11 +7406,11 @@ 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 +Hero: posts the ante 75 TRYINGHARD: posts small blind 400 -s0rrow: posts big blind 800 +Hero: posts big blind 800 *** HOLE CARDS *** -Dealt to s0rrow [Td 5s] +Dealt to Hero [Td 5s] jt2007: calls 800 yapa2yapa: folds patrick sph: folds @@ -7418,16 +7418,16 @@ KingShades: calls 800 ethegreat1: calls 800 Jumping: folds TRYINGHARD: calls 400 -s0rrow: checks +Hero: checks *** FLOP *** [6d 6h Qc] TRYINGHARD: checks -s0rrow: checks +Hero: checks jt2007: checks KingShades: checks ethegreat1: checks *** TURN *** [6d 6h Qc] [Jh] TRYINGHARD: bets 1055 -s0rrow: folds +Hero: folds jt2007: calls 1055 KingShades: folds ethegreat1: folds @@ -7449,7 +7449,7 @@ 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 +Seat 8: Hero (big blind) folded on the Turn @@ -7462,7 +7462,7 @@ 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) +Seat 8: Hero (26845 in chips) jt2007: posts the ante 100 yapa2yapa: posts the ante 100 patrick sph: posts the ante 100 @@ -7470,18 +7470,18 @@ 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 +Hero: posts the ante 100 +Hero: posts small blind 500 jt2007: posts big blind 1000 *** HOLE CARDS *** -Dealt to s0rrow [Tc 5s] +Dealt to Hero [Tc 5s] yapa2yapa: folds patrick sph: folds KingShades: raises 2000 to 3000 ethegreat1: folds Jumping: folds TRYINGHARD: folds -s0rrow: folds +Hero: folds jt2007: folds KingShades collected 3300 from pot KingShades: doesn't show hand @@ -7494,7 +7494,7 @@ 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 +Seat 8: Hero (small blind) folded before Flop @@ -7507,7 +7507,7 @@ 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) +Seat 8: Hero (26245 in chips) jt2007: posts the ante 100 yapa2yapa: posts the ante 100 patrick sph: posts the ante 100 @@ -7515,18 +7515,18 @@ 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 +Hero: posts the ante 100 jt2007: posts small blind 500 yapa2yapa: posts big blind 1000 *** HOLE CARDS *** -Dealt to s0rrow [5h Qs] +Dealt to Hero [5h Qs] patrick sph: folds KingShades: folds NoLuv420 is connected ethegreat1: calls 1000 Jumping: folds TRYINGHARD: folds -s0rrow: folds +Hero: folds jt2007: calls 500 yapa2yapa: checks *** FLOP *** [Jh 5c 4s] @@ -7560,7 +7560,7 @@ 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) +Seat 8: Hero (button) folded before Flop (didn't bet) @@ -7573,7 +7573,7 @@ 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 8: Hero (26145 in chips) Seat 9: NoLuv420 (19198 in chips) jt2007: posts the ante 100 yapa2yapa: posts the ante 100 @@ -7582,30 +7582,30 @@ 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 +Hero: 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] +Dealt to Hero [Ah 4h] KingShades: folds ethegreat1: folds Jumping: folds TRYINGHARD: folds -s0rrow: raises 2000 to 3000 +Hero: raises 2000 to 3000 NoLuv420: folds jt2007: folds yapa2yapa: calls 2500 patrick sph: folds *** FLOP *** [8c Ts 7d] yapa2yapa: checks -s0rrow: checks +Hero: checks *** TURN *** [8c Ts 7d] [3d] yapa2yapa: checks -s0rrow: bets 3000 +Hero: bets 3000 yapa2yapa: folds -s0rrow collected 7900 from pot -s0rrow: doesn't show hand +Hero collected 7900 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 7900 | Rake 0 Board [8c Ts 7d 3d] @@ -7616,7 +7616,7 @@ 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 8: Hero collected (7900) Seat 9: NoLuv420 folded before Flop (didn't bet) @@ -7630,7 +7630,7 @@ 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 8: Hero (30945 in chips) Seat 9: NoLuv420 (19098 in chips) jt2007: posts the ante 100 yapa2yapa: posts the ante 100 @@ -7639,16 +7639,16 @@ 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 +Hero: 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] +Dealt to Hero [Jc 9d] ethegreat1: folds Jumping: folds TRYINGHARD: folds -s0rrow: folds +Hero: folds NoLuv420: raises 3000 to 4000 jt2007: folds yapa2yapa: folds @@ -7670,7 +7670,7 @@ 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 8: Hero folded before Flop (didn't bet) Seat 9: NoLuv420 collected (17400) @@ -7684,7 +7684,7 @@ 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 8: Hero (30845 in chips) Seat 9: NoLuv420 (28398 in chips) jt2007: posts the ante 100 yapa2yapa: posts the ante 100 @@ -7693,15 +7693,15 @@ 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 +Hero: 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] +Dealt to Hero [7h Qc] Jumping: folds TRYINGHARD: folds -s0rrow: folds +Hero: folds NoLuv420: folds jt2007: raises 2000 to 3000 yapa2yapa: folds @@ -7734,7 +7734,7 @@ 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 8: Hero folded before Flop (didn't bet) Seat 9: NoLuv420 folded before Flop (didn't bet) @@ -7747,7 +7747,7 @@ 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 8: Hero (30745 in chips) Seat 9: NoLuv420 (28298 in chips) jt2007: posts the ante 100 yapa2yapa: posts the ante 100 @@ -7755,13 +7755,13 @@ 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 +Hero: 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 +Dealt to Hero [9h 2d] +Hero: folds NoLuv420: folds jt2007: folds yapa2yapa: folds @@ -7777,7 +7777,7 @@ 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 8: Hero folded before Flop (didn't bet) Seat 9: NoLuv420 folded before Flop (didn't bet) @@ -7790,7 +7790,7 @@ 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 8: Hero (30645 in chips) Seat 9: NoLuv420 (28198 in chips) jt2007: posts the ante 100 yapa2yapa: posts the ante 100 @@ -7798,12 +7798,12 @@ 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 +Hero: posts the ante 100 NoLuv420: posts the ante 100 Jumping: posts small blind 500 -s0rrow: posts big blind 1000 +Hero: posts big blind 1000 *** HOLE CARDS *** -Dealt to s0rrow [Qd 2c] +Dealt to Hero [Qd 2c] NoLuv420: calls 1000 jt2007: folds yapa2yapa: folds @@ -7811,15 +7811,15 @@ patrick sph: folds KingShades: calls 1000 ethegreat1: folds Jumping: calls 500 -s0rrow: checks +Hero: checks *** FLOP *** [Qh Jc 4c] Jumping: checks -s0rrow: bets 1000 +Hero: bets 1000 NoLuv420: folds KingShades: folds Jumping: folds -s0rrow collected 4800 from pot -s0rrow: doesn't show hand +Hero collected 4800 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 4800 | Rake 0 Board [Qh Jc 4c] @@ -7829,7 +7829,7 @@ 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 8: Hero (big blind) collected (4800) Seat 9: NoLuv420 folded on the Flop @@ -7842,7 +7842,7 @@ 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 8: Hero (34345 in chips) Seat 9: NoLuv420 (27098 in chips) jt2007: posts the ante 100 yapa2yapa: posts the ante 100 @@ -7850,19 +7850,19 @@ 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 +Hero: posts the ante 100 NoLuv420: posts the ante 100 -s0rrow: posts small blind 500 +Hero: posts small blind 500 NoLuv420: posts big blind 1000 *** HOLE CARDS *** -Dealt to s0rrow [7c 6d] +Dealt to Hero [7c 6d] jt2007: folds yapa2yapa: folds patrick sph: folds KingShades: raises 2000 to 3000 ethegreat1: folds Jumping: folds -s0rrow: folds +Hero: folds NoLuv420: calls 2000 *** FLOP *** [2c Kh 7d] NoLuv420: checks @@ -7887,7 +7887,7 @@ 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 8: Hero (small blind) folded before Flop Seat 9: NoLuv420 (big blind) mucked [Ad Tc] @@ -7900,7 +7900,7 @@ 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 8: Hero (33745 in chips) Seat 9: NoLuv420 (19998 in chips) jt2007: posts the ante 100 yapa2yapa: posts the ante 100 @@ -7908,18 +7908,18 @@ 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 +Hero: 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] +Dealt to Hero [2d 9d] yapa2yapa: folds patrick sph: folds KingShades: folds ethegreat1: folds Jumping: raises 2000 to 3000 -s0rrow: folds +Hero: folds NoLuv420: folds jt2007: raises 9788 to 12788 and is all-in Jumping: calls 5970 and is all-in @@ -7940,7 +7940,7 @@ 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 8: Hero (button) folded before Flop (didn't bet) Seat 9: NoLuv420 (small blind) folded before Flop @@ -7954,7 +7954,7 @@ 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 8: Hero (33645 in chips) Seat 9: NoLuv420 (19398 in chips) jt2007: posts the ante 100 yapa2yapa: posts the ante 100 @@ -7963,18 +7963,18 @@ 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 +Hero: 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] +Dealt to Hero [6d Js] patrick sph: folds KingShades: folds ethegreat1: folds Jumping: folds XROMOY: folds -s0rrow: folds +Hero: folds NoLuv420: folds jt2007: folds yapa2yapa collected 1900 from pot @@ -7987,7 +7987,7 @@ 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 8: Hero folded before Flop (didn't bet) Seat 9: NoLuv420 (button) folded before Flop (didn't bet) @@ -8001,7 +8001,7 @@ 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 8: Hero (33545 in chips) Seat 9: NoLuv420 (19298 in chips) jt2007: posts the ante 100 yapa2yapa: posts the ante 100 @@ -8010,17 +8010,17 @@ 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 +Hero: 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] +Dealt to Hero [Qs 8c] KingShades: folds ethegreat1: folds Jumping: folds XROMOY: folds -s0rrow: raises 1000 to 2000 +Hero: raises 1000 to 2000 NoLuv420: folds jt2007: folds yapa2yapa is disconnected @@ -8030,10 +8030,10 @@ yapa2yapa is sitting out patrick sph: calls 1000 *** FLOP *** [8h 2c As] patrick sph: checks -s0rrow: bets 1000 +Hero: bets 1000 patrick sph: folds -s0rrow collected 5400 from pot -s0rrow: doesn't show hand +Hero collected 5400 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 5400 | Rake 0 Board [8h 2c As] @@ -8044,7 +8044,7 @@ 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 8: Hero collected (5400) Seat 9: NoLuv420 folded before Flop (didn't bet) @@ -8058,7 +8058,7 @@ 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 8: Hero (36845 in chips) Seat 9: NoLuv420 (19198 in chips) jt2007: posts the ante 100 yapa2yapa: posts the ante 100 @@ -8067,16 +8067,16 @@ 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 +Hero: 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] +Dealt to Hero [7s Qd] ethegreat1: folds Jumping: raises 2000 to 3000 XROMOY: folds -s0rrow: folds +Hero: folds NoLuv420: folds jt2007: folds yapa2yapa: folds @@ -8093,7 +8093,7 @@ 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 8: Hero folded before Flop (didn't bet) Seat 9: NoLuv420 folded before Flop (didn't bet) @@ -8107,7 +8107,7 @@ 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 8: Hero (36745 in chips) Seat 9: NoLuv420 (19098 in chips) jt2007: posts the ante 100 yapa2yapa: posts the ante 100 @@ -8116,16 +8116,16 @@ 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 +Hero: 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] +Dealt to Hero [4c 7c] Jumping: folds yapa2yapa has returned XROMOY: raises 3000 to 4000 -s0rrow: folds +Hero: folds NoLuv420: folds jt2007: calls 2918 and is all-in yapa2yapa has timed out while being disconnected @@ -8152,7 +8152,7 @@ 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 8: Hero folded before Flop (didn't bet) Seat 9: NoLuv420 folded before Flop (didn't bet) @@ -8165,7 +8165,7 @@ 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 8: Hero (36645 in chips) Seat 9: NoLuv420 (18998 in chips) yapa2yapa: posts the ante 100 patrick sph: posts the ante 100 @@ -8173,14 +8173,14 @@ 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 +Hero: 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] +Dealt to Hero [4c 9d] XROMOY: folds -s0rrow: folds +Hero: folds NoLuv420: folds yapa2yapa: folds patrick sph: raises 2000 to 3000 @@ -8198,7 +8198,7 @@ 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 8: Hero folded before Flop (didn't bet) Seat 9: NoLuv420 folded before Flop (didn't bet) @@ -8211,7 +8211,7 @@ 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 8: Hero (36545 in chips) Seat 9: NoLuv420 (18898 in chips) yapa2yapa: posts the ante 125 patrick sph: posts the ante 125 @@ -8219,13 +8219,13 @@ 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 +Hero: 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 +Dealt to Hero [2h 5d] +Hero: folds NoLuv420: folds yapa2yapa: folds patrick sph: raises 3600 to 4800 @@ -8243,7 +8243,7 @@ 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 8: Hero folded before Flop (didn't bet) Seat 9: NoLuv420 folded before Flop (didn't bet) @@ -8256,7 +8256,7 @@ 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 8: Hero (36420 in chips) Seat 9: NoLuv420 (18773 in chips) yapa2yapa: posts the ante 125 patrick sph: posts the ante 125 @@ -8264,12 +8264,12 @@ 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 +Hero: posts the ante 125 NoLuv420: posts the ante 125 XROMOY: posts small blind 600 -s0rrow: posts big blind 1200 +Hero: posts big blind 1200 *** HOLE CARDS *** -Dealt to s0rrow [4d Td] +Dealt to Hero [4d Td] NoLuv420: folds yapa2yapa has timed out while being disconnected yapa2yapa: folds @@ -8283,7 +8283,7 @@ yapa2yapa is connected XROMOY has timed out XROMOY: folds XROMOY is sitting out -s0rrow: folds +Hero: folds *** FLOP *** [2c 6h Qh] XROMOY has returned KingShades: checks @@ -8308,7 +8308,7 @@ 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 8: Hero (big blind) folded before Flop Seat 9: NoLuv420 folded before Flop (didn't bet) @@ -8321,7 +8321,7 @@ 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 8: Hero (35095 in chips) Seat 9: NoLuv420 (18648 in chips) yapa2yapa: posts the ante 125 patrick sph: posts the ante 125 @@ -8329,30 +8329,30 @@ 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 +Hero: posts the ante 125 NoLuv420: posts the ante 125 -s0rrow: posts small blind 600 +Hero: posts small blind 600 NoLuv420: posts big blind 1200 *** HOLE CARDS *** -Dealt to s0rrow [7c 7s] +Dealt to Hero [7c 7s] yapa2yapa: calls 1200 patrick sph: folds KingShades: folds ethegreat1: raises 1200 to 2400 Jumping: folds XROMOY: folds -s0rrow: calls 1800 +Hero: calls 1800 NoLuv420: folds yapa2yapa: calls 1200 *** FLOP *** [8c Ks 4c] -s0rrow: checks +Hero: checks yapa2yapa: checks ethegreat1: checks *** TURN *** [8c Ks 4c] [9d] -s0rrow: bets 1200 +Hero: bets 1200 yapa2yapa: raises 2800 to 4000 ethegreat1: folds -s0rrow: folds +Hero: folds yapa2yapa collected 11800 from pot *** SUMMARY *** Total pot 11800 | Rake 0 @@ -8363,7 +8363,7 @@ 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 8: Hero (small blind) folded on the Turn Seat 9: NoLuv420 (big blind) folded before Flop @@ -8376,7 +8376,7 @@ 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 8: Hero (31370 in chips) Seat 9: NoLuv420 (17323 in chips) yapa2yapa: posts the ante 125 patrick sph: posts the ante 125 @@ -8384,28 +8384,28 @@ 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 +Hero: 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] +Dealt to Hero [4h 5h] patrick sph: folds KingShades: folds ethegreat1: calls 1200 Jumping: folds XROMOY: folds -s0rrow: calls 1200 +Hero: calls 1200 NoLuv420: folds yapa2yapa: checks *** FLOP *** [2h Ac 3h] yapa2yapa: checks ethegreat1: checks -s0rrow: bets 2400 +Hero: bets 2400 yapa2yapa: folds ethegreat1: folds -s0rrow collected 5200 from pot -s0rrow: shows [4h 5h] (a straight, Ace to Five) +Hero collected 5200 from pot +Hero: shows [4h 5h] (a straight, Ace to Five) *** SUMMARY *** Total pot 5200 | Rake 0 Board [2h Ac 3h] @@ -8415,7 +8415,7 @@ 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 8: Hero (button) collected (5200) Seat 9: NoLuv420 (small blind) folded before Flop @@ -8428,7 +8428,7 @@ 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 8: Hero (35245 in chips) Seat 9: NoLuv420 (16598 in chips) yapa2yapa: posts the ante 125 patrick sph: posts the ante 125 @@ -8436,17 +8436,17 @@ 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 +Hero: 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] +Dealt to Hero [Ad Ac] KingShades: calls 1200 ethegreat1: folds Jumping: folds XROMOY: folds -s0rrow: raises 2400 to 3600 +Hero: raises 2400 to 3600 NoLuv420: folds yapa2yapa: calls 3000 patrick sph: folds @@ -8454,11 +8454,11 @@ KingShades: calls 2400 *** FLOP *** [8h Qd 6s] yapa2yapa: checks KingShades: checks -s0rrow: bets 2400 +Hero: bets 2400 yapa2yapa: folds KingShades: folds -s0rrow collected 13000 from pot -s0rrow: doesn't show hand +Hero collected 13000 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 13000 | Rake 0 Board [8h Qd 6s] @@ -8468,7 +8468,7 @@ 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 8: Hero collected (13000) Seat 9: NoLuv420 (button) folded before Flop (didn't bet) @@ -8481,7 +8481,7 @@ 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 8: Hero (44520 in chips) Seat 9: NoLuv420 (16473 in chips) yapa2yapa: posts the ante 125 patrick sph: posts the ante 125 @@ -8489,16 +8489,16 @@ 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 +Hero: 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] +Dealt to Hero [6h 6d] ethegreat1: folds Jumping: raises 4800 to 6000 XROMOY: folds -s0rrow: folds +Hero: folds NoLuv420: folds yapa2yapa: folds patrick sph: folds @@ -8512,7 +8512,7 @@ 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 8: Hero folded before Flop (didn't bet) Seat 9: NoLuv420 folded before Flop (didn't bet) @@ -8525,7 +8525,7 @@ 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 8: Hero (44395 in chips) Seat 9: NoLuv420 (16348 in chips) yapa2yapa: posts the ante 125 patrick sph: posts the ante 125 @@ -8533,15 +8533,15 @@ 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 +Hero: 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] +Dealt to Hero [3c Ts] Jumping: folds XROMOY: folds -s0rrow: folds +Hero: folds NoLuv420: raises 2650 to 3850 yapa2yapa: folds patrick sph: folds @@ -8558,7 +8558,7 @@ 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 8: Hero folded before Flop (didn't bet) Seat 9: NoLuv420 folded before Flop @@ -8571,7 +8571,7 @@ 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 8: Hero (44270 in chips) Seat 9: NoLuv420 (12373 in chips) yapa2yapa: posts the ante 125 patrick sph: posts the ante 125 @@ -8579,14 +8579,14 @@ 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 +Hero: 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] +Dealt to Hero [Jd 5s] XROMOY: folds -s0rrow: folds +Hero: folds NoLuv420: folds yapa2yapa: calls 1200 patrick sph: folds @@ -8609,7 +8609,7 @@ 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 8: Hero folded before Flop (didn't bet) Seat 9: NoLuv420 folded before Flop (didn't bet) @@ -8622,7 +8622,7 @@ 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 8: Hero (44145 in chips) Seat 9: NoLuv420 (12248 in chips) yapa2yapa: posts the ante 125 patrick sph: posts the ante 125 @@ -8630,13 +8630,13 @@ 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 +Hero: 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 +Dealt to Hero [Jc 9h] +Hero: folds NoLuv420: folds yapa2yapa: folds patrick sph: raises 3600 to 4800 @@ -8661,7 +8661,7 @@ 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 8: Hero folded before Flop (didn't bet) Seat 9: NoLuv420 folded before Flop (didn't bet) @@ -8671,7 +8671,7 @@ 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 4: Hero (44020 in chips) Seat 5: VanBuren44 (35418 in chips) Seat 6: Angie0502 (11760 in chips) Seat 7: misterji (55000 in chips) @@ -8680,16 +8680,16 @@ 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 +Hero: 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 +Hero: posts big blind 1200 *** HOLE CARDS *** -Dealt to s0rrow [4h 9s] +Dealt to Hero [4h 9s] VanBuren44: folds Angie0502: calls 1200 misterji: folds @@ -8698,12 +8698,12 @@ OverTheWell: folds philnkaz: folds batscarer: folds scouse21: folds -s0rrow: checks +Hero: checks *** FLOP *** [Ad Ac 4d] -s0rrow: checks +Hero: checks Angie0502: bets 2400 ACEISGOD: raises 6000 to 8400 -s0rrow: folds +Hero: folds Angie0502: folds ACEISGOD collected 10125 from pot *** SUMMARY *** @@ -8712,7 +8712,7 @@ 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 4: Hero (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) @@ -8726,7 +8726,7 @@ 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 4: Hero (42695 in chips) Seat 5: VanBuren44 (35293 in chips) Seat 6: Angie0502 (8035 in chips) Seat 7: misterji (54875 in chips) @@ -8735,16 +8735,16 @@ 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 +Hero: 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 +Hero: posts small blind 600 VanBuren44: posts big blind 1200 *** HOLE CARDS *** -Dealt to s0rrow [2s Kd] +Dealt to Hero [2s Kd] Angie0502: folds misterji: folds ACEISGOD: folds @@ -8752,7 +8752,7 @@ OverTheWell: raises 2400 to 3600 philnkaz: folds batscarer: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: calls 2400 *** FLOP *** [8s 8c 4h] VanBuren44: checks @@ -8766,7 +8766,7 @@ 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 4: Hero (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) @@ -8780,7 +8780,7 @@ 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 4: Hero (41970 in chips) Seat 5: VanBuren44 (31568 in chips) Seat 6: Angie0502 (7910 in chips) Seat 7: misterji (54750 in chips) @@ -8789,7 +8789,7 @@ 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 +Hero: posts the ante 125 VanBuren44: posts the ante 125 Angie0502: posts the ante 125 misterji: posts the ante 125 @@ -8798,14 +8798,14 @@ OverTheWell: posts the ante 125 VanBuren44: posts small blind 600 Angie0502: posts big blind 1200 *** HOLE CARDS *** -Dealt to s0rrow [8c 4s] +Dealt to Hero [8c 4s] misterji: folds ACEISGOD: folds OverTheWell: folds philnkaz: folds batscarer: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: raises 2400 to 3600 Angie0502: folds VanBuren44 collected 3525 from pot @@ -8815,7 +8815,7 @@ 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 4: Hero (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) @@ -8829,7 +8829,7 @@ 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 4: Hero (41845 in chips) Seat 5: VanBuren44 (33768 in chips) Seat 6: Angie0502 (6585 in chips) Seat 7: misterji (54625 in chips) @@ -8838,7 +8838,7 @@ 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 +Hero: posts the ante 125 VanBuren44: posts the ante 125 Angie0502: posts the ante 125 misterji: posts the ante 125 @@ -8847,13 +8847,13 @@ OverTheWell: posts the ante 125 Angie0502: posts small blind 600 misterji: posts big blind 1200 *** HOLE CARDS *** -Dealt to s0rrow [Qs 3h] +Dealt to Hero [Qs 3h] ACEISGOD: folds OverTheWell: folds philnkaz: folds batscarer: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds Angie0502: raises 5260 to 6460 and is all-in misterji: folds @@ -8863,7 +8863,7 @@ 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 4: Hero 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 @@ -8877,7 +8877,7 @@ 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 4: Hero (41720 in chips) Seat 5: VanBuren44 (33643 in chips) Seat 6: Angie0502 (8785 in chips) Seat 7: misterji (53300 in chips) @@ -8886,7 +8886,7 @@ 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 +Hero: posts the ante 125 VanBuren44: posts the ante 125 Angie0502: posts the ante 125 misterji: posts the ante 125 @@ -8895,12 +8895,12 @@ OverTheWell: posts the ante 125 misterji: posts small blind 600 ACEISGOD: posts big blind 1200 *** HOLE CARDS *** -Dealt to s0rrow [3h Ah] +Dealt to Hero [3h Ah] OverTheWell: folds philnkaz: folds batscarer: raises 2400 to 3600 scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds Angie0502: folds misterji: folds @@ -8917,7 +8917,7 @@ 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 4: Hero 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 @@ -8931,7 +8931,7 @@ 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 4: Hero (41595 in chips) Seat 5: VanBuren44 (33518 in chips) Seat 6: Angie0502 (8660 in chips) Seat 7: misterji (52575 in chips) @@ -8940,7 +8940,7 @@ 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 +Hero: posts the ante 150 VanBuren44: posts the ante 150 Angie0502: posts the ante 150 misterji: posts the ante 150 @@ -8949,11 +8949,11 @@ OverTheWell: posts the ante 150 ACEISGOD: posts small blind 800 OverTheWell: posts big blind 1600 *** HOLE CARDS *** -Dealt to s0rrow [8d 6s] +Dealt to Hero [8d 6s] philnkaz: raises 3200 to 4800 batscarer: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds Angie0502: folds misterji: folds @@ -8966,7 +8966,7 @@ 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 4: Hero 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) @@ -8980,7 +8980,7 @@ 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 4: Hero (41445 in chips) Seat 5: VanBuren44 (33368 in chips) Seat 6: Angie0502 (8510 in chips) Seat 7: misterji (52425 in chips) @@ -8989,7 +8989,7 @@ 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 +Hero: posts the ante 150 VanBuren44: posts the ante 150 Angie0502: posts the ante 150 misterji: posts the ante 150 @@ -8998,10 +8998,10 @@ OverTheWell: posts the ante 150 OverTheWell: posts small blind 800 philnkaz: posts big blind 1600 *** HOLE CARDS *** -Dealt to s0rrow [9h 7c] +Dealt to Hero [9h 7c] batscarer: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds Angie0502: folds misterji: raises 2175 to 3775 @@ -9014,7 +9014,7 @@ 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 4: Hero 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) @@ -9027,7 +9027,7 @@ PokerStars Game #12638814302: Tournament #63858762, $5.00+$0.50 Hold'em No Limit 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 4: Hero (41295 in chips) Seat 5: VanBuren44 (33218 in chips) Seat 6: Angie0502 (8360 in chips) Seat 7: misterji (56025 in chips) @@ -9035,7 +9035,7 @@ 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 +Hero: posts the ante 150 VanBuren44: posts the ante 150 Angie0502: posts the ante 150 misterji: posts the ante 150 @@ -9044,8 +9044,8 @@ OverTheWell: posts the ante 150 philnkaz: posts small blind 800 scouse21: posts big blind 1600 *** HOLE CARDS *** -Dealt to s0rrow [4d Kh] -s0rrow: folds +Dealt to Hero [4d Kh] +Hero: folds VanBuren44: folds Angie0502: folds misterji: folds @@ -9058,7 +9058,7 @@ ACEISGOD collected 5200 from pot 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 4: Hero 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) @@ -9071,7 +9071,7 @@ PokerStars Game #12638818367: Tournament #63858762, $5.00+$0.50 Hold'em No Limit 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 4: Hero (41145 in chips) Seat 5: VanBuren44 (33068 in chips) Seat 6: Angie0502 (8210 in chips) Seat 7: misterji (55875 in chips) @@ -9079,16 +9079,16 @@ 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 +Hero: 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 +Hero: posts big blind 1600 *** HOLE CARDS *** -Dealt to s0rrow [Qs 3h] +Dealt to Hero [Qs 3h] VanBuren44: folds Angie0502: raises 6460 to 8060 and is all-in misterji: folds @@ -9096,13 +9096,13 @@ ACEISGOD: folds OverTheWell: folds philnkaz: folds scouse21: folds -s0rrow: folds +Hero: 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 4: Hero (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) @@ -9115,7 +9115,7 @@ PokerStars Game #12638822863: Tournament #63858762, $5.00+$0.50 Hold'em No Limit 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 4: Hero (39395 in chips) Seat 5: VanBuren44 (32918 in chips) Seat 6: Angie0502 (11660 in chips) Seat 7: misterji (55725 in chips) @@ -9123,23 +9123,23 @@ 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 +Hero: 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 +Hero: posts small blind 800 VanBuren44: posts big blind 1600 *** HOLE CARDS *** -Dealt to s0rrow [4s 9h] +Dealt to Hero [4s 9h] Angie0502: folds misterji: folds ACEISGOD: folds OverTheWell: raises 2400 to 4000 philnkaz: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds OverTheWell collected 5200 from pot OverTheWell: doesn't show hand @@ -9147,7 +9147,7 @@ OverTheWell: doesn't show hand 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 4: Hero (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) @@ -9160,7 +9160,7 @@ PokerStars Game #12638827578: Tournament #63858762, $5.00+$0.50 Hold'em No Limit 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 4: Hero (38445 in chips) Seat 5: VanBuren44 (31168 in chips) Seat 6: Angie0502 (11510 in chips) Seat 7: misterji (55575 in chips) @@ -9168,7 +9168,7 @@ 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 +Hero: posts the ante 150 VanBuren44: posts the ante 150 Angie0502: posts the ante 150 misterji: posts the ante 150 @@ -9177,13 +9177,13 @@ OverTheWell: posts the ante 150 VanBuren44: posts small blind 800 Angie0502: posts big blind 1600 *** HOLE CARDS *** -Dealt to s0rrow [7c Kh] +Dealt to Hero [7c Kh] misterji: raises 1825 to 3425 ACEISGOD: folds OverTheWell: folds philnkaz: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds mit5482 is connected Angie0502: folds @@ -9192,7 +9192,7 @@ misterji collected 5200 from pot 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 4: Hero (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) @@ -9206,7 +9206,7 @@ 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 4: Hero (38295 in chips) Seat 5: VanBuren44 (30218 in chips) Seat 6: Angie0502 (9760 in chips) Seat 7: misterji (59025 in chips) @@ -9215,7 +9215,7 @@ 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 +Hero: posts the ante 150 VanBuren44: posts the ante 150 Angie0502: posts the ante 150 misterji: posts the ante 150 @@ -9224,13 +9224,13 @@ OverTheWell: posts the ante 150 Angie0502: posts small blind 800 misterji: posts big blind 1600 *** HOLE CARDS *** -Dealt to s0rrow [Ts 7h] +Dealt to Hero [Ts 7h] ACEISGOD: raises 1600 to 3200 OverTheWell: folds philnkaz: folds mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds Angie0502: folds misterji: folds @@ -9240,7 +9240,7 @@ 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 4: Hero 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 @@ -9254,7 +9254,7 @@ 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 4: Hero (38145 in chips) Seat 5: VanBuren44 (30068 in chips) Seat 6: Angie0502 (8810 in chips) Seat 7: misterji (57275 in chips) @@ -9263,7 +9263,7 @@ 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 +Hero: posts the ante 150 VanBuren44: posts the ante 150 Angie0502: posts the ante 150 misterji: posts the ante 150 @@ -9272,12 +9272,12 @@ OverTheWell: posts the ante 150 misterji: posts small blind 800 ACEISGOD: posts big blind 1600 *** HOLE CARDS *** -Dealt to s0rrow [Jh 8h] +Dealt to Hero [Jh 8h] OverTheWell: folds philnkaz: folds mit5482: folds scouse21: raises 1600 to 3200 -s0rrow: folds +Hero: folds VanBuren44: folds Angie0502: folds misterji: folds @@ -9289,7 +9289,7 @@ 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 4: Hero 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 @@ -9303,7 +9303,7 @@ 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 4: Hero (37995 in chips) Seat 5: VanBuren44 (29918 in chips) Seat 6: Angie0502 (8660 in chips) Seat 7: misterji (56325 in chips) @@ -9312,7 +9312,7 @@ 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 +Hero: posts the ante 150 VanBuren44: posts the ante 150 Angie0502: posts the ante 150 misterji: posts the ante 150 @@ -9321,11 +9321,11 @@ OverTheWell: posts the ante 150 ACEISGOD: posts small blind 800 OverTheWell: posts big blind 1600 *** HOLE CARDS *** -Dealt to s0rrow [4h Js] +Dealt to Hero [4h Js] philnkaz: folds mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds Angie0502: folds misterji: raises 2075 to 3675 @@ -9352,7 +9352,7 @@ 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 4: Hero 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 @@ -9366,7 +9366,7 @@ 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 4: Hero (37845 in chips) Seat 5: VanBuren44 (29768 in chips) Seat 6: Angie0502 (8510 in chips) Seat 7: misterji (26425 in chips) @@ -9375,7 +9375,7 @@ 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 +Hero: posts the ante 150 VanBuren44: posts the ante 150 Angie0502: posts the ante 150 misterji: posts the ante 150 @@ -9384,10 +9384,10 @@ OverTheWell: posts the ante 150 OverTheWell: posts small blind 800 philnkaz: posts big blind 1600 *** HOLE CARDS *** -Dealt to s0rrow [7d 4s] +Dealt to Hero [7d 4s] mit5482: folds scouse21: raises 1600 to 3200 -s0rrow: folds +Hero: folds VanBuren44: folds Angie0502: folds misterji: folds @@ -9407,7 +9407,7 @@ 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 4: Hero 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) @@ -9421,7 +9421,7 @@ 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 4: Hero (37695 in chips) Seat 5: VanBuren44 (29618 in chips) Seat 6: Angie0502 (8360 in chips) Seat 7: misterji (26275 in chips) @@ -9430,7 +9430,7 @@ 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 +Hero: posts the ante 150 VanBuren44: posts the ante 150 Angie0502: posts the ante 150 misterji: posts the ante 150 @@ -9439,9 +9439,9 @@ OverTheWell: posts the ante 150 philnkaz: posts small blind 800 mit5482: posts big blind 1600 *** HOLE CARDS *** -Dealt to s0rrow [5c 7d] +Dealt to Hero [5c 7d] scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds Angie0502: folds misterji: folds @@ -9455,7 +9455,7 @@ 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 4: Hero 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) @@ -9469,7 +9469,7 @@ 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 4: Hero (37545 in chips) Seat 5: VanBuren44 (29468 in chips) Seat 6: Angie0502 (8210 in chips) Seat 7: misterji (26125 in chips) @@ -9478,7 +9478,7 @@ 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 +Hero: posts the ante 150 VanBuren44: posts the ante 150 Angie0502: posts the ante 150 misterji: posts the ante 150 @@ -9487,8 +9487,8 @@ OverTheWell: posts the ante 150 mit5482: posts small blind 800 scouse21: posts big blind 1600 *** HOLE CARDS *** -Dealt to s0rrow [4s 3h] -s0rrow: folds +Dealt to Hero [4s 3h] +Hero: folds VanBuren44: folds Angie0502: folds misterji: folds @@ -9515,7 +9515,7 @@ 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 4: Hero 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) @@ -9529,7 +9529,7 @@ 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 4: Hero (37395 in chips) Seat 5: VanBuren44 (29318 in chips) Seat 6: Angie0502 (8060 in chips) Seat 7: misterji (25975 in chips) @@ -9538,16 +9538,16 @@ 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 +Hero: 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 +Hero: posts big blind 1600 *** HOLE CARDS *** -Dealt to s0rrow [3s 4h] +Dealt to Hero [3s 4h] VanBuren44: folds Angie0502: folds misterji: folds @@ -9556,23 +9556,23 @@ OverTheWell: folds philnkaz: folds mit5482: folds scouse21: calls 800 -s0rrow: checks +Hero: checks *** FLOP *** [2s 5h Kd] scouse21: checks -s0rrow: checks +Hero: checks *** TURN *** [2s 5h Kd] [2c] scouse21: checks -s0rrow: bets 3200 +Hero: bets 3200 scouse21: folds -s0rrow collected 4550 from pot -s0rrow: doesn't show hand +Hero collected 4550 from pot +Hero: 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 4: Hero (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) @@ -9586,7 +9586,7 @@ 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 4: Hero (40195 in chips) Seat 5: VanBuren44 (29168 in chips) Seat 6: Angie0502 (7910 in chips) Seat 7: misterji (25825 in chips) @@ -9595,16 +9595,16 @@ 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 +Hero: 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 +Hero: posts small blind 800 VanBuren44: posts big blind 1600 *** HOLE CARDS *** -Dealt to s0rrow [2h 9h] +Dealt to Hero [2h 9h] Angie0502: folds misterji: folds ACEISGOD: folds @@ -9612,16 +9612,16 @@ OverTheWell: folds philnkaz: folds mit5482: folds scouse21: folds -s0rrow: calls 800 +Hero: calls 800 VanBuren44: checks *** FLOP *** [Qs Td Kh] -s0rrow: checks +Hero: checks VanBuren44: bets 1600 -s0rrow: calls 1600 +Hero: calls 1600 *** TURN *** [Qs Td Kh] [2d] -s0rrow: checks +Hero: checks VanBuren44: bets 3200 -s0rrow: folds +Hero: folds VanBuren44 collected 7750 from pot *** SUMMARY *** Total pot 7750 | Rake 0 @@ -9629,7 +9629,7 @@ 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 4: Hero (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) @@ -9643,7 +9643,7 @@ 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 4: Hero (36845 in chips) Seat 5: VanBuren44 (33568 in chips) Seat 6: Angie0502 (7760 in chips) Seat 7: misterji (25675 in chips) @@ -9651,7 +9651,7 @@ 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 +Hero: posts the ante 150 VanBuren44: posts the ante 150 Angie0502: posts the ante 150 misterji: posts the ante 150 @@ -9659,13 +9659,13 @@ ACEISGOD: posts the ante 150 VanBuren44: posts small blind 800 Angie0502: posts big blind 1600 *** HOLE CARDS *** -Dealt to s0rrow [Kc 3h] +Dealt to Hero [Kc 3h] misterji: raises 1925 to 3525 ACEISGOD: folds philnkaz: folds mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds Angie0502: folds misterji collected 5200 from pot @@ -9674,7 +9674,7 @@ 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 4: Hero (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) @@ -9687,7 +9687,7 @@ 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 4: Hero (36695 in chips) Seat 5: VanBuren44 (32618 in chips) Seat 6: Angie0502 (6010 in chips) Seat 7: misterji (29125 in chips) @@ -9695,7 +9695,7 @@ 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 +Hero: posts the ante 150 VanBuren44: posts the ante 150 Angie0502: posts the ante 150 misterji: posts the ante 150 @@ -9703,12 +9703,12 @@ ACEISGOD: posts the ante 150 Angie0502: posts small blind 800 misterji: posts big blind 1600 *** HOLE CARDS *** -Dealt to s0rrow [9d 8h] +Dealt to Hero [9d 8h] ACEISGOD: raises 4800 to 6400 philnkaz: folds mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds Angie0502: folds misterji: raises 22575 to 28975 and is all-in @@ -9726,7 +9726,7 @@ 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 4: Hero 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 @@ -9739,24 +9739,24 @@ 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 4: Hero (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 +Hero: 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] +Dealt to Hero [6s 9s] mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: raises 1600 to 3200 Angie0502: folds ACEISGOD: raises 19600 to 22800 @@ -9768,7 +9768,7 @@ 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 4: Hero 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) @@ -9780,23 +9780,23 @@ 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 4: Hero (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 +Hero: 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] +Dealt to Hero [Kh 4d] scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds Angie0502: folds ACEISGOD: raises 4800 to 6400 @@ -9809,7 +9809,7 @@ 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 4: Hero 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) @@ -9821,22 +9821,22 @@ 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 4: Hero (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 +Hero: 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 +Dealt to Hero [2c Kh] +Hero: folds VanBuren44: folds Angie0502: folds ACEISGOD: folds @@ -9850,7 +9850,7 @@ 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 4: Hero 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) @@ -9862,21 +9862,21 @@ 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 4: Hero (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 +Hero: 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 +Hero: posts big blind 2000 *** HOLE CARDS *** -Dealt to s0rrow [Qh 7h] +Dealt to Hero [Qh 7h] VanBuren44: folds Angie0502: folds ACEISGOD said, "thx" @@ -9884,19 +9884,19 @@ ACEISGOD: folds philnkaz: folds mit5482: calls 2000 scouse21: calls 1000 -s0rrow: checks +Hero: checks *** FLOP *** [Kc Kh 6h] scouse21: checks -s0rrow: checks +Hero: checks mit5482: bets 4000 scouse21: calls 4000 -s0rrow: calls 4000 +Hero: calls 4000 *** TURN *** [Kc Kh 6h] [2d] scouse21: checks -s0rrow: checks +Hero: checks mit5482: bets 4000 scouse21: raises 6000 to 10000 -s0rrow: folds +Hero: folds mit5482: folds scouse21 collected 27400 from pot scouse21: doesn't show hand @@ -9906,7 +9906,7 @@ 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 4: Hero (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) @@ -9918,27 +9918,27 @@ 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 4: Hero (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 +Hero: posts the ante 200 VanBuren44: posts the ante 200 Angie0502: posts the ante 200 ACEISGOD: posts the ante 200 -s0rrow: posts small blind 1000 +Hero: posts small blind 1000 VanBuren44: posts big blind 2000 *** HOLE CARDS *** -Dealt to s0rrow [3d 7h] +Dealt to Hero [3d 7h] Angie0502: raises 2160 to 4160 and is all-in ACEISGOD: folds philnkaz: folds mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: calls 2160 *** FLOP *** [7c As Qh] Angie0502 said, "gl all" @@ -9957,7 +9957,7 @@ 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 4: Hero (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) @@ -9969,21 +9969,21 @@ 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 4: Hero (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 +Hero: 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] +Dealt to Hero [5d Ad] ACEISGOD: folds ACEISGOD said, "ty" philnkaz: raises 4000 to 6000 @@ -9991,7 +9991,7 @@ ACEISGOD said, "gg" scouse21 said, "tx" mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds scouse21 said, "golden still here eye see" GoldeNEyE0o7: folds @@ -10002,7 +10002,7 @@ 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 4: Hero (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) @@ -10014,27 +10014,27 @@ 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 4: Hero (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 +Hero: 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] +Dealt to Hero [3s 7c] GoldeNEyE0o7 said, "ya" GoldeNEyE0o7 said, "gl" philnkaz: folds mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds GoldeNEyE0o7: folds scouse21 said, "need it" @@ -10045,7 +10045,7 @@ 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 4: Hero 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) @@ -10057,25 +10057,25 @@ 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 4: Hero (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 +Hero: 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] +Dealt to Hero [6h 2h] GoldeNEyE0o7 said, "ty" mit5482: folds scouse21: raises 2000 to 4000 -s0rrow: folds +Hero: folds VanBuren44: folds GoldeNEyE0o7: folds ACEISGOD: folds @@ -10087,7 +10087,7 @@ 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 4: Hero 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 @@ -10099,23 +10099,23 @@ 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 4: Hero (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 +Hero: 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] +Dealt to Hero [Jd Ts] scouse21: calls 2000 -s0rrow: folds +Hero: folds VanBuren44: folds GoldeNEyE0o7: calls 2000 ACEISGOD: folds @@ -10145,7 +10145,7 @@ 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 4: Hero 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) @@ -10157,23 +10157,23 @@ 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 4: Hero (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 +Hero: 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] +Dealt to Hero [9d Ac] GoldeNEyE0o7 said, "vnh" -s0rrow: calls 2000 +Hero: calls 2000 VanBuren44: folds scouse21 said, "ty" GoldeNEyE0o7: folds @@ -10181,11 +10181,11 @@ ACEISGOD: folds philnkaz: raises 4000 to 6000 mit5482: folds scouse21: folds -s0rrow: calls 4000 +Hero: calls 4000 *** FLOP *** [8s Qh 4s] -s0rrow: checks +Hero: checks philnkaz: bets 10000 -s0rrow: folds +Hero: folds philnkaz collected 16400 from pot philnkaz: doesn't show hand *** SUMMARY *** @@ -10194,7 +10194,7 @@ 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 4: Hero 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) @@ -10206,42 +10206,42 @@ 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 4: Hero (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 +Hero: 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 +Hero: posts big blind 2000 *** HOLE CARDS *** -Dealt to s0rrow [4h 7d] +Dealt to Hero [4h 7d] VanBuren44: folds GoldeNEyE0o7: folds ACEISGOD: folds philnkaz: folds mit5482: calls 2000 scouse21: calls 1000 -s0rrow: checks +Hero: checks *** FLOP *** [Td 7c 8s] scouse21: checks -s0rrow: bets 6000 +Hero: bets 6000 mit5482: folds scouse21: folds -s0rrow collected 7400 from pot -s0rrow: doesn't show hand +Hero collected 7400 from pot +Hero: 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 4: Hero (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) @@ -10253,48 +10253,48 @@ 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 4: Hero (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 +Hero: posts the ante 200 VanBuren44: posts the ante 200 GoldeNEyE0o7: posts the ante 200 ACEISGOD: posts the ante 200 -s0rrow: posts small blind 1000 +Hero: posts small blind 1000 VanBuren44: posts big blind 2000 *** HOLE CARDS *** -Dealt to s0rrow [9d Ks] +Dealt to Hero [9d Ks] GoldeNEyE0o7: folds ACEISGOD: folds philnkaz: folds mit5482: folds scouse21: folds -s0rrow: calls 1000 +Hero: calls 1000 VanBuren44: checks *** FLOP *** [Js 4d 3h] -s0rrow: checks +Hero: checks VanBuren44: checks *** TURN *** [Js 4d 3h] [Jd] -s0rrow: checks +Hero: checks VanBuren44: checks *** RIVER *** [Js 4d 3h Jd] [5d] -s0rrow: checks +Hero: checks VanBuren44: checks *** SHOW DOWN *** -s0rrow: shows [9d Ks] (a pair of Jacks) +Hero: shows [9d Ks] (a pair of Jacks) VanBuren44: mucks hand -s0rrow collected 5400 from pot +Hero 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 4: Hero (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) @@ -10306,7 +10306,7 @@ 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 4: Hero (30045 in chips) Seat 5: VanBuren44 (30528 in chips) Seat 6: GoldeNEyE0o7 (56827 in chips) Seat 7: El_Pino82 (125637 in chips) @@ -10315,7 +10315,7 @@ 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 +Hero: posts the ante 200 VanBuren44: posts the ante 200 GoldeNEyE0o7: posts the ante 200 El_Pino82: posts the ante 200 @@ -10324,14 +10324,14 @@ J.R.66350: posts the ante 200 VanBuren44: posts small blind 1000 GoldeNEyE0o7: posts big blind 2000 *** HOLE CARDS *** -Dealt to s0rrow [Jh 7h] +Dealt to Hero [Jh 7h] El_Pino82: folds ACEISGOD: folds J.R.66350: folds philnkaz: folds mit5482: folds scouse21: raises 2000 to 4000 -s0rrow: folds +Hero: folds VanBuren44: folds GoldeNEyE0o7: calls 2000 *** FLOP *** [4d Kh Kd] @@ -10345,7 +10345,7 @@ 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 4: Hero (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) @@ -10359,7 +10359,7 @@ 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 4: Hero (29845 in chips) Seat 5: VanBuren44 (29328 in chips) Seat 6: GoldeNEyE0o7 (63427 in chips) Seat 7: El_Pino82 (125437 in chips) @@ -10368,7 +10368,7 @@ 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 +Hero: posts the ante 200 VanBuren44: posts the ante 200 GoldeNEyE0o7: posts the ante 200 El_Pino82: posts the ante 200 @@ -10377,13 +10377,13 @@ 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] +Dealt to Hero [Tc 6h] ACEISGOD: folds J.R.66350: folds philnkaz: folds mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: raises 4000 to 6000 GoldeNEyE0o7: folds El_Pino82: folds @@ -10394,7 +10394,7 @@ 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 4: Hero 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 @@ -10408,7 +10408,7 @@ 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 4: Hero (29645 in chips) Seat 5: VanBuren44 (33928 in chips) Seat 6: GoldeNEyE0o7 (62227 in chips) Seat 7: El_Pino82 (123237 in chips) @@ -10417,7 +10417,7 @@ 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 +Hero: posts the ante 200 VanBuren44: posts the ante 200 GoldeNEyE0o7: posts the ante 200 El_Pino82: posts the ante 200 @@ -10426,12 +10426,12 @@ 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] +Dealt to Hero [Kd Jd] J.R.66350: calls 2000 philnkaz: folds mit5482: folds scouse21: calls 2000 -s0rrow: calls 2000 +Hero: calls 2000 VanBuren44: folds GoldeNEyE0o7: calls 2000 El_Pino82: calls 1000 @@ -10441,7 +10441,7 @@ El_Pino82: checks ACEISGOD: checks J.R.66350: checks scouse21: checks -s0rrow: checks +Hero: checks GoldeNEyE0o7: checks *** TURN *** [Td 2h 2s] [5c] El_Pino82: checks @@ -10450,7 +10450,7 @@ scouse21 said, "go on" scouse21 said, "u know u want to" J.R.66350: checks scouse21: checks -s0rrow: bets 4000 +Hero: bets 4000 GoldeNEyE0o7: calls 4000 El_Pino82: folds ACEISGOD: folds @@ -10458,21 +10458,21 @@ J.R.66350: folds scouse21: calls 4000 *** RIVER *** [Td 2h 2s 5c] [Jh] scouse21: checks -s0rrow: checks +Hero: checks GoldeNEyE0o7: checks *** SHOW DOWN *** scouse21: shows [Qd Ks] (a pair of Deuces) -s0rrow: shows [Kd Jd] (two pair, Jacks and Deuces) +Hero: 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 +Hero 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 4: Hero 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 @@ -10486,7 +10486,7 @@ 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 4: Hero (49245 in chips) Seat 5: VanBuren44 (33728 in chips) Seat 6: GoldeNEyE0o7 (56027 in chips) Seat 7: El_Pino82 (121037 in chips) @@ -10495,7 +10495,7 @@ 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 +Hero: posts the ante 200 VanBuren44: posts the ante 200 GoldeNEyE0o7: posts the ante 200 El_Pino82: posts the ante 200 @@ -10504,16 +10504,16 @@ 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] +Dealt to Hero [7h Th] philnkaz: folds mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds GoldeNEyE0o7: folds El_Pino82: folds scouse21 said, "nice pot" -s0rrow said, "lucky" +Hero said, "lucky" ACEISGOD: calls 1000 J.R.66350: raises 2000 to 4000 ACEISGOD: calls 2000 @@ -10532,7 +10532,7 @@ 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 4: Hero 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) @@ -10546,7 +10546,7 @@ 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 4: Hero (49045 in chips) Seat 5: VanBuren44 (33528 in chips) Seat 6: GoldeNEyE0o7 (55827 in chips) Seat 7: El_Pino82 (120837 in chips) @@ -10555,7 +10555,7 @@ 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 +Hero: posts the ante 200 VanBuren44: posts the ante 200 GoldeNEyE0o7: posts the ante 200 El_Pino82: posts the ante 200 @@ -10564,11 +10564,11 @@ 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] +Dealt to Hero [9d 7s] mit5482: raises 4000 to 6000 scouse21 said, "lol" scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds GoldeNEyE0o7: folds scouse21 said, "bet early" @@ -10599,7 +10599,7 @@ 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 4: Hero 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) @@ -10613,7 +10613,7 @@ 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 4: Hero (48845 in chips) Seat 5: VanBuren44 (33328 in chips) Seat 6: GoldeNEyE0o7 (55627 in chips) Seat 7: El_Pino82 (120637 in chips) @@ -10622,7 +10622,7 @@ 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 +Hero: posts the ante 200 VanBuren44: posts the ante 200 GoldeNEyE0o7: posts the ante 200 El_Pino82: posts the ante 200 @@ -10631,9 +10631,9 @@ J.R.66350: posts the ante 200 philnkaz: posts small blind 1000 mit5482: posts big blind 2000 *** HOLE CARDS *** -Dealt to s0rrow [7c Ad] +Dealt to Hero [7c Ad] scouse21: calls 2000 -s0rrow: folds +Hero: folds VanBuren44: folds GoldeNEyE0o7: folds El_Pino82: folds @@ -10662,7 +10662,7 @@ 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 4: Hero 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) @@ -10676,7 +10676,7 @@ 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 4: Hero (48645 in chips) Seat 5: VanBuren44 (33128 in chips) Seat 6: GoldeNEyE0o7 (55427 in chips) Seat 7: El_Pino82 (120437 in chips) @@ -10685,7 +10685,7 @@ 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 +Hero: posts the ante 300 VanBuren44: posts the ante 300 GoldeNEyE0o7: posts the ante 300 El_Pino82: posts the ante 300 @@ -10694,8 +10694,8 @@ 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 +Dealt to Hero [8d Qs] +Hero: folds VanBuren44: raises 6000 to 9000 GoldeNEyE0o7: folds El_Pino82: folds @@ -10711,7 +10711,7 @@ 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 4: Hero 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) @@ -10725,7 +10725,7 @@ 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 4: Hero (48345 in chips) Seat 5: VanBuren44 (40028 in chips) Seat 6: GoldeNEyE0o7 (55127 in chips) Seat 7: El_Pino82 (120137 in chips) @@ -10734,16 +10734,16 @@ 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 +Hero: 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 +Hero: posts big blind 3000 *** HOLE CARDS *** -Dealt to s0rrow [4c Ks] +Dealt to Hero [4c Ks] VanBuren44: folds GoldeNEyE0o7: folds El_Pino82: folds @@ -10752,7 +10752,7 @@ J.R.66350: folds philnkaz: raises 6000 to 9000 mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds philnkaz collected 10200 from pot philnkaz: doesn't show hand *** SUMMARY *** @@ -10760,7 +10760,7 @@ 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 4: Hero (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) @@ -10774,7 +10774,7 @@ 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 4: Hero (45045 in chips) Seat 5: VanBuren44 (39728 in chips) Seat 6: GoldeNEyE0o7 (54827 in chips) Seat 7: El_Pino82 (119837 in chips) @@ -10783,16 +10783,16 @@ 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 +Hero: 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 +Hero: posts small blind 1500 VanBuren44: posts big blind 3000 *** HOLE CARDS *** -Dealt to s0rrow [2c Td] +Dealt to Hero [2c Td] GoldeNEyE0o7: folds El_Pino82: folds ACEISGOD: raises 5000 to 8000 @@ -10800,7 +10800,7 @@ J.R.66350: folds philnkaz: folds mit5482: calls 8000 scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds *** FLOP *** [7s 4c Jc] ACEISGOD: bets 10500 @@ -10823,7 +10823,7 @@ 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 4: Hero (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) @@ -10837,7 +10837,7 @@ 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 4: Hero (43245 in chips) Seat 5: VanBuren44 (36428 in chips) Seat 6: GoldeNEyE0o7 (54527 in chips) Seat 7: El_Pino82 (119537 in chips) @@ -10846,7 +10846,7 @@ 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 +Hero: posts the ante 300 VanBuren44: posts the ante 300 GoldeNEyE0o7: posts the ante 300 El_Pino82: posts the ante 300 @@ -10855,14 +10855,14 @@ J.R.66350: posts the ante 300 VanBuren44: posts small blind 1500 GoldeNEyE0o7: posts big blind 3000 *** HOLE CARDS *** -Dealt to s0rrow [4s Kh] +Dealt to Hero [4s Kh] El_Pino82: folds ACEISGOD: folds J.R.66350: folds philnkaz: folds mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds GoldeNEyE0o7 collected 5700 from pot *** SUMMARY *** @@ -10870,7 +10870,7 @@ 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 4: Hero (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) @@ -10884,7 +10884,7 @@ 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 4: Hero (42945 in chips) Seat 5: VanBuren44 (34628 in chips) Seat 6: GoldeNEyE0o7 (58427 in chips) Seat 7: El_Pino82 (119237 in chips) @@ -10893,7 +10893,7 @@ 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 +Hero: posts the ante 300 VanBuren44: posts the ante 300 GoldeNEyE0o7: posts the ante 300 El_Pino82: posts the ante 300 @@ -10902,13 +10902,13 @@ 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] +Dealt to Hero [7h Qh] ACEISGOD: folds J.R.66350: folds philnkaz: folds mit5482: folds scouse21: raises 3000 to 6000 -s0rrow: folds +Hero: folds VanBuren44: folds GoldeNEyE0o7: folds El_Pino82: folds @@ -10919,7 +10919,7 @@ 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 4: Hero 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 @@ -10933,7 +10933,7 @@ 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 4: Hero (42645 in chips) Seat 5: VanBuren44 (34328 in chips) Seat 6: GoldeNEyE0o7 (56627 in chips) Seat 7: El_Pino82 (115937 in chips) @@ -10942,7 +10942,7 @@ 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 +Hero: posts the ante 300 VanBuren44: posts the ante 300 GoldeNEyE0o7: posts the ante 300 El_Pino82: posts the ante 300 @@ -10951,12 +10951,12 @@ 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] +Dealt to Hero [5c 3h] J.R.66350: folds philnkaz: folds mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds GoldeNEyE0o7: raises 3000 to 6000 El_Pino82: calls 4500 @@ -10969,7 +10969,7 @@ 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 4: Hero 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 @@ -10983,7 +10983,7 @@ 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 4: Hero (42345 in chips) Seat 5: VanBuren44 (34028 in chips) Seat 6: GoldeNEyE0o7 (50327 in chips) Seat 7: El_Pino82 (109637 in chips) @@ -10992,7 +10992,7 @@ 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 +Hero: posts the ante 300 VanBuren44: posts the ante 300 GoldeNEyE0o7: posts the ante 300 El_Pino82: posts the ante 300 @@ -11001,11 +11001,11 @@ 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] +Dealt to Hero [2c 5s] philnkaz: folds mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds GoldeNEyE0o7: raises 47027 to 50027 and is all-in El_Pino82: folds @@ -11018,7 +11018,7 @@ 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 4: Hero 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) @@ -11032,7 +11032,7 @@ 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 4: Hero (42045 in chips) Seat 5: VanBuren44 (33728 in chips) Seat 6: GoldeNEyE0o7 (57227 in chips) Seat 7: El_Pino82 (109337 in chips) @@ -11041,7 +11041,7 @@ 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 +Hero: posts the ante 300 VanBuren44: posts the ante 300 GoldeNEyE0o7: posts the ante 300 El_Pino82: posts the ante 300 @@ -11050,10 +11050,10 @@ 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] +Dealt to Hero [7h Kh] mit5482: folds scouse21: raises 3000 to 6000 -s0rrow: folds +Hero: folds VanBuren44: folds GoldeNEyE0o7: folds El_Pino82: folds @@ -11067,7 +11067,7 @@ 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 4: Hero 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) @@ -11081,7 +11081,7 @@ 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 4: Hero (41745 in chips) Seat 5: VanBuren44 (33428 in chips) Seat 6: GoldeNEyE0o7 (56927 in chips) Seat 7: El_Pino82 (109037 in chips) @@ -11090,7 +11090,7 @@ 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 +Hero: posts the ante 300 VanBuren44: posts the ante 300 GoldeNEyE0o7: posts the ante 300 El_Pino82: posts the ante 300 @@ -11099,9 +11099,9 @@ J.R.66350: posts the ante 300 philnkaz: posts small blind 1500 mit5482: posts big blind 3000 *** HOLE CARDS *** -Dealt to s0rrow [4c Qh] +Dealt to Hero [4c Qh] scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds GoldeNEyE0o7: raises 6000 to 9000 El_Pino82: folds @@ -11116,7 +11116,7 @@ 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 4: Hero 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) @@ -11130,7 +11130,7 @@ 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 4: Hero (41445 in chips) Seat 5: VanBuren44 (33128 in chips) Seat 6: GoldeNEyE0o7 (63827 in chips) Seat 7: El_Pino82 (108737 in chips) @@ -11139,7 +11139,7 @@ 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 +Hero: posts the ante 300 VanBuren44: posts the ante 300 GoldeNEyE0o7: posts the ante 300 El_Pino82: posts the ante 300 @@ -11148,9 +11148,9 @@ J.R.66350: posts the ante 300 mit5482: posts small blind 1500 scouse21: posts big blind 3000 *** HOLE CARDS *** -Dealt to s0rrow [4h 3c] +Dealt to Hero [4h 3c] scouse21 said, "lol" -s0rrow: folds +Hero: folds VanBuren44: folds GoldeNEyE0o7: folds El_Pino82: folds @@ -11172,7 +11172,7 @@ 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 4: Hero 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) @@ -11186,7 +11186,7 @@ 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 4: Hero (41145 in chips) Seat 5: VanBuren44 (32828 in chips) Seat 6: GoldeNEyE0o7 (63527 in chips) Seat 7: El_Pino82 (108437 in chips) @@ -11195,16 +11195,16 @@ 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 +Hero: 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 +Hero: posts big blind 3000 *** HOLE CARDS *** -Dealt to s0rrow [2h 9s] +Dealt to Hero [2h 9s] VanBuren44: raises 6000 to 9000 GoldeNEyE0o7: raises 54227 to 63227 and is all-in El_Pino82: folds @@ -11213,7 +11213,7 @@ J.R.66350: folds philnkaz: folds mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: calls 23528 and is all-in *** FLOP *** [7d 5d 5c] *** TURN *** [7d 5d 5c] [8c] @@ -11228,7 +11228,7 @@ 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 4: Hero (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) @@ -11242,7 +11242,7 @@ 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 4: Hero (37845 in chips) Seat 5: VanBuren44 (72256 in chips) Seat 6: GoldeNEyE0o7 (30699 in chips) Seat 7: El_Pino82 (108137 in chips) @@ -11251,16 +11251,16 @@ 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 +Hero: 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 +Hero: posts small blind 1500 VanBuren44: posts big blind 3000 *** HOLE CARDS *** -Dealt to s0rrow [4h 8c] +Dealt to Hero [4h 8c] GoldeNEyE0o7: folds El_Pino82: folds ACEISGOD: folds @@ -11268,7 +11268,7 @@ J.R.66350: folds philnkaz: folds mit5482: folds scouse21: raises 3000 to 6000 -s0rrow: folds +Hero: folds VanBuren44: folds scouse21 collected 10200 from pot scouse21: doesn't show hand @@ -11277,7 +11277,7 @@ 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 4: Hero (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) @@ -11291,7 +11291,7 @@ 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 4: Hero (36045 in chips) Seat 5: VanBuren44 (68956 in chips) Seat 6: GoldeNEyE0o7 (30399 in chips) Seat 7: El_Pino82 (107837 in chips) @@ -11300,7 +11300,7 @@ 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 +Hero: posts the ante 300 VanBuren44: posts the ante 300 GoldeNEyE0o7: posts the ante 300 El_Pino82: posts the ante 300 @@ -11309,24 +11309,24 @@ J.R.66350: posts the ante 300 VanBuren44: posts small blind 1500 GoldeNEyE0o7: posts big blind 3000 *** HOLE CARDS *** -Dealt to s0rrow [Ad 5c] +Dealt to Hero [Ad 5c] El_Pino82: folds ACEISGOD: folds J.R.66350: folds philnkaz: folds mit5482: folds scouse21: folds -s0rrow: raises 3000 to 6000 +Hero: raises 3000 to 6000 VanBuren44: folds GoldeNEyE0o7: raises 24099 to 30099 and is all-in -s0rrow: calls 24099 +Hero: 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 +Hero: shows [Ad 5c] (a pair of Aces) +Hero collected 64398 from pot scouse21 said, "gg" *** SUMMARY *** Total pot 64398 | Rake 0 @@ -11334,7 +11334,7 @@ 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 4: Hero (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) @@ -11348,7 +11348,7 @@ 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 4: Hero (70044 in chips) Seat 5: VanBuren44 (67156 in chips) Seat 7: El_Pino82 (107537 in chips) Seat 8: ACEISGOD (170535 in chips) @@ -11356,7 +11356,7 @@ 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 +Hero: posts the ante 300 VanBuren44: posts the ante 300 El_Pino82: posts the ante 300 ACEISGOD: posts the ante 300 @@ -11364,12 +11364,12 @@ 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] +Dealt to Hero [2d 7h] J.R.66350: folds philnkaz: raises 6000 to 9000 mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds El_Pino82: folds ACEISGOD: folds @@ -11380,7 +11380,7 @@ 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 4: Hero 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 @@ -11393,7 +11393,7 @@ 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 4: Hero (69744 in chips) Seat 5: VanBuren44 (66856 in chips) Seat 7: El_Pino82 (105737 in chips) Seat 8: ACEISGOD (167235 in chips) @@ -11401,7 +11401,7 @@ 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 +Hero: posts the ante 300 VanBuren44: posts the ante 300 El_Pino82: posts the ante 300 ACEISGOD: posts the ante 300 @@ -11409,11 +11409,11 @@ 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] +Dealt to Hero [2d Qd] philnkaz: folds mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds El_Pino82: folds ACEISGOD: calls 1500 @@ -11430,7 +11430,7 @@ 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 4: Hero 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) @@ -11443,7 +11443,7 @@ 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 4: Hero (69444 in chips) Seat 5: VanBuren44 (66556 in chips) Seat 7: El_Pino82 (105437 in chips) Seat 8: ACEISGOD (193335 in chips) @@ -11451,7 +11451,7 @@ 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 +Hero: posts the ante 300 VanBuren44: posts the ante 300 El_Pino82: posts the ante 300 ACEISGOD: posts the ante 300 @@ -11459,10 +11459,10 @@ 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] +Dealt to Hero [7d Qc] mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds El_Pino82: folds ACEISGOD: folds @@ -11480,7 +11480,7 @@ 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 4: Hero 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) @@ -11493,7 +11493,7 @@ 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 4: Hero (69144 in chips) Seat 5: VanBuren44 (66256 in chips) Seat 7: El_Pino82 (105137 in chips) Seat 8: ACEISGOD (193035 in chips) @@ -11501,7 +11501,7 @@ 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 +Hero: posts the ante 300 VanBuren44: posts the ante 300 El_Pino82: posts the ante 300 ACEISGOD: posts the ante 300 @@ -11509,9 +11509,9 @@ J.R.66350: posts the ante 300 philnkaz: posts small blind 1500 mit5482: posts big blind 3000 *** HOLE CARDS *** -Dealt to s0rrow [Qd 8c] +Dealt to Hero [Qd 8c] scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds El_Pino82: raises 6256 to 9256 ACEISGOD: calls 9256 @@ -11532,7 +11532,7 @@ 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 4: Hero 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 @@ -11545,7 +11545,7 @@ 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 4: Hero (68844 in chips) Seat 5: VanBuren44 (65956 in chips) Seat 7: El_Pino82 (120993 in chips) Seat 8: ACEISGOD (183479 in chips) @@ -11553,7 +11553,7 @@ 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 +Hero: posts the ante 300 VanBuren44: posts the ante 300 El_Pino82: posts the ante 300 ACEISGOD: posts the ante 300 @@ -11561,8 +11561,8 @@ 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 +Dealt to Hero [5c 7d] +Hero: folds VanBuren44: folds El_Pino82: folds ACEISGOD: folds @@ -11576,7 +11576,7 @@ 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 4: Hero 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) @@ -11589,7 +11589,7 @@ 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 4: Hero (68544 in chips) Seat 5: VanBuren44 (65656 in chips) Seat 7: El_Pino82 (120693 in chips) Seat 8: ACEISGOD (183179 in chips) @@ -11597,15 +11597,15 @@ 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 +Hero: 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 +Hero: posts big blind 3000 *** HOLE CARDS *** -Dealt to s0rrow [As 5s] +Dealt to Hero [As 5s] VanBuren44: folds El_Pino82: folds ACEISGOD: folds @@ -11613,27 +11613,27 @@ J.R.66350: folds philnkaz: folds mit5482: folds scouse21: raises 6000 to 9000 -s0rrow: calls 6000 +Hero: calls 6000 *** FLOP *** [7c Ah Js] scouse21: checks -s0rrow: checks +Hero: checks *** TURN *** [7c Ah Js] [5c] scouse21: checks -s0rrow: bets 3000 +Hero: bets 3000 scouse21: calls 3000 *** RIVER *** [7c Ah Js 5c] [3d] scouse21: checks -s0rrow: bets 9000 +Hero: bets 9000 scouse21: folds -s0rrow collected 26400 from pot -s0rrow: doesn't show hand +Hero collected 26400 from pot +Hero: 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 4: Hero (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) @@ -11646,7 +11646,7 @@ 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 4: Hero (82644 in chips) Seat 5: VanBuren44 (65356 in chips) Seat 7: El_Pino82 (120393 in chips) Seat 8: ACEISGOD (182879 in chips) @@ -11654,15 +11654,15 @@ 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 +Hero: 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 +Hero: posts small blind 1500 VanBuren44: posts big blind 3000 *** HOLE CARDS *** -Dealt to s0rrow [4s 7h] +Dealt to Hero [4s 7h] El_Pino82: raises 4965 to 7965 ACEISGOD: folds J.R.66350: folds @@ -11670,10 +11670,10 @@ scouse21 said, "i hate 88" philnkaz: raises 49047 to 57012 and is all-in mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds El_Pino82: folds -s0rrow said, "a 5" +Hero said, "a 5" philnkaz collected 22830 from pot philnkaz: doesn't show hand *** SUMMARY *** @@ -11681,7 +11681,7 @@ 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 4: Hero (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) @@ -11694,7 +11694,7 @@ 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 4: Hero (80844 in chips) Seat 5: VanBuren44 (62056 in chips) Seat 7: El_Pino82 (112128 in chips) Seat 8: ACEISGOD (182579 in chips) @@ -11702,7 +11702,7 @@ 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 +Hero: posts the ante 300 VanBuren44: posts the ante 300 El_Pino82: posts the ante 300 ACEISGOD: posts the ante 300 @@ -11710,13 +11710,13 @@ 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] +Dealt to Hero [Kc 7s] ACEISGOD: folds J.R.66350: folds philnkaz: folds mit5482: folds scouse21: calls 3000 -s0rrow: folds +Hero: folds VanBuren44: folds El_Pino82: checks *** FLOP *** [Qc 5s 2s] @@ -11740,7 +11740,7 @@ 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 4: Hero (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) @@ -11753,7 +11753,7 @@ 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 4: Hero (80544 in chips) Seat 5: VanBuren44 (60256 in chips) Seat 7: El_Pino82 (96828 in chips) Seat 8: ACEISGOD (182279 in chips) @@ -11761,7 +11761,7 @@ 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 +Hero: posts the ante 300 VanBuren44: posts the ante 300 El_Pino82: posts the ante 300 ACEISGOD: posts the ante 300 @@ -11769,12 +11769,12 @@ 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] +Dealt to Hero [Th 9h] J.R.66350: folds philnkaz: folds mit5482: folds scouse21: calls 3000 -s0rrow: folds +Hero: folds VanBuren44: raises 9000 to 12000 El_Pino82: folds ACEISGOD: folds @@ -11786,7 +11786,7 @@ 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 4: Hero 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 @@ -11799,7 +11799,7 @@ 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 4: Hero (80244 in chips) Seat 5: VanBuren44 (69856 in chips) Seat 7: El_Pino82 (95028 in chips) Seat 8: ACEISGOD (178979 in chips) @@ -11807,7 +11807,7 @@ 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 +Hero: posts the ante 300 VanBuren44: posts the ante 300 El_Pino82: posts the ante 300 ACEISGOD: posts the ante 300 @@ -11815,11 +11815,11 @@ 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] +Dealt to Hero [7s 3h] philnkaz: folds mit5482: folds scouse21: folds -s0rrow: folds +Hero: folds VanBuren44: folds El_Pino82: raises 6000 to 9000 ACEISGOD: folds @@ -11835,7 +11835,7 @@ 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 4: Hero 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 @@ -11851,21 +11851,21 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 400 billyem: posts small blind 2000 batscarer: posts big blind 4000 *** HOLE CARDS *** -Dealt to s0rrow [Kh Tc] +Dealt to Hero [Kh Tc] donkey: folds ethegreat1: calls 4000 -s0rrow: folds +Hero: folds Girlie007: folds BlindBurt: raises 11000 to 15000 billyem: folds @@ -11880,7 +11880,7 @@ 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) +Seat 7: Hero folded before Flop (didn't bet) @@ -11892,20 +11892,20 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 400 batscarer: posts small blind 2000 donkey: posts big blind 4000 *** HOLE CARDS *** -Dealt to s0rrow [7d 6c] +Dealt to Hero [7d 6c] ethegreat1: raises 6000 to 10000 -s0rrow: folds +Hero: folds Girlie007: folds BlindBurt: folds billyem: folds @@ -11920,7 +11920,7 @@ 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) +Seat 7: Hero folded before Flop (didn't bet) @@ -11932,19 +11932,19 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 400 donkey: posts small blind 2000 ethegreat1: posts big blind 4000 *** HOLE CARDS *** -Dealt to s0rrow [Kd 4d] -s0rrow: folds +Dealt to Hero [Kd 4d] +Hero: folds Girlie007: folds BlindBurt: folds billyem: folds @@ -11961,7 +11961,7 @@ 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) +Seat 7: Hero folded before Flop (didn't bet) @@ -11973,18 +11973,18 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 400 ethegreat1: posts small blind 2000 -s0rrow: posts big blind 4000 +Hero: posts big blind 4000 *** HOLE CARDS *** -Dealt to s0rrow [Qc Kd] +Dealt to Hero [Qc Kd] Girlie007: folds BlindBurt: raises 8000 to 12000 billyem: folds @@ -11992,11 +11992,11 @@ batscarer: folds donkey: folds ethegreat1: folds batscarer said, "hate calling with small pairs" -s0rrow: calls 8000 +Hero: calls 8000 *** FLOP *** [9d 9h As] -s0rrow: checks +Hero: checks BlindBurt: bets 16000 -s0rrow: folds +Hero: folds BlindBurt collected 28800 from pot *** SUMMARY *** Total pot 28800 | Rake 0 @@ -12007,7 +12007,7 @@ 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 +Seat 7: Hero (big blind) folded on the Flop @@ -12019,24 +12019,24 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 400 +Hero: posts small blind 2000 Girlie007: posts big blind 4000 *** HOLE CARDS *** -Dealt to s0rrow [4c Kh] +Dealt to Hero [4c Kh] BlindBurt: folds billyem: raises 8000 to 12000 batscarer: folds donkey: folds ethegreat1: folds -s0rrow: folds +Hero: folds Girlie007: folds billyem collected 12800 from pot billyem: doesn't show hand @@ -12048,7 +12048,7 @@ 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 +Seat 7: Hero (small blind) folded before Flop @@ -12060,27 +12060,27 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 400 Girlie007: posts small blind 2000 BlindBurt: posts big blind 4000 *** HOLE CARDS *** -Dealt to s0rrow [4s As] +Dealt to Hero [4s As] billyem: folds batscarer: folds donkey: folds ethegreat1: folds -s0rrow: raises 8000 to 12000 +Hero: raises 8000 to 12000 Girlie007: folds BlindBurt: folds -s0rrow collected 12800 from pot -s0rrow: doesn't show hand +Hero collected 12800 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 12800 | Rake 0 Seat 1: Girlie007 (small blind) folded before Flop @@ -12089,7 +12089,7 @@ 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) +Seat 7: Hero (button) collected (12800) @@ -12101,22 +12101,22 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 400 BlindBurt: posts small blind 2000 billyem: posts big blind 4000 *** HOLE CARDS *** -Dealt to s0rrow [Qc 8s] +Dealt to Hero [Qc 8s] batscarer: raises 6500 to 10500 donkey: folds ethegreat1: folds -s0rrow: folds +Hero: folds Girlie007: folds BlindBurt: folds billyem: folds @@ -12130,7 +12130,7 @@ 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) +Seat 7: Hero folded before Flop (didn't bet) @@ -12142,21 +12142,21 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 400 billyem: posts small blind 2000 batscarer: posts big blind 4000 *** HOLE CARDS *** -Dealt to s0rrow [4c Js] +Dealt to Hero [4c Js] donkey: folds ethegreat1: folds -s0rrow: folds +Hero: folds Girlie007: folds BlindBurt: folds billyem: calls 2000 @@ -12180,7 +12180,7 @@ 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) +Seat 7: Hero folded before Flop (didn't bet) @@ -12192,20 +12192,20 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 400 batscarer: posts small blind 2000 donkey: posts big blind 4000 *** HOLE CARDS *** -Dealt to s0rrow [2d Td] +Dealt to Hero [2d Td] ethegreat1: raises 8000 to 12000 -s0rrow: folds +Hero: folds Girlie007: folds BlindBurt: folds billyem: folds @@ -12220,7 +12220,7 @@ 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) +Seat 7: Hero folded before Flop (didn't bet) @@ -12232,19 +12232,19 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 400 donkey: posts small blind 2000 ethegreat1: posts big blind 4000 *** HOLE CARDS *** -Dealt to s0rrow [9h Kd] -s0rrow: folds +Dealt to Hero [9h Kd] +Hero: folds Girlie007: raises 12000 to 16000 BlindBurt: folds billyem: calls 16000 @@ -12273,7 +12273,7 @@ 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) +Seat 7: Hero folded before Flop (didn't bet) @@ -12285,25 +12285,25 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 400 ethegreat1: posts small blind 2000 -s0rrow: posts big blind 4000 +Hero: posts big blind 4000 *** HOLE CARDS *** -Dealt to s0rrow [2s Qh] +Dealt to Hero [2s Qh] Girlie007: folds BlindBurt: folds billyem: raises 4000 to 8000 batscarer: folds donkey: folds ethegreat1: folds -s0rrow: folds +Hero: folds billyem collected 12800 from pot billyem: doesn't show hand *** SUMMARY *** @@ -12314,7 +12314,7 @@ 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 +Seat 7: Hero (big blind) folded before Flop @@ -12326,30 +12326,30 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 400 +Hero: posts small blind 2000 Girlie007: posts big blind 4000 *** HOLE CARDS *** -Dealt to s0rrow [2c As] +Dealt to Hero [2c As] BlindBurt: folds billyem: folds batscarer: folds donkey: folds ethegreat1: calls 4000 -s0rrow: calls 2000 +Hero: calls 2000 Girlie007: checks *** FLOP *** [Qh 7s Js] -s0rrow: checks +Hero: checks Girlie007: checks ethegreat1: bets 8000 -s0rrow: folds +Hero: folds Girlie007: folds ethegreat1 collected 14800 from pot *** SUMMARY *** @@ -12361,7 +12361,7 @@ 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 +Seat 7: Hero (small blind) folded on the Flop @@ -12373,23 +12373,23 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 400 Girlie007: posts small blind 2000 BlindBurt: posts big blind 4000 *** HOLE CARDS *** -Dealt to s0rrow [6s 5s] +Dealt to Hero [6s 5s] billyem: calls 4000 batscarer: folds donkey: folds ethegreat1: folds -s0rrow: folds +Hero: folds Girlie007: calls 2000 BlindBurt: checks *** FLOP *** [7s 9s 8c] @@ -12407,7 +12407,7 @@ 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) +Seat 7: Hero (button) folded before Flop (didn't bet) @@ -12419,22 +12419,22 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 400 BlindBurt: posts small blind 2000 billyem: posts big blind 4000 *** HOLE CARDS *** -Dealt to s0rrow [3s Qc] +Dealt to Hero [3s Qc] batscarer: raises 6000 to 10000 donkey: folds ethegreat1: calls 10000 -s0rrow: folds +Hero: folds Girlie007: folds BlindBurt: folds billyem: folds @@ -12455,7 +12455,7 @@ 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) +Seat 7: Hero folded before Flop (didn't bet) @@ -12467,21 +12467,21 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 400 billyem: posts small blind 2000 batscarer: posts big blind 4000 *** HOLE CARDS *** -Dealt to s0rrow [Js Qc] +Dealt to Hero [Js Qc] donkey: raises 41313 to 45313 and is all-in ethegreat1: folds -s0rrow: folds +Hero: folds Girlie007: folds BlindBurt: folds billyem: folds @@ -12495,7 +12495,7 @@ 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) +Seat 7: Hero folded before Flop (didn't bet) @@ -12507,20 +12507,20 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 400 batscarer: posts small blind 2000 donkey: posts big blind 4000 *** HOLE CARDS *** -Dealt to s0rrow [9c 6s] +Dealt to Hero [9c 6s] ethegreat1: folds -s0rrow: folds +Hero: folds Girlie007: folds BlindBurt: folds ethegreat1 said, "yes?" @@ -12551,7 +12551,7 @@ 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) +Seat 7: Hero folded before Flop (didn't bet) @@ -12563,20 +12563,20 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 400 donkey: posts small blind 2000 ethegreat1: posts big blind 4000 *** HOLE CARDS *** -Dealt to s0rrow [4c 6d] +Dealt to Hero [4c 6d] ethegreat1 said, "36" -s0rrow: folds +Hero: folds Girlie007: folds BlindBurt: folds billyem: folds @@ -12593,7 +12593,7 @@ 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) +Seat 7: Hero folded before Flop (didn't bet) @@ -12605,18 +12605,18 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 400 ethegreat1: posts small blind 2000 -s0rrow: posts big blind 4000 +Hero: posts big blind 4000 *** HOLE CARDS *** -Dealt to s0rrow [3h Td] +Dealt to Hero [3h Td] Girlie007: raises 8000 to 12000 ethegreat1 said, "ty" BlindBurt: calls 12000 @@ -12627,7 +12627,7 @@ batscarer: folds donkey: folds ethegreat1 said, "lol" ethegreat1: calls 10000 -s0rrow: folds +Hero: folds *** FLOP *** [7s 9c 4s] ethegreat1: checks Girlie007: bets 32000 @@ -12647,7 +12647,7 @@ 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 7: Hero (big blind) folded before Flop @@ -12659,7 +12659,7 @@ 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 7: Hero (55544 in chips) Seat 8: rapidrush (131202 in chips) Seat 9: thripe (75248 in chips) Girlie007: posts the ante 400 @@ -12668,13 +12668,13 @@ 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 +Hero: posts the ante 400 rapidrush: posts the ante 400 thripe: posts the ante 400 -s0rrow: posts small blind 2000 +Hero: posts small blind 2000 rapidrush: posts big blind 4000 *** HOLE CARDS *** -Dealt to s0rrow [Qs 5c] +Dealt to Hero [Qs 5c] thripe: folds Girlie007: raises 8000 to 12000 BlindBurt: folds @@ -12683,7 +12683,7 @@ ethegreat1 said, "KK?" batscarer: folds donkey: folds ethegreat1: folds -s0rrow: folds +Hero: folds rapidrush: folds BlindBurt said, "close" Girlie007 collected 13600 from pot @@ -12696,7 +12696,7 @@ 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 7: Hero (small blind) folded before Flop Seat 8: rapidrush (big blind) folded before Flop Seat 9: thripe folded before Flop (didn't bet) @@ -12710,7 +12710,7 @@ 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 7: Hero (53144 in chips) Seat 8: rapidrush (126802 in chips) Seat 9: thripe (74848 in chips) Girlie007: posts the ante 400 @@ -12719,25 +12719,25 @@ 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 +Hero: 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] +Dealt to Hero [Kd Td] Girlie007: folds BlindBurt: folds billyem: calls 4000 batscarer: folds donkey: folds ethegreat1: folds -s0rrow: raises 8000 to 12000 +Hero: raises 8000 to 12000 rapidrush: folds thripe: folds billyem: folds -s0rrow collected 17600 from pot -s0rrow: doesn't show hand +Hero collected 17600 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 17600 | Rake 0 Seat 1: Girlie007 folded before Flop (didn't bet) @@ -12746,7 +12746,7 @@ 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 7: Hero (button) collected (17600) Seat 8: rapidrush (small blind) folded before Flop Seat 9: thripe (big blind) folded before Flop @@ -12760,7 +12760,7 @@ 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 7: Hero (66344 in chips) Seat 8: rapidrush (124402 in chips) Seat 9: thripe (70448 in chips) Girlie007: posts the ante 400 @@ -12769,19 +12769,19 @@ 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 +Hero: 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] +Dealt to Hero [6d 9h] BlindBurt: calls 4000 billyem: folds batscarer: raises 6500 to 10500 donkey: folds ethegreat1: raises 9500 to 20000 -s0rrow: folds +Hero: folds rapidrush: folds thripe: folds Girlie007: folds @@ -12801,7 +12801,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: rapidrush (button) folded before Flop (didn't bet) Seat 9: thripe (small blind) folded before Flop @@ -12815,7 +12815,7 @@ 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 7: Hero (65944 in chips) Seat 8: rapidrush (124002 in chips) Seat 9: thripe (68048 in chips) Girlie007: posts the ante 400 @@ -12824,18 +12824,18 @@ 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 +Hero: 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] +Dealt to Hero [3h 5d] billyem: folds batscarer: folds donkey: folds ethegreat1: folds -s0rrow: folds +Hero: folds rapidrush: folds thripe: folds Girlie007: raises 8000 to 12000 @@ -12854,7 +12854,7 @@ 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 7: Hero 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) @@ -12868,7 +12868,7 @@ 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 7: Hero (65544 in chips) Seat 8: rapidrush (123602 in chips) Seat 9: thripe (67648 in chips) Girlie007: posts the ante 500 @@ -12877,17 +12877,17 @@ 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 +Hero: 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] +Dealt to Hero [Qs 5h] batscarer: folds donkey: folds ethegreat1: folds -s0rrow: folds +Hero: folds rapidrush: calls 5000 thripe: folds Girlie007: folds @@ -12909,7 +12909,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: rapidrush collected (19500) Seat 9: thripe folded before Flop (didn't bet) @@ -12923,7 +12923,7 @@ 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 7: Hero (65044 in chips) Seat 8: rapidrush (137602 in chips) Seat 9: thripe (67148 in chips) Girlie007: posts the ante 500 @@ -12932,16 +12932,16 @@ 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 +Hero: 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] +Dealt to Hero [Kd 2d] donkey: folds ethegreat1: folds -s0rrow: folds +Hero: folds rapidrush: folds thripe: folds ethegreat1 has returned @@ -12971,7 +12971,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: rapidrush folded before Flop (didn't bet) Seat 9: thripe folded before Flop (didn't bet) @@ -12985,7 +12985,7 @@ 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 7: Hero (64544 in chips) Seat 8: rapidrush (137102 in chips) Seat 9: thripe (66648 in chips) Girlie007: posts the ante 500 @@ -12994,15 +12994,15 @@ 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 +Hero: 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] +Dealt to Hero [4c Qh] ethegreat1: folds -s0rrow: folds +Hero: folds rapidrush: folds thripe: folds Girlie007: folds @@ -13018,7 +13018,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: rapidrush folded before Flop (didn't bet) Seat 9: thripe folded before Flop (didn't bet) @@ -13032,7 +13032,7 @@ 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 7: Hero (64044 in chips) Seat 8: rapidrush (136602 in chips) Seat 9: thripe (66148 in chips) Girlie007: posts the ante 500 @@ -13041,14 +13041,14 @@ 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 +Hero: 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 +Dealt to Hero [Qc Td] +Hero: raises 10000 to 15000 rapidrush: folds thripe: folds Girlie007: folds @@ -13057,8 +13057,8 @@ billyem: folds batscarer: folds donkey: folds ethegreat1: folds -s0rrow collected 17000 from pot -s0rrow: doesn't show hand +Hero collected 17000 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 17000 | Rake 0 Seat 1: Girlie007 folded before Flop (didn't bet) @@ -13067,7 +13067,7 @@ 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 7: Hero collected (17000) Seat 8: rapidrush folded before Flop (didn't bet) Seat 9: thripe folded before Flop (didn't bet) @@ -13081,7 +13081,7 @@ 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 7: Hero (75544 in chips) Seat 8: rapidrush (136102 in chips) Seat 9: thripe (65648 in chips) Girlie007: posts the ante 500 @@ -13090,13 +13090,13 @@ 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 +Hero: posts the ante 500 rapidrush: posts the ante 500 thripe: posts the ante 500 ethegreat1: posts small blind 2500 -s0rrow: posts big blind 5000 +Hero: posts big blind 5000 *** HOLE CARDS *** -Dealt to s0rrow [9s Jc] +Dealt to Hero [9s Jc] rapidrush: folds thripe: raises 7500 to 12500 Girlie007: folds @@ -13105,7 +13105,7 @@ billyem: folds batscarer: folds donkey: folds ethegreat1: calls 10000 -s0rrow: folds +Hero: folds *** FLOP *** [6s Kh 3s] ethegreat1: checks thripe: bets 18000 @@ -13121,7 +13121,7 @@ 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 7: Hero (big blind) folded before Flop Seat 8: rapidrush folded before Flop (didn't bet) Seat 9: thripe collected (34500) @@ -13135,7 +13135,7 @@ 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 7: Hero (70044 in chips) Seat 8: rapidrush (135602 in chips) Seat 9: thripe (87148 in chips) Girlie007: posts the ante 500 @@ -13144,13 +13144,13 @@ 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 +Hero: posts the ante 500 rapidrush: posts the ante 500 thripe: posts the ante 500 -s0rrow: posts small blind 2500 +Hero: posts small blind 2500 rapidrush: posts big blind 5000 *** HOLE CARDS *** -Dealt to s0rrow [3s 8c] +Dealt to Hero [3s 8c] thripe: folds Girlie007: folds BlindBurt: raises 7999 to 12999 @@ -13158,7 +13158,7 @@ billyem: calls 12999 batscarer: folds donkey: folds ethegreat1: calls 12999 -s0rrow: folds +Hero: folds rapidrush: calls 7999 *** FLOP *** [9h 4c 6d] rapidrush: checks @@ -13178,7 +13178,7 @@ 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 7: Hero (small blind) folded before Flop Seat 8: rapidrush (big blind) folded on the Flop Seat 9: thripe folded before Flop (didn't bet) @@ -13192,7 +13192,7 @@ 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 7: Hero (67044 in chips) Seat 8: rapidrush (122103 in chips) Seat 9: thripe (86648 in chips) Girlie007: posts the ante 500 @@ -13201,31 +13201,31 @@ 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 +Hero: 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] +Dealt to Hero [6s 5c] Girlie007: folds BlindBurt: folds billyem: folds batscarer: folds donkey: folds ethegreat1: folds -s0rrow: raises 10000 to 15000 +Hero: raises 10000 to 15000 rapidrush: calls 12500 thripe: folds *** FLOP *** [Ts Th Ks] rapidrush: checks -s0rrow: bets 20000 +Hero: bets 20000 rapidrush: calls 20000 *** TURN *** [Ts Th Ks] [Ac] rapidrush: checks -s0rrow: bets 31544 and is all-in +Hero: bets 31544 and is all-in rapidrush: folds -s0rrow collected 79500 from pot +Hero collected 79500 from pot *** SUMMARY *** Total pot 79500 | Rake 0 Board [Ts Th Ks Ac] @@ -13235,7 +13235,7 @@ 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 7: Hero (button) collected (79500) Seat 8: rapidrush (small blind) folded on the Turn Seat 9: thripe (big blind) folded before Flop @@ -13249,7 +13249,7 @@ 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 7: Hero (111044 in chips) Seat 8: rapidrush (86603 in chips) Seat 9: thripe (81148 in chips) Girlie007: posts the ante 500 @@ -13258,25 +13258,25 @@ 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 +Hero: 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] +Dealt to Hero [Tc Th] BlindBurt: folds billyem: folds batscarer: raises 10000 to 15000 donkey: folds ethegreat1: folds -s0rrow: calls 15000 +Hero: calls 15000 rapidrush: folds thripe: folds Girlie007: folds *** FLOP *** [4s Kh 7c] batscarer: bets 22000 -s0rrow: folds +Hero: folds batscarer collected 42000 from pot batscarer: doesn't show hand *** SUMMARY *** @@ -13288,7 +13288,7 @@ 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 7: Hero folded on the Flop Seat 8: rapidrush (button) folded before Flop (didn't bet) Seat 9: thripe (small blind) folded before Flop @@ -13302,7 +13302,7 @@ 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 7: Hero (95544 in chips) Seat 8: rapidrush (86103 in chips) Seat 9: thripe (78148 in chips) Girlie007: posts the ante 500 @@ -13311,18 +13311,18 @@ 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 +Hero: 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] +Dealt to Hero [Jd Jh] billyem: folds batscarer: folds donkey: folds ethegreat1: raises 5000 to 10000 -s0rrow: calls 10000 +Hero: calls 10000 rapidrush: calls 10000 thripe: folds Girlie007: calls 7500 @@ -13331,7 +13331,7 @@ BlindBurt: calls 5000 Girlie007: checks BlindBurt: checks ethegreat1: bets 10000 -s0rrow: folds +Hero: folds rapidrush: folds Girlie007: raises 10000 to 20000 BlindBurt: folds @@ -13356,7 +13356,7 @@ 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 7: Hero folded on the Flop Seat 8: rapidrush folded on the Flop Seat 9: thripe (button) folded before Flop (didn't bet) @@ -13370,7 +13370,7 @@ 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 7: Hero (85044 in chips) Seat 8: rapidrush (75603 in chips) Seat 9: thripe (77648 in chips) Girlie007: posts the ante 500 @@ -13379,17 +13379,17 @@ 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 +Hero: 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] +Dealt to Hero [Th 3h] batscarer: folds donkey: folds ethegreat1: folds -s0rrow: folds +Hero: folds rapidrush: folds thripe: raises 7500 to 12500 Girlie007: folds @@ -13406,7 +13406,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: rapidrush folded before Flop (didn't bet) Seat 9: thripe collected (17000) @@ -13420,7 +13420,7 @@ 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 7: Hero (84544 in chips) Seat 8: rapidrush (75103 in chips) Seat 9: thripe (89148 in chips) Girlie007: posts the ante 500 @@ -13429,17 +13429,17 @@ 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 +Hero: 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] +Dealt to Hero [Ah Jc] ethegreat1 said, "no hearts and call?" donkey: folds ethegreat1: folds -s0rrow: raises 10000 to 15000 +Hero: raises 10000 to 15000 rapidrush: folds thripe: folds Girlie007: folds @@ -13449,12 +13449,12 @@ batscarer: calls 10000 *** FLOP *** [3h 8s 8h] BlindBurt said, "probably stoned" batscarer: checks -s0rrow: bets 20000 +Hero: bets 20000 ethegreat1 said, "true" BlindBurt said, "wish i was....." batscarer: folds -s0rrow collected 37000 from pot -s0rrow: doesn't show hand +Hero collected 37000 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 37000 | Rake 0 Board [3h 8s 8h] @@ -13464,7 +13464,7 @@ 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 7: Hero collected (37000) Seat 8: rapidrush folded before Flop (didn't bet) Seat 9: thripe folded before Flop (didn't bet) @@ -13478,7 +13478,7 @@ 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 7: Hero (106044 in chips) Seat 8: rapidrush (74603 in chips) Seat 9: thripe (88648 in chips) Girlie007: posts the ante 500 @@ -13487,15 +13487,15 @@ 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 +Hero: 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] +Dealt to Hero [3h 6c] ethegreat1: folds -s0rrow: folds +Hero: folds rapidrush: folds thripe: folds Girlie007: folds @@ -13513,7 +13513,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: rapidrush folded before Flop (didn't bet) Seat 9: thripe folded before Flop (didn't bet) @@ -13527,7 +13527,7 @@ 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 7: Hero (105544 in chips) Seat 8: rapidrush (74103 in chips) Seat 9: thripe (88148 in chips) Girlie007: posts the ante 500 @@ -13536,14 +13536,14 @@ 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 +Hero: 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 +Dealt to Hero [Ah 5d] +Hero: folds rapidrush: folds thripe: folds Girlie007: folds @@ -13561,7 +13561,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: rapidrush folded before Flop (didn't bet) Seat 9: thripe folded before Flop (didn't bet) @@ -13575,7 +13575,7 @@ 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 7: Hero (105044 in chips) Seat 8: rapidrush (73603 in chips) Seat 9: thripe (87648 in chips) Girlie007: posts the ante 500 @@ -13584,13 +13584,13 @@ 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 +Hero: posts the ante 500 rapidrush: posts the ante 500 thripe: posts the ante 500 ethegreat1: posts small blind 2500 -s0rrow: posts big blind 5000 +Hero: posts big blind 5000 *** HOLE CARDS *** -Dealt to s0rrow [7d 2d] +Dealt to Hero [7d 2d] rapidrush: folds thripe: folds Girlie007: folds @@ -13599,7 +13599,7 @@ billyem: folds batscarer: raises 20000 to 35000 donkey: folds ethegreat1: raises 62259 to 97259 and is all-in -s0rrow: folds +Hero: folds BlindBurt: folds batscarer: calls 62259 *** FLOP *** [8d 5s Qs] @@ -13619,7 +13619,7 @@ 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 7: Hero (big blind) folded before Flop Seat 8: rapidrush folded before Flop (didn't bet) Seat 9: thripe folded before Flop (didn't bet) @@ -13633,7 +13633,7 @@ 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 7: Hero (99544 in chips) Seat 8: rapidrush (73103 in chips) Seat 9: thripe (87148 in chips) Girlie007: posts the ante 500 @@ -13642,13 +13642,13 @@ 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 +Hero: posts the ante 500 rapidrush: posts the ante 500 thripe: posts the ante 500 -s0rrow: posts small blind 2500 +Hero: posts small blind 2500 rapidrush: posts big blind 5000 *** HOLE CARDS *** -Dealt to s0rrow [Qd 2c] +Dealt to Hero [Qd 2c] ethegreat1 said, "ty" thripe: folds Girlie007: folds @@ -13658,7 +13658,7 @@ batscarer: folds donkey: folds ethegreat1 said, "i hate coin flips" ethegreat1: folds -s0rrow: folds +Hero: folds ethegreat1 said, "was hoping he fold pre" rapidrush collected 9500 from pot *** SUMMARY *** @@ -13669,7 +13669,7 @@ 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 7: Hero (small blind) folded before Flop Seat 8: rapidrush (big blind) collected (9500) Seat 9: thripe folded before Flop (didn't bet) @@ -13683,7 +13683,7 @@ 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 7: Hero (96544 in chips) Seat 8: rapidrush (79603 in chips) Seat 9: thripe (86648 in chips) Girlie007: posts the ante 500 @@ -13692,20 +13692,20 @@ 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 +Hero: 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] +Dealt to Hero [2s 8h] Girlie007: folds BlindBurt: folds billyem: folds batscarer: folds donkey: folds ethegreat1: calls 5000 -s0rrow: folds +Hero: folds rapidrush: raises 10000 to 15000 thripe: folds batscarer said, "tough spot" @@ -13730,7 +13730,7 @@ 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 7: Hero (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 @@ -13744,7 +13744,7 @@ 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 7: Hero (96044 in chips) Seat 9: thripe (81148 in chips) Girlie007: posts the ante 500 BlindBurt: posts the ante 500 @@ -13752,23 +13752,23 @@ 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 +Hero: 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] +Dealt to Hero [5c Ad] ethegreat1 said, "ty" billyem: folds batscarer: folds donkey: folds ethegreat1: folds -s0rrow: raises 10000 to 15000 +Hero: raises 10000 to 15000 thripe: folds Girlie007: folds BlindBurt: folds -s0rrow collected 16500 from pot -s0rrow: doesn't show hand +Hero collected 16500 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 16500 | Rake 0 Seat 1: Girlie007 (small blind) folded before Flop @@ -13777,7 +13777,7 @@ 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 7: Hero collected (16500) Seat 9: thripe (button) folded before Flop (didn't bet) @@ -13790,7 +13790,7 @@ 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 7: Hero (107044 in chips) Seat 9: thripe (80648 in chips) Girlie007: posts the ante 500 BlindBurt: posts the ante 500 @@ -13798,16 +13798,16 @@ 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 +Hero: 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] +Dealt to Hero [Jh Tc] batscarer: raises 10000 to 15000 donkey: folds ethegreat1: folds -s0rrow: folds +Hero: folds thripe: folds Girlie007: folds BlindBurt: folds @@ -13834,7 +13834,7 @@ Seat 3: billyem (big blind) showed [Ts 9s] and lost with two pair, Tens and Nine 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 7: Hero folded before Flop (didn't bet) Seat 9: thripe folded before Flop (didn't bet) @@ -13847,7 +13847,7 @@ 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 7: Hero (106544 in chips) Seat 9: thripe (80148 in chips) Girlie007: posts the ante 500 BlindBurt: posts the ante 500 @@ -13855,15 +13855,15 @@ 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 +Hero: 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] +Dealt to Hero [2s 3s] donkey: folds ethegreat1: raises 5000 to 10000 -s0rrow: folds +Hero: folds thripe: folds BlindBurt said, "sets everywhere" billyem said, "no way" @@ -13896,7 +13896,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 9: thripe folded before Flop (didn't bet) @@ -13909,7 +13909,7 @@ 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 7: Hero (106044 in chips) Seat 9: thripe (79648 in chips) Girlie007: posts the ante 500 BlindBurt: posts the ante 500 @@ -13917,15 +13917,15 @@ 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 +Hero: 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] +Dealt to Hero [7h Jd] ethegreat1 said, "nice try" ethegreat1: folds -s0rrow: folds +Hero: folds thripe: folds Girlie007: raises 15000 to 20000 BlindBurt: folds @@ -13944,7 +13944,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 9: thripe folded before Flop (didn't bet) @@ -13957,7 +13957,7 @@ 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 7: Hero (105544 in chips) Seat 9: thripe (79148 in chips) Girlie007: posts the ante 500 BlindBurt: posts the ante 500 @@ -13965,13 +13965,13 @@ 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 +Hero: 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 +Dealt to Hero [Qh Jc] +Hero: calls 5000 batscarer said, "i never draw" thripe: folds Girlie007: folds @@ -13981,18 +13981,18 @@ batscarer: folds donkey: folds ethegreat1 said, "what did you call that then" ethegreat1: folds -s0rrow: calls 15000 +Hero: calls 15000 *** FLOP *** [Qd 4s Qs] -s0rrow: bets 15000 +Hero: bets 15000 BlindBurt: calls 15000 *** TURN *** [Qd 4s Qs] [2c] -s0rrow: bets 70044 and is all-in +Hero: 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) +Hero: shows [Qh Jc] (a full house, Queens full of Deuces) BlindBurt: shows [Kc Kh] (two pair, Kings and Queens) -s0rrow collected 221588 from pot +Hero collected 221588 from pot *** SUMMARY *** Total pot 221588 | Rake 0 Board [Qd 4s Qs 2c 2h] @@ -14002,7 +14002,7 @@ 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 7: Hero showed [Qh Jc] and won (221588) with a full house, Queens full of Deuces Seat 9: thripe folded before Flop (didn't bet) @@ -14015,7 +14015,7 @@ 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 7: Hero (221588 in chips) Seat 9: thripe (78648 in chips) Girlie007: posts the ante 600 BlindBurt: posts the ante 600 @@ -14023,12 +14023,12 @@ 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 +Hero: posts the ante 600 thripe: posts the ante 600 ethegreat1: posts small blind 3000 -s0rrow: posts big blind 6000 +Hero: posts big blind 6000 *** HOLE CARDS *** -Dealt to s0rrow [Ad Ac] +Dealt to Hero [Ad Ac] thripe: folds ethegreat1 said, "i bet flop and turn" Girlie007: raises 12000 to 18000 @@ -14039,7 +14039,7 @@ ethegreat1 said, "you called" donkey: calls 18000 ethegreat1 said, "drawing" ethegreat1: folds -s0rrow: raises 202988 to 220988 and is all-in +Hero: raises 202988 to 220988 and is all-in Girlie007: folds donkey: calls 14513 and is all-in batscarer said, "mis click" @@ -14047,9 +14047,9 @@ batscarer said, "mis click" *** TURN *** [5d Jh 7d] [2d] *** RIVER *** [5d Jh 7d 2d] [6c] *** SHOW DOWN *** -s0rrow: shows [Ad Ac] (a pair of Aces) +Hero: shows [Ad Ac] (a pair of Aces) donkey: shows [9d 9h] (a pair of Nines) -s0rrow collected 90826 from pot +Hero collected 90826 from pot batscarer said, "gg" *** SUMMARY *** Total pot 90826 | Rake 0 @@ -14060,7 +14060,7 @@ 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 7: Hero (big blind) showed [Ad Ac] and won (90826) with a pair of Aces Seat 9: thripe folded before Flop (didn't bet) @@ -14072,26 +14072,26 @@ 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 7: Hero (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 +Hero: posts the ante 600 thripe: posts the ante 600 -s0rrow: posts small blind 3000 +Hero: posts small blind 3000 thripe: posts big blind 6000 *** HOLE CARDS *** -Dealt to s0rrow [Th 4c] +Dealt to Hero [Th 4c] ethegreat1 said, "gg" Girlie007: folds BlindBurt: folds billyem: folds batscarer: folds ethegreat1: folds -s0rrow: folds +Hero: folds thripe collected 10200 from pot *** SUMMARY *** Total pot 10200 | Rake 0 @@ -14100,7 +14100,7 @@ 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 7: Hero (small blind) folded before Flop Seat 9: thripe (big blind) collected (10200) @@ -14112,40 +14112,40 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [Ac As] BlindBurt: folds billyem: folds batscarer: folds ethegreat1: folds -s0rrow: raises 12000 to 18000 +Hero: raises 12000 to 18000 thripe: calls 15000 Girlie007: folds *** FLOP *** [4s Qs Tc] thripe: checks -s0rrow: bets 30000 +Hero: bets 30000 thripe: raises 36048 to 66048 and is all-in -s0rrow: calls 36048 +Hero: 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) +Hero: shows [Ac As] (a pair of Aces) thripe collected 89148 from pot -s0rrow collected 89148 from pot +Hero collected 89148 from pot *** SUMMARY *** Total pot 178296 | Rake 0 Board [4s Qs Tc Kh 3h] @@ -14154,7 +14154,7 @@ 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 7: Hero (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 @@ -14166,23 +14166,23 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [3c Qh] billyem: folds batscarer: folds ethegreat1: folds -s0rrow: folds +Hero: folds thripe: folds Girlie007: calls 3000 BlindBurt: raises 30569 to 36569 and is all-in @@ -14203,7 +14203,7 @@ Seat 2: BlindBurt (big blind) showed [Ks Ts] and won (77338) with a flush, Ace h 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 7: Hero folded before Flop (didn't bet) Seat 9: thripe (button) folded before Flop (didn't bet) @@ -14215,23 +14215,23 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [Kh 5c] Girlie007 said, ":)" batscarer: folds ethegreat1: calls 6000 -s0rrow: folds +Hero: folds thripe: folds Girlie007: calls 6000 BlindBurt said, "id like to kick sorrow in the nuts" @@ -14240,12 +14240,12 @@ billyem: checks *** FLOP *** [2d 6d 8c] billyem: checks ethegreat1: checks -s0rrow said, "?" +Hero said, "?" Girlie007: checks *** TURN *** [2d 6d 8c] [Jc] BlindBurt said, "perth in aus sorrow?#" billyem: checks -s0rrow said, "yeah" +Hero said, "yeah" ethegreat1: bets 15000 Girlie007: folds BlindBurt said, "good, im going there next week" @@ -14260,7 +14260,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 9: thripe folded before Flop (didn't bet) @@ -14272,30 +14272,30 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [5h 2s] ethegreat1: folds -s0rrow: folds +Hero: folds thripe: folds Girlie007: folds -s0rrow said, "i'll be in sa" +Hero 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" +Hero said, "nice to be loved though" *** FLOP *** [7s 8s 8d] *** TURN *** [7s 8s 8d] [Ac] *** RIVER *** [7s 8s 8d Ac] [Tc] @@ -14311,7 +14311,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 9: thripe folded before Flop (didn't bet) @@ -14323,22 +14323,22 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [Ks Kh] batscarer said, "knew that was coming" batscarer said, "nh" -s0rrow: raises 12000 to 18000 +Hero: raises 12000 to 18000 thripe: folds Girlie007: folds billyem said, "always a chance on riverstars" @@ -14351,7 +14351,7 @@ ethegreat1: folds *** 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) +Hero: shows [Ks Kh] (two pair, Aces and Kings) batscarer collected 25510 from pot batscarer said, "bink" *** SUMMARY *** @@ -14362,7 +14362,7 @@ 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 7: Hero showed [Ks Kh] and lost with two pair, Aces and Kings Seat 9: thripe folded before Flop (didn't bet) @@ -14374,19 +14374,19 @@ 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 7: Hero (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 +Hero: posts the ante 600 thripe: posts the ante 600 ethegreat1: posts small blind 3000 -s0rrow: posts big blind 6000 +Hero: posts big blind 6000 *** HOLE CARDS *** -Dealt to s0rrow [7s 4s] +Dealt to Hero [7s 4s] ethegreat1 said, "sick" thripe: raises 8900 to 14900 Girlie007: folds @@ -14394,9 +14394,9 @@ BlindBurt: folds billyem: folds batscarer: folds ethegreat1: raises 371121 to 386021 and is all-in -s0rrow: folds +Hero: folds thripe: folds -s0rrow said, "meh" +Hero said, "meh" ethegreat1 collected 40000 from pot ethegreat1: shows [As Ac] (a pair of Aces) *** SUMMARY *** @@ -14406,7 +14406,7 @@ 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 7: Hero (big blind) folded before Flop Seat 9: thripe folded before Flop @@ -14418,34 +14418,34 @@ 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 7: Hero (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 +Hero: posts the ante 600 thripe: posts the ante 600 -s0rrow: posts small blind 3000 +Hero: posts small blind 3000 thripe: posts big blind 6000 *** HOLE CARDS *** -Dealt to s0rrow [Ks Ac] +Dealt to Hero [Ks Ac] Girlie007: folds BlindBurt: folds billyem: folds batscarer: raises 18310 to 24310 and is all-in ethegreat1: folds -s0rrow: calls 21310 +Hero: 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) +Hero: shows [Ks Ac] (a flush, Ace high) batscarer: shows [3c 5c] (a flush, Queen high) batscarer said, "sickp" -s0rrow collected 58820 from pot +Hero collected 58820 from pot *** SUMMARY *** Total pot 58820 | Rake 0 Board [7c Ah Qc 9c 4c] @@ -14454,7 +14454,7 @@ 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 7: Hero (small blind) showed [Ks Ac] and won (58820) with a flush, Ace high Seat 9: thripe (big blind) folded before Flop @@ -14465,26 +14465,26 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [Qd 6c] BlindBurt: folds BlindBurt said, "gg" -s0rrow said, "gg" +Hero said, "gg" thripe said, "gg" billyem: raises 18000 to 24000 J.R.66350 is connected ethegreat1: folds -s0rrow: folds +Hero: folds thripe: folds Girlie007: folds billyem collected 18600 from pot @@ -14495,7 +14495,7 @@ 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 7: Hero (button) folded before Flop (didn't bet) Seat 9: thripe (small blind) folded before Flop @@ -14506,28 +14506,28 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [Jc Jh] billyem: folds ethegreat1: folds -s0rrow: raises 12000 to 18000 +Hero: raises 12000 to 18000 J.R.66350: folds thripe: raises 24000 to 42000 Girlie007: folds BlindBurt: folds -s0rrow: raises 24000 to 66000 +Hero: raises 24000 to 66000 thripe: calls 18448 and is all-in *** FLOP *** [Tc 6h Jd] *** TURN *** [Tc 6h Jd] [4d] @@ -14535,10 +14535,10 @@ 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) +Hero: 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" +Hero collected 134096 from pot +Hero said, "wow" *** SUMMARY *** Total pot 134096 | Rake 0 Board [Tc 6h Jd 4d 4s] @@ -14546,7 +14546,7 @@ 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 7: Hero 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 @@ -14558,20 +14558,20 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [9s Ts] ethegreat1: folds -s0rrow: folds +Hero: folds J.R.66350: folds Girlie007: raises 18000 to 24000 BlindBurt: raises 39538 to 63538 and is all-in @@ -14592,7 +14592,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: J.R.66350 folded before Flop (didn't bet) @@ -14602,24 +14602,24 @@ 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 7: Hero (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 +Hero: posts the ante 600 J.R.66350: posts the ante 600 ethegreat1: posts small blind 3000 -s0rrow: posts big blind 6000 +Hero: posts big blind 6000 *** HOLE CARDS *** -Dealt to s0rrow [8s 4d] +Dealt to Hero [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 +Hero: folds *** FLOP *** [Th As Ac] ethegreat1: checks Girlie007: checks @@ -14638,7 +14638,7 @@ 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 7: Hero (big blind) folded before Flop Seat 8: J.R.66350 folded before Flop (didn't bet) @@ -14649,23 +14649,23 @@ 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 7: Hero (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 +Hero: posts the ante 600 J.R.66350: posts the ante 600 -s0rrow: posts small blind 3000 +Hero: posts small blind 3000 J.R.66350: posts big blind 6000 *** HOLE CARDS *** -Dealt to s0rrow [Jh 7s] +Dealt to Hero [Jh 7s] Girlie007: folds mit5482: calls 6000 billyem: raises 18000 to 24000 ethegreat1: folds -s0rrow: folds +Hero: folds J.R.66350: calls 18000 mit5482: folds *** FLOP *** [Qd Th 2c] @@ -14684,7 +14684,7 @@ 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 7: Hero (small blind) folded before Flop Seat 8: J.R.66350 (big blind) showed [Qc Jc] and lost with a pair of Queens @@ -14695,19 +14695,19 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 600 Girlie007: posts small blind 3000 mit5482: posts big blind 6000 *** HOLE CARDS *** -Dealt to s0rrow [8h 2c] +Dealt to Hero [8h 2c] billyem: folds ethegreat1: folds -s0rrow: folds +Hero: folds Girlie007: raises 12000 to 18000 mit5482: folds Girlie007 collected 15000 from pot @@ -14718,7 +14718,7 @@ 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) +Seat 7: Hero (button) folded before Flop (didn't bet) @@ -14728,36 +14728,36 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 600 mit5482: posts small blind 3000 billyem: posts big blind 6000 *** HOLE CARDS *** -Dealt to s0rrow [Qc Kh] +Dealt to Hero [Qc Kh] ethegreat1: folds -s0rrow: raises 6000 to 12000 +Hero: raises 6000 to 12000 Girlie007: calls 12000 mit5482: folds billyem: calls 6000 *** FLOP *** [2h As 8s] billyem: checks -s0rrow: checks +Hero: checks Girlie007: checks *** TURN *** [2h As 8s] [Kc] billyem: bets 18000 -s0rrow: calls 18000 +Hero: calls 18000 Girlie007: folds *** RIVER *** [2h As 8s Kc] [6d] billyem: checks -s0rrow: checks +Hero: checks *** SHOW DOWN *** billyem: shows [3d 4h] (high card Ace) -s0rrow: shows [Qc Kh] (a pair of Kings) -s0rrow collected 78000 from pot +Hero: shows [Qc Kh] (a pair of Kings) +Hero collected 78000 from pot *** SUMMARY *** Total pot 78000 | Rake 0 Board [2h As 8s Kc 6d] @@ -14765,7 +14765,7 @@ 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 +Seat 7: Hero showed [Qc Kh] and won (78000) with a pair of Kings @@ -14775,17 +14775,17 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 600 billyem: posts small blind 3000 ethegreat1: posts big blind 6000 *** HOLE CARDS *** -Dealt to s0rrow [8s 7h] -s0rrow: folds +Dealt to Hero [8s 7h] +Hero: folds Girlie007: folds mit5482: folds billyem: folds @@ -14796,7 +14796,7 @@ 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) +Seat 7: Hero folded before Flop (didn't bet) @@ -14806,27 +14806,27 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 600 ethegreat1: posts small blind 3000 -s0rrow: posts big blind 6000 +Hero: posts big blind 6000 *** HOLE CARDS *** -Dealt to s0rrow [Qs Jd] +Dealt to Hero [Qs Jd] Girlie007: folds mit5482: calls 6000 billyem said, "that 6 was meant 2 b a 5" billyem: calls 6000 ethegreat1: folds -s0rrow: checks +Hero: checks *** FLOP *** [8h 9c 7c] -s0rrow: checks +Hero: checks mit5482: bets 6000 billyem: raises 12000 to 18000 -s0rrow: folds +Hero: folds mit5482: calls 12000 *** TURN *** [8h 9c 7c] [Qd] mit5482: bets 6000 @@ -14845,7 +14845,7 @@ 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 +Seat 7: Hero (big blind) folded on the Flop @@ -14855,30 +14855,30 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 600 +Hero: posts small blind 3000 Girlie007: posts big blind 6000 *** HOLE CARDS *** -Dealt to s0rrow [Ad Ts] +Dealt to Hero [Ad Ts] mit5482: folds billyem: folds ethegreat1: raises 6000 to 12000 -s0rrow: calls 9000 +Hero: calls 9000 Girlie007: calls 6000 *** FLOP *** [3h 4d 9s] -s0rrow: checks +Hero: checks Girlie007: checks ethegreat1: checks *** TURN *** [3h 4d 9s] [6h] -s0rrow: checks +Hero: checks Girlie007: bets 24000 ethegreat1: folds -s0rrow: folds +Hero: folds Girlie007 collected 39000 from pot Girlie007: doesn't show hand *** SUMMARY *** @@ -14888,7 +14888,7 @@ 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 +Seat 7: Hero (small blind) folded on the Turn @@ -14898,19 +14898,19 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 600 Girlie007: posts small blind 3000 mit5482: posts big blind 6000 *** HOLE CARDS *** -Dealt to s0rrow [Th 4s] +Dealt to Hero [Th 4s] billyem: folds ethegreat1: folds -s0rrow: folds +Hero: folds Girlie007: calls 3000 mit5482: checks *** FLOP *** [9h 4c Ac] @@ -14933,7 +14933,7 @@ Seat 1: Girlie007 (small blind) showed [2s Jd] and won (15000) with high card Ac 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) +Seat 7: Hero (button) folded before Flop (didn't bet) @@ -14943,18 +14943,18 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 600 mit5482: posts small blind 3000 billyem: posts big blind 6000 *** HOLE CARDS *** -Dealt to s0rrow [3h 9s] +Dealt to Hero [3h 9s] ethegreat1: folds -s0rrow: folds +Hero: folds Girlie007: raises 12000 to 18000 mit5482: folds billyem: calls 12000 @@ -14974,7 +14974,7 @@ 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) +Seat 7: Hero folded before Flop (didn't bet) @@ -14984,17 +14984,17 @@ 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) +Seat 7: Hero (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 +Hero: 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 +Dealt to Hero [Jd Kh] +Hero: raises 6000 to 12000 Girlie007: folds mit5482: folds billyem: calls 9000 @@ -15002,22 +15002,22 @@ ethegreat1: calls 6000 *** FLOP *** [3s Tc 9s] billyem: checks ethegreat1: checks -s0rrow: bets 12000 +Hero: bets 12000 billyem: calls 12000 ethegreat1: folds *** TURN *** [3s Tc 9s] [Js] billyem: checks -s0rrow: checks +Hero: checks *** RIVER *** [3s Tc 9s Js] [Ac] ethegreat1 said, "top4 here" billyem: bets 24000 ethegreat1 said, "not even tables" -s0rrow: calls 24000 +Hero: calls 24000 *** SHOW DOWN *** billyem: shows [5s As] (a flush, Ace high) -s0rrow: mucks hand +Hero: mucks hand billyem collected 111000 from pot -s0rrow said, "nh" +Hero said, "nh" *** SUMMARY *** Total pot 111000 | Rake 0 Board [3s Tc 9s Js Ac] @@ -15025,7 +15025,7 @@ 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] +Seat 7: Hero mucked [Jd Kh] @@ -15035,21 +15035,21 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 800 ethegreat1: posts small blind 4000 -s0rrow: posts big blind 8000 +Hero: posts big blind 8000 *** HOLE CARDS *** -Dealt to s0rrow [9d Ts] +Dealt to Hero [9d Ts] Girlie007: folds mit5482: folds billyem: raises 16000 to 24000 ethegreat1: folds -s0rrow: folds +Hero: folds billyem collected 24000 from pot billyem: doesn't show hand *** SUMMARY *** @@ -15058,7 +15058,7 @@ 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 +Seat 7: Hero (big blind) folded before Flop @@ -15068,20 +15068,20 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 800 +Hero: posts small blind 4000 Girlie007: posts big blind 8000 *** HOLE CARDS *** -Dealt to s0rrow [3s Ah] +Dealt to Hero [3s Ah] mit5482: raises 40246 to 48246 and is all-in billyem: folds ethegreat1: folds -s0rrow: folds +Hero: folds Girlie007: folds mit5482 collected 24000 from pot *** SUMMARY *** @@ -15090,7 +15090,7 @@ 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 +Seat 7: Hero (small blind) folded before Flop @@ -15100,19 +15100,19 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 800 Girlie007: posts small blind 4000 mit5482: posts big blind 8000 *** HOLE CARDS *** -Dealt to s0rrow [7h Qh] +Dealt to Hero [7h Qh] billyem: folds ethegreat1: folds -s0rrow: folds +Hero: folds Girlie007: raises 8000 to 16000 mit5482: folds Girlie007 collected 20000 from pot @@ -15123,7 +15123,7 @@ 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) +Seat 7: Hero (button) folded before Flop (didn't bet) @@ -15133,18 +15133,18 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 800 mit5482: posts small blind 4000 billyem: posts big blind 8000 *** HOLE CARDS *** -Dealt to s0rrow [5h Th] +Dealt to Hero [5h Th] ethegreat1: folds -s0rrow: folds +Hero: folds Girlie007: raises 16000 to 24000 mit5482: folds billyem: folds @@ -15156,7 +15156,7 @@ 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) +Seat 7: Hero folded before Flop (didn't bet) @@ -15166,28 +15166,28 @@ 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) +Seat 7: Hero (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 +Hero: 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 +Dealt to Hero [9d Ad] +Hero: raises 16000 to 24000 Girlie007: calls 24000 mit5482: folds billyem: folds ethegreat1: calls 16000 *** FLOP *** [Qs Jd 8h] ethegreat1: checks -s0rrow: checks +Hero: checks Girlie007: checks *** TURN *** [Qs Jd 8h] [Qc] ethegreat1: bets 40000 -s0rrow: folds +Hero: folds Girlie007: folds ethegreat1 collected 80000 from pot *** SUMMARY *** @@ -15197,7 +15197,7 @@ 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 +Seat 7: Hero folded on the Turn @@ -15207,24 +15207,24 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 800 ethegreat1: posts small blind 4000 -s0rrow: posts big blind 8000 +Hero: posts big blind 8000 *** HOLE CARDS *** -Dealt to s0rrow [2c 2d] +Dealt to Hero [2c 2d] Girlie007: folds mit5482: folds billyem: folds ethegreat1: raises 24000 to 32000 -s0rrow: calls 24000 +Hero: calls 24000 *** FLOP *** [Th 3d 9h] ethegreat1: bets 80000 -s0rrow: folds +Hero: folds ethegreat1 collected 68000 from pot ethegreat1: shows [Jc Jd] (a pair of Jacks) *** SUMMARY *** @@ -15234,7 +15234,7 @@ 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 +Seat 7: Hero (big blind) folded on the Flop @@ -15244,21 +15244,21 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 800 +Hero: posts small blind 4000 Girlie007: posts big blind 8000 *** HOLE CARDS *** -Dealt to s0rrow [5h 6c] -s0rrow said, "2s" +Dealt to Hero [5h 6c] +Hero said, "2s" mit5482: folds billyem: raises 16000 to 24000 ethegreat1: calls 24000 -s0rrow: folds +Hero: folds Girlie007: folds *** FLOP *** [Tc Ah Qc] billyem: bets 24000 @@ -15272,7 +15272,7 @@ 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 +Seat 7: Hero (small blind) folded before Flop @@ -15282,19 +15282,19 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 800 Girlie007: posts small blind 4000 mit5482: posts big blind 8000 *** HOLE CARDS *** -Dealt to s0rrow [4h 8s] +Dealt to Hero [4h 8s] billyem: folds ethegreat1: calls 8000 -s0rrow: folds +Hero: folds Girlie007: calls 4000 mit5482: checks *** FLOP *** [Kh 9s 9c] @@ -15313,7 +15313,7 @@ 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) +Seat 7: Hero (button) folded before Flop (didn't bet) @@ -15323,18 +15323,18 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 800 mit5482: posts small blind 4000 billyem: posts big blind 8000 *** HOLE CARDS *** -Dealt to s0rrow [Jh 2d] +Dealt to Hero [Jh 2d] ethegreat1: calls 8000 -s0rrow: folds +Hero: folds Girlie007: raises 8000 to 16000 mit5482: folds billyem: calls 8000 @@ -15363,7 +15363,7 @@ Seat 1: Girlie007 (button) showed [Kd Qs] and won (248000) with three of a kind, 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) +Seat 7: Hero folded before Flop (didn't bet) @@ -15373,18 +15373,18 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 800 billyem: posts small blind 4000 ethegreat1: posts big blind 8000 *** HOLE CARDS *** -Dealt to s0rrow [Qs 9s] +Dealt to Hero [Qs 9s] Girlie007 said, "ty" -s0rrow: folds +Hero: folds Girlie007: folds mit5482: calls 8000 billyem: calls 4000 @@ -15414,7 +15414,7 @@ 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) +Seat 7: Hero folded before Flop (didn't bet) @@ -15424,29 +15424,29 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 800 ethegreat1: posts small blind 4000 -s0rrow: posts big blind 8000 +Hero: posts big blind 8000 *** HOLE CARDS *** -Dealt to s0rrow [2h 8c] +Dealt to Hero [2h 8c] Girlie007: folds mit5482: folds billyem: folds ethegreat1: folds -s0rrow collected 12000 from pot -s0rrow: doesn't show hand +Hero collected 12000 from pot +Hero: 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) +Seat 7: Hero (big blind) collected (12000) @@ -15456,22 +15456,22 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 800 +Hero: posts small blind 4000 Girlie007: posts big blind 8000 *** HOLE CARDS *** -Dealt to s0rrow [Qd 3s] +Dealt to Hero [Qd 3s] ethegreat1 said, "i wouldve folded" mit5482: folds billyem: raises 16000 to 24000 Girlie007 said, "yep" ethegreat1: folds -s0rrow: folds +Hero: folds Girlie007: folds billyem collected 24000 from pot billyem: doesn't show hand @@ -15481,7 +15481,7 @@ 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 +Seat 7: Hero (small blind) folded before Flop @@ -15491,19 +15491,19 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 800 Girlie007: posts small blind 4000 mit5482: posts big blind 8000 *** HOLE CARDS *** -Dealt to s0rrow [2h 7s] +Dealt to Hero [2h 7s] billyem: raises 16000 to 24000 ethegreat1: folds -s0rrow: folds +Hero: folds Girlie007: folds mit5482: folds billyem collected 24000 from pot @@ -15514,7 +15514,7 @@ 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) +Seat 7: Hero (button) folded before Flop (didn't bet) @@ -15524,18 +15524,18 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 800 mit5482: posts small blind 4000 billyem: posts big blind 8000 *** HOLE CARDS *** -Dealt to s0rrow [9c 5s] +Dealt to Hero [9c 5s] ethegreat1: folds -s0rrow: folds +Hero: folds Girlie007: raises 16000 to 24000 mit5482: folds billyem: folds @@ -15547,7 +15547,7 @@ 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) +Seat 7: Hero folded before Flop (didn't bet) @@ -15557,17 +15557,17 @@ 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) +Seat 7: Hero (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 +Hero: posts the ante 800 billyem: posts small blind 4000 ethegreat1: posts big blind 8000 *** HOLE CARDS *** -Dealt to s0rrow [6d Kc] -s0rrow: folds +Dealt to Hero [6d Kc] +Hero: folds Girlie007: folds mit5482: folds billyem: calls 4000 @@ -15588,7 +15588,7 @@ 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) +Seat 7: Hero folded before Flop (didn't bet) @@ -15600,30 +15600,30 @@ 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 7: Hero (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 +Hero: posts the ante 800 ACEISGOD: posts the ante 800 VanBuren44: posts the ante 800 ethegreat1: posts small blind 4000 -s0rrow: posts big blind 8000 +Hero: posts big blind 8000 *** HOLE CARDS *** -Dealt to s0rrow [8s Qh] +Dealt to Hero [8s Qh] ACEISGOD: folds VanBuren44: folds Girlie007: folds mit5482: folds billyem: folds ethegreat1: calls 4000 -s0rrow: checks +Hero: checks *** FLOP *** [8c Kd Ac] ethegreat1: bets 8000 -s0rrow: folds +Hero: folds ethegreat1 collected 21600 from pot *** SUMMARY *** Total pot 21600 | Rake 0 @@ -15632,7 +15632,7 @@ 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 7: Hero (big blind) folded on the Flop Seat 8: ACEISGOD folded before Flop (didn't bet) Seat 9: VanBuren44 folded before Flop (didn't bet) @@ -15646,7 +15646,7 @@ 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 7: Hero (247504 in chips) Seat 8: ACEISGOD (196406 in chips) Seat 9: VanBuren44 (192930 in chips) Girlie007: posts the ante 800 @@ -15655,13 +15655,13 @@ 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 +Hero: posts the ante 800 ACEISGOD: posts the ante 800 VanBuren44: posts the ante 800 -s0rrow: posts small blind 4000 +Hero: posts small blind 4000 ACEISGOD: posts big blind 8000 *** HOLE CARDS *** -Dealt to s0rrow [Ts Qs] +Dealt to Hero [Ts Qs] VanBuren44: folds Girlie007: folds mit5482: folds @@ -15669,7 +15669,7 @@ billyem: raises 16000 to 24000 OverTheWell: folds scouse21: folds ethegreat1: folds -s0rrow: folds +Hero: folds ACEISGOD: folds billyem collected 27200 from pot billyem: doesn't show hand @@ -15681,7 +15681,7 @@ 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 7: Hero (small blind) folded before Flop Seat 8: ACEISGOD (big blind) folded before Flop Seat 9: VanBuren44 folded before Flop (didn't bet) @@ -15695,7 +15695,7 @@ 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 7: Hero (242704 in chips) Seat 8: ACEISGOD (187606 in chips) Seat 9: VanBuren44 (192130 in chips) Girlie007: posts the ante 800 @@ -15704,20 +15704,20 @@ 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 +Hero: 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] +Dealt to Hero [6d 2d] Girlie007: folds mit5482: raises 16000 to 24000 billyem: folds OverTheWell: folds scouse21: folds ethegreat1: folds -s0rrow: folds +Hero: folds ACEISGOD: folds VanBuren44: folds mit5482 collected 27200 from pot @@ -15729,7 +15729,7 @@ 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 7: Hero (button) folded before Flop (didn't bet) Seat 8: ACEISGOD (small blind) folded before Flop Seat 9: VanBuren44 (big blind) folded before Flop @@ -15743,7 +15743,7 @@ 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 7: Hero (241904 in chips) Seat 8: ACEISGOD (182806 in chips) Seat 9: VanBuren44 (183330 in chips) Girlie007: posts the ante 800 @@ -15752,19 +15752,19 @@ 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 +Hero: 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] +Dealt to Hero [9d 6d] mit5482: folds billyem: folds OverTheWell: folds scouse21: folds ethegreat1: raises 8000 to 16000 -s0rrow: folds +Hero: folds ACEISGOD: folds VanBuren44: folds Girlie007: folds @@ -15777,7 +15777,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: ACEISGOD (button) folded before Flop (didn't bet) Seat 9: VanBuren44 (small blind) folded before Flop @@ -15791,7 +15791,7 @@ 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 7: Hero (241104 in chips) Seat 8: ACEISGOD (182006 in chips) Seat 9: VanBuren44 (178530 in chips) Girlie007: posts the ante 800 @@ -15800,18 +15800,18 @@ 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 +Hero: 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] +Dealt to Hero [8d 6c] billyem: folds OverTheWell: folds scouse21: folds ethegreat1: folds -s0rrow: folds +Hero: folds ACEISGOD: raises 12800 to 20800 VanBuren44: folds Girlie007: calls 16800 @@ -15839,7 +15839,7 @@ 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 7: Hero 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) @@ -15853,7 +15853,7 @@ 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 7: Hero (240304 in chips) Seat 8: ACEISGOD (233206 in chips) Seat 9: VanBuren44 (177730 in chips) Girlie007: posts the ante 800 @@ -15862,17 +15862,17 @@ 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 +Hero: 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] +Dealt to Hero [Jc Ts] OverTheWell: folds scouse21: folds ethegreat1: calls 8000 -s0rrow: folds +Hero: folds ACEISGOD: folds VanBuren44: folds Girlie007: folds @@ -15903,7 +15903,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: ACEISGOD folded before Flop (didn't bet) Seat 9: VanBuren44 folded before Flop (didn't bet) @@ -15916,7 +15916,7 @@ 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 7: Hero (239504 in chips) Seat 8: ACEISGOD (232406 in chips) Seat 9: VanBuren44 (176930 in chips) Girlie007: posts the ante 800 @@ -15924,16 +15924,16 @@ 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 +Hero: 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] +Dealt to Hero [8c Ks] ethegreat1 said, "gg" ethegreat1: folds -s0rrow: folds +Hero: folds ACEISGOD: folds VanBuren44: folds Girlie007: raises 16000 to 24000 @@ -15948,7 +15948,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: ACEISGOD folded before Flop (didn't bet) Seat 9: VanBuren44 folded before Flop (didn't bet) @@ -15961,7 +15961,7 @@ 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 7: Hero (238704 in chips) Seat 8: ACEISGOD (231606 in chips) Seat 9: VanBuren44 (176130 in chips) Girlie007: posts the ante 800 @@ -15969,14 +15969,14 @@ 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 +Hero: 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 +Dealt to Hero [Qd Qc] +Hero: raises 16000 to 24000 ACEISGOD: folds VanBuren44: folds Girlie007: folds @@ -15984,8 +15984,8 @@ billyem: folds OverTheWell: folds scouse21: folds ethegreat1: folds -s0rrow collected 26400 from pot -s0rrow: shows [Qd Qc] (a pair of Queens) +Hero collected 26400 from pot +Hero: shows [Qd Qc] (a pair of Queens) *** SUMMARY *** Total pot 26400 | Rake 0 Seat 1: Girlie007 folded before Flop (didn't bet) @@ -15993,7 +15993,7 @@ 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 7: Hero collected (26400) Seat 8: ACEISGOD folded before Flop (didn't bet) Seat 9: VanBuren44 folded before Flop (didn't bet) @@ -16006,7 +16006,7 @@ 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 7: Hero (256304 in chips) Seat 8: ACEISGOD (230806 in chips) Seat 9: VanBuren44 (175330 in chips) Girlie007: posts the ante 800 @@ -16014,13 +16014,13 @@ 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 +Hero: posts the ante 800 ACEISGOD: posts the ante 800 VanBuren44: posts the ante 800 ethegreat1: posts small blind 4000 -s0rrow: posts big blind 8000 +Hero: posts big blind 8000 *** HOLE CARDS *** -Dealt to s0rrow [8c 7s] +Dealt to Hero [8c 7s] ACEISGOD: folds VanBuren44: folds Girlie007: raises 16000 to 24000 @@ -16028,7 +16028,7 @@ billyem: folds OverTheWell: folds scouse21: folds ethegreat1: folds -s0rrow: folds +Hero: folds Girlie007 collected 26400 from pot Girlie007: doesn't show hand *** SUMMARY *** @@ -16038,7 +16038,7 @@ 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 7: Hero (big blind) folded before Flop Seat 8: ACEISGOD folded before Flop (didn't bet) Seat 9: VanBuren44 folded before Flop (didn't bet) @@ -16051,7 +16051,7 @@ 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 7: Hero (247504 in chips) Seat 8: ACEISGOD (230006 in chips) Seat 9: VanBuren44 (174530 in chips) Girlie007: posts the ante 1000 @@ -16059,20 +16059,20 @@ 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 +Hero: posts the ante 1000 ACEISGOD: posts the ante 1000 VanBuren44: posts the ante 1000 -s0rrow: posts small blind 5000 +Hero: posts small blind 5000 ACEISGOD: posts big blind 10000 *** HOLE CARDS *** -Dealt to s0rrow [As 8c] +Dealt to Hero [As 8c] VanBuren44: folds Girlie007: raises 20000 to 30000 billyem: folds OverTheWell: folds scouse21: folds ethegreat1: calls 30000 -s0rrow: folds +Hero: folds ACEISGOD: folds *** FLOP *** [5c 3s Ah] Girlie007: bets 40000 @@ -16095,7 +16095,7 @@ 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 7: Hero (small blind) folded before Flop Seat 8: ACEISGOD (big blind) folded before Flop Seat 9: VanBuren44 folded before Flop (didn't bet) @@ -16108,7 +16108,7 @@ 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 7: Hero (241504 in chips) Seat 8: ACEISGOD (219006 in chips) Seat 9: VanBuren44 (173530 in chips) Girlie007: posts the ante 1000 @@ -16116,19 +16116,19 @@ 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 +Hero: 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] +Dealt to Hero [Jh 9d] Girlie007: folds billyem: folds OverTheWell: folds scouse21: raises 10000 to 20000 ethegreat1: calls 20000 -s0rrow: folds +Hero: folds ACEISGOD: raises 72000 to 92000 VanBuren44: folds scouse21: folds @@ -16141,7 +16141,7 @@ 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 7: Hero (button) folded before Flop (didn't bet) Seat 8: ACEISGOD (small blind) collected (78000) Seat 9: VanBuren44 (big blind) folded before Flop @@ -16154,7 +16154,7 @@ 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 7: Hero (240504 in chips) Seat 8: ACEISGOD (276006 in chips) Seat 9: VanBuren44 (162530 in chips) Girlie007: posts the ante 1000 @@ -16162,18 +16162,18 @@ 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 +Hero: 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] +Dealt to Hero [5s Ah] billyem: raises 20000 to 30000 OverTheWell: folds scouse21: folds ethegreat1: calls 30000 -s0rrow: folds +Hero: folds ACEISGOD: folds VanBuren44: folds Girlie007: folds @@ -16196,7 +16196,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: ACEISGOD (button) folded before Flop (didn't bet) Seat 9: VanBuren44 (small blind) folded before Flop @@ -16209,7 +16209,7 @@ 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 7: Hero (239504 in chips) Seat 8: ACEISGOD (275006 in chips) Seat 9: VanBuren44 (156530 in chips) Girlie007: posts the ante 1000 @@ -16217,17 +16217,17 @@ 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 +Hero: 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] +Dealt to Hero [8s 6c] OverTheWell: folds scouse21: folds ethegreat1: raises 10000 to 20000 -s0rrow: folds +Hero: folds ACEISGOD: calls 20000 VanBuren44: folds Girlie007: folds @@ -16246,7 +16246,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: ACEISGOD folded on the Flop Seat 9: VanBuren44 (button) folded before Flop (didn't bet) @@ -16259,7 +16259,7 @@ 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 7: Hero (238504 in chips) Seat 8: ACEISGOD (254006 in chips) Seat 9: VanBuren44 (155530 in chips) Girlie007: posts the ante 1000 @@ -16267,16 +16267,16 @@ 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 +Hero: 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] +Dealt to Hero [3d Jh] scouse21: folds ethegreat1: folds -s0rrow: folds +Hero: folds ACEISGOD: raises 20000 to 30000 VanBuren44: folds Girlie007: calls 30000 @@ -16302,7 +16302,7 @@ 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 7: Hero 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) @@ -16315,7 +16315,7 @@ 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 7: Hero (237504 in chips) Seat 8: ACEISGOD (274506 in chips) Seat 9: VanBuren44 (154530 in chips) Girlie007: posts the ante 1000 @@ -16323,15 +16323,15 @@ 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 +Hero: 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] +Dealt to Hero [7h 2d] ethegreat1: calls 10000 -s0rrow: folds +Hero: folds ACEISGOD: folds VanBuren44: calls 10000 Girlie007: folds @@ -16354,7 +16354,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: ACEISGOD folded before Flop (didn't bet) Seat 9: VanBuren44 folded on the Flop @@ -16367,7 +16367,7 @@ 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 7: Hero (236504 in chips) Seat 8: ACEISGOD (273506 in chips) Seat 9: VanBuren44 (143530 in chips) Girlie007: posts the ante 1000 @@ -16375,14 +16375,14 @@ 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 +Hero: 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 +Dealt to Hero [3d Kd] +Hero: folds ACEISGOD: folds VanBuren44: folds Girlie007: folds @@ -16399,7 +16399,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: ACEISGOD folded before Flop (didn't bet) Seat 9: VanBuren44 folded before Flop (didn't bet) @@ -16412,7 +16412,7 @@ 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 7: Hero (235504 in chips) Seat 8: ACEISGOD (272506 in chips) Seat 9: VanBuren44 (142530 in chips) Girlie007: posts the ante 1000 @@ -16420,13 +16420,13 @@ 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 +Hero: posts the ante 1000 ACEISGOD: posts the ante 1000 VanBuren44: posts the ante 1000 ethegreat1: posts small blind 5000 -s0rrow: posts big blind 10000 +Hero: posts big blind 10000 *** HOLE CARDS *** -Dealt to s0rrow [9d 7c] +Dealt to Hero [9d 7c] ACEISGOD: folds VanBuren44: folds Girlie007: folds @@ -16434,7 +16434,7 @@ billyem: folds OverTheWell: raises 20000 to 30000 scouse21: raises 45658 to 75658 and is all-in ethegreat1: folds -s0rrow: folds +Hero: folds OverTheWell: calls 45658 *** FLOP *** [3d 2d 5c] *** TURN *** [3d 2d 5c] [8h] @@ -16452,7 +16452,7 @@ 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 7: Hero (big blind) folded before Flop Seat 8: ACEISGOD folded before Flop (didn't bet) Seat 9: VanBuren44 folded before Flop (didn't bet) @@ -16464,27 +16464,27 @@ 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 7: Hero (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 +Hero: posts the ante 1000 ACEISGOD: posts the ante 1000 VanBuren44: posts the ante 1000 -s0rrow: posts small blind 5000 +Hero: posts small blind 5000 ACEISGOD: posts big blind 10000 *** HOLE CARDS *** -Dealt to s0rrow [Qc 4s] +Dealt to Hero [Qc 4s] ethegreat1 said, "nh" VanBuren44: folds Girlie007: folds billyem: folds OverTheWell: raises 20000 to 30000 ethegreat1: folds -s0rrow: folds +Hero: folds ACEISGOD said, "gg" ACEISGOD: folds OverTheWell collected 32000 from pot @@ -16495,7 +16495,7 @@ 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 7: Hero (small blind) folded before Flop Seat 8: ACEISGOD (big blind) folded before Flop Seat 9: VanBuren44 folded before Flop (didn't bet) @@ -16507,25 +16507,25 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [Th 4s] Girlie007: folds billyem: folds OverTheWell: folds ethegreat1: raises 10000 to 20000 -s0rrow: folds +Hero: folds ACEISGOD: folds VanBuren44: calls 10000 *** FLOP *** [2h 3s As] @@ -16540,7 +16540,7 @@ 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 7: Hero (button) folded before Flop (didn't bet) Seat 8: ACEISGOD (small blind) folded before Flop Seat 9: VanBuren44 (big blind) folded on the Flop @@ -16552,24 +16552,24 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [4s Jh] billyem: folds OverTheWell: folds ethegreat1: folds -s0rrow: folds +Hero: folds ACEISGOD: folds VanBuren44: folds Girlie007 collected 17000 from pot @@ -16579,7 +16579,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: ACEISGOD (button) folded before Flop (didn't bet) Seat 9: VanBuren44 (small blind) folded before Flop @@ -16591,23 +16591,23 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [8c 4h] OverTheWell: folds ethegreat1: calls 10000 -s0rrow: folds +Hero: folds ACEISGOD: raises 26000 to 36000 VanBuren44: folds Girlie007: folds @@ -16620,7 +16620,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: ACEISGOD collected (42000) Seat 9: VanBuren44 (button) folded before Flop (didn't bet) @@ -16632,22 +16632,22 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [6c Jc] ethegreat1: raises 13500 to 23500 -s0rrow: folds +Hero: folds ACEISGOD: calls 23500 VanBuren44: folds Girlie007: calls 23500 @@ -16664,7 +16664,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: ACEISGOD folded before Flop Seat 9: VanBuren44 folded before Flop (didn't bet) @@ -16676,21 +16676,21 @@ 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 7: Hero (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 +Hero: 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 +Dealt to Hero [5c 7h] +Hero: folds ethegreat1 said, "nr" ACEISGOD: folds VanBuren44: folds @@ -16718,7 +16718,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: ACEISGOD folded before Flop (didn't bet) Seat 9: VanBuren44 folded before Flop (didn't bet) @@ -16730,20 +16730,20 @@ 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 7: Hero (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 +Hero: posts the ante 1000 ACEISGOD: posts the ante 1000 VanBuren44: posts the ante 1000 ethegreat1: posts small blind 5000 -s0rrow: posts big blind 10000 +Hero: posts big blind 10000 *** HOLE CARDS *** -Dealt to s0rrow [5d 7d] +Dealt to Hero [5d 7d] ACEISGOD: folds VanBuren44: folds Girlie007: folds @@ -16751,7 +16751,7 @@ billyem: folds OverTheWell: raises 20000 to 30000 billyem said, "ggggrrrr" ethegreat1: folds -s0rrow: folds +Hero: folds OverTheWell collected 32000 from pot OverTheWell: doesn't show hand *** SUMMARY *** @@ -16760,7 +16760,7 @@ 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 7: Hero (big blind) folded before Flop Seat 8: ACEISGOD folded before Flop (didn't bet) Seat 9: VanBuren44 folded before Flop (didn't bet) @@ -16772,26 +16772,26 @@ 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 7: Hero (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 +Hero: posts the ante 1000 ACEISGOD: posts the ante 1000 VanBuren44: posts the ante 1000 -s0rrow: posts small blind 5000 +Hero: posts small blind 5000 ACEISGOD: posts big blind 10000 *** HOLE CARDS *** -Dealt to s0rrow [5c 3c] +Dealt to Hero [5c 3c] VanBuren44: folds Girlie007: folds billyem: raises 20000 to 30000 OverTheWell: folds ethegreat1: folds -s0rrow: folds +Hero: folds ACEISGOD: folds billyem collected 32000 from pot billyem: doesn't show hand @@ -16801,7 +16801,7 @@ 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 7: Hero (small blind) folded before Flop Seat 8: ACEISGOD (big blind) folded before Flop Seat 9: VanBuren44 folded before Flop (didn't bet) @@ -16813,25 +16813,25 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [3h 3s] Girlie007: folds billyem: folds OverTheWell: raises 20000 to 30000 ethegreat1: calls 30000 -s0rrow: folds +Hero: folds ACEISGOD: folds VanBuren44: folds *** FLOP *** [6d 7d 9d] @@ -16854,7 +16854,7 @@ 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 7: Hero (button) folded before Flop (didn't bet) Seat 8: ACEISGOD (small blind) folded before Flop Seat 9: VanBuren44 (big blind) folded before Flop @@ -16866,24 +16866,24 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [4d 5c] billyem: folds OverTheWell: folds ethegreat1: folds -s0rrow: folds +Hero: folds ACEISGOD: folds VanBuren44: raises 30000 to 40000 Girlie007: folds @@ -16895,7 +16895,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: ACEISGOD (button) folded before Flop (didn't bet) Seat 9: VanBuren44 (small blind) collected (27000) @@ -16907,23 +16907,23 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [8d 5d] OverTheWell: folds ethegreat1: folds -s0rrow: folds +Hero: folds ACEISGOD: folds VanBuren44: folds Girlie007: raises 20000 to 30000 @@ -16936,7 +16936,7 @@ 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 7: Hero 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) @@ -16948,22 +16948,22 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [Qc 4s] ethegreat1: raises 20000 to 30000 -s0rrow: folds +Hero: folds ACEISGOD: folds VanBuren44: folds Girlie007: folds @@ -16976,7 +16976,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: ACEISGOD folded before Flop (didn't bet) Seat 9: VanBuren44 folded before Flop (didn't bet) @@ -16988,36 +16988,36 @@ 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 7: Hero (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 +Hero: 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 +Dealt to Hero [5h 5c] +Hero: 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 +Hero collected 32000 from pot +Hero: 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 7: Hero collected (32000) Seat 8: ACEISGOD folded before Flop (didn't bet) Seat 9: VanBuren44 folded before Flop (didn't bet) @@ -17029,20 +17029,20 @@ 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 7: Hero (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 +Hero: posts the ante 1000 ACEISGOD: posts the ante 1000 VanBuren44: posts the ante 1000 ethegreat1: posts small blind 5000 -s0rrow: posts big blind 10000 +Hero: posts big blind 10000 *** HOLE CARDS *** -Dealt to s0rrow [5h Tc] +Dealt to Hero [5h Tc] ACEISGOD: folds VanBuren44: folds Girlie007: folds @@ -17050,7 +17050,7 @@ billyem: raises 20000 to 30000 OverTheWell: folds ethegreat1: folds ethegreat1 is sitting out -s0rrow: folds +Hero: folds billyem collected 32000 from pot billyem: doesn't show hand *** SUMMARY *** @@ -17059,7 +17059,7 @@ 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 7: Hero (big blind) folded before Flop Seat 8: ACEISGOD folded before Flop (didn't bet) Seat 9: VanBuren44 folded before Flop (didn't bet) @@ -17071,26 +17071,26 @@ 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 7: Hero (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 +Hero: posts the ante 1200 ACEISGOD: posts the ante 1200 VanBuren44: posts the ante 1200 -s0rrow: posts small blind 6000 +Hero: posts small blind 6000 ACEISGOD: posts big blind 12000 *** HOLE CARDS *** -Dealt to s0rrow [Jc 4c] +Dealt to Hero [Jc 4c] VanBuren44: folds Girlie007: raises 24000 to 36000 billyem: folds OverTheWell: folds ethegreat1: folds -s0rrow: folds +Hero: folds ACEISGOD: folds Girlie007 collected 38400 from pot Girlie007: doesn't show hand @@ -17100,7 +17100,7 @@ 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 7: Hero (small blind) folded before Flop Seat 8: ACEISGOD (big blind) folded before Flop Seat 9: VanBuren44 folded before Flop (didn't bet) @@ -17112,32 +17112,32 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [8c Ac] Girlie007: folds billyem: raises 12000 to 24000 OverTheWell: folds ethegreat1: calls 24000 -s0rrow: calls 24000 +Hero: 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 +Hero: folds *** TURN *** [Kh 6d 4h] [6s] billyem: checks ethegreat1: checks @@ -17163,7 +17163,7 @@ 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 7: Hero (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 @@ -17175,25 +17175,25 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [3s 2c] billyem said, "r u sure" billyem: folds OverTheWell: folds ethegreat1: folds -s0rrow: folds +Hero: folds ACEISGOD: folds VanBuren44: folds ethegreat1 said, "what are the odds in 7 handed" @@ -17205,7 +17205,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: ACEISGOD (button) folded before Flop (didn't bet) Seat 9: VanBuren44 (small blind) folded before Flop @@ -17217,36 +17217,36 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [Kc Ah] OverTheWell: folds ethegreat1: folds -s0rrow: raises 24000 to 36000 +Hero: raises 24000 to 36000 ACEISGOD: folds VanBuren44: folds Girlie007: folds billyem: folds -s0rrow collected 38400 from pot -s0rrow: doesn't show hand +Hero collected 38400 from pot +Hero: 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 7: Hero collected (38400) Seat 8: ACEISGOD folded before Flop (didn't bet) Seat 9: VanBuren44 (button) folded before Flop (didn't bet) @@ -17258,22 +17258,22 @@ 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 7: Hero (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 +Hero: 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] +Dealt to Hero [Qc 4h] ethegreat1: folds -s0rrow: folds +Hero: folds ACEISGOD: raises 17000 to 29000 VanBuren44: folds Girlie007: calls 29000 @@ -17292,7 +17292,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: ACEISGOD folded on the Flop Seat 9: VanBuren44 folded before Flop (didn't bet) @@ -17304,21 +17304,21 @@ 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 7: Hero (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 +Hero: 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 +Dealt to Hero [9h Ts] +Hero: folds ACEISGOD: folds VanBuren44: raises 36000 to 48000 Girlie007: folds @@ -17333,7 +17333,7 @@ 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 7: Hero folded before Flop (didn't bet) Seat 8: ACEISGOD folded before Flop (didn't bet) Seat 9: VanBuren44 collected (38400) @@ -17345,34 +17345,34 @@ 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 7: Hero (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 +Hero: posts the ante 1200 ACEISGOD: posts the ante 1200 VanBuren44: posts the ante 1200 ethegreat1: posts small blind 6000 -s0rrow: posts big blind 12000 +Hero: posts big blind 12000 *** HOLE CARDS *** -Dealt to s0rrow [As Qh] +Dealt to Hero [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 +Hero: 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) +Hero: shows [As Qh] (high card Ace) ethegreat1 collected 389408 from pot ethegreat1 said, "gg" *** SUMMARY *** @@ -17382,7 +17382,7 @@ 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 7: Hero (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/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-1-201004.8betPF.txt b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-1-201004.8betPF.txt index f26e7c51..f29b57fc 100644 --- a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-1-201004.8betPF.txt +++ b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-1-201004.8betPF.txt @@ -2,7 +2,7 @@ PokerStars Game #74759586758: Tournament #589688686, $1.00+$0.15 USD Hold'em No Table '589688686 1' 10-max Seat #4 is the button Seat 1: Player3 (1400 in chips) Seat 2: Player5 (1470 in chips) -Seat 3: Player0 (1820 in chips) +Seat 3: Hero (1820 in chips) Seat 4: Player2 (1620 in chips) Seat 5: Player6 (560 in chips) Seat 6: Player7 (1500 in chips) @@ -13,46 +13,46 @@ Seat 10: Player9 (2130 in chips) Player6: posts small blind 10 Player7: posts big blind 20 *** HOLE CARDS *** -Dealt to Player0 [8c Tc] +Dealt to Hero [8c Tc] Player8: calls 20 Player4: folds Player1: folds Player9: folds Player3: folds Player5: calls 20 -Player0: calls 20 +Hero: calls 20 Player2: raises 20 to 40 Player6: calls 30 Player7: folds Player8: calls 20 Player5: calls 20 -Player0: raises 20 to 60 +Hero: raises 20 to 60 Player2: raises 20 to 80 Player6: calls 40 Player8: calls 40 Player5: folds -Player0: raises 20 to 100 +Hero: raises 20 to 100 Player2: raises 20 to 120 Player6: calls 40 Player8: calls 40 -Player0: raises 20 to 140 +Hero: raises 20 to 140 Player2: raises 1480 to 1620 and is all-in Player6: folds Player8: folds -Player0: calls 1480 +Hero: calls 1480 *** FLOP *** [8d 7d Qs] *** TURN *** [8d 7d Qs] [Qc] *** RIVER *** [8d 7d Qs Qc] [7c] *** SHOW DOWN *** -Player0: shows [8c Tc] (two pair, Queens and Eights) +Hero: shows [8c Tc] (two pair, Queens and Eights) Player2: shows [3d Ad] (two pair, Queens and Sevens) -Player0 collected 3540 from pot +Hero collected 3540 from pot *** SUMMARY *** Total pot 3540 | Rake 0 Board [8d 7d Qs Qc 7c] Seat 1: Player3 folded before Flop (didn't bet) Seat 2: Player5 folded before Flop -Seat 3: Player0 showed [8c Tc] and won (3540) with two pair, Queens and Eights +Seat 3: Hero showed [8c Tc] and won (3540) with two pair, Queens and Eights Seat 4: Player2 (button) showed [3d Ad] and lost with two pair, Queens and Sevens Seat 5: Player6 (small blind) folded before Flop Seat 6: Player7 (big blind) folded before Flop diff --git a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt index d97d3ca1..6d8cc603 100644 --- a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt +++ b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt @@ -7,18 +7,18 @@ Seat 4: Player4 (1500 in chips) Seat 5: Player5 (1500 in chips) Seat 6: Player2 (1500 in chips) Seat 7: Player6 (1500 in chips) -Seat 8: Player0 (1500 in chips) +Seat 8: Hero (1500 in chips) Seat 9: Player9 (1500 in chips) Seat 10: Player8 (1500 in chips) Player1: posts small blind 10 Player3: posts big blind 20 *** HOLE CARDS *** -Dealt to Player0 [4c 7d] +Dealt to Hero [4c 7d] Player4: folds Player5: folds Player2: folds Player6: folds -Player0: folds +Hero: folds Player9: folds Player8: folds Player7: folds @@ -35,7 +35,7 @@ Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 9: Player9 folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -50,17 +50,17 @@ Seat 4: Player4 (1500 in chips) Seat 5: Player5 (1500 in chips) Seat 6: Player2 (1500 in chips) Seat 7: Player6 (1500 in chips) -Seat 8: Player0 (1500 in chips) +Seat 8: Hero (1500 in chips) Seat 9: Player9 (1500 in chips) Seat 10: Player8 (1500 in chips) Player3: posts small blind 10 Player4: posts big blind 20 *** HOLE CARDS *** -Dealt to Player0 [8h Jh] +Dealt to Hero [8h Jh] Player5: folds Player2: folds Player6: folds -Player0: raises 40 to 60 +Hero: raises 40 to 60 Player9: folds Player8: folds Player7: folds @@ -68,19 +68,19 @@ Player1: calls 60 Player3: folds Player4: folds *** FLOP *** [2h 7c Th] -Player0: bets 80 +Hero: bets 80 Player1: calls 80 *** TURN *** [2h 7c Th] [5s] -Player0: checks +Hero: checks Player1: bets 217 -Player0: calls 217 +Hero: calls 217 *** RIVER *** [2h 7c Th 5s] [Jd] -Player0: checks +Hero: checks Player1: checks *** SHOW DOWN *** -Player0: shows [8h Jh] (a pair of Jacks) +Hero: shows [8h Jh] (a pair of Jacks) Player1: mucks hand -Player0 collected 744 from pot +Hero collected 744 from pot *** SUMMARY *** Total pot 744 | Rake 0 Board [2h 7c Th 5s Jd] @@ -91,7 +91,7 @@ Seat 4: Player4 (big blind) folded before Flop Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 showed [8h Jh] and won (744) with a pair of Jacks +Seat 8: Hero showed [8h Jh] and won (744) with a pair of Jacks Seat 9: Player9 folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -106,16 +106,16 @@ Seat 4: Player4 (1480 in chips) Seat 5: Player5 (1500 in chips) Seat 6: Player2 (1500 in chips) Seat 7: Player6 (1500 in chips) -Seat 8: Player0 (1887 in chips) +Seat 8: Hero (1887 in chips) Seat 9: Player9 (1500 in chips) Seat 10: Player8 (1500 in chips) Player4: posts small blind 10 Player5: posts big blind 20 *** HOLE CARDS *** -Dealt to Player0 [Ks 8s] +Dealt to Hero [Ks 8s] Player2: folds Player6: folds -Player0: folds +Hero: folds Player9: calls 20 Player8: folds Player7: folds @@ -136,7 +136,7 @@ Seat 4: Player4 (small blind) folded before Flop Seat 5: Player5 (big blind) folded before Flop Seat 6: Player2 folded before Flop (didn't bet) Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 9: Player9 folded before Flop Seat 10: Player8 folded before Flop (didn't bet) @@ -151,15 +151,15 @@ Seat 4: Player4 (1470 in chips) Seat 5: Player5 (1480 in chips) Seat 6: Player2 (1500 in chips) Seat 7: Player6 (1500 in chips) -Seat 8: Player0 (1887 in chips) +Seat 8: Hero (1887 in chips) Seat 9: Player9 (1480 in chips) Seat 10: Player8 (1500 in chips) Player5: posts small blind 10 Player2: posts big blind 20 *** HOLE CARDS *** -Dealt to Player0 [7c 5c] +Dealt to Hero [7c 5c] Player6: folds -Player0: folds +Hero: folds Player9: calls 20 Player8: folds Player7: folds @@ -184,7 +184,7 @@ Seat 4: Player4 (button) folded before Flop (didn't bet) Seat 5: Player5 (small blind) folded before Flop Seat 6: Player2 (big blind) folded before Flop Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 9: Player9 collected (190) Seat 10: Player8 folded before Flop (didn't bet) @@ -199,14 +199,14 @@ Seat 4: Player4 (1470 in chips) Seat 5: Player5 (1470 in chips) Seat 6: Player2 (1480 in chips) Seat 7: Player6 (1500 in chips) -Seat 8: Player0 (1887 in chips) +Seat 8: Hero (1887 in chips) Seat 9: Player9 (1590 in chips) Seat 10: Player8 (1500 in chips) Player2: posts small blind 10 Player6: posts big blind 20 *** HOLE CARDS *** -Dealt to Player0 [Jh Qc] -Player0: folds +Dealt to Hero [Jh Qc] +Hero: folds Player9: raises 40 to 60 Player8: folds Player7: folds @@ -239,7 +239,7 @@ Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 (button) folded before Flop (didn't bet) Seat 6: Player2 (small blind) folded before Flop Seat 7: Player6 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 9: Player9 showed [Qs Kd] and lost with two pair, Queens and Eights Seat 10: Player8 folded before Flop (didn't bet) @@ -254,13 +254,13 @@ Seat 4: Player4 (1470 in chips) Seat 5: Player5 (1470 in chips) Seat 6: Player2 (1470 in chips) Seat 7: Player6 (1480 in chips) -Seat 8: Player0 (1887 in chips) +Seat 8: Hero (1887 in chips) Seat 9: Player9 (120 in chips) Seat 10: Player8 (1500 in chips) Player6: posts small blind 10 -Player0: posts big blind 20 +Hero: posts big blind 20 *** HOLE CARDS *** -Dealt to Player0 [7h 8c] +Dealt to Hero [7h 8c] Player9: raises 100 to 120 and is all-in Player8: folds Player7: folds @@ -270,12 +270,12 @@ Player4: folds Player5: folds Player2: folds Player6: folds -Player0: calls 100 +Hero: calls 100 *** FLOP *** [4h 9h 3s] *** TURN *** [4h 9h 3s] [Ks] *** RIVER *** [4h 9h 3s Ks] [9s] *** SHOW DOWN *** -Player0: shows [7h 8c] (a pair of Nines) +Hero: shows [7h 8c] (a pair of Nines) Player9: shows [2d 2c] (two pair, Nines and Deuces) Player9 collected 250 from pot *** SUMMARY *** @@ -288,7 +288,7 @@ Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 (button) folded before Flop (didn't bet) Seat 7: Player6 (small blind) folded before Flop -Seat 8: Player0 (big blind) showed [7h 8c] and lost with a pair of Nines +Seat 8: Hero (big blind) showed [7h 8c] and lost with a pair of Nines Seat 9: Player9 showed [2d 2c] and won (250) with two pair, Nines and Deuces Seat 10: Player8 folded before Flop (didn't bet) @@ -303,13 +303,13 @@ Seat 4: Player4 (1470 in chips) Seat 5: Player5 (1470 in chips) Seat 6: Player2 (1470 in chips) Seat 7: Player6 (1470 in chips) -Seat 8: Player0 (1767 in chips) +Seat 8: Hero (1767 in chips) Seat 9: Player9 (250 in chips) Seat 10: Player8 (1500 in chips) -Player0: posts small blind 10 +Hero: posts small blind 10 Player9: posts big blind 20 *** HOLE CARDS *** -Dealt to Player0 [2d 4s] +Dealt to Hero [2d 4s] Player8: folds Player7: folds Player1: folds @@ -318,7 +318,7 @@ Player4: calls 80 Player5: folds Player2: folds Player6: calls 80 -Player0: folds +Hero: folds Player9: folds *** FLOP *** [Ks 8s 8c] Player3: checks @@ -342,7 +342,7 @@ Seat 4: Player4 folded on the Turn Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) Seat 7: Player6 (button) collected (270) -Seat 8: Player0 (small blind) folded before Flop +Seat 8: Hero (small blind) folded before Flop Seat 9: Player9 (big blind) folded before Flop Seat 10: Player8 folded before Flop (didn't bet) @@ -357,13 +357,13 @@ Seat 4: Player4 (1390 in chips) Seat 5: Player5 (1470 in chips) Seat 6: Player2 (1470 in chips) Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1757 in chips) +Seat 8: Hero (1757 in chips) Seat 9: Player9 (230 in chips) Seat 10: Player8 (1500 in chips) Player9: posts small blind 15 Player8: posts big blind 30 *** HOLE CARDS *** -Dealt to Player0 [Th Kd] +Dealt to Hero [Th Kd] Player7: folds Player1: folds Player3: raises 90 to 120 @@ -371,7 +371,7 @@ Player4: folds Player5: folds Player2: folds Player6: folds -Player0: folds +Hero: folds Player9: raises 110 to 230 and is all-in Player8: folds Player3: calls 110 @@ -393,7 +393,7 @@ Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 8: Hero (button) folded before Flop (didn't bet) Seat 9: Player9 (small blind) showed [Ks 8d] and lost with a pair of Fives Seat 10: Player8 (big blind) folded before Flop @@ -408,24 +408,24 @@ Seat 4: Player4 (1390 in chips) Seat 5: Player5 (1470 in chips) Seat 6: Player2 (1470 in chips) Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1757 in chips) +Seat 8: Hero (1757 in chips) Seat 10: Player8 (1470 in chips) Player7: posts small blind 15 Player1: posts big blind 30 *** HOLE CARDS *** -Dealt to Player0 [Ah Td] +Dealt to Hero [Ah Td] Player3: folds Player4: folds Player5: folds Player2: folds Player6: folds -Player0: raises 90 to 120 +Hero: raises 90 to 120 Player8: folds Player7: folds Player1: folds -Uncalled bet (90) returned to Player0 -Player0 collected 75 from pot -Player0: doesn't show hand +Uncalled bet (90) returned to Hero +Hero collected 75 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 75 | Rake 0 Seat 1: Player7 (small blind) folded before Flop @@ -435,7 +435,7 @@ Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 collected (75) +Seat 8: Hero collected (75) Seat 10: Player8 (button) folded before Flop (didn't bet) @@ -449,17 +449,17 @@ Seat 4: Player4 (1390 in chips) Seat 5: Player5 (1470 in chips) Seat 6: Player2 (1470 in chips) Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1802 in chips) +Seat 8: Hero (1802 in chips) Seat 10: Player8 (1470 in chips) Player1: posts small blind 15 Player3: posts big blind 30 *** HOLE CARDS *** -Dealt to Player0 [Js Qs] +Dealt to Hero [Js Qs] Player4: folds Player5: folds Player2: raises 30 to 60 Player6: folds -Player0: folds +Hero: folds Player8: folds Player7: folds Player1: calls 45 @@ -486,7 +486,7 @@ Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded on the River Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -500,16 +500,16 @@ Seat 4: Player4 (1390 in chips) Seat 5: Player5 (1470 in chips) Seat 6: Player2 (1140 in chips) Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1802 in chips) +Seat 8: Hero (1802 in chips) Seat 10: Player8 (1470 in chips) Player3: posts small blind 15 Player4: posts big blind 30 *** HOLE CARDS *** -Dealt to Player0 [6h Kc] +Dealt to Hero [6h Kc] Player5: folds Player2: folds Player6: folds -Player0: folds +Hero: folds Player8: folds Player7: folds Player1: folds @@ -525,7 +525,7 @@ Seat 4: Player4 (big blind) collected (30) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -539,15 +539,15 @@ Seat 4: Player4 (1405 in chips) Seat 5: Player5 (1470 in chips) Seat 6: Player2 (1140 in chips) Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1802 in chips) +Seat 8: Hero (1802 in chips) Seat 10: Player8 (1470 in chips) Player4: posts small blind 15 Player5: posts big blind 30 *** HOLE CARDS *** -Dealt to Player0 [Td 9c] +Dealt to Hero [Td 9c] Player2: raises 60 to 90 Player6: folds -Player0: folds +Hero: folds Player8: folds Player7: folds Player1: folds @@ -566,7 +566,7 @@ Seat 4: Player4 (small blind) folded before Flop Seat 5: Player5 (big blind) folded before Flop Seat 6: Player2 collected (75) Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -580,14 +580,14 @@ Seat 4: Player4 (1390 in chips) Seat 5: Player5 (1440 in chips) Seat 6: Player2 (1185 in chips) Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1802 in chips) +Seat 8: Hero (1802 in chips) Seat 10: Player8 (1470 in chips) Player5: posts small blind 15 Player2: posts big blind 30 *** HOLE CARDS *** -Dealt to Player0 [4c Ts] +Dealt to Hero [4c Ts] Player6: folds -Player0: folds +Hero: folds Player8: folds Player7: folds Player1: folds @@ -606,7 +606,7 @@ Seat 4: Player4 (button) folded before Flop (didn't bet) Seat 5: Player5 (small blind) folded before Flop Seat 6: Player2 (big blind) collected (30) Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -620,7 +620,7 @@ Seat 4: Player4 (1390 in chips) Seat 5: Player5 (1425 in chips) Seat 6: Player2 (1200 in chips) Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1802 in chips) +Seat 8: Hero (1802 in chips) Seat 10: Player8 (1470 in chips) Player7: posts the ante 5 Player1: posts the ante 5 @@ -629,13 +629,13 @@ Player4: posts the ante 5 Player5: posts the ante 5 Player2: posts the ante 5 Player6: posts the ante 5 -Player0: posts the ante 5 +Hero: posts the ante 5 Player8: posts the ante 5 Player2: posts small blind 25 Player6: posts big blind 50 *** HOLE CARDS *** -Dealt to Player0 [3c Th] -Player0: folds +Dealt to Hero [3c Th] +Hero: folds Player8: folds Player7: folds Player1: folds @@ -656,7 +656,7 @@ Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 (button) folded before Flop (didn't bet) Seat 6: Player2 (small blind) folded before Flop Seat 7: Player6 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -670,7 +670,7 @@ Seat 4: Player4 (1385 in chips) Seat 5: Player5 (1420 in chips) Seat 6: Player2 (1170 in chips) Seat 7: Player6 (1605 in chips) -Seat 8: Player0 (1797 in chips) +Seat 8: Hero (1797 in chips) Seat 10: Player8 (1465 in chips) Player7: posts the ante 5 Player1: posts the ante 5 @@ -679,12 +679,12 @@ Player4: posts the ante 5 Player5: posts the ante 5 Player2: posts the ante 5 Player6: posts the ante 5 -Player0: posts the ante 5 +Hero: posts the ante 5 Player8: posts the ante 5 Player6: posts small blind 25 -Player0: posts big blind 50 +Hero: posts big blind 50 *** HOLE CARDS *** -Dealt to Player0 [Ad 3h] +Dealt to Hero [Ad 3h] Player8: folds Player7: folds Player1: folds @@ -693,7 +693,7 @@ Player4: raises 150 to 200 Player5: folds Player2: folds Player6: folds -Player0: folds +Hero: folds Uncalled bet (150) returned to Player4 Player4 collected 170 from pot Player4: shows [Th Td] (a pair of Tens) @@ -706,7 +706,7 @@ Seat 4: Player4 collected (170) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 (button) folded before Flop (didn't bet) Seat 7: Player6 (small blind) folded before Flop -Seat 8: Player0 (big blind) folded before Flop +Seat 8: Hero (big blind) folded before Flop Seat 10: Player8 folded before Flop (didn't bet) @@ -720,7 +720,7 @@ Seat 4: Player4 (1500 in chips) Seat 5: Player5 (1415 in chips) Seat 6: Player2 (1165 in chips) Seat 7: Player6 (1575 in chips) -Seat 8: Player0 (1742 in chips) +Seat 8: Hero (1742 in chips) Seat 10: Player8 (1460 in chips) Player7: posts the ante 5 Player1: posts the ante 5 @@ -729,12 +729,12 @@ Player4: posts the ante 5 Player5: posts the ante 5 Player2: posts the ante 5 Player6: posts the ante 5 -Player0: posts the ante 5 +Hero: posts the ante 5 Player8: posts the ante 5 -Player0: posts small blind 25 +Hero: posts small blind 25 Player8: posts big blind 50 *** HOLE CARDS *** -Dealt to Player0 [4c 3d] +Dealt to Hero [4c 3d] Player7: folds Player1: folds Player3: raises 50 to 100 @@ -742,7 +742,7 @@ Player4: folds Player5: folds Player2: folds Player6: calls 100 -Player0: folds +Hero: folds Player8: folds *** FLOP *** [As 7h Td] Player3: bets 3110 and is all-in @@ -760,7 +760,7 @@ Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) Seat 7: Player6 (button) folded on the Flop -Seat 8: Player0 (small blind) folded before Flop +Seat 8: Hero (small blind) folded before Flop Seat 10: Player8 (big blind) folded before Flop @@ -774,7 +774,7 @@ Seat 4: Player4 (1495 in chips) Seat 5: Player5 (1410 in chips) Seat 6: Player2 (1160 in chips) Seat 7: Player6 (1470 in chips) -Seat 8: Player0 (1712 in chips) +Seat 8: Hero (1712 in chips) Seat 10: Player8 (1405 in chips) Player7: posts the ante 5 Player1: posts the ante 5 @@ -783,19 +783,19 @@ Player4: posts the ante 5 Player5: posts the ante 5 Player2: posts the ante 5 Player6: posts the ante 5 -Player0: posts the ante 5 +Hero: posts the ante 5 Player8: posts the ante 5 Player8: posts small blind 25 Player7: posts big blind 50 *** HOLE CARDS *** -Dealt to Player0 [Js Qd] +Dealt to Hero [Js Qd] Player1: folds Player3: raises 50 to 100 Player4: folds Player5: folds Player2: folds Player6: folds -Player0: folds +Hero: folds Player8: folds Player7: folds Uncalled bet (50) returned to Player3 @@ -810,7 +810,7 @@ Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 8: Hero (button) folded before Flop (didn't bet) Seat 10: Player8 (small blind) folded before Flop @@ -824,7 +824,7 @@ Seat 4: Player4 (1490 in chips) Seat 5: Player5 (1405 in chips) Seat 6: Player2 (1155 in chips) Seat 7: Player6 (1465 in chips) -Seat 8: Player0 (1707 in chips) +Seat 8: Hero (1707 in chips) Seat 10: Player8 (1375 in chips) Player7: posts the ante 5 Player1: posts the ante 5 @@ -833,18 +833,18 @@ Player4: posts the ante 5 Player5: posts the ante 5 Player2: posts the ante 5 Player6: posts the ante 5 -Player0: posts the ante 5 +Hero: posts the ante 5 Player8: posts the ante 5 Player7: posts small blind 25 Player1: posts big blind 50 *** HOLE CARDS *** -Dealt to Player0 [4h Qh] +Dealt to Hero [4h Qh] Player3: folds Player4: folds Player5: folds Player2: folds Player6: folds -Player0: folds +Hero: folds Player8: raises 100 to 150 Player7: folds Player1: folds @@ -860,7 +860,7 @@ Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 (button) collected (170) @@ -874,7 +874,7 @@ Seat 4: Player4 (1485 in chips) Seat 5: Player5 (1400 in chips) Seat 6: Player2 (1150 in chips) Seat 7: Player6 (1460 in chips) -Seat 8: Player0 (1702 in chips) +Seat 8: Hero (1702 in chips) Seat 10: Player8 (1490 in chips) Player7: posts the ante 5 Player1: posts the ante 5 @@ -883,17 +883,17 @@ Player4: posts the ante 5 Player5: posts the ante 5 Player2: posts the ante 5 Player6: posts the ante 5 -Player0: posts the ante 5 +Hero: posts the ante 5 Player8: posts the ante 5 Player1: posts small blind 25 Player3: posts big blind 50 *** HOLE CARDS *** -Dealt to Player0 [Td 7c] +Dealt to Hero [Td 7c] Player4: folds Player5: folds Player2: folds Player6: folds -Player0: folds +Hero: folds Player8: folds Player7: folds Player1: folds @@ -909,7 +909,7 @@ Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -923,7 +923,7 @@ Seat 4: Player4 (1480 in chips) Seat 5: Player5 (1395 in chips) Seat 6: Player2 (1145 in chips) Seat 7: Player6 (1455 in chips) -Seat 8: Player0 (1697 in chips) +Seat 8: Hero (1697 in chips) Seat 10: Player8 (1485 in chips) Player7: posts the ante 5 Player1: posts the ante 5 @@ -932,16 +932,16 @@ Player4: posts the ante 5 Player5: posts the ante 5 Player2: posts the ante 5 Player6: posts the ante 5 -Player0: posts the ante 5 +Hero: posts the ante 5 Player8: posts the ante 5 Player3: posts small blind 25 Player4: posts big blind 50 *** HOLE CARDS *** -Dealt to Player0 [8s 7h] +Dealt to Hero [8s 7h] Player5: raises 100 to 150 Player2: folds Player6: folds -Player0: folds +Hero: folds Player8: folds Player7: folds Player1: folds @@ -959,7 +959,7 @@ Seat 4: Player4 (big blind) folded before Flop Seat 5: Player5 collected (170) Seat 6: Player2 folded before Flop (didn't bet) Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -973,7 +973,7 @@ Seat 4: Player4 (1425 in chips) Seat 5: Player5 (1510 in chips) Seat 6: Player2 (1140 in chips) Seat 7: Player6 (1450 in chips) -Seat 8: Player0 (1692 in chips) +Seat 8: Hero (1692 in chips) Seat 10: Player8 (1480 in chips) Player7: posts the ante 10 Player1: posts the ante 10 @@ -982,24 +982,24 @@ Player4: posts the ante 10 Player5: posts the ante 10 Player2: posts the ante 10 Player6: posts the ante 10 -Player0: posts the ante 10 +Hero: posts the ante 10 Player8: posts the ante 10 Player4: posts small blind 50 Player5: posts big blind 100 *** HOLE CARDS *** -Dealt to Player0 [Ts As] +Dealt to Hero [Ts As] Player2: folds Player6: folds -Player0: raises 200 to 300 +Hero: raises 200 to 300 Player8: folds Player7: folds Player1: folds Player3: folds Player4: folds Player5: folds -Uncalled bet (200) returned to Player0 -Player0 collected 340 from pot -Player0: doesn't show hand +Uncalled bet (200) returned to Hero +Hero collected 340 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 340 | Rake 0 Seat 1: Player7 folded before Flop (didn't bet) @@ -1009,7 +1009,7 @@ Seat 4: Player4 (small blind) folded before Flop Seat 5: Player5 (big blind) folded before Flop Seat 6: Player2 folded before Flop (didn't bet) Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 collected (340) +Seat 8: Hero collected (340) Seat 10: Player8 folded before Flop (didn't bet) @@ -1023,7 +1023,7 @@ Seat 4: Player4 (1365 in chips) Seat 5: Player5 (1400 in chips) Seat 6: Player2 (1130 in chips) Seat 7: Player6 (1440 in chips) -Seat 8: Player0 (1922 in chips) +Seat 8: Hero (1922 in chips) Seat 10: Player8 (1470 in chips) Player7: posts the ante 10 Player1: posts the ante 10 @@ -1032,14 +1032,14 @@ Player4: posts the ante 10 Player5: posts the ante 10 Player2: posts the ante 10 Player6: posts the ante 10 -Player0: posts the ante 10 +Hero: posts the ante 10 Player8: posts the ante 10 Player5: posts small blind 50 Player2: posts big blind 100 *** HOLE CARDS *** -Dealt to Player0 [Th 7d] +Dealt to Hero [Th 7d] Player6: folds -Player0: folds +Hero: folds Player8: folds Player7: folds Player1: folds @@ -1067,7 +1067,7 @@ Seat 4: Player4 (button) folded before Flop (didn't bet) Seat 5: Player5 (small blind) folded before Flop Seat 6: Player2 (big blind) collected (940) Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -1081,7 +1081,7 @@ Seat 4: Player4 (1355 in chips) Seat 5: Player5 (1340 in chips) Seat 6: Player2 (1660 in chips) Seat 7: Player6 (1430 in chips) -Seat 8: Player0 (1912 in chips) +Seat 8: Hero (1912 in chips) Seat 10: Player8 (1460 in chips) Player7: posts the ante 10 Player1: posts the ante 10 @@ -1090,13 +1090,13 @@ Player4: posts the ante 10 Player5: posts the ante 10 Player2: posts the ante 10 Player6: posts the ante 10 -Player0: posts the ante 10 +Hero: posts the ante 10 Player8: posts the ante 10 Player2: posts small blind 50 Player6: posts big blind 100 *** HOLE CARDS *** -Dealt to Player0 [Tc 4c] -Player0: folds +Dealt to Hero [Tc 4c] +Hero: folds Player8: folds Player7: folds Player1: raises 1223 to 1323 and is all-in @@ -1116,7 +1116,7 @@ Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 (button) folded before Flop (didn't bet) Seat 6: Player2 (small blind) folded before Flop Seat 7: Player6 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -1130,7 +1130,7 @@ Seat 4: Player4 (1345 in chips) Seat 5: Player5 (1330 in chips) Seat 6: Player2 (1600 in chips) Seat 7: Player6 (1320 in chips) -Seat 8: Player0 (1902 in chips) +Seat 8: Hero (1902 in chips) Seat 10: Player8 (1450 in chips) Player7: posts the ante 10 Player1: posts the ante 10 @@ -1139,12 +1139,12 @@ Player4: posts the ante 10 Player5: posts the ante 10 Player2: posts the ante 10 Player6: posts the ante 10 -Player0: posts the ante 10 +Hero: posts the ante 10 Player8: posts the ante 10 Player6: posts small blind 50 -Player0: posts big blind 100 +Hero: posts big blind 100 *** HOLE CARDS *** -Dealt to Player0 [7s 2h] +Dealt to Hero [7s 2h] Player8: folds Player7: folds Player1: folds @@ -1153,9 +1153,9 @@ Player4: folds Player5: folds Player2: folds Player6: folds -Uncalled bet (50) returned to Player0 -Player0 collected 190 from pot -Player0: doesn't show hand +Uncalled bet (50) returned to Hero +Hero collected 190 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 190 | Rake 0 Seat 1: Player7 folded before Flop (didn't bet) @@ -1165,7 +1165,7 @@ Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 (button) folded before Flop (didn't bet) Seat 7: Player6 (small blind) folded before Flop -Seat 8: Player0 (big blind) collected (190) +Seat 8: Hero (big blind) collected (190) Seat 10: Player8 folded before Flop (didn't bet) @@ -1179,7 +1179,7 @@ Seat 4: Player4 (1335 in chips) Seat 5: Player5 (1320 in chips) Seat 6: Player2 (1590 in chips) Seat 7: Player6 (1260 in chips) -Seat 8: Player0 (2032 in chips) +Seat 8: Hero (2032 in chips) Seat 10: Player8 (1440 in chips) Player7: posts the ante 10 Player1: posts the ante 10 @@ -1188,12 +1188,12 @@ Player4: posts the ante 10 Player5: posts the ante 10 Player2: posts the ante 10 Player6: posts the ante 10 -Player0: posts the ante 10 +Hero: posts the ante 10 Player8: posts the ante 10 -Player0: posts small blind 50 +Hero: posts small blind 50 Player8: posts big blind 100 *** HOLE CARDS *** -Dealt to Player0 [Jc 6h] +Dealt to Hero [Jc 6h] Player7: folds Player1: folds Player3: folds @@ -1201,7 +1201,7 @@ Player4: raises 100 to 200 Player5: folds Player2: raises 300 to 500 Player6: raises 750 to 1250 and is all-in -Player0: folds +Hero: folds Player8: folds Player4: folds Player2: calls 750 @@ -1223,7 +1223,7 @@ Seat 4: Player4 folded before Flop Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 showed [Js Jd] and won (2940) with a pair of Jacks Seat 7: Player6 (button) showed [Kc Ad] and lost with high card Ace -Seat 8: Player0 (small blind) folded before Flop +Seat 8: Hero (small blind) folded before Flop Seat 10: Player8 (big blind) folded before Flop @@ -1236,7 +1236,7 @@ Seat 3: Player3 (3125 in chips) Seat 4: Player4 (1125 in chips) Seat 5: Player5 (1310 in chips) Seat 6: Player2 (3270 in chips) -Seat 8: Player0 (1972 in chips) +Seat 8: Hero (1972 in chips) Seat 10: Player8 (1330 in chips) Player7: posts the ante 10 Player1: posts the ante 10 @@ -1244,19 +1244,19 @@ Player3: posts the ante 10 Player4: posts the ante 10 Player5: posts the ante 10 Player2: posts the ante 10 -Player0: posts the ante 10 +Hero: posts the ante 10 Player8: posts the ante 10 Player8: posts small blind 50 Player7: posts big blind 100 *** HOLE CARDS *** -Dealt to Player0 [Tc Kd] +Dealt to Hero [Tc Kd] Player4 said, "Hey Newfyboy,, you were ragging everyone about fishing at our last table,,,,what about you shoving all in to me with Q 10 in the small blind position and me busting you with KK" Player1: raises 1433 to 1533 and is all-in Player3: folds Player4: folds Player5: folds Player2: folds -Player0: folds +Hero: folds Player8: folds Player7: folds Uncalled bet (1433) returned to Player1 @@ -1269,7 +1269,7 @@ Seat 3: Player3 folded before Flop (didn't bet) Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 8: Hero (button) folded before Flop (didn't bet) Seat 10: Player8 (small blind) folded before Flop @@ -1282,7 +1282,7 @@ Seat 3: Player3 (3115 in chips) Seat 4: Player4 (1115 in chips) Seat 5: Player5 (1300 in chips) Seat 6: Player2 (3260 in chips) -Seat 8: Player0 (1962 in chips) +Seat 8: Hero (1962 in chips) Seat 10: Player8 (1270 in chips) Player7: posts the ante 10 Player1: posts the ante 10 @@ -1290,24 +1290,24 @@ Player3: posts the ante 10 Player4: posts the ante 10 Player5: posts the ante 10 Player2: posts the ante 10 -Player0: posts the ante 10 +Hero: posts the ante 10 Player8: posts the ante 10 Player7: posts small blind 50 Player1: posts big blind 100 *** HOLE CARDS *** -Dealt to Player0 [2s Js] +Dealt to Hero [2s Js] Player3: folds Player4: raises 200 to 300 -Player0 is connected +Hero is connected Player5 said, "i wasnt ragging everyone..just the guy that donked me in a couple trnys" Player5: folds Player2: folds Player4 said, "oh,,," -Player0: folds -Player0 is sitting out +Hero: folds +Hero is sitting out Player8: folds Player7: folds -Player0 has returned +Hero has returned Player1: folds Uncalled bet (200) returned to Player4 Player4 collected 330 from pot @@ -1320,7 +1320,7 @@ Seat 3: Player3 folded before Flop (didn't bet) Seat 4: Player4 collected (330) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 (button) folded before Flop (didn't bet) @@ -1333,7 +1333,7 @@ Seat 3: Player3 (3105 in chips) Seat 4: Player4 (1335 in chips) Seat 5: Player5 (1290 in chips) Seat 6: Player2 (3250 in chips) -Seat 8: Player0 (1952 in chips) +Seat 8: Hero (1952 in chips) Seat 10: Player8 (1260 in chips) Player7: posts the ante 15 Player1: posts the ante 15 @@ -1341,16 +1341,16 @@ Player3: posts the ante 15 Player4: posts the ante 15 Player5: posts the ante 15 Player2: posts the ante 15 -Player0: posts the ante 15 +Hero: posts the ante 15 Player8: posts the ante 15 Player1: posts small blind 75 Player3: posts big blind 150 *** HOLE CARDS *** -Dealt to Player0 [9d Tc] +Dealt to Hero [9d Tc] Player4: folds Player5: folds Player2: folds -Player0: folds +Hero: folds Player8: folds Player7: raises 990 to 1140 and is all-in Player1: folds @@ -1366,7 +1366,7 @@ Seat 3: Player3 (big blind) folded before Flop Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -1379,7 +1379,7 @@ Seat 3: Player3 (2940 in chips) Seat 4: Player4 (1320 in chips) Seat 5: Player5 (1275 in chips) Seat 6: Player2 (3235 in chips) -Seat 8: Player0 (1937 in chips) +Seat 8: Hero (1937 in chips) Seat 10: Player8 (1245 in chips) Player7: posts the ante 15 Player1: posts the ante 15 @@ -1387,16 +1387,16 @@ Player3: posts the ante 15 Player4: posts the ante 15 Player5: posts the ante 15 Player2: posts the ante 15 -Player0: posts the ante 15 +Hero: posts the ante 15 Player8: posts the ante 15 Player3: posts small blind 75 Player4: posts big blind 150 *** HOLE CARDS *** -Dealt to Player0 [Jh 7d] +Dealt to Hero [Jh 7d] Player4 said, "just unlucky timing is all" Player5: folds Player2: folds -Player0: folds +Hero: folds Player8: folds Player7: raises 1320 to 1470 and is all-in Player1: folds @@ -1412,7 +1412,7 @@ Seat 3: Player3 (small blind) folded before Flop Seat 4: Player4 (big blind) folded before Flop Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -1425,7 +1425,7 @@ Seat 3: Player3 (2850 in chips) Seat 4: Player4 (1155 in chips) Seat 5: Player5 (1260 in chips) Seat 6: Player2 (3220 in chips) -Seat 8: Player0 (1922 in chips) +Seat 8: Hero (1922 in chips) Seat 10: Player8 (1230 in chips) Player7: posts the ante 15 Player1: posts the ante 15 @@ -1433,14 +1433,14 @@ Player3: posts the ante 15 Player4: posts the ante 15 Player5: posts the ante 15 Player2: posts the ante 15 -Player0: posts the ante 15 +Hero: posts the ante 15 Player8: posts the ante 15 Player4: posts small blind 75 Player5: posts big blind 150 *** HOLE CARDS *** -Dealt to Player0 [Td 6d] +Dealt to Hero [Td 6d] Player2: folds -Player0: folds +Hero: folds Player8: folds Player7: folds Player1: folds @@ -1462,7 +1462,7 @@ Seat 3: Player3 (button) folded before Flop (didn't bet) Seat 4: Player4 (small blind) collected (420) Seat 5: Player5 (big blind) folded on the Flop Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -1475,7 +1475,7 @@ Seat 3: Player3 (2835 in chips) Seat 4: Player4 (1410 in chips) Seat 5: Player5 (1095 in chips) Seat 6: Player2 (3205 in chips) -Seat 8: Player0 (1907 in chips) +Seat 8: Hero (1907 in chips) Seat 10: Player8 (1215 in chips) Player7: posts the ante 15 Player1: posts the ante 15 @@ -1483,13 +1483,13 @@ Player3: posts the ante 15 Player4: posts the ante 15 Player5: posts the ante 15 Player2: posts the ante 15 -Player0: posts the ante 15 +Hero: posts the ante 15 Player8: posts the ante 15 Player5: posts small blind 75 Player2: posts big blind 150 *** HOLE CARDS *** -Dealt to Player0 [3c 5h] -Player0: folds +Dealt to Hero [3c 5h] +Hero: folds Player8: folds Player7: folds Player1: folds @@ -1508,7 +1508,7 @@ Seat 3: Player3 folded before Flop (didn't bet) Seat 4: Player4 (button) folded before Flop (didn't bet) Seat 5: Player5 (small blind) collected (420) Seat 6: Player2 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -1521,7 +1521,7 @@ Seat 3: Player3 (2820 in chips) Seat 4: Player4 (1395 in chips) Seat 5: Player5 (1350 in chips) Seat 6: Player2 (3040 in chips) -Seat 8: Player0 (1892 in chips) +Seat 8: Hero (1892 in chips) Seat 10: Player8 (1200 in chips) Player7: posts the ante 15 Player1: posts the ante 15 @@ -1529,12 +1529,12 @@ Player3: posts the ante 15 Player4: posts the ante 15 Player5: posts the ante 15 Player2: posts the ante 15 -Player0: posts the ante 15 +Hero: posts the ante 15 Player8: posts the ante 15 Player2: posts small blind 75 -Player0: posts big blind 150 +Hero: posts big blind 150 *** HOLE CARDS *** -Dealt to Player0 [Tc 8s] +Dealt to Hero [Tc 8s] Player8: folds Player7: folds Player1: folds @@ -1543,9 +1543,9 @@ Player5 said, "3 outered once again..had k 10" Player4: folds Player5: folds Player2: folds -Uncalled bet (75) returned to Player0 -Player0 collected 270 from pot -Player0: doesn't show hand +Uncalled bet (75) returned to Hero +Hero collected 270 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 270 | Rake 0 Seat 1: Player7 folded before Flop (didn't bet) @@ -1554,7 +1554,7 @@ Seat 3: Player3 folded before Flop (didn't bet) Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 (button) folded before Flop (didn't bet) Seat 6: Player2 (small blind) folded before Flop -Seat 8: Player0 (big blind) collected (270) +Seat 8: Hero (big blind) collected (270) Seat 10: Player8 folded before Flop (didn't bet) @@ -1567,7 +1567,7 @@ Seat 3: Player3 (2805 in chips) Seat 4: Player4 (1380 in chips) Seat 5: Player5 (1335 in chips) Seat 6: Player2 (2950 in chips) -Seat 8: Player0 (2072 in chips) +Seat 8: Hero (2072 in chips) Seat 10: Player8 (1185 in chips) Player7: posts the ante 15 Player1: posts the ante 15 @@ -1575,12 +1575,12 @@ Player3: posts the ante 15 Player4: posts the ante 15 Player5: posts the ante 15 Player2: posts the ante 15 -Player0: posts the ante 15 +Hero: posts the ante 15 Player8: posts the ante 15 -Player0: posts small blind 75 +Hero: posts small blind 75 Player8: posts big blind 150 *** HOLE CARDS *** -Dealt to Player0 [2c 6h] +Dealt to Hero [2c 6h] Player7: folds Player4 said, "i showed,,,,you see K 9" Player1: folds @@ -1588,7 +1588,7 @@ Player3: folds Player4: folds Player5: folds Player2: folds -Player0: folds +Hero: folds Uncalled bet (75) returned to Player8 Player8 collected 270 from pot Player8: doesn't show hand @@ -1600,7 +1600,7 @@ Seat 3: Player3 folded before Flop (didn't bet) Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 (button) folded before Flop (didn't bet) -Seat 8: Player0 (small blind) folded before Flop +Seat 8: Hero (small blind) folded before Flop Seat 10: Player8 (big blind) collected (270) @@ -1613,7 +1613,7 @@ Seat 3: Player3 (2790 in chips) Seat 4: Player4 (1365 in chips) Seat 5: Player5 (1320 in chips) Seat 6: Player2 (2935 in chips) -Seat 8: Player0 (1982 in chips) +Seat 8: Hero (1982 in chips) Seat 10: Player8 (1365 in chips) Player7: posts the ante 15 Player1: posts the ante 15 @@ -1621,22 +1621,22 @@ Player3: posts the ante 15 Player4: posts the ante 15 Player5: posts the ante 15 Player2: posts the ante 15 -Player0: posts the ante 15 +Hero: posts the ante 15 Player8: posts the ante 15 Player8: posts small blind 75 Player7: posts big blind 150 *** HOLE CARDS *** -Dealt to Player0 [Js 6d] +Dealt to Hero [Js 6d] Player1: folds Player3: folds Player4: folds Player5: folds Player2: folds -Player0: raises 1817 to 1967 and is all-in +Hero: raises 1817 to 1967 and is all-in Player8: folds Player7: folds -Uncalled bet (1817) returned to Player0 -Player0 collected 495 from pot +Uncalled bet (1817) returned to Hero +Hero collected 495 from pot *** SUMMARY *** Total pot 495 | Rake 0 Seat 1: Player7 (big blind) folded before Flop @@ -1645,7 +1645,7 @@ Seat 3: Player3 folded before Flop (didn't bet) Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 (button) collected (495) +Seat 8: Hero (button) collected (495) Seat 10: Player8 (small blind) folded before Flop @@ -1658,7 +1658,7 @@ Seat 3: Player3 (2775 in chips) Seat 4: Player4 (1350 in chips) Seat 5: Player5 (1305 in chips) Seat 6: Player2 (2920 in chips) -Seat 8: Player0 (2312 in chips) +Seat 8: Hero (2312 in chips) Seat 10: Player8 (1275 in chips) Player7: posts the ante 15 Player1: posts the ante 15 @@ -1666,17 +1666,17 @@ Player3: posts the ante 15 Player4: posts the ante 15 Player5: posts the ante 15 Player2: posts the ante 15 -Player0: posts the ante 15 +Hero: posts the ante 15 Player8: posts the ante 15 Player7: posts small blind 75 Player1: posts big blind 150 *** HOLE CARDS *** -Dealt to Player0 [4s Ks] +Dealt to Hero [4s Ks] Player3: folds Player4: folds Player5: folds Player2: folds -Player0: folds +Hero: folds Player8: raises 1110 to 1260 and is all-in Player7: folds Player1: folds @@ -1691,7 +1691,7 @@ Seat 3: Player3 folded before Flop (didn't bet) Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 (button) collected (495) @@ -1704,7 +1704,7 @@ Seat 3: Player3 (2760 in chips) Seat 4: Player4 (1335 in chips) Seat 5: Player5 (1290 in chips) Seat 6: Player2 (2905 in chips) -Seat 8: Player0 (2297 in chips) +Seat 8: Hero (2297 in chips) Seat 10: Player8 (1605 in chips) Player7: posts the ante 20 Player1: posts the ante 20 @@ -1712,16 +1712,16 @@ Player3: posts the ante 20 Player4: posts the ante 20 Player5: posts the ante 20 Player2: posts the ante 20 -Player0: posts the ante 20 +Hero: posts the ante 20 Player8: posts the ante 20 Player1: posts small blind 100 Player3: posts big blind 200 *** HOLE CARDS *** -Dealt to Player0 [5d Ac] +Dealt to Hero [5d Ac] Player4: raises 600 to 800 Player5: folds Player2: folds -Player0: folds +Hero: folds Player8: folds Player7: folds Player1: folds @@ -1736,7 +1736,7 @@ Seat 3: Player3 (big blind) folded before Flop Seat 4: Player4 collected (660) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -1749,7 +1749,7 @@ Seat 3: Player3 (2540 in chips) Seat 4: Player4 (1775 in chips) Seat 5: Player5 (1270 in chips) Seat 6: Player2 (2885 in chips) -Seat 8: Player0 (2277 in chips) +Seat 8: Hero (2277 in chips) Seat 10: Player8 (1585 in chips) Player7: posts the ante 20 Player1: posts the ante 20 @@ -1757,23 +1757,23 @@ Player3: posts the ante 20 Player4: posts the ante 20 Player5: posts the ante 20 Player2: posts the ante 20 -Player0: posts the ante 20 +Hero: posts the ante 20 Player8: posts the ante 20 Player3: posts small blind 100 Player4: posts big blind 200 *** HOLE CARDS *** -Dealt to Player0 [Qc Ac] +Dealt to Hero [Qc Ac] Player5: folds Player2: folds -Player0: raises 2057 to 2257 and is all-in +Hero: raises 2057 to 2257 and is all-in Player8: folds Player7: folds Player1: folds Player3: folds Player4: folds -Uncalled bet (2057) returned to Player0 -Player0 collected 660 from pot -Player0: doesn't show hand +Uncalled bet (2057) returned to Hero +Hero collected 660 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 660 | Rake 0 Seat 1: Player7 folded before Flop (didn't bet) @@ -1782,7 +1782,7 @@ Seat 3: Player3 (small blind) folded before Flop Seat 4: Player4 (big blind) folded before Flop Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 collected (660) +Seat 8: Hero collected (660) Seat 10: Player8 folded before Flop (didn't bet) @@ -1795,7 +1795,7 @@ Seat 3: Player3 (2420 in chips) Seat 4: Player4 (1555 in chips) Seat 5: Player5 (1250 in chips) Seat 6: Player2 (2865 in chips) -Seat 8: Player0 (2717 in chips) +Seat 8: Hero (2717 in chips) Seat 10: Player8 (1565 in chips) Player7: posts the ante 20 Player1: posts the ante 20 @@ -1803,14 +1803,14 @@ Player3: posts the ante 20 Player4: posts the ante 20 Player5: posts the ante 20 Player2: posts the ante 20 -Player0: posts the ante 20 +Hero: posts the ante 20 Player8: posts the ante 20 Player4: posts small blind 100 Player5: posts big blind 200 *** HOLE CARDS *** -Dealt to Player0 [4d 8d] +Dealt to Hero [4d 8d] Player2: folds -Player0: folds +Hero: folds Player8: raises 1345 to 1545 and is all-in Player7: folds Player1: folds @@ -1828,7 +1828,7 @@ Seat 3: Player3 (button) folded before Flop (didn't bet) Seat 4: Player4 (small blind) folded before Flop Seat 5: Player5 (big blind) folded before Flop Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 collected (660) @@ -1841,7 +1841,7 @@ Seat 3: Player3 (2400 in chips) Seat 4: Player4 (1435 in chips) Seat 5: Player5 (1030 in chips) Seat 6: Player2 (2845 in chips) -Seat 8: Player0 (2697 in chips) +Seat 8: Hero (2697 in chips) Seat 10: Player8 (2005 in chips) Player7: posts the ante 20 Player1: posts the ante 20 @@ -1849,13 +1849,13 @@ Player3: posts the ante 20 Player4: posts the ante 20 Player5: posts the ante 20 Player2: posts the ante 20 -Player0: posts the ante 20 +Hero: posts the ante 20 Player8: posts the ante 20 Player5: posts small blind 100 Player2: posts big blind 200 *** HOLE CARDS *** -Dealt to Player0 [Tc 9d] -Player0: folds +Dealt to Hero [Tc 9d] +Hero: folds Player8: folds Player7: folds Player1: folds @@ -1874,7 +1874,7 @@ Seat 3: Player3 collected (660) Seat 4: Player4 (button) folded before Flop (didn't bet) Seat 5: Player5 (small blind) folded before Flop Seat 6: Player2 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -1887,7 +1887,7 @@ Seat 3: Player3 (2840 in chips) Seat 4: Player4 (1415 in chips) Seat 5: Player5 (910 in chips) Seat 6: Player2 (2625 in chips) -Seat 8: Player0 (2677 in chips) +Seat 8: Hero (2677 in chips) Seat 10: Player8 (1985 in chips) Player7: posts the ante 20 Player1: posts the ante 20 @@ -1895,12 +1895,12 @@ Player3: posts the ante 20 Player4: posts the ante 20 Player5: posts the ante 20 Player2: posts the ante 20 -Player0: posts the ante 20 +Hero: posts the ante 20 Player8: posts the ante 20 Player2: posts small blind 100 -Player0: posts big blind 200 +Hero: posts big blind 200 *** HOLE CARDS *** -Dealt to Player0 [Th Jd] +Dealt to Hero [Th Jd] Player8: folds Player7: raises 1200 to 1400 and is all-in Player1: folds @@ -1908,7 +1908,7 @@ Player3: folds Player4: folds Player5: folds Player2: folds -Player0: folds +Hero: folds Uncalled bet (1200) returned to Player7 Player7 collected 660 from pot *** SUMMARY *** @@ -1919,7 +1919,7 @@ Seat 3: Player3 folded before Flop (didn't bet) Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 (button) folded before Flop (didn't bet) Seat 6: Player2 (small blind) folded before Flop -Seat 8: Player0 (big blind) folded before Flop +Seat 8: Hero (big blind) folded before Flop Seat 10: Player8 folded before Flop (didn't bet) @@ -1932,7 +1932,7 @@ Seat 3: Player3 (2820 in chips) Seat 4: Player4 (1395 in chips) Seat 5: Player5 (890 in chips) Seat 6: Player2 (2505 in chips) -Seat 8: Player0 (2457 in chips) +Seat 8: Hero (2457 in chips) Seat 10: Player8 (1965 in chips) Player7: posts the ante 20 Player1: posts the ante 20 @@ -1940,23 +1940,23 @@ Player3: posts the ante 20 Player4: posts the ante 20 Player5: posts the ante 20 Player2: posts the ante 20 -Player0: posts the ante 20 +Hero: posts the ante 20 Player8: posts the ante 20 -Player0: posts small blind 100 +Hero: posts small blind 100 Player8: posts big blind 200 *** HOLE CARDS *** -Dealt to Player0 [Kc 8s] +Dealt to Hero [Kc 8s] Player7: folds Player1: folds Player3: folds Player4: folds Player5: folds Player2: folds -Player0: raises 1200 to 1400 +Hero: raises 1200 to 1400 Player8: folds -Uncalled bet (1200) returned to Player0 -Player0 collected 560 from pot -Player0: doesn't show hand +Uncalled bet (1200) returned to Hero +Hero collected 560 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 560 | Rake 0 Seat 1: Player7 folded before Flop (didn't bet) @@ -1965,7 +1965,7 @@ Seat 3: Player3 folded before Flop (didn't bet) Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 (button) folded before Flop (didn't bet) -Seat 8: Player0 (small blind) collected (560) +Seat 8: Hero (small blind) collected (560) Seat 10: Player8 (big blind) folded before Flop @@ -1978,7 +1978,7 @@ Seat 3: Player3 (2800 in chips) Seat 4: Player4 (1375 in chips) Seat 5: Player5 (870 in chips) Seat 6: Player2 (2485 in chips) -Seat 8: Player0 (2797 in chips) +Seat 8: Hero (2797 in chips) Seat 10: Player8 (1745 in chips) Player7: posts the ante 20 Player1: posts the ante 20 @@ -1986,18 +1986,18 @@ Player3: posts the ante 20 Player4: posts the ante 20 Player5: posts the ante 20 Player2: posts the ante 20 -Player0: posts the ante 20 +Hero: posts the ante 20 Player8: posts the ante 20 Player8: posts small blind 100 Player7: posts big blind 200 *** HOLE CARDS *** -Dealt to Player0 [9h 4h] +Dealt to Hero [9h 4h] Player1: raises 868 to 1068 and is all-in Player3: raises 1712 to 2780 and is all-in Player4: folds Player5: folds Player2: folds -Player0: folds +Hero: folds Player8: folds Player7: folds Uncalled bet (1712) returned to Player3 @@ -2017,7 +2017,7 @@ Seat 3: Player3 showed [Qh Ad] and lost with two pair, Sevens and Fours Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 8: Hero (button) folded before Flop (didn't bet) Seat 10: Player8 (small blind) folded before Flop @@ -2030,7 +2030,7 @@ Seat 3: Player3 (1712 in chips) Seat 4: Player4 (1355 in chips) Seat 5: Player5 (850 in chips) Seat 6: Player2 (2465 in chips) -Seat 8: Player0 (2777 in chips) +Seat 8: Hero (2777 in chips) Seat 10: Player8 (1625 in chips) Player7: posts the ante 20 Player1: posts the ante 20 @@ -2038,17 +2038,17 @@ Player3: posts the ante 20 Player4: posts the ante 20 Player5: posts the ante 20 Player2: posts the ante 20 -Player0: posts the ante 20 +Hero: posts the ante 20 Player8: posts the ante 20 Player7: posts small blind 100 Player1: posts big blind 200 *** HOLE CARDS *** -Dealt to Player0 [9c 6h] +Dealt to Hero [9c 6h] Player3: folds Player4: folds Player5: folds Player2: folds -Player0: folds +Hero: folds Player8: raises 1405 to 1605 and is all-in Player7: folds Player1: folds @@ -2063,7 +2063,7 @@ Seat 3: Player3 folded before Flop (didn't bet) Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 (button) collected (660) @@ -2076,7 +2076,7 @@ Seat 3: Player3 (1692 in chips) Seat 4: Player4 (1335 in chips) Seat 5: Player5 (830 in chips) Seat 6: Player2 (2445 in chips) -Seat 8: Player0 (2757 in chips) +Seat 8: Hero (2757 in chips) Seat 10: Player8 (2065 in chips) Player7: posts the ante 20 Player1: posts the ante 20 @@ -2084,16 +2084,16 @@ Player3: posts the ante 20 Player4: posts the ante 20 Player5: posts the ante 20 Player2: posts the ante 20 -Player0: posts the ante 20 +Hero: posts the ante 20 Player8: posts the ante 20 Player1: posts small blind 100 Player3: posts big blind 200 *** HOLE CARDS *** -Dealt to Player0 [Qh 3h] +Dealt to Hero [Qh 3h] Player4: folds Player5: raises 610 to 810 and is all-in Player2: folds -Player0: folds +Hero: folds Player8: folds Player7: folds Player1: folds @@ -2109,7 +2109,7 @@ Seat 3: Player3 (big blind) folded before Flop Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 collected (660) Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -2122,7 +2122,7 @@ Seat 3: Player3 (1472 in chips) Seat 4: Player4 (1315 in chips) Seat 5: Player5 (1270 in chips) Seat 6: Player2 (2425 in chips) -Seat 8: Player0 (2737 in chips) +Seat 8: Hero (2737 in chips) Seat 10: Player8 (2045 in chips) Player7: posts the ante 25 Player1: posts the ante 25 @@ -2130,15 +2130,15 @@ Player3: posts the ante 25 Player4: posts the ante 25 Player5: posts the ante 25 Player2: posts the ante 25 -Player0: posts the ante 25 +Hero: posts the ante 25 Player8: posts the ante 25 Player3: posts small blind 125 Player4: posts big blind 250 *** HOLE CARDS *** -Dealt to Player0 [7c 9c] +Dealt to Hero [7c 9c] Player5: folds Player2: folds -Player0: folds +Hero: folds Player8: folds Player7: folds Player1: folds @@ -2156,7 +2156,7 @@ Seat 3: Player3 (small blind) folded before Flop Seat 4: Player4 (big blind) collected (1200) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -2169,7 +2169,7 @@ Seat 3: Player3 (947 in chips) Seat 4: Player4 (1990 in chips) Seat 5: Player5 (1245 in chips) Seat 6: Player2 (2400 in chips) -Seat 8: Player0 (2712 in chips) +Seat 8: Hero (2712 in chips) Seat 10: Player8 (2020 in chips) Player7: posts the ante 25 Player1: posts the ante 25 @@ -2177,14 +2177,14 @@ Player3: posts the ante 25 Player4: posts the ante 25 Player5: posts the ante 25 Player2: posts the ante 25 -Player0: posts the ante 25 +Hero: posts the ante 25 Player8: posts the ante 25 Player4: posts small blind 125 Player5: posts big blind 250 *** HOLE CARDS *** -Dealt to Player0 [8h Js] +Dealt to Hero [8h Js] Player2: folds -Player0: folds +Hero: folds Player8: folds Player7: folds Player1: raises 1956 to 2206 and is all-in @@ -2208,7 +2208,7 @@ Seat 3: Player3 (button) showed [Ah Ad] and won (2419) with two pair, Aces and F Seat 4: Player4 (small blind) folded before Flop Seat 5: Player5 (big blind) folded before Flop Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -2221,7 +2221,7 @@ Seat 3: Player3 (2419 in chips) Seat 4: Player4 (1840 in chips) Seat 5: Player5 (970 in chips) Seat 6: Player2 (2375 in chips) -Seat 8: Player0 (2687 in chips) +Seat 8: Hero (2687 in chips) Seat 10: Player8 (1995 in chips) Player7: posts the ante 25 Player1: posts the ante 25 @@ -2229,13 +2229,13 @@ Player3: posts the ante 25 Player4: posts the ante 25 Player5: posts the ante 25 Player2: posts the ante 25 -Player0: posts the ante 25 +Hero: posts the ante 25 Player8: posts the ante 25 Player5: posts small blind 125 Player2: posts big blind 250 *** HOLE CARDS *** -Dealt to Player0 [5c Ks] -Player0: folds +Dealt to Hero [5c Ks] +Hero: folds Player8: folds Player7: folds Player1: raises 1009 to 1259 and is all-in @@ -2253,7 +2253,7 @@ Seat 3: Player3 folded before Flop (didn't bet) Seat 4: Player4 (button) folded before Flop (didn't bet) Seat 5: Player5 (small blind) folded before Flop Seat 6: Player2 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 folded before Flop (didn't bet) @@ -2266,7 +2266,7 @@ Seat 3: Player3 (2394 in chips) Seat 4: Player4 (1815 in chips) Seat 5: Player5 (820 in chips) Seat 6: Player2 (2100 in chips) -Seat 8: Player0 (2662 in chips) +Seat 8: Hero (2662 in chips) Seat 10: Player8 (1970 in chips) Player7: posts the ante 25 Player1: posts the ante 25 @@ -2274,12 +2274,12 @@ Player3: posts the ante 25 Player4: posts the ante 25 Player5: posts the ante 25 Player2: posts the ante 25 -Player0: posts the ante 25 +Hero: posts the ante 25 Player8: posts the ante 25 Player2: posts small blind 125 -Player0: posts big blind 250 +Hero: posts big blind 250 *** HOLE CARDS *** -Dealt to Player0 [4s Ks] +Dealt to Hero [4s Ks] Player8: folds Player4 said, "gamlet,,,A 10,,,nice suck out" Player7: folds @@ -2289,9 +2289,9 @@ Player3: folds Player4: folds Player5: folds Player2: folds -Uncalled bet (125) returned to Player0 -Player0 collected 450 from pot -Player0: doesn't show hand +Uncalled bet (125) returned to Hero +Hero collected 450 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 450 | Rake 0 Seat 1: Player7 folded before Flop (didn't bet) @@ -2300,7 +2300,7 @@ Seat 3: Player3 folded before Flop (didn't bet) Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 (button) folded before Flop (didn't bet) Seat 6: Player2 (small blind) folded before Flop -Seat 8: Player0 (big blind) collected (450) +Seat 8: Hero (big blind) collected (450) Seat 10: Player8 folded before Flop (didn't bet) @@ -2313,7 +2313,7 @@ Seat 3: Player3 (2369 in chips) Seat 4: Player4 (1790 in chips) Seat 5: Player5 (795 in chips) Seat 6: Player2 (1950 in chips) -Seat 8: Player0 (2962 in chips) +Seat 8: Hero (2962 in chips) Seat 10: Player8 (1945 in chips) Player7: posts the ante 25 Player1: posts the ante 25 @@ -2321,23 +2321,23 @@ Player3: posts the ante 25 Player4: posts the ante 25 Player5: posts the ante 25 Player2: posts the ante 25 -Player0: posts the ante 25 +Hero: posts the ante 25 Player8: posts the ante 25 -Player0: posts small blind 125 +Hero: posts small blind 125 Player8: posts big blind 250 *** HOLE CARDS *** -Dealt to Player0 [3d 7s] +Dealt to Hero [3d 7s] Player7: folds Player1: folds Player3: folds Player4: folds Player5: folds Player2: folds -Player0: raises 2687 to 2937 and is all-in +Hero: raises 2687 to 2937 and is all-in Player8: folds -Uncalled bet (2687) returned to Player0 -Player0 collected 700 from pot -Player0: doesn't show hand +Uncalled bet (2687) returned to Hero +Hero collected 700 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 700 | Rake 0 Seat 1: Player7 folded before Flop (didn't bet) @@ -2346,7 +2346,7 @@ Seat 3: Player3 folded before Flop (didn't bet) Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 folded before Flop (didn't bet) Seat 6: Player2 (button) folded before Flop (didn't bet) -Seat 8: Player0 (small blind) collected (700) +Seat 8: Hero (small blind) collected (700) Seat 10: Player8 (big blind) folded before Flop @@ -2359,7 +2359,7 @@ Seat 3: Player3 (2344 in chips) Seat 4: Player4 (1765 in chips) Seat 5: Player5 (770 in chips) Seat 6: Player2 (1925 in chips) -Seat 8: Player0 (3387 in chips) +Seat 8: Hero (3387 in chips) Seat 10: Player8 (1670 in chips) Player7: posts the ante 25 Player1: posts the ante 25 @@ -2367,18 +2367,18 @@ Player3: posts the ante 25 Player4: posts the ante 25 Player5: posts the ante 25 Player2: posts the ante 25 -Player0: posts the ante 25 +Hero: posts the ante 25 Player8: posts the ante 25 Player8: posts small blind 125 Player7: posts big blind 250 *** HOLE CARDS *** -Dealt to Player0 [2d As] +Dealt to Hero [2d As] Player1: raises 1509 to 1759 and is all-in Player3: folds Player4: folds Player5: calls 745 and is all-in Player2: folds -Player0: folds +Hero: folds Player8: folds Player7: folds Uncalled bet (1014) returned to Player1 @@ -2399,7 +2399,7 @@ Seat 3: Player3 folded before Flop (didn't bet) Seat 4: Player4 folded before Flop (didn't bet) Seat 5: Player5 showed [Ts Td] and lost with a pair of Tens Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 8: Hero (button) folded before Flop (didn't bet) Seat 10: Player8 (small blind) folded before Flop @@ -2411,23 +2411,23 @@ Seat 2: Player1 (3079 in chips) Seat 3: Player3 (2319 in chips) Seat 4: Player4 (1740 in chips) Seat 6: Player2 (1900 in chips) -Seat 8: Player0 (3362 in chips) +Seat 8: Hero (3362 in chips) Seat 10: Player8 (1520 in chips) Player7: posts the ante 25 Player1: posts the ante 25 Player3: posts the ante 25 Player4: posts the ante 25 Player2: posts the ante 25 -Player0: posts the ante 25 +Hero: posts the ante 25 Player8: posts the ante 25 Player7: posts small blind 125 Player1: posts big blind 250 *** HOLE CARDS *** -Dealt to Player0 [Qh 2s] +Dealt to Hero [Qh 2s] Player3: raises 250 to 500 Player4: folds Player2: folds -Player0: folds +Hero: folds Player8: folds Player7: folds Player1: folds @@ -2441,7 +2441,7 @@ Seat 2: Player1 (big blind) folded before Flop Seat 3: Player3 collected (800) Seat 4: Player4 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 (button) folded before Flop (didn't bet) @@ -2453,32 +2453,32 @@ Seat 2: Player1 (2804 in chips) Seat 3: Player3 (2844 in chips) Seat 4: Player4 (1715 in chips) Seat 6: Player2 (1875 in chips) -Seat 8: Player0 (3337 in chips) +Seat 8: Hero (3337 in chips) Seat 10: Player8 (1495 in chips) Player7: posts the ante 25 Player1: posts the ante 25 Player3: posts the ante 25 Player4: posts the ante 25 Player2: posts the ante 25 -Player0: posts the ante 25 +Hero: posts the ante 25 Player8: posts the ante 25 Player1: posts small blind 125 Player3: posts big blind 250 *** HOLE CARDS *** -Dealt to Player0 [Ad Ts] +Dealt to Hero [Ad Ts] Player4: folds Player2: folds -Player0: raises 500 to 750 +Hero: raises 500 to 750 Player8: folds Player7: raises 155 to 905 and is all-in Player1: folds Player3: folds -Player0: calls 155 +Hero: calls 155 *** FLOP *** [5h 7h As] *** TURN *** [5h 7h As] [8h] *** RIVER *** [5h 7h As 8h] [Jh] *** SHOW DOWN *** -Player0: shows [Ad Ts] (a pair of Aces) +Hero: shows [Ad Ts] (a pair of Aces) Player7: shows [Kh Kc] (a flush, King high) Player7 collected 2360 from pot *** SUMMARY *** @@ -2489,7 +2489,7 @@ Seat 2: Player1 (small blind) folded before Flop Seat 3: Player3 (big blind) folded before Flop Seat 4: Player4 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 showed [Ad Ts] and lost with a pair of Aces +Seat 8: Hero showed [Ad Ts] and lost with a pair of Aces Seat 10: Player8 folded before Flop (didn't bet) @@ -2501,29 +2501,29 @@ Seat 2: Player1 (2654 in chips) Seat 3: Player3 (2569 in chips) Seat 4: Player4 (1690 in chips) Seat 6: Player2 (1850 in chips) -Seat 8: Player0 (2407 in chips) +Seat 8: Hero (2407 in chips) Seat 10: Player8 (1470 in chips) Player7: posts the ante 30 Player1: posts the ante 30 Player3: posts the ante 30 Player4: posts the ante 30 Player2: posts the ante 30 -Player0: posts the ante 30 +Hero: posts the ante 30 Player8: posts the ante 30 Player3: posts small blind 150 Player4: posts big blind 300 *** HOLE CARDS *** -Dealt to Player0 [As Kc] +Dealt to Hero [As Kc] Player2: folds -Player0: raises 2077 to 2377 and is all-in +Hero: raises 2077 to 2377 and is all-in Player8: folds Player7: folds Player1: folds Player3: folds Player4: folds -Uncalled bet (2077) returned to Player0 -Player0 collected 960 from pot -Player0: doesn't show hand +Uncalled bet (2077) returned to Hero +Hero collected 960 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 960 | Rake 0 Seat 1: Player7 folded before Flop (didn't bet) @@ -2531,7 +2531,7 @@ Seat 2: Player1 (button) folded before Flop (didn't bet) Seat 3: Player3 (small blind) folded before Flop Seat 4: Player4 (big blind) folded before Flop Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 collected (960) +Seat 8: Hero collected (960) Seat 10: Player8 folded before Flop (didn't bet) @@ -2543,29 +2543,29 @@ Seat 2: Player1 (2624 in chips) Seat 3: Player3 (2389 in chips) Seat 4: Player4 (1360 in chips) Seat 6: Player2 (1820 in chips) -Seat 8: Player0 (3037 in chips) +Seat 8: Hero (3037 in chips) Seat 10: Player8 (1440 in chips) Player7: posts the ante 30 Player1: posts the ante 30 Player3: posts the ante 30 Player4: posts the ante 30 Player2: posts the ante 30 -Player0: posts the ante 30 +Hero: posts the ante 30 Player8: posts the ante 30 Player4: posts small blind 150 Player2: posts big blind 300 *** HOLE CARDS *** -Dealt to Player0 [2s 2d] -Player0: raises 2707 to 3007 and is all-in +Dealt to Hero [2s 2d] +Hero: raises 2707 to 3007 and is all-in Player8: folds Player7: folds Player1: folds Player3: folds Player4: folds Player2: folds -Uncalled bet (2707) returned to Player0 -Player0 collected 960 from pot -Player0: doesn't show hand +Uncalled bet (2707) returned to Hero +Hero collected 960 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 960 | Rake 0 Seat 1: Player7 folded before Flop (didn't bet) @@ -2573,7 +2573,7 @@ Seat 2: Player1 folded before Flop (didn't bet) Seat 3: Player3 (button) folded before Flop (didn't bet) Seat 4: Player4 (small blind) folded before Flop Seat 6: Player2 (big blind) folded before Flop -Seat 8: Player0 collected (960) +Seat 8: Hero collected (960) Seat 10: Player8 folded before Flop (didn't bet) @@ -2585,33 +2585,33 @@ Seat 2: Player1 (2594 in chips) Seat 3: Player3 (2359 in chips) Seat 4: Player4 (1180 in chips) Seat 6: Player2 (1490 in chips) -Seat 8: Player0 (3667 in chips) +Seat 8: Hero (3667 in chips) Seat 10: Player8 (1410 in chips) Player7: posts the ante 30 Player1: posts the ante 30 Player3: posts the ante 30 Player4: posts the ante 30 Player2: posts the ante 30 -Player0: posts the ante 30 +Hero: posts the ante 30 Player8: posts the ante 30 Player2: posts small blind 150 -Player0: posts big blind 300 +Hero: posts big blind 300 *** HOLE CARDS *** -Dealt to Player0 [Th Td] +Dealt to Hero [Th Td] Player8: folds Player7: folds Player1: raises 2264 to 2564 and is all-in Player3: folds Player4: folds Player2: folds -Player0: calls 2264 +Hero: calls 2264 *** FLOP *** [Ad Kc 7c] *** TURN *** [Ad Kc 7c] [9s] *** RIVER *** [Ad Kc 7c 9s] [Qs] *** SHOW DOWN *** -Player0: shows [Th Td] (a pair of Tens) +Hero: shows [Th Td] (a pair of Tens) Player1: shows [Tc 9c] (a pair of Nines) -Player0 collected 5488 from pot +Hero collected 5488 from pot Player1 finished the tournament in 7th place *** SUMMARY *** Total pot 5488 | Rake 0 @@ -2621,7 +2621,7 @@ Seat 2: Player1 showed [Tc 9c] and lost with a pair of Nines Seat 3: Player3 folded before Flop (didn't bet) Seat 4: Player4 (button) folded before Flop (didn't bet) Seat 6: Player2 (small blind) folded before Flop -Seat 8: Player0 (big blind) showed [Th Td] and won (5488) with a pair of Tens +Seat 8: Hero (big blind) showed [Th Td] and won (5488) with a pair of Tens Seat 10: Player8 folded before Flop (didn't bet) @@ -2632,34 +2632,34 @@ Seat 1: Player7 (2270 in chips) Seat 3: Player3 (2329 in chips) Seat 4: Player4 (1150 in chips) Seat 6: Player2 (1310 in chips) -Seat 8: Player0 (6561 in chips) +Seat 8: Hero (6561 in chips) Seat 10: Player8 (1380 in chips) Player7: posts the ante 30 Player3: posts the ante 30 Player4: posts the ante 30 Player2: posts the ante 30 -Player0: posts the ante 30 +Hero: posts the ante 30 Player8: posts the ante 30 -Player0: posts small blind 150 +Hero: posts small blind 150 Player8: posts big blind 300 *** HOLE CARDS *** -Dealt to Player0 [6d 7s] +Dealt to Hero [6d 7s] Player7: folds Player3: folds Player4: folds Player2: folds -Player0: raises 1800 to 2100 +Hero: raises 1800 to 2100 Player8: folds -Uncalled bet (1800) returned to Player0 -Player0 collected 780 from pot -Player0: doesn't show hand +Uncalled bet (1800) returned to Hero +Hero collected 780 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 780 | Rake 0 Seat 1: Player7 folded before Flop (didn't bet) Seat 3: Player3 folded before Flop (didn't bet) Seat 4: Player4 folded before Flop (didn't bet) Seat 6: Player2 (button) folded before Flop (didn't bet) -Seat 8: Player0 (small blind) collected (780) +Seat 8: Hero (small blind) collected (780) Seat 10: Player8 (big blind) folded before Flop @@ -2670,22 +2670,22 @@ Seat 1: Player7 (2240 in chips) Seat 3: Player3 (2299 in chips) Seat 4: Player4 (1120 in chips) Seat 6: Player2 (1280 in chips) -Seat 8: Player0 (7011 in chips) +Seat 8: Hero (7011 in chips) Seat 10: Player8 (1050 in chips) Player7: posts the ante 30 Player3: posts the ante 30 Player4: posts the ante 30 Player2: posts the ante 30 -Player0: posts the ante 30 +Hero: posts the ante 30 Player8: posts the ante 30 Player8: posts small blind 150 Player7: posts big blind 300 *** HOLE CARDS *** -Dealt to Player0 [Kc Jc] +Dealt to Hero [Kc Jc] Player3: raises 300 to 600 Player4: folds Player2: folds -Player0: folds +Hero: folds Player8: folds Player7: folds Uncalled bet (300) returned to Player3 @@ -2697,7 +2697,7 @@ Seat 1: Player7 (big blind) folded before Flop Seat 3: Player3 collected (930) Seat 4: Player4 folded before Flop (didn't bet) Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 8: Hero (button) folded before Flop (didn't bet) Seat 10: Player8 (small blind) folded before Flop @@ -2708,21 +2708,21 @@ Seat 1: Player7 (1910 in chips) Seat 3: Player3 (2899 in chips) Seat 4: Player4 (1090 in chips) Seat 6: Player2 (1250 in chips) -Seat 8: Player0 (6981 in chips) +Seat 8: Hero (6981 in chips) Seat 10: Player8 (870 in chips) Player7: posts the ante 30 Player3: posts the ante 30 Player4: posts the ante 30 Player2: posts the ante 30 -Player0: posts the ante 30 +Hero: posts the ante 30 Player8: posts the ante 30 Player7: posts small blind 150 Player3: posts big blind 300 *** HOLE CARDS *** -Dealt to Player0 [9c 4d] +Dealt to Hero [9c 4d] Player4: raises 760 to 1060 and is all-in Player2: folds -Player0: folds +Hero: folds Player8: folds Player7: folds Player3: folds @@ -2734,7 +2734,7 @@ Seat 1: Player7 (small blind) folded before Flop Seat 3: Player3 (big blind) folded before Flop Seat 4: Player4 collected (930) Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 (button) folded before Flop (didn't bet) @@ -2745,34 +2745,34 @@ Seat 1: Player7 (1730 in chips) Seat 3: Player3 (2569 in chips) Seat 4: Player4 (1690 in chips) Seat 6: Player2 (1220 in chips) -Seat 8: Player0 (6951 in chips) +Seat 8: Hero (6951 in chips) Seat 10: Player8 (840 in chips) Player7: posts the ante 30 Player3: posts the ante 30 Player4: posts the ante 30 Player2: posts the ante 30 -Player0: posts the ante 30 +Hero: posts the ante 30 Player8: posts the ante 30 Player3: posts small blind 150 Player4: posts big blind 300 *** HOLE CARDS *** -Dealt to Player0 [4d Ac] +Dealt to Hero [4d Ac] Player2: folds -Player0: raises 600 to 900 +Hero: raises 600 to 900 Player8: folds Player7: folds Player3: folds Player4: folds -Uncalled bet (600) returned to Player0 -Player0 collected 930 from pot -Player0: doesn't show hand +Uncalled bet (600) returned to Hero +Hero collected 930 from pot +Hero: doesn't show hand *** SUMMARY *** Total pot 930 | Rake 0 Seat 1: Player7 (button) folded before Flop (didn't bet) Seat 3: Player3 (small blind) folded before Flop Seat 4: Player4 (big blind) folded before Flop Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 collected (930) +Seat 8: Hero collected (930) Seat 10: Player8 folded before Flop (didn't bet) @@ -2783,19 +2783,19 @@ Seat 1: Player7 (1700 in chips) Seat 3: Player3 (2389 in chips) Seat 4: Player4 (1360 in chips) Seat 6: Player2 (1190 in chips) -Seat 8: Player0 (7551 in chips) +Seat 8: Hero (7551 in chips) Seat 10: Player8 (810 in chips) Player7: posts the ante 30 Player3: posts the ante 30 Player4: posts the ante 30 Player2: posts the ante 30 -Player0: posts the ante 30 +Hero: posts the ante 30 Player8: posts the ante 30 Player4: posts small blind 150 Player2: posts big blind 300 *** HOLE CARDS *** -Dealt to Player0 [9d 6s] -Player0: folds +Dealt to Hero [9d 6s] +Hero: folds Player8: raises 450 to 750 Player7: folds Player3: folds @@ -2810,7 +2810,7 @@ Seat 1: Player7 folded before Flop (didn't bet) Seat 3: Player3 (button) folded before Flop (didn't bet) Seat 4: Player4 (small blind) folded before Flop Seat 6: Player2 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) +Seat 8: Hero folded before Flop (didn't bet) Seat 10: Player8 collected (930) @@ -2821,36 +2821,36 @@ Seat 1: Player7 (1670 in chips) Seat 3: Player3 (2359 in chips) Seat 4: Player4 (1180 in chips) Seat 6: Player2 (860 in chips) -Seat 8: Player0 (7521 in chips) +Seat 8: Hero (7521 in chips) Seat 10: Player8 (1410 in chips) Player7: posts the ante 30 Player3: posts the ante 30 Player4: posts the ante 30 Player2: posts the ante 30 -Player0: posts the ante 30 +Hero: posts the ante 30 Player8: posts the ante 30 Player2: posts small blind 150 -Player0: posts big blind 300 +Hero: posts big blind 300 *** HOLE CARDS *** -Dealt to Player0 [Kd 7c] +Dealt to Hero [Kd 7c] Player8: folds Player7: folds Player3: folds Player4: folds Player2: raises 530 to 830 and is all-in -Player0: calls 530 +Hero: calls 530 *** FLOP *** [7s Kc 3s] *** TURN *** [7s Kc 3s] [9c] *** RIVER *** [7s Kc 3s 9c] [6s] *** SHOW DOWN *** Player2: shows [Ah 6c] (a pair of Sixes) -Player0: shows [Kd 7c] (two pair, Kings and Sevens) -Player0 collected 1840 from pot +Hero: shows [Kd 7c] (two pair, Kings and Sevens) +Hero collected 1840 from pot Player2 finished the tournament in 6th place Player7 finished the tournament in 1st place and received $40.00. Player3 finished the tournament in 1st place and received $40.00. Player4 finished the tournament in 1st place and received $40.00. -Player0 finished the tournament in 1st place and received $40.00. +Hero finished the tournament in 1st place and received $40.00. Player8 finished the tournament in 1st place and received $40.00. *** SUMMARY *** Total pot 1840 | Rake 0 @@ -2859,7 +2859,7 @@ Seat 1: Player7 folded before Flop (didn't bet) Seat 3: Player3 folded before Flop (didn't bet) Seat 4: Player4 (button) folded before Flop (didn't bet) Seat 6: Player2 (small blind) showed [Ah 6c] and lost with a pair of Sixes -Seat 8: Player0 (big blind) showed [Kd 7c] and won (1840) with two pair, Kings and Sevens +Seat 8: Hero (big blind) showed [Kd 7c] and won (1840) with two pair, Kings and Sevens Seat 10: Player8 folded before Flop (didn't bet) diff --git a/pyfpdb/regression-test-files/tour/Winamax/Flop/NLHE-EUR-STT-FullHist.txt b/pyfpdb/regression-test-files/tour/Winamax/Flop/NLHE-EUR-STT-FullHist.txt index 2443c0be..ed4be40f 100644 --- a/pyfpdb/regression-test-files/tour/Winamax/Flop/NLHE-EUR-STT-FullHist.txt +++ b/pyfpdb/regression-test-files/tour/Winamax/Flop/NLHE-EUR-STT-FullHist.txt @@ -1,6 +1,6 @@ Winamax Poker - Tournament "No Limit Hold'em" buyIn: 0,90€ + 0,10€ level: 0 - HandId: #7959970263859201-1-1288800933 - Holdem no limit (10/20) - 2010/11/03 17:15:33 UTC Table: 'No Limit Hold'em(1853325)#0' 10-max (real money) Seat #3 is the button -Seat 1: Player6 (1500) +Seat 1: Hero (1500) Seat 2: Player3 (1500) Seat 3: Player9 (1500) Seat 4: Player1 (1500) @@ -13,14 +13,14 @@ Seat 10: Player8 (1500) *** ANTE/BLINDS *** Player1 posts small blind 10 Player0 posts big blind 20 -Dealt to Player6 [Jd 7h] +Dealt to Hero [Jd 7h] *** PRE-FLOP *** Player7 folds Player4 folds Player2 folds Player5 calls 20 Player8 folds -Player6 calls 20 +Hero calls 20 Player3 calls 20 Player9 calls 20 Player1 calls 10 @@ -29,7 +29,7 @@ Player0 checks Player1 checks Player0 checks Player5 checks -Player6 bets 80 +Hero bets 80 Player3 calls 80 Player9 folds Player1 folds @@ -37,21 +37,21 @@ Player0 calls 80 Player5 folds *** TURN *** [Td 4c 5h][3h] Player0 checks -Player6 checks +Hero checks Player3 checks *** RIVER *** [Td 4c 5h 3h][Kc] Player0 checks -Player6 bets 240 +Hero bets 240 Player3 calls 240 Player0 folds *** SHOW DOWN *** -Player6 shows [Jd 7h] (High card : King) +Hero shows [Jd 7h] (High card : King) Player3 shows [Kd 4d] (Two pairs : Kings and 4) Player3 collected 840 from pot *** SUMMARY *** Total pot 840 | No rake Board: [Td 4c 5h 3h Kc] -Seat 1: Player6 showed [Jd 7h] and lost with High card : King +Seat 1: Hero showed [Jd 7h] and lost with High card : King Seat 2: Player3 showed [Kd 4d] and won 840 with Two pairs : Kings and 4 Seat 3: Player9 (button) folded on the flop Seat 4: Player1 (small blind) folded on the flop @@ -65,7 +65,7 @@ Seat 10: Player8 folded on the pre-flop Winamax Poker - Tournament "No Limit Hold'em" buyIn: 0,90€ + 0,10€ level: 0 - HandId: #7959970263859201-2-1288801071 - Holdem no limit (10/20) - 2010/11/03 17:17:51 UTC Table: 'No Limit Hold'em(1853325)#0' 10-max (real money) Seat #4 is the button -Seat 1: Player6 (1160) +Seat 1: Hero (1160) Seat 2: Player3 (2000) Seat 3: Player9 (1480) Seat 4: Player1 (1480) @@ -78,13 +78,13 @@ Seat 10: Player8 (1500) *** ANTE/BLINDS *** Player0 posts small blind 10 Player7 posts big blind 20 -Dealt to Player6 [7h 3s] +Dealt to Hero [7h 3s] *** PRE-FLOP *** Player4 folds Player2 folds Player5 calls 20 Player8 calls 20 -Player6 folds +Hero folds Player3 calls 20 Player9 folds Player1 calls 20 @@ -114,7 +114,7 @@ Player5 collected 1320 from pot *** SUMMARY *** Total pot 1.32k | No rake Board: [Jh 6h Qd 5s 3c] -Seat 1: Player6 folded on the pre-flop +Seat 1: Hero folded on the pre-flop Seat 2: Player3 folded on the flop Seat 3: Player9 folded on the pre-flop Seat 4: Player1 (button) folded on the turn @@ -128,7 +128,7 @@ Seat 10: Player8 folded on the turn Winamax Poker - Tournament "No Limit Hold'em" buyIn: 0,90€ + 0,10€ level: 0 - HandId: #7959970263859201-3-1288801160 - Holdem no limit (10/20) - 2010/11/03 17:19:20 UTC Table: 'No Limit Hold'em(1853325)#0' 10-max (real money) Seat #5 is the button -Seat 1: Player6 (1160) +Seat 1: Hero (1160) Seat 2: Player3 (1980) Seat 3: Player9 (1480) Seat 4: Player1 (1440) @@ -141,12 +141,12 @@ Seat 10: Player8 (1460) *** ANTE/BLINDS *** Player7 posts small blind 10 Player4 posts big blind 20 -Dealt to Player6 [4h 3d] +Dealt to Hero [4h 3d] *** PRE-FLOP *** Player2 folds Player5 calls 20 Player8 calls 20 -Player6 folds +Hero folds Player3 folds Player9 folds Player1 calls 20 @@ -165,7 +165,7 @@ Player7 collected 1380 from pot *** SUMMARY *** Total pot 1.38k | No rake Board: [Qd Kh 4s] -Seat 1: Player6 folded on the pre-flop +Seat 1: Hero folded on the pre-flop Seat 2: Player3 folded on the pre-flop Seat 3: Player9 folded on the pre-flop Seat 4: Player1 folded on the flop @@ -179,7 +179,7 @@ Seat 10: Player8 folded on the flop Winamax Poker - Tournament "No Limit Hold'em" buyIn: 0,90€ + 0,10€ level: 0 - HandId: #7959970263859201-4-1288801277 - Holdem no limit (10/20) - 2010/11/03 17:21:17 UTC Table: 'No Limit Hold'em(1853325)#0' 10-max (real money) Seat #6 is the button -Seat 1: Player6 (1160) +Seat 1: Hero (1160) Seat 2: Player3 (1980) Seat 3: Player9 (1480) Seat 4: Player1 (1400) @@ -192,11 +192,11 @@ Seat 10: Player8 (1420) *** ANTE/BLINDS *** Player4 posts small blind 10 Player2 posts big blind 20 -Dealt to Player6 [Qc 7d] +Dealt to Hero [Qc 7d] *** PRE-FLOP *** Player5 calls 20 Player8 folds -Player6 folds +Hero folds Player3 folds Player9 folds Player1 calls 20 @@ -233,7 +233,7 @@ Player7 collected 480 from pot *** SUMMARY *** Total pot 480 | No rake Board: [9s 7h 5h Ts 7s] -Seat 1: Player6 folded on the pre-flop +Seat 1: Hero folded on the pre-flop Seat 2: Player3 folded on the pre-flop Seat 3: Player9 folded on the pre-flop Seat 4: Player1 showed [4c 4d] and lost with Two pairs : 7 and 4 @@ -247,7 +247,7 @@ Seat 10: Player8 folded on the pre-flop Winamax Poker - Tournament "No Limit Hold'em" buyIn: 0,90€ + 0,10€ level: 1 - HandId: #7959970263859201-5-1288801360 - Holdem no limit (10/20) - 2010/11/03 17:22:40 UTC Table: 'No Limit Hold'em(1853325)#0' 10-max (real money) Seat #7 is the button -Seat 1: Player6 (1160) +Seat 1: Hero (1160) Seat 2: Player3 (1980) Seat 3: Player9 (1480) Seat 4: Player1 (1200) @@ -260,10 +260,10 @@ Seat 10: Player8 (1420) *** ANTE/BLINDS *** Player2 posts small blind 10 Player5 posts big blind 20 -Dealt to Player6 [Kd Ah] +Dealt to Hero [Kd Ah] *** PRE-FLOP *** Player8 calls 20 -Player6 raises 70 to 90 +Hero raises 70 to 90 Player3 folds Player9 calls 90 Player1 calls 90 @@ -276,7 +276,7 @@ Player8 calls 70 *** FLOP *** [2s 5h 3h] Player5 checks Player8 checks -Player6 bets 365 +Hero bets 365 Player9 folds Player1 folds Player0 folds @@ -285,17 +285,17 @@ Player4 folds Player5 folds Player8 folds *** TURN *** [2s 5h 3h][6d] -Player6 bets 705 and is all-in +Hero bets 705 and is all-in Player7 calls 705 *** RIVER *** [2s 5h 3h 6d][5s] *** SHOW DOWN *** -Player6 shows [Kd Ah] (One pair : 5) +Hero shows [Kd Ah] (One pair : 5) Player7 shows [7d 7h] (Two pairs : 7 and 5) Player7 collected 2870 from pot *** SUMMARY *** Total pot 2.87k | No rake Board: [2s 5h 3h 6d 5s] -Seat 1: Player6 showed [Kd Ah] and lost with One pair : 5 +Seat 1: Hero showed [Kd Ah] and lost with One pair : 5 Seat 2: Player3 folded on the pre-flop Seat 3: Player9 folded on the flop Seat 4: Player1 folded on the flop From b465a592deba3ccadf509c2444ea452f7ab0643b Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Mon, 6 Dec 2010 11:41:59 +0800 Subject: [PATCH 091/162] Move regression test file from old folder --- .../cash/Everleaf}/Everleaf-nlhe-cash-usd.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {regression-test => pyfpdb/regression-test-files/cash/Everleaf}/Everleaf-nlhe-cash-usd.txt (100%) diff --git a/regression-test/Everleaf-nlhe-cash-usd.txt b/pyfpdb/regression-test-files/cash/Everleaf/Everleaf-nlhe-cash-usd.txt similarity index 100% rename from regression-test/Everleaf-nlhe-cash-usd.txt rename to pyfpdb/regression-test-files/cash/Everleaf/Everleaf-nlhe-cash-usd.txt From bc5cf4c92a00188fb72ec02ef7702677f65345f2 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Mon, 6 Dec 2010 11:43:09 +0800 Subject: [PATCH 092/162] Remove tracked .gitignore fix HUD_main permissions --- .gitignore | 2 -- pyfpdb/HUD_main.pyw | 0 2 files changed, 2 deletions(-) delete mode 100644 .gitignore mode change 100644 => 100755 pyfpdb/HUD_main.pyw diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 1670801e..00000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ - -*.pyc \ No newline at end of file diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw old mode 100644 new mode 100755 From 5fb23b393876fdf6c68bc5bbb92ca6ec33f0bb81 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Mon, 6 Dec 2010 11:49:28 +0800 Subject: [PATCH 093/162] Move getSqlPlayerIDs next to the other version of the function --- pyfpdb/Database.py | 98 +++++++++++++++++++++++----------------------- 1 file changed, 50 insertions(+), 48 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index b644cbd5..e4caad33 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -913,6 +913,56 @@ class Database: result = c.fetchall() return result + def resetPlayerIDs(self): + self.pcache = None + + def getSqlPlayerIDs(self, pnames, siteid): + result = {} + if(self.pcache == None): + self.pcache = LambdaDict(lambda key:self.insertPlayer(key[0], key[1])) + + for player in pnames: + result[player] = self.pcache[(player,siteid)] + # NOTE: Using the LambdaDict does the same thing as: + #if player in self.pcache: + # #print "DEBUG: cachehit" + # pass + #else: + # self.pcache[player] = self.insertPlayer(player, siteid) + #result[player] = self.pcache[player] + + return result + + def insertPlayer(self, name, site_id): + result = None + _name = Charset.to_db_utf8(name) + c = self.get_cursor() + 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)) + + tmp = c.fetchone() + if (tmp == None): #new player + c.execute ("INSERT INTO Players (name, siteId) VALUES (%s, %s)".replace('%s',self.sql.query['placeholder']) + ,(_name, site_id)) + #Get last id might be faster here. + #c.execute ("SELECT id FROM Players WHERE name=%s", (name,)) + result = self.get_last_insert_id(c) + else: + result = tmp[1] + return result + + def get_last_insert_id(self, cursor=None): ret = None try: @@ -2041,54 +2091,6 @@ class Database: #FIXME: recognise currency return tmp[0] - def resetPlayerIDs(self): - self.pcache = None - - def getSqlPlayerIDs(self, pnames, siteid): - result = {} - if(self.pcache == None): - self.pcache = LambdaDict(lambda key:self.insertPlayer(key[0], key[1])) - - for player in pnames: - result[player] = self.pcache[(player,siteid)] - # NOTE: Using the LambdaDict does the same thing as: - #if player in self.pcache: - # #print "DEBUG: cachehit" - # pass - #else: - # self.pcache[player] = self.insertPlayer(player, siteid) - #result[player] = self.pcache[player] - - return result - - def insertPlayer(self, name, site_id): - result = None - _name = Charset.to_db_utf8(name) - c = self.get_cursor() - 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)) - - tmp = c.fetchone() - if (tmp == None): #new player - c.execute ("INSERT INTO Players (name, siteId) VALUES (%s, %s)".replace('%s',self.sql.query['placeholder']) - ,(_name, site_id)) - #Get last id might be faster here. - #c.execute ("SELECT id FROM Players WHERE name=%s", (name,)) - result = self.get_last_insert_id(c) - else: - result = tmp[1] - return result def insertGameTypes(self, row): c = self.get_cursor() From 96b55a5bff3c630266b36dc10d98a31fed871fd9 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Mon, 6 Dec 2010 12:48:25 +0800 Subject: [PATCH 094/162] Stars: Fix regression. New test file regression-test-files/cash/Stars/Flop/LHE-10max-USD-1.00-2.00-No_max_seats.txt crashed Stars. Put guard to make sure MAX has a value --- pyfpdb/PokerStarsToFpdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index d17067d2..17474d4b 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -297,7 +297,7 @@ class PokerStars(HandHistoryConverter): hand.tablename = info[key] if key == 'BUTTON': hand.buttonpos = info[key] - if key == 'MAX': + if key == 'MAX' and info[key] != None: hand.maxseats = int(info[key]) if key == 'MIXED': From 51011380ba0536ca62a8c232cad74dbcae003d0a Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Mon, 6 Dec 2010 12:51:53 +0800 Subject: [PATCH 095/162] Stove: Start gettextification --- pyfpdb/Stove.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pyfpdb/Stove.py b/pyfpdb/Stove.py index 0fd61a29..5b6f1eea 100755 --- a/pyfpdb/Stove.py +++ b/pyfpdb/Stove.py @@ -9,7 +9,9 @@ # it under the terms of the GNU General Public License as published by # the Free Software Foundation, version 3 of the License. # -#TODO: gettextify + +import L10n +_ = L10n.get_translation() import sys, random import pokereval @@ -256,7 +258,7 @@ def odds_for_range(holder): b.append("__") if monte_carlo: - print 'No board given. Using Monte-Carlo simulation...' + print _('No board given. Using Monte-Carlo simulation...') iters = random.randint(25000, 125000) else: iters = -1 From 9235d12d590f6ec533ff7931418e65ec2caad3e5 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Mon, 6 Dec 2010 13:45:58 +0800 Subject: [PATCH 096/162] Stars: Fix issue where player collected pot As both big blind and the button - something i wasn't sure was possible --- pyfpdb/PokerStarsToFpdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index 17474d4b..0e934db3 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -153,7 +153,7 @@ class PokerStars(HandHistoryConverter): (\scards?(\s\[(?P<DISCARDED>.+?)\])?)?\s*$""" % subst, re.MULTILINE|re.VERBOSE) self.re_ShowdownAction = re.compile(r"^%s: shows \[(?P<CARDS>.*)\]" % player_re, re.MULTILINE) - self.re_CollectPot = re.compile(r"Seat (?P<SEAT>[0-9]+): %(PLYR)s (\(button\) |\(small blind\) |\(big blind\) |\(button\) \(small blind\) )?(collected|showed \[.*\] and won) \(%(CUR)s(?P<POT>[.\d]+)\)(, mucked| with.*|)" % subst, re.MULTILINE) + self.re_CollectPot = re.compile(r"Seat (?P<SEAT>[0-9]+): %(PLYR)s (\(button\) |\(small blind\) |\(big blind\) |\(button\) \(small blind\) |\(button\) \(big blind\) )?(collected|showed \[.*\] and won) \(%(CUR)s(?P<POT>[.\d]+)\)(, mucked| with.*|)" % subst, re.MULTILINE) self.re_sitsOut = re.compile("^%s sits out" % player_re, re.MULTILINE) self.re_ShownCards = re.compile("^Seat (?P<SEAT>[0-9]+): %s (\(.*\) )?(?P<SHOWED>showed|mucked) \[(?P<CARDS>.*)\].*" % player_re, re.MULTILINE) From cfab629779b02452f0e3c4e79ea54cc7de18a355 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Mon, 6 Dec 2010 14:16:59 +0800 Subject: [PATCH 097/162] Regression: New Stars LHE file Adds a file with a hand where the big blind is also the button --- ...-1.00-200508.BB.and.Button.same.player.txt | 16 ++ ...00-200508.BB.and.Button.same.player.txt.hp | 188 ++++++++++++++++++ 2 files changed, 204 insertions(+) create mode 100644 pyfpdb/regression-test-files/cash/Stars/Flop/LHE-USD-1.00-200508.BB.and.Button.same.player.txt create mode 100644 pyfpdb/regression-test-files/cash/Stars/Flop/LHE-USD-1.00-200508.BB.and.Button.same.player.txt.hp diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-USD-1.00-200508.BB.and.Button.same.player.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-USD-1.00-200508.BB.and.Button.same.player.txt new file mode 100644 index 00000000..31b92b9d --- /dev/null +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-USD-1.00-200508.BB.and.Button.same.player.txt @@ -0,0 +1,16 @@ +PokerStars Game #2344646393: Hold'em Limit ($1/$2 USD) - 2005/08/15 14:27:10 ET +Table 'Phad' Seat #6 is the button +Seat 6: Hero ($40 in chips) +Seat 7: fblm2002 ($24.75 in chips) +fblm2002: posts small blind $0.50 +Hero: posts big blind $1 +*** HOLE CARDS *** +Dealt to Hero [3s 4s] +fblm2002: folds +Hero collected $1 from pot +*** SUMMARY *** +Total pot $1 | Rake $0 +Seat 6: Hero (button) (big blind) collected ($1) +Seat 7: fblm2002 (small blind) folded before Flop + + diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-USD-1.00-200508.BB.and.Button.same.player.txt.hp b/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-USD-1.00-200508.BB.and.Button.same.player.txt.hp new file mode 100644 index 00000000..9ff13bea --- /dev/null +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/LHE-USD-1.00-200508.BB.and.Button.same.player.txt.hp @@ -0,0 +1,188 @@ +{ u'Hero': { 'card1': 41, + 'card2': 42, + 'card3': 0, + 'card4': 0, + 'card5': 0, + 'card6': 0, + 'card7': 0, + 'foldBbToStealChance': False, + 'foldSbToStealChance': False, + 'foldToOtherRaisedStreet0': False, + 'foldToOtherRaisedStreet1': False, + 'foldToOtherRaisedStreet2': False, + 'foldToOtherRaisedStreet3': False, + 'foldToOtherRaisedStreet4': False, + 'foldToStreet1CBChance': False, + 'foldToStreet1CBDone': False, + 'foldToStreet2CBChance': False, + 'foldToStreet2CBDone': False, + 'foldToStreet3CBChance': False, + 'foldToStreet3CBDone': False, + 'foldToStreet4CBChance': False, + 'foldToStreet4CBDone': False, + 'foldedBbToSteal': False, + 'foldedSbToSteal': False, + 'other3BStreet0': False, + 'other4BStreet0': False, + 'otherRaisedStreet0': False, + 'otherRaisedStreet1': False, + 'otherRaisedStreet2': False, + 'otherRaisedStreet3': False, + 'otherRaisedStreet4': False, + 'position': 'B', + 'raiseFirstInChance': False, + 'raisedFirstIn': False, + 'rake': 0, + 'sawShowdown': False, + 'seatNo': 6, + 'sitout': False, + 'startCards': 28, + 'startCash': 4000, + 'street0Aggr': False, + 'street0Bets': 0, + 'street0Calls': 0, + 'street0Raises': 0, + 'street0VPI': False, + 'street0_3BChance': False, + 'street0_3BDone': False, + 'street0_4BChance': False, + 'street0_4BDone': False, + 'street1Aggr': False, + 'street1Bets': 0, + 'street1CBChance': False, + 'street1CBDone': False, + 'street1Calls': 0, + 'street1CheckCallRaiseChance': False, + 'street1CheckCallRaiseDone': False, + 'street1Raises': 0, + 'street1Seen': False, + 'street2Aggr': False, + 'street2Bets': 0, + 'street2CBChance': False, + 'street2CBDone': False, + 'street2Calls': 0, + 'street2CheckCallRaiseChance': False, + 'street2CheckCallRaiseDone': False, + 'street2Raises': 0, + 'street2Seen': False, + 'street3Aggr': False, + 'street3Bets': 0, + 'street3CBChance': False, + 'street3CBDone': False, + 'street3Calls': 0, + 'street3CheckCallRaiseChance': False, + 'street3CheckCallRaiseDone': False, + 'street3Raises': 0, + 'street3Seen': False, + 'street4Aggr': False, + 'street4Bets': 0, + 'street4CBChance': False, + 'street4CBDone': False, + 'street4Calls': 0, + 'street4CheckCallRaiseChance': False, + 'street4CheckCallRaiseDone': False, + 'street4Raises': 0, + 'street4Seen': False, + 'totalProfit': 50, + 'tourneyTypeId': None, + 'tourneysPlayersIds': None, + 'winnings': 100, + 'wonAtSD': 0.0, + 'wonWhenSeenStreet1': 0.0, + 'wonWhenSeenStreet2': 0.0, + 'wonWhenSeenStreet3': 0.0, + 'wonWhenSeenStreet4': 0.0}, + u'fblm2002': { 'card1': 0, + 'card2': 0, + 'card3': 0, + 'card4': 0, + 'card5': 0, + 'card6': 0, + 'card7': 0, + 'foldBbToStealChance': False, + 'foldSbToStealChance': False, + 'foldToOtherRaisedStreet0': False, + 'foldToOtherRaisedStreet1': False, + 'foldToOtherRaisedStreet2': False, + 'foldToOtherRaisedStreet3': False, + 'foldToOtherRaisedStreet4': False, + 'foldToStreet1CBChance': False, + 'foldToStreet1CBDone': False, + 'foldToStreet2CBChance': False, + 'foldToStreet2CBDone': False, + 'foldToStreet3CBChance': False, + 'foldToStreet3CBDone': False, + 'foldToStreet4CBChance': False, + 'foldToStreet4CBDone': False, + 'foldedBbToSteal': False, + 'foldedSbToSteal': False, + 'other3BStreet0': False, + 'other4BStreet0': False, + 'otherRaisedStreet0': False, + 'otherRaisedStreet1': False, + 'otherRaisedStreet2': False, + 'otherRaisedStreet3': False, + 'otherRaisedStreet4': False, + 'position': 'S', + 'raiseFirstInChance': True, + 'raisedFirstIn': False, + 'rake': 0, + 'sawShowdown': False, + 'seatNo': 7, + 'sitout': False, + 'startCards': 0, + 'startCash': 2475, + 'street0Aggr': False, + 'street0Bets': 0, + 'street0Calls': 0, + 'street0Raises': 0, + 'street0VPI': False, + 'street0_3BChance': False, + 'street0_3BDone': False, + 'street0_4BChance': False, + 'street0_4BDone': False, + 'street1Aggr': False, + 'street1Bets': 0, + 'street1CBChance': False, + 'street1CBDone': False, + 'street1Calls': 0, + 'street1CheckCallRaiseChance': False, + 'street1CheckCallRaiseDone': False, + 'street1Raises': 0, + 'street1Seen': False, + 'street2Aggr': False, + 'street2Bets': 0, + 'street2CBChance': False, + 'street2CBDone': False, + 'street2Calls': 0, + 'street2CheckCallRaiseChance': False, + 'street2CheckCallRaiseDone': False, + 'street2Raises': 0, + 'street2Seen': False, + 'street3Aggr': False, + 'street3Bets': 0, + 'street3CBChance': False, + 'street3CBDone': False, + 'street3Calls': 0, + 'street3CheckCallRaiseChance': False, + 'street3CheckCallRaiseDone': False, + 'street3Raises': 0, + 'street3Seen': False, + 'street4Aggr': False, + 'street4Bets': 0, + 'street4CBChance': False, + 'street4CBDone': False, + 'street4Calls': 0, + 'street4CheckCallRaiseChance': False, + 'street4CheckCallRaiseDone': False, + 'street4Raises': 0, + 'street4Seen': False, + 'totalProfit': -50, + 'tourneyTypeId': None, + 'tourneysPlayersIds': None, + 'winnings': 0, + 'wonAtSD': 0.0, + 'wonWhenSeenStreet1': 0.0, + 'wonWhenSeenStreet2': 0.0, + 'wonWhenSeenStreet3': 0.0, + 'wonWhenSeenStreet4': 0.0}} From aef3186cfb386693b5dd5430db05225f8823335d Mon Sep 17 00:00:00 2001 From: Eric Blade <blade.eric@gmail.com> Date: Mon, 6 Dec 2010 18:04:54 -0500 Subject: [PATCH 098/162] remove commented log that ray removed --- pyfpdb/HUD_main.pyw | 3 --- 1 file changed, 3 deletions(-) diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw index b7b3fa28..fd85d005 100644 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -291,9 +291,6 @@ class HUD_main(object): log.error(_('Table "%s" no longer exists\n') % table_name) return -# t6 = time.time() -# log.info(_("HUD_main.read_stdin: hand read in %4.3f seconds (%4.3f,%4.3f,%4.3f,%4.3f,%4.3f,%4.3f)") -# % (t6 - t0,t1 - t0,t2 - t0,t3 - t0,t4 - t0,t5 - t0,t6 - t0)) self.db_connection.connection.rollback() if type == "tour": try: From 3fbaa0b0fba7f4538911d9d5830bec0372d7f094 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Tue, 7 Dec 2010 10:20:20 -0500 Subject: [PATCH 099/162] Don't try to close HUD mw twice. --- pyfpdb/HUD_main.pyw | 1 - 1 file changed, 1 deletion(-) mode change 100755 => 100644 pyfpdb/HUD_main.pyw diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw old mode 100755 new mode 100644 index 47cdfae0..a2aefc0f --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -312,7 +312,6 @@ def idle_kill(hud_main, table): try: if table in hud_main.hud_dict: hud_main.hud_dict[table].kill() - hud_main.hud_dict[table].main_window.destroy() hud_main.vb.remove(hud_main.hud_dict[table].tablehudlabel) del(hud_main.hud_dict[table]) hud_main.main_window.resize(1, 1) From a4dff38c9f38973c53a9f8e7dbda52090dc6994c Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Tue, 7 Dec 2010 10:24:06 -0500 Subject: [PATCH 100/162] Ensure table.key is always temp_key calculated in HUD_main. --- pyfpdb/HUD_main.pyw | 1 + pyfpdb/TableWindow.py | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw index a2aefc0f..38d435bc 100644 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -270,6 +270,7 @@ class HUD_main(object): table_name = "%s %s" % (tour_number, tab_number) log.error("HUD create: table name %s not found, skipping." % table_name) else: + tablewindow.key = temp_key tablewindow.max = max tablewindow.site = site_name # Test that the table window still exists diff --git a/pyfpdb/TableWindow.py b/pyfpdb/TableWindow.py index ea2596de..1ee51650 100644 --- a/pyfpdb/TableWindow.py +++ b/pyfpdb/TableWindow.py @@ -126,13 +126,11 @@ class Table_Window(object): self.type = "tour" table_kwargs = dict(tournament = self.tournament, table_number = self.table) self.tableno_re = getTableNoRe(self.config, self.site, tournament = self.tournament) - self.key = "%s Table %s" % (tournament, str(self.table)) elif table_name is not None: self.name = table_name self.type = "cash" self.tournament = None table_kwargs = dict(table_name = table_name) - self.key = table_name # used as key for the hud_dict in HUD_main else: return None From 95d14911f315fc14a40e620860170f3553fb0f4e Mon Sep 17 00:00:00 2001 From: "chaz@pokeit.co" <chaz@pokeit.co> Date: Wed, 8 Dec 2010 16:32:26 -0500 Subject: [PATCH 101/162] Fixed a variety of bugs in storeSessionsCache() and the corresponding SQL statements --- pyfpdb/Database.py | 125 +++++++++++++++++++++------------------------ pyfpdb/SQL.py | 95 ++++++++++++++++++++++------------ 2 files changed, 119 insertions(+), 101 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 567ab166..cf69ddb0 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -2026,19 +2026,25 @@ class Database: pass def storeSessionsCache(self, pids, startTime, game, pdata): - """Update cached sessions. If update fails because no record exists, do an insert.""" + """Update cached sessions. If update fails because no record exists, do an insert""" - THRESHOLD = timedelta(seconds=int(self.sessionTimeout * 60)) #convert minutes to seconds + THRESHOLD = timedelta(seconds=int(self.sessionTimeout * 60)) bigBet = int(Decimal(game['bb'])*200) - check_sessionscache = self.sql.query['check_sessionscache'] - check_sessionscache = check_sessionscache.replace('%s', self.sql.query['placeholder']) - update_sessionscache = self.sql.query['update_sessionscache'] - update_sessionscache = update_sessionscache.replace('%s', self.sql.query['placeholder']) + select_sessionscache = self.sql.query['select_sessionscache'] + select_sessionscache = select_sessionscache.replace('%s', self.sql.query['placeholder']) + select_sessionscache_mid = self.sql.query['select_sessionscache_mid'] + select_sessionscache_mid = select_sessionscache_mid.replace('%s', self.sql.query['placeholder']) + select_sessionscache_start = self.sql.query['select_sessionscache_start'] + select_sessionscache_start = select_sessionscache_start.replace('%s', self.sql.query['placeholder']) + + update_sessionscache_mid = self.sql.query['update_sessionscache_mid'] + update_sessionscache_mid = update_sessionscache_mid.replace('%s', self.sql.query['placeholder']) update_sessionscache_start = self.sql.query['update_sessionscache_start'] update_sessionscache_start = update_sessionscache_start.replace('%s', self.sql.query['placeholder']) update_sessionscache_end = self.sql.query['update_sessionscache_end'] update_sessionscache_end = update_sessionscache_end.replace('%s', self.sql.query['placeholder']) + insert_sessionscache = self.sql.query['insert_sessionscache'] insert_sessionscache = insert_sessionscache.replace('%s', self.sql.query['placeholder']) merge_sessionscache = self.sql.query['merge_sessionscache'] @@ -2083,77 +2089,62 @@ class Database: cursor = self.get_cursor() for row in inserts: - check = [] - check.append(row[-1]-THRESHOLD) - check.append(row[-1]+THRESHOLD) - num = cursor.execute(check_sessionscache, check) - #DEBUG log.info(_("check yurself: '%s'") % (num.rowcount)) - - # Try to do the update first: - if ((self.backend == self.PGSQL and cursor.statusmessage == "UPDATE 1") - or (self.backend == self.MYSQL_INNODB and num == 1) - or (self.backend == self.SQLITE and num.rowcount == 1)): - update = row + row[-1:] - mid = cursor.execute(update_sessionscache, update) - #DEBUG log.info(_("update '%s' rows, no change to session times ") % str(mid.rowcount)) - if ((self.backend == self.PGSQL and cursor.statusmessage != "UPDATE 1") - or (self.backend == self.MYSQL_INNODB and mid == 0) - or (self.backend == self.SQLITE and mid.rowcount == 0)): - update_start = row[-1:] + row + check - start = cursor.execute(update_sessionscache_start, update_start) - #DEBUG log.info(_("update '%s' rows, and updated sessionStart") % str(start.rowcount)) - if ((self.backend == self.PGSQL and cursor.statusmessage != "UPDATE 1") - or (self.backend == self.MYSQL_INNODB and start == 0) - or (self.backend == self.SQLITE and start.rowcount == 0)): - update_end = row[-1:] + row + check - end = cursor.execute(update_sessionscache_end, update_end) - #DEBUG log.info(_("update '%s' rows, and updated sessionEnd") % str(end.rowcount)) + threshold = [] + threshold.append(row[-1]-THRESHOLD) + threshold.append(row[-1]+THRESHOLD) + cursor.execute(select_sessionscache, threshold) + num = cursor.rowcount + if (num == 1): + # Try to do the update first: + #print "DEBUG: found 1 record to update" + update_mid = row + row[-1:] + cursor.execute(select_sessionscache_mid, update_mid[-2:]) + mid = cursor.rowcount + if (mid == 0): + update_startend = row[-1:] + row + threshold + cursor.execute(select_sessionscache_start, update_startend[-3:]) + start = cursor.rowcount + if (start == 0): + #print "DEBUG:", start, " start record found. Update stats and start time" + cursor.execute(update_sessionscache_end, update_startend) else: - pass + #print "DEBUG: 1 end record found. Update stats and end time time" + cursor.execute(update_sessionscache_start, update_startend) else: - pass - elif ((self.backend == self.PGSQL and cursor.statusmessage != "UPDATE 1" and "UPDATE" in cursor.statusmessage) - or (self.backend == self.MYSQL_INNODB and num > 1) - or (self.backend == self.SQLITE and num.rowcount > 1)): - #DEBUG log.info(_("multiple matches")) - pass - #merge two sessions if there are multiple matches - cursor.execute(merge_sessionscache, check) + #print "DEBUG: update stats mid-session" + cursor.execute(update_sessionscache_mid, update_mid) + elif (num > 1): + # Multiple matches found - merge them into one session and update: + #print "DEBUG:", num, "matches found" + cursor.execute(merge_sessionscache, threshold) merge = cursor.fetchone() - cursor.execute(delete_sessions, check) + cursor.execute(delete_sessions, threshold) cursor.execute(insert_sessionscache, merge) - update = row + row[-1:] - mid = cursor.execute(update_sessionscache, update) - #DEBUG log.info(_("update '%s' rows, no change to session times ") % str(mid.rowcount)) - if ((self.backend == self.PGSQL and cursor.statusmessage != "UPDATE 1") - or (self.backend == self.MYSQL_INNODB and mid == 0) - or (self.backend == self.SQLITE and mid.rowcount == 0)): - update_start = row[-1:] + row + check - start = cursor.execute(update_sessionscache_start, update_start) - #DEBUG log.info(_("update '%s' rows, and updated sessionStart") % str(start.rowcount)) - if ((self.backend == self.PGSQL and cursor.statusmessage != "UPDATE 1") - or (self.backend == self.MYSQL_INNODB and start == 0) - or (self.backend == self.SQLITE and start.rowcount == 0)): - update_end = row[-1:] + row + check - end = cursor.execute(update_sessionscache_end, update_end) - #DEBUG log.info(_("update '%s' rows, and updated sessionEnd") % str(end.rowcount)) + update_mid = row + row[-1:] + cursor.execute(select_sessionscache_mid, update_mid[-2:]) + mid = cursor.rowcount + if (mid == 0): + update_startend = row[-1:] + row + threshold + cursor.execute(select_sessionscache_start, update_startend[-3:]) + start = cursor.rowcount + if (start == 0): + #print "DEBUG:", start, " start record found. Update stats and start time" + cursor.execute(update_sessionscache_end, update_startend) else: - pass + #print "DEBUG: 1 end record found. Update stats and end time time" + cursor.execute(update_sessionscache_start, update_startend) else: - pass - - elif ((self.backend == self.PGSQL and cursor.statusmessage != "UPDATE 1") - or (self.backend == self.MYSQL_INNODB and num == 0) - or (self.backend == self.SQLITE and num.rowcount == 0)): - #move the last 2 items in WHERE clause of row from the end of the array - # to the beginning for the INSERT statement - #print "DEBUG: using INSERT: %s" % num + #print "DEBUG: update stats mid-session" + cursor.execute(update_sessionscache_mid, update_mid) + elif (num == 0): + # No matches found, insert new session: insert = row + row[-1:] insert = insert[-2:] + insert[:-2] - #DEBUG log.info(_("insert row: '%s'") % (insert)) + #print "DEBUG: No matches found. Insert record", insert cursor.execute(insert_sessionscache, insert) else: - pass + # Something bad happened + pass def isDuplicate(self, gametypeID, siteHandNo): dup = False diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index ae54c880..f6bb068b 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -4019,26 +4019,57 @@ class Sql: (case when tourneyTypeId+0=%s then 1 else 0 end) end)=1 AND styleKey=%s""" - self.query['check_sessionscache'] = """ - UPDATE SessionsCache SET - sessionStart=sessionStart, - sessionEnd=sessionEnd, - ringHDs=ringHDs, - tourHDs=tourHDs, - totalProfit=totalProfit, - bigBets=bigBets - WHERE sessionEnd>=%s - AND sessionStart<=%s""" - - self.query['insert_sessionscache'] = """ - INSERT INTO SessionsCache ( - sessionStart, + self.query['get_hero_hudcache_start'] = """select min(hc.styleKey) + from HudCache hc + where hc.playerId in <playerid_list> + and hc.styleKey like 'd%'""" + + #################################### + # Queries to rebuild/modify sessionscache + #################################### + + self.query['select_sessionscache'] = """ + SELECT sessionStart, sessionEnd, ringHDs, tourHDs, totalProfit, - bigBets) - VALUES (%s, %s, %s, %s, %s, %s)""" + bigBets + FROM SessionsCache + WHERE sessionEnd>=%s + AND sessionStart<=%s""" + + self.query['select_sessionscache_mid'] = """ + SELECT sessionStart, + sessionEnd, + ringHDs, + tourHDs, + totalProfit, + bigBets + FROM SessionsCache + WHERE sessionEnd>=%s + AND sessionStart<=%s""" + + self.query['select_sessionscache_start'] = """ + SELECT sessionStart, + sessionEnd, + ringHDs, + tourHDs, + totalProfit, + bigBets + FROM SessionsCache + WHERE sessionStart>%s + AND sessionEnd>=%s + AND sessionStart<=%s""" + + self.query['update_sessionscache_mid'] = """ + UPDATE SessionsCache SET + ringHDs=ringHDs+%s, + tourHDs=tourHDs+%s, + totalProfit=totalProfit+%s, + bigBets=bigBets+%s + WHERE sessionStart<=%s + AND sessionEnd>=%s""" self.query['update_sessionscache_start'] = """ UPDATE SessionsCache SET @@ -4050,7 +4081,7 @@ class Sql: WHERE sessionStart>%s AND sessionEnd>=%s AND sessionStart<=%s""" - + self.query['update_sessionscache_end'] = """ UPDATE SessionsCache SET sessionEnd=%s, @@ -4062,30 +4093,26 @@ class Sql: AND sessionEnd>=%s AND sessionStart<=%s""" - self.query['update_sessionscache'] = """ - UPDATE SessionsCache SET - ringHDs=ringHDs+%s, - tourHDs=tourHDs+%s, - totalProfit=totalProfit+%s, - bigBets=bigBets+%s - WHERE sessionStart<=%s - AND sessionEnd>=%s""" + self.query['insert_sessionscache'] = """ + INSERT INTO SessionsCache ( + sessionStart, + sessionEnd, + ringHDs, + tourHDs, + totalProfit, + bigBets) + VALUES (%s, %s, %s, %s, %s, %s)""" self.query['merge_sessionscache'] = """ SELECT min(sessionStart), max(sessionEnd), sum(ringHDs), sum(tourHDs), sum(totalProfit), sum(bigBets) FROM SessionsCache - WHERE sessionStart>=%s - AND sessionEnd<=%s""" + WHERE sessionEnd>=%s + AND sessionStart<=%s""" self.query['delete_sessions'] = """ DELETE FROM SessionsCache - WHERE sessionStart>=%s - AND sessionEnd<=%s""" - - self.query['get_hero_hudcache_start'] = """select min(hc.styleKey) - from HudCache hc - where hc.playerId in <playerid_list> - and hc.styleKey like 'd%'""" + WHERE sessionEnd>=%s + AND sessionStart<=%s""" if db_server == 'mysql': self.query['analyze'] = """ From bc59e1276896cb6b4af740f93baef9edabcd41de Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 10 Dec 2010 17:53:59 +0800 Subject: [PATCH 102/162] Everleaf: Make re_GameInfo error handling consistant with other sites. When re_GameInfo fails to match now, the first 100 characters of the hand will be printed to the log. Makes it much easier to identify the offending hands. Error now also throws an FpdbParseError for the importing process to catch --- pyfpdb/EverleafToFpdb.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyfpdb/EverleafToFpdb.py b/pyfpdb/EverleafToFpdb.py index 586d36d9..fced271a 100755 --- a/pyfpdb/EverleafToFpdb.py +++ b/pyfpdb/EverleafToFpdb.py @@ -106,7 +106,10 @@ or None if we fail to get the info """ m = self.re_GameInfo.search(handText) if not m: - return None + tmp = handText[0:100] + log.error(_("determineGameType: Unable to recognise gametype from: '%s'") % tmp) + log.error(_("determineGameType: Raising FpdbParseError")) + raise FpdbParseError(_("Unable to recognise gametype from: '%s'") % tmp) mg = m.groupdict() From 3db9cfa6a75df17fad3f754fe6f05ae33b284c4c Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 10 Dec 2010 18:20:52 +0800 Subject: [PATCH 103/162] Options: Add -s --sitename option --- pyfpdb/Options.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyfpdb/Options.py b/pyfpdb/Options.py index fb23d43c..9492fc87 100644 --- a/pyfpdb/Options.py +++ b/pyfpdb/Options.py @@ -41,6 +41,9 @@ def fpdb_options(): parser.add_option("-k", "--konverter", dest="hhc", default="PokerStarsToFpdb", help=_("Module name for Hand History Converter")) + parser.add_option("-s", "--sitename", + dest="sitename", default=None, + help=_("A sitename")) parser.add_option("-l", "--logging", dest = "log_level", choices = ('DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL', 'EMPTY'), From 9a956e41b6df9531a2bfd93fbcebe4133bc8126b Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 10 Dec 2010 18:21:21 +0800 Subject: [PATCH 104/162] THP: Allow a single site to be specified on the cli The normal mode for running THP is to run though all the tests for all sites: ./TestHandsPlayers.py This is a bit noisy and slow when trying to fix issues in a single parser. Added '-s' so that you can run the regression tests against a single site eg. ./TestHandsPlayers.py -s "Full Tilt Poker" ./TestHandsPlayers.py -s PokerStars ./TestHandsPlayers.py -s Winamax --- pyfpdb/TestHandsPlayers.py | 50 ++++++++++++++++++++++++++------------ 1 file changed, 35 insertions(+), 15 deletions(-) diff --git a/pyfpdb/TestHandsPlayers.py b/pyfpdb/TestHandsPlayers.py index e0013ecc..34ca1e36 100755 --- a/pyfpdb/TestHandsPlayers.py +++ b/pyfpdb/TestHandsPlayers.py @@ -28,6 +28,7 @@ import Configuration import Database import SQL import fpdb_import +import Options class FpdbError: @@ -121,6 +122,19 @@ def main(argv=None): if argv is None: argv = sys.argv[1:] + (options, argv) = Options.fpdb_options() + + test_all_sites = True + + if options.usage == True: + #Print usage examples and exit + print "USAGE:" + sys.exit(0) + + if options.sitename: + print "Only regression testing '%s' files" % (options.sitename) + test_all_sites = False + config = Configuration.Config(file = "HUD_config.test.xml") db = Database.Database(config) sql = SQL.Sql(db_server = 'sqlite') @@ -159,21 +173,27 @@ def main(argv=None): ] sites = { - 'PokerStars' : True, - 'Full Tilt Poker' : True, - 'PartyPoker' : True, - 'Betfair' : True, - 'OnGame' : True, - 'Absolute' : True, - 'UltimateBet' : True, - 'Everleaf' : True, - 'Carbon' : True, - 'PKR' : False, - 'iPoker' : True, - 'Win2day' : True, - 'Winamax' : True, + 'PokerStars' : False, + 'Full Tilt Poker' : False, + 'PartyPoker' : False, + 'Betfair' : False, + 'OnGame' : False, + 'Absolute' : False, + 'UltimateBet' : False, + 'Everleaf' : False, + 'Carbon' : False, + #'PKR' : False, + 'iPoker' : False, + 'Win2day' : False, + 'Winamax' : False, } + if test_all_sites == True: + for s in sites: + sites[s] = True + else: + sites[options.sitename] = True + if sites['PokerStars'] == True: walk_testfiles("regression-test-files/cash/Stars/", compare, importer, PokerStarsErrors, "PokerStars") walk_testfiles("regression-test-files/tour/Stars/", compare, importer, PokerStarsErrors, "PokerStars") @@ -195,8 +215,8 @@ def main(argv=None): walk_testfiles("regression-test-files/cash/Everleaf/", compare, importer, EverleafErrors, "Everleaf") if sites['Carbon'] == True: walk_testfiles("regression-test-files/cash/Carbon/", compare, importer, CarbonErrors, "Carbon") - if sites['PKR'] == True: - walk_testfiles("regression-test-files/cash/PKR/", compare, importer, PKRErrors, "PKR") + #if sites['PKR'] == True: + # walk_testfiles("regression-test-files/cash/PKR/", compare, importer, PKRErrors, "PKR") if sites['iPoker'] == True: walk_testfiles("regression-test-files/cash/iPoker/", compare, importer, iPokerErrors, "iPoker") if sites['Winamax'] == True: From 267bf93fa5e51a44aa10f0e5be468831fd905c50 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 10 Dec 2010 18:59:52 +0800 Subject: [PATCH 105/162] Database: Comment out unused 'printdata' Writing documentation for THP at the moment, and HandsActions data doesn't curently having any tests. Comment out to simplify documentation for the moment. --- pyfpdb/Database.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index cf69ddb0..952f2727 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1860,10 +1860,12 @@ class Database: def storeHandsActions(self, hid, pids, hpid, adata, printdata = False): #print "DEBUG: %s %s %s" %(hid, pids, adata) - if printdata: - import pprint - pp = pprint.PrettyPrinter(indent=4) - pp.pprint(adata) + + # This can be used to generate test data. Currently unused + #if printdata: + # import pprint + # pp = pprint.PrettyPrinter(indent=4) + # pp.pprint(adata) inserts = [] for a in adata: From 8fa38a26ccc9d15f17bf62f71ce8ae45d91143b9 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 10 Dec 2010 20:02:24 +0800 Subject: [PATCH 106/162] GuiStove: Temporary commit - add 'changed' hooks They dont actually do anything yet. --- pyfpdb/GuiStove.py | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/pyfpdb/GuiStove.py b/pyfpdb/GuiStove.py index 7ff0820e..f238e503 100644 --- a/pyfpdb/GuiStove.py +++ b/pyfpdb/GuiStove.py @@ -54,7 +54,7 @@ class GuiStove(): self.mainHBox.show_all() if DEBUG == False: - warning_string = """ + warning_string = _(""" Stove is a GUI mockup of a EV calculation page, and completely non functional. Unless you are interested in developing this feature, please ignore this page. @@ -62,7 +62,7 @@ Unless you are interested in developing this feature, please ignore this page. If you are interested in developing the code further see GuiStove.py and Stove.py Thankyou -""" +""") self.warning_box(warning_string) @@ -161,14 +161,14 @@ Against the range: { 69.91% 15.83% 14.26% """ - label = gtk.Label(outstring) - out_frame.add(label) + self.outputlabel = gtk.Label(outstring) + out_frame.add(self.outputlabel) # Input Frame table = gtk.Table(4, 4, True) label = gtk.Label("Board:") board = gtk.Entry() - #board.connect("changed", self._some_function, arg) + board.connect("changed", self.set_board_flop, board) btn1 = gtk.Button() btn1.set_image(gtk.image_new_from_stock(gtk.STOCK_INDEX, gtk.ICON_SIZE_BUTTON)) @@ -180,7 +180,7 @@ Against the range: { label = gtk.Label("Player1:") board = gtk.Entry() - #board.connect("changed", self._some_function, arg) + board.connect("changed", self.set_hero_cards_flop, board) btn2 = gtk.Button() btn2.set_image(gtk.image_new_from_stock(gtk.STOCK_INDEX, gtk.ICON_SIZE_BUTTON)) #btn.connect('clicked', self._some_function, arg) @@ -195,7 +195,7 @@ Against the range: { label = gtk.Label("Player2:") board = gtk.Entry() - #board.connect("changed", self._some_function, arg) + board.connect("changed", self.set_villain_cards_flop, board) btn4 = gtk.Button() btn4.set_image(gtk.image_new_from_stock(gtk.STOCK_INDEX, gtk.ICON_SIZE_BUTTON)) #btn.connect('clicked', self._some_function, arg) @@ -210,6 +210,15 @@ Against the range: { #table.attach(label, i, i+1, j, j+1,) in_frame.add(table) + def set_board_flop(self, caller, string): + print "DEBUG: called set_board_flop: '%s' '%s'" %(caller ,string) + + def set_hero_cards_flop(self, caller, string): + print "DEBUG: called set_hero_cards_flop" + + def set_villain_cards_flop(self, caller, string): + print "DEBUG: called set_villain_cards_flop" + def get_vbox(self): From 02204edc48b0708a30bd8ef2ca961c61038bd508 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 10 Dec 2010 21:35:49 +0800 Subject: [PATCH 107/162] Give storeHands the ability to output test data Will allow for regression testing of hand start time --- pyfpdb/Database.py | 8 +++++++- pyfpdb/Hand.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 952f2727..7b6bfb4a 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1692,7 +1692,13 @@ class Database: # NEWIMPORT CODE ########################### - def storeHand(self, p): + def storeHand(self, p, printdata = False): + if printdata: + print "######## Hands ##########" + import pprint + pp = pprint.PrettyPrinter(indent=4) + pp.pprint(p) + print "###### End Hands ########" #stores into table hands: q = self.sql.query['store_hand'] diff --git a/pyfpdb/Hand.py b/pyfpdb/Hand.py index 2d7088e6..b2e220b1 100644 --- a/pyfpdb/Hand.py +++ b/pyfpdb/Hand.py @@ -265,7 +265,7 @@ db: a connected Database object""" # seats TINYINT NOT NULL, hh['seats'] = len(self.dbid_pids) - self.dbid_hands = db.storeHand(hh) + self.dbid_hands = db.storeHand(hh, printdata = printtest) self.dbid_hpid = db.storeHandsPlayers(self.dbid_hands, self.dbid_pids, self.stats.getHandsPlayers(), printdata = printtest) if self.saveActions: From b543d08d80a0ba05b5b1ca17a2d6e01985824e5b Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 10 Dec 2010 22:27:44 +0800 Subject: [PATCH 108/162] Regression: .hands file for FTP with with funky date --- ...5.201007.Short.lived.date.format.txt.hands | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt.hands diff --git a/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt.hands b/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt.hands new file mode 100644 index 00000000..767a0c6e --- /dev/null +++ b/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt.hands @@ -0,0 +1,32 @@ +{ 'boardcard1': 0, + 'boardcard2': 0, + 'boardcard3': 0, + 'boardcard4': 0, + 'boardcard5': 0, + 'gametypeId': 6, + 'importTime': None, + 'maxSeats': 9, + 'playersAtShowdown': 0, + 'playersAtStreet-1': 8, + 'playersAtStreet0': 0, + 'playersAtStreet1': 0, + 'playersAtStreet2': 0, + 'playersAtStreet3': 0, + 'playersAtStreet4': 0, + 'playersVpi': 0, + 'seats': 9, + 'showdownPot': 0, + 'siteHandNo': u'22488827305', + 'startTime': datetime.datetime(2010, 6, 21, 20, 13, tzinfo=pytz.utc), + 'street0Raises': 0, + 'street1Pot': 0, + 'street1Raises': 0, + 'street2Pot': 0, + 'street2Raises': 0, + 'street3Pot': 0, + 'street3Raises': 0, + 'street4Pot': 0, + 'street4Raises': 0, + 'tableName': u'Flash', + 'texture': None, + 'tourneyId': None} From 7dd8b9de16ac86e7a511d33d5ecf9ca0fccf10ae Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 10 Dec 2010 22:31:12 +0800 Subject: [PATCH 109/162] Rename gameTypeId to gametypeId Go through and change all references to gameTypeId to gametypeId to make it consistent. The database field is named with the lowercase version, and MySQL is case sensitive. This may have been causing minor issues in multiple areas when attempting to join on gametype. --- pyfpdb/AlchemyMappings.py | 2 +- pyfpdb/Database.py | 2 +- pyfpdb/GuiPositionalStats.py | 4 +-- pyfpdb/GuiRingPlayerStats.py | 10 +++--- pyfpdb/GuiTourneyPlayerStats.py | 2 +- pyfpdb/Hand.py | 2 +- pyfpdb/SQL.py | 54 ++++++++++++++++----------------- 7 files changed, 38 insertions(+), 38 deletions(-) diff --git a/pyfpdb/AlchemyMappings.py b/pyfpdb/AlchemyMappings.py index 5e93a259..b5891c25 100644 --- a/pyfpdb/AlchemyMappings.py +++ b/pyfpdb/AlchemyMappings.py @@ -211,7 +211,7 @@ class HandInternal(DerivedStats): def isDuplicate(self, session): """Checks if current hand already exists in db - siteHandNo ans gameTypeId have to be setted + siteHandNo ans gametypeId have to be setted """ return session.query(HandInternal).filter_by( siteHandNo=self.siteHandNo, gametypeId=self.gametypeId).count()!=0 diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 7b6bfb4a..fa23f1cd 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1708,7 +1708,7 @@ class Database: c.execute(q, ( p['tableName'], - p['gameTypeId'], + p['gametypeId'], p['siteHandNo'], p['tourneyId'], p['startTime'], diff --git a/pyfpdb/GuiPositionalStats.py b/pyfpdb/GuiPositionalStats.py index 2f7c36cc..06d28883 100644 --- a/pyfpdb/GuiPositionalStats.py +++ b/pyfpdb/GuiPositionalStats.py @@ -397,7 +397,7 @@ class GuiPositionalStats (threading.Thread): query = query.replace("<selectgt.bigBlind>", bigblindselect) query = query.replace("<groupbygt.bigBlind>", "") query = query.replace("<hcgametypeId>", "-1") - query = query.replace("<hgameTypeId>", "-1") + query = query.replace("<hgametypeId>", "-1") else: if self.db.backend == self.MYSQL_INNODB: bigblindselect = """concat('$', trim(leading ' ' from @@ -416,7 +416,7 @@ class GuiPositionalStats (threading.Thread): query = query.replace("<selectgt.bigBlind>", bigblindselect) query = query.replace("<groupbygt.bigBlind>", ",gt.bigBlind") query = query.replace("<hcgametypeId>", "hc.gametypeId") - query = query.replace("<hgameTypeId>", "h.gameTypeId") + query = query.replace("<hgametypeId>", "h.gametypeId") # Filter on dates query = query.replace("<datestest>", " between '" + dates[0] + "' and '" + dates[1] + "'") diff --git a/pyfpdb/GuiRingPlayerStats.py b/pyfpdb/GuiRingPlayerStats.py index 39ea97b4..d3ba1bee 100644 --- a/pyfpdb/GuiRingPlayerStats.py +++ b/pyfpdb/GuiRingPlayerStats.py @@ -652,18 +652,18 @@ class GuiRingPlayerStats (GuiPlayerStats.GuiPlayerStats): query = query.replace("<gtbigBlind_test>", bbtest) if holecards: # re-use level variables for hole card query - query = query.replace("<hgameTypeId>", "hp.startcards") - query = query.replace("<orderbyhgameTypeId>" + query = query.replace("<hgametypeId>", "hp.startcards") + query = query.replace("<orderbyhgametypeId>" , ",case when floor((hp.startcards-1)/13) >= mod((hp.startcards-1),13) then hp.startcards + 0.1 " + " else 13*mod((hp.startcards-1),13) + floor((hp.startcards-1)/13) + 1 " + " end desc ") else: - query = query.replace("<orderbyhgameTypeId>", "") + query = query.replace("<orderbyhgametypeId>", "") groupLevels = "show" not in str(limits) if groupLevels: - query = query.replace("<hgameTypeId>", "p.name") # need to use p.name for sqlite posn stats to work + query = query.replace("<hgametypeId>", "p.name") # need to use p.name for sqlite posn stats to work else: - query = query.replace("<hgameTypeId>", "h.gameTypeId") + query = query.replace("<hgametypeId>", "h.gametypeId") # process self.detailFilters (a list of tuples) flagtest = '' diff --git a/pyfpdb/GuiTourneyPlayerStats.py b/pyfpdb/GuiTourneyPlayerStats.py index ef6c0f66..0b830547 100644 --- a/pyfpdb/GuiTourneyPlayerStats.py +++ b/pyfpdb/GuiTourneyPlayerStats.py @@ -382,7 +382,7 @@ class GuiTourneyPlayerStats (GuiPlayerStats.GuiPlayerStats): #query = query.replace("<gtbigBlind_test>", bbtest) - #query = query.replace("<orderbyhgameTypeId>", "") + #query = query.replace("<orderbyhgametypeId>", "") # process self.detailFilters (a list of tuples) flagtest = '' diff --git a/pyfpdb/Hand.py b/pyfpdb/Hand.py index b2e220b1..8485ca9e 100644 --- a/pyfpdb/Hand.py +++ b/pyfpdb/Hand.py @@ -261,7 +261,7 @@ db: a connected Database object""" if not db.isDuplicate(self.dbid_gt, hh['siteHandNo']): # Hands - Summary information of hand indexed by handId - gameinfo - hh['gameTypeId'] = self.dbid_gt + hh['gametypeId'] = self.dbid_gt # seats TINYINT NOT NULL, hh['seats'] = len(self.dbid_pids) diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index f6bb068b..83e19f13 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -1400,11 +1400,11 @@ class Sql: self.query['addTourneyIndex'] = """CREATE UNIQUE INDEX siteTourneyNo ON Tourneys (siteTourneyNo, tourneyTypeId)""" if db_server == 'mysql': - self.query['addHandsIndex'] = """ALTER TABLE Hands ADD UNIQUE INDEX siteHandNo(siteHandNo, gameTypeId)""" + self.query['addHandsIndex'] = """ALTER TABLE Hands ADD UNIQUE INDEX siteHandNo(siteHandNo, gametypeId)""" elif db_server == 'postgresql': - self.query['addHandsIndex'] = """CREATE UNIQUE INDEX siteHandNo ON Hands (siteHandNo, gameTypeId)""" + self.query['addHandsIndex'] = """CREATE UNIQUE INDEX siteHandNo ON Hands (siteHandNo, gametypeId)""" elif db_server == 'sqlite': - self.query['addHandsIndex'] = """CREATE UNIQUE INDEX siteHandNo ON Hands (siteHandNo, gameTypeId)""" + self.query['addHandsIndex'] = """CREATE UNIQUE INDEX siteHandNo ON Hands (siteHandNo, gametypeId)""" if db_server == 'mysql': self.query['addPlayersIndex'] = """ALTER TABLE Players ADD UNIQUE INDEX name(name, siteId)""" @@ -2145,7 +2145,7 @@ class Sql: if db_server == 'mysql': self.query['playerDetailedStats'] = """ - select <hgameTypeId> AS hgametypeid + select <hgametypeId> AS hgametypeid ,<playerName> AS pname ,gt.base ,gt.category @@ -2231,7 +2231,7 @@ class Sql: ,variance(hp.totalProfit/100.0) AS variance from HandsPlayers hp inner join Hands h on (h.id = hp.handId) - inner join Gametypes gt on (gt.Id = h.gameTypeId) + inner join Gametypes gt on (gt.Id = h.gametypeId) inner join Sites s on (s.Id = gt.siteId) inner join Players p on (p.Id = hp.playerId) where hp.playerId in <player_test> @@ -2242,7 +2242,7 @@ class Sql: <flagtest> <gtbigBlind_test> and date_format(h.startTime, '%Y-%m-%d %T') <datestest> - group by hgameTypeId + group by hgametypeId ,pname ,gt.base ,gt.category @@ -2259,14 +2259,14 @@ class Sql: when 'S' then 'S' else concat('Z', <position>) end - <orderbyhgameTypeId> + <orderbyhgametypeId> ,upper(gt.limitType) desc ,maxbigblind desc ,s.name """ elif db_server == 'postgresql': self.query['playerDetailedStats'] = """ - select <hgameTypeId> AS hgametypeid + select <hgametypeId> AS hgametypeid ,<playerName> AS pname ,gt.base ,gt.category @@ -2352,7 +2352,7 @@ class Sql: ,variance(hp.totalProfit/100.0) AS variance from HandsPlayers hp inner join Hands h on (h.id = hp.handId) - inner join Gametypes gt on (gt.Id = h.gameTypeId) + inner join Gametypes gt on (gt.Id = h.gametypeId) inner join Sites s on (s.Id = gt.siteId) inner join Players p on (p.Id = hp.playerId) where hp.playerId in <player_test> @@ -2363,7 +2363,7 @@ class Sql: <flagtest> <gtbigBlind_test> and to_char(h.startTime, 'YYYY-MM-DD HH24:MI:SS') <datestest> - group by hgameTypeId + group by hgametypeId ,pname ,gt.base ,gt.category @@ -2381,14 +2381,14 @@ class Sql: when '0' then 'Y' else 'Z'||<position> end - <orderbyhgameTypeId> + <orderbyhgametypeId> ,upper(gt.limitType) desc ,maxbigblind desc ,s.name """ elif db_server == 'sqlite': self.query['playerDetailedStats'] = """ - select <hgameTypeId> AS hgametypeid + select <hgametypeId> AS hgametypeid ,<playerName> AS pname ,gt.base ,gt.category AS category @@ -2474,7 +2474,7 @@ class Sql: ,variance(hp.totalProfit/100.0) AS variance from HandsPlayers hp inner join Hands h on (h.id = hp.handId) - inner join Gametypes gt on (gt.Id = h.gameTypeId) + inner join Gametypes gt on (gt.Id = h.gametypeId) inner join Sites s on (s.Id = gt.siteId) inner join Players p on (p.Id = hp.playerId) where hp.playerId in <player_test> @@ -2485,7 +2485,7 @@ class Sql: <flagtest> <gtbigBlind_test> and datetime(h.startTime) <datestest> - group by hgameTypeId + group by hgametypeId ,hp.playerId ,gt.base ,gt.category @@ -2503,7 +2503,7 @@ class Sql: when '0' then 'Y' else 'Z'||<position> end - <orderbyhgameTypeId> + <orderbyhgametypeId> ,upper(gt.limitType) desc ,max(gt.bigBlind) desc ,s.name @@ -2693,7 +2693,7 @@ class Sql: ,format( sum(activeSeats*HDs)/(sum(HDs)+0.0), 2) AS AvgSeats from Gametypes gt inner join Sites s on s.Id = gt.siteId - inner join HudCache hc on hc.gameTypeId = gt.Id + inner join HudCache hc on hc.gametypeId = gt.Id where hc.playerId in <player_test> and <gtbigBlind_test> and hc.activeSeats <seats_test> @@ -2714,7 +2714,7 @@ class Sql: else variance(hprof.profit/100.0) end as variance from - (select hp.handId, <hgameTypeId> as gtId, hp.totalProfit as profit + (select hp.handId, <hgametypeId> as gtId, hp.totalProfit as profit from HandsPlayers hp inner join Hands h ON h.id = hp.handId where hp.playerId in <player_test> @@ -2798,7 +2798,7 @@ class Sql: ,to_char(sum(activeSeats*HDs)/(sum(HDs)+0.0),'90D00') AS AvgSeats from Gametypes gt inner join Sites s on s.Id = gt.siteId - inner join HudCache hc on hc.gameTypeId = gt.Id + inner join HudCache hc on hc.gametypeId = gt.Id where hc.playerId in <player_test> and <gtbigBlind_test> and hc.activeSeats <seats_test> @@ -2819,7 +2819,7 @@ class Sql: else variance(hprof.profit/100.0) end as variance from - (select hp.handId, <hgameTypeId> as gtId, hp.totalProfit as profit + (select hp.handId, <hgametypeId> as gtId, hp.totalProfit as profit from HandsPlayers hp inner join Hands h ON (h.id = hp.handId) where hp.playerId in <player_test> @@ -2921,7 +2921,7 @@ class Sql: ,format( sum(activeSeats*HDs)/(sum(HDs)+0.0), 2) AS AvgSeats from Gametypes gt inner join Sites s on s.Id = gt.siteId - inner join HudCache hc on hc.gameTypeId = gt.Id + inner join HudCache hc on hc.gametypeId = gt.Id where hc.playerId in <player_test> and <gtbigBlind_test> and hc.activeSeats <seats_test> @@ -2951,7 +2951,7 @@ class Sql: else variance(hprof.profit/100.0) end as variance from - (select hp.handId, <hgameTypeId> as gtId, hp.position + (select hp.handId, <hgametypeId> as gtId, hp.position , hp.totalProfit as profit from HandsPlayers hp inner join Hands h ON (h.id = hp.handId) @@ -3060,7 +3060,7 @@ class Sql: ,to_char(sum(activeSeats*HDs)/(sum(HDs)+0.0),'90D00') AS AvgSeats from Gametypes gt inner join Sites s on (s.Id = gt.siteId) - inner join HudCache hc on (hc.gameTypeId = gt.Id) + inner join HudCache hc on (hc.gametypeId = gt.Id) where hc.playerId in <player_test> and <gtbigBlind_test> and hc.activeSeats <seats_test> @@ -3090,14 +3090,14 @@ class Sql: else variance(hprof.profit/100.0) end as variance from - (select hp.handId, <hgameTypeId> as gtId, hp.position + (select hp.handId, <hgametypeId> as gtId, hp.position , hp.totalProfit as profit from HandsPlayers hp inner join Hands h ON (h.id = hp.handId) where hp.playerId in <player_test> and hp.tourneysPlayersId IS NULL and to_char(h.startTime, 'YYYY-MM-DD') <datestest> - group by hp.handId, gameTypeId, hp.position, hp.totalProfit + group by hp.handId, gametypeId, hp.position, hp.totalProfit ) hprof group by hprof.gtId, PlPosition ) hprof2 @@ -3191,7 +3191,7 @@ class Sql: SELECT UNIX_TIMESTAMP(h.startTime) as time, hp.handId, hp.startCash, hp.winnings, hp.totalProfit FROM HandsPlayers hp INNER JOIN Hands h on (h.id = hp.handId) - INNER JOIN Gametypes gt on (gt.Id = h.gameTypeId) + INNER JOIN Gametypes gt on (gt.Id = h.gametypeId) INNER JOIN Sites s on (s.Id = gt.siteId) INNER JOIN Players p on (p.Id = hp.playerId) WHERE hp.playerId in <player_test> @@ -3203,7 +3203,7 @@ class Sql: SELECT EXTRACT(epoch from h.startTime) as time, hp.handId, hp.startCash, hp.winnings, hp.totalProfit FROM HandsPlayers hp INNER JOIN Hands h on (h.id = hp.handId) - INNER JOIN Gametypes gt on (gt.Id = h.gameTypeId) + INNER JOIN Gametypes gt on (gt.Id = h.gametypeId) INNER JOIN Sites s on (s.Id = gt.siteId) INNER JOIN Players p on (p.Id = hp.playerId) WHERE hp.playerId in <player_test> @@ -3215,7 +3215,7 @@ class Sql: SELECT STRFTIME('<ampersand_s>', h.startTime) as time, hp.handId, hp.startCash, hp.winnings, hp.totalProfit FROM HandsPlayers hp INNER JOIN Hands h on (h.id = hp.handId) - INNER JOIN Gametypes gt on (gt.Id = h.gameTypeId) + INNER JOIN Gametypes gt on (gt.Id = h.gametypeId) INNER JOIN Sites s on (s.Id = gt.siteId) INNER JOIN Players p on (p.Id = hp.playerId) WHERE hp.playerId in <player_test> From b966be8ec39dfad74e6c5a0ab718c669d5052e94 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 10 Dec 2010 22:46:49 +0800 Subject: [PATCH 110/162] Regression: .hands file for FTP EUR file By default EUR sites (.fr?) use CET in the HH file --- ....02.201008.Weird.table.character.txt.hands | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-6max-EUR-0.01-0.02.201008.Weird.table.character.txt.hands diff --git a/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-6max-EUR-0.01-0.02.201008.Weird.table.character.txt.hands b/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-6max-EUR-0.01-0.02.201008.Weird.table.character.txt.hands new file mode 100644 index 00000000..bbfe68a1 --- /dev/null +++ b/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-6max-EUR-0.01-0.02.201008.Weird.table.character.txt.hands @@ -0,0 +1,32 @@ +{ 'boardcard1': 0, + 'boardcard2': 0, + 'boardcard3': 0, + 'boardcard4': 0, + 'boardcard5': 0, + 'gametypeId': 7, + 'importTime': None, + 'maxSeats': 6, + 'playersAtShowdown': 1, + 'playersAtStreet-1': 6, + 'playersAtStreet0': 1, + 'playersAtStreet1': 1, + 'playersAtStreet2': 1, + 'playersAtStreet3': 1, + 'playersAtStreet4': 0, + 'playersVpi': 1, + 'seats': 6, + 'showdownPot': 0, + 'siteHandNo': u'20000000801', + 'startTime': datetime.datetime(2010, 8, 13, 20, 59, 2, tzinfo=pytz.utc), + 'street0Raises': 1, + 'street1Pot': 0, + 'street1Raises': 0, + 'street2Pot': 0, + 'street2Raises': 0, + 'street3Pot': 0, + 'street3Raises': 0, + 'street4Pot': 0, + 'street4Raises': 0, + 'tableName': u'Douai\u2013Lens', + 'texture': None, + 'tourneyId': None} From f9ee1510b17619da40f2ab86612231c17ce7275d Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 10 Dec 2010 22:59:26 +0800 Subject: [PATCH 111/162] Regression: FTP Razz file, with .hp and .hands We didn't have an FTP Razz file in the Regression test suite. This is the new date format from FTP, like Stars contains both local and ET time --- ...0.10-0.20-201012.CCT.and.ET.timeformat.txt | Bin 0 -> 3470 bytes ....20-201012.CCT.and.ET.timeformat.txt.hands | 32 + ...0-0.20-201012.CCT.and.ET.timeformat.txt.hp | 658 ++++++++++++++++++ 3 files changed, 690 insertions(+) create mode 100644 pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.CCT.and.ET.timeformat.txt create mode 100644 pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.CCT.and.ET.timeformat.txt.hands create mode 100644 pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.CCT.and.ET.timeformat.txt.hp diff --git a/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.CCT.and.ET.timeformat.txt b/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.CCT.and.ET.timeformat.txt new file mode 100644 index 0000000000000000000000000000000000000000..fd3d975b0d48c59c938c6052fe975f61c4ec2cbe GIT binary patch literal 3470 zcmb_fO>fgc5S=p;|6wIK0D?A-<0R!)(LyDtR3+^JSv@2nX(O7nN>d>!emn5qtT*1+ z>uOt&m3W<<Hy>|i$CE$5Kgyk4;WBb6bKKWhoyfI(m#M6<{v;z=U~S}uw52PF>`6;H zl1Yj?ulI@_$rxzL9RsmaJ@4@J5)wN=wPd$gx3M;|FH6W!-b%Ef-3Sq1;Ku?VdNP2n zdt7!Wkshp3m;E;K0oQ4<OTE@k0$sa!>R~6xy;DIQK8QJ&=kiR3@NJ|%BpTrno>$<- z$SZi<K};Dmzplu(RrUl-jO3>x7!?s25M6LqMWi)ES|ECgsM}yP%u#8hQy|*PbW*dC z)eu>M=qsXMLy+ff8|0F4&_*{9dB29}7l;Ii9^$u=`+hUhQBeoCSeKQ+4EU0aFiw(@ z#Yr+VagvNAPLeD&OO`d%Eb~Tq8C1$Z4sai$RtIv3i*;^y$<Be+r#-K0t;<q-jtqT+ z^k;mZ<DR2lZ?OvFe4fckjvU8HGk-ZUdl{vhIm}TBlPGECF-HV(p4gM#jr4^1q$f_d z&j9Vtv16cXE*JPV@<Y23SH4G8)ENC?j%vP8G*?Du$jl0NSJ|oNz(>;a32KHt*gpex zNqRkjzJ=UCcB<Wz2-_)b4V2xMxh^Y$eq5m%Zfo|L@k`jJrUbb(SWVT=Qss@>nrSDr zHb&T82lX^tNujrSmz7cHfW5rh2k2k3o+d7Ps>hwI4o=b$^u(VmKVN<ovmW~JJmzHi z6-wOR6Ka*XeLd4vURWDrt%<URLj1)u9p=*MbX;ctiAz)P$Ot=|2<tu0&qT?nDcB@B zi_Aya12~JgKH1-7#kUk<m(xZy3uO1P)#>y&M!WySXq6LF@IhwUk-S!!VQ$#rsUzL6 z`xJiY-8MgG=#uW_PvM`dVuOA)!;|f2c4Ay<ecz#<F0rDl?MK_5RCB^;7MO7-m}u+W zkGt&dOYMJa#L0>D2G-ZObKc?f!g<n8FD^?%Im4WLjLI3vS4i65Y5P>M?B}H(r-kwV z!iQ5W=W7>V3t1wzdFFJi*|@Lu-I9U{vM_|NI~9C*4t=ba@ND{6E#Y}Jq$NWne9ML+ u3eT`1Ef4V$o@+x|x)1mgo^|<d=3AU^PyVxEZni7vEq-ye$bIJA|NI4z%JOOe literal 0 HcmV?d00001 diff --git a/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.CCT.and.ET.timeformat.txt.hands b/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.CCT.and.ET.timeformat.txt.hands new file mode 100644 index 00000000..342675c2 --- /dev/null +++ b/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.CCT.and.ET.timeformat.txt.hands @@ -0,0 +1,32 @@ +{ 'boardcard1': 0, + 'boardcard2': 0, + 'boardcard3': 0, + 'boardcard4': 0, + 'boardcard5': 0, + 'gametypeId': 5, + 'importTime': None, + 'maxSeats': 8, + 'playersAtShowdown': 1, + 'playersAtStreet-1': 7, + 'playersAtStreet0': 3, + 'playersAtStreet1': 3, + 'playersAtStreet2': 2, + 'playersAtStreet3': 1, + 'playersAtStreet4': 1, + 'playersVpi': 3, + 'seats': 7, + 'showdownPot': 0, + 'siteHandNo': u'26190453000', + 'startTime': datetime.datetime(2010, 12, 7, 9, 10, 10, tzinfo=pytz.utc), + 'street0Raises': 0, + 'street1Pot': 0, + 'street1Raises': 1, + 'street2Pot': 0, + 'street2Raises': 1, + 'street3Pot': 0, + 'street3Raises': 1, + 'street4Pot': 0, + 'street4Raises': 0, + 'tableName': u'Mart', + 'texture': None, + 'tourneyId': None} diff --git a/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.CCT.and.ET.timeformat.txt.hp b/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.CCT.and.ET.timeformat.txt.hp new file mode 100644 index 00000000..63e7eb16 --- /dev/null +++ b/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.CCT.and.ET.timeformat.txt.hp @@ -0,0 +1,658 @@ +{ u'Hero': { 'card1': 18, + 'card2': 25, + 'card3': 42, + 'card4': 0, + 'card5': 0, + 'card6': 0, + 'card7': 0, + 'foldBbToStealChance': False, + 'foldSbToStealChance': False, + 'foldToOtherRaisedStreet0': False, + 'foldToOtherRaisedStreet1': False, + 'foldToOtherRaisedStreet2': False, + 'foldToOtherRaisedStreet3': False, + 'foldToOtherRaisedStreet4': False, + 'foldToStreet1CBChance': False, + 'foldToStreet1CBDone': False, + 'foldToStreet2CBChance': False, + 'foldToStreet2CBDone': False, + 'foldToStreet3CBChance': False, + 'foldToStreet3CBDone': False, + 'foldToStreet4CBChance': False, + 'foldToStreet4CBDone': False, + 'foldedBbToSteal': False, + 'foldedSbToSteal': False, + 'other3BStreet0': False, + 'other4BStreet0': False, + 'otherRaisedStreet0': False, + 'otherRaisedStreet1': False, + 'otherRaisedStreet2': False, + 'otherRaisedStreet3': False, + 'otherRaisedStreet4': False, + 'position': 3, + 'raiseFirstInChance': False, + 'raisedFirstIn': False, + 'rake': 0, + 'sawShowdown': False, + 'seatNo': 1, + 'sitout': False, + 'startCards': 700, + 'startCash': 450, + 'street0Aggr': False, + 'street0Bets': 0, + 'street0Calls': 0, + 'street0Raises': 0, + 'street0VPI': False, + 'street0_3BChance': False, + 'street0_3BDone': False, + 'street0_4BChance': False, + 'street0_4BDone': False, + 'street1Aggr': False, + 'street1Bets': 0, + 'street1CBChance': False, + 'street1CBDone': False, + 'street1Calls': 0, + 'street1CheckCallRaiseChance': False, + 'street1CheckCallRaiseDone': False, + 'street1Raises': 0, + 'street1Seen': False, + 'street2Aggr': False, + 'street2Bets': 0, + 'street2CBChance': False, + 'street2CBDone': False, + 'street2Calls': 0, + 'street2CheckCallRaiseChance': False, + 'street2CheckCallRaiseDone': False, + 'street2Raises': 0, + 'street2Seen': False, + 'street3Aggr': False, + 'street3Bets': 0, + 'street3CBChance': False, + 'street3CBDone': False, + 'street3Calls': 0, + 'street3CheckCallRaiseChance': False, + 'street3CheckCallRaiseDone': False, + 'street3Raises': 0, + 'street3Seen': False, + 'street4Aggr': False, + 'street4Bets': 0, + 'street4CBChance': False, + 'street4CBDone': False, + 'street4Calls': 0, + 'street4CheckCallRaiseChance': False, + 'street4CheckCallRaiseDone': False, + 'street4Raises': 0, + 'street4Seen': False, + 'totalProfit': -2, + 'tourneyTypeId': None, + 'tourneysPlayersIds': None, + 'winnings': 0, + 'wonAtSD': 0.0, + 'wonWhenSeenStreet1': 0.0, + 'wonWhenSeenStreet2': 0.0, + 'wonWhenSeenStreet3': 0.0, + 'wonWhenSeenStreet4': 0.0}, + u'Player2': { 'card1': 0, + 'card2': 0, + 'card3': 40, + 'card4': 0, + 'card5': 0, + 'card6': 0, + 'card7': 0, + 'foldBbToStealChance': False, + 'foldSbToStealChance': False, + 'foldToOtherRaisedStreet0': False, + 'foldToOtherRaisedStreet1': False, + 'foldToOtherRaisedStreet2': False, + 'foldToOtherRaisedStreet3': False, + 'foldToOtherRaisedStreet4': False, + 'foldToStreet1CBChance': False, + 'foldToStreet1CBDone': False, + 'foldToStreet2CBChance': False, + 'foldToStreet2CBDone': False, + 'foldToStreet3CBChance': False, + 'foldToStreet3CBDone': False, + 'foldToStreet4CBChance': False, + 'foldToStreet4CBDone': False, + 'foldedBbToSteal': False, + 'foldedSbToSteal': False, + 'other3BStreet0': False, + 'other4BStreet0': False, + 'otherRaisedStreet0': False, + 'otherRaisedStreet1': False, + 'otherRaisedStreet2': False, + 'otherRaisedStreet3': False, + 'otherRaisedStreet4': False, + 'position': 2, + 'raiseFirstInChance': False, + 'raisedFirstIn': False, + 'rake': 0, + 'sawShowdown': False, + 'seatNo': 2, + 'sitout': False, + 'startCards': -12, + 'startCash': 563, + 'street0Aggr': False, + 'street0Bets': 0, + 'street0Calls': 0, + 'street0Raises': 0, + 'street0VPI': False, + 'street0_3BChance': False, + 'street0_3BDone': False, + 'street0_4BChance': False, + 'street0_4BDone': False, + 'street1Aggr': False, + 'street1Bets': 0, + 'street1CBChance': False, + 'street1CBDone': False, + 'street1Calls': 0, + 'street1CheckCallRaiseChance': False, + 'street1CheckCallRaiseDone': False, + 'street1Raises': 0, + 'street1Seen': False, + 'street2Aggr': False, + 'street2Bets': 0, + 'street2CBChance': False, + 'street2CBDone': False, + 'street2Calls': 0, + 'street2CheckCallRaiseChance': False, + 'street2CheckCallRaiseDone': False, + 'street2Raises': 0, + 'street2Seen': False, + 'street3Aggr': False, + 'street3Bets': 0, + 'street3CBChance': False, + 'street3CBDone': False, + 'street3Calls': 0, + 'street3CheckCallRaiseChance': False, + 'street3CheckCallRaiseDone': False, + 'street3Raises': 0, + 'street3Seen': False, + 'street4Aggr': False, + 'street4Bets': 0, + 'street4CBChance': False, + 'street4CBDone': False, + 'street4Calls': 0, + 'street4CheckCallRaiseChance': False, + 'street4CheckCallRaiseDone': False, + 'street4Raises': 0, + 'street4Seen': False, + 'totalProfit': -2, + 'tourneyTypeId': None, + 'tourneysPlayersIds': None, + 'winnings': 0, + 'wonAtSD': 0.0, + 'wonWhenSeenStreet1': 0.0, + 'wonWhenSeenStreet2': 0.0, + 'wonWhenSeenStreet3': 0.0, + 'wonWhenSeenStreet4': 0.0}, + u'Player3': { 'card1': 0, + 'card2': 0, + 'card3': 4, + 'card4': 0, + 'card5': 0, + 'card6': 0, + 'card7': 0, + 'foldBbToStealChance': False, + 'foldSbToStealChance': False, + 'foldToOtherRaisedStreet0': False, + 'foldToOtherRaisedStreet1': False, + 'foldToOtherRaisedStreet2': False, + 'foldToOtherRaisedStreet3': False, + 'foldToOtherRaisedStreet4': False, + 'foldToStreet1CBChance': False, + 'foldToStreet1CBDone': False, + 'foldToStreet2CBChance': False, + 'foldToStreet2CBDone': False, + 'foldToStreet3CBChance': False, + 'foldToStreet3CBDone': False, + 'foldToStreet4CBChance': False, + 'foldToStreet4CBDone': False, + 'foldedBbToSteal': False, + 'foldedSbToSteal': False, + 'other3BStreet0': False, + 'other4BStreet0': False, + 'otherRaisedStreet0': False, + 'otherRaisedStreet1': False, + 'otherRaisedStreet2': False, + 'otherRaisedStreet3': False, + 'otherRaisedStreet4': False, + 'position': 1, + 'raiseFirstInChance': False, + 'raisedFirstIn': False, + 'rake': 0, + 'sawShowdown': False, + 'seatNo': 3, + 'sitout': False, + 'startCards': -9, + 'startCash': 760, + 'street0Aggr': False, + 'street0Bets': 0, + 'street0Calls': 0, + 'street0Raises': 0, + 'street0VPI': False, + 'street0_3BChance': False, + 'street0_3BDone': False, + 'street0_4BChance': False, + 'street0_4BDone': False, + 'street1Aggr': False, + 'street1Bets': 0, + 'street1CBChance': False, + 'street1CBDone': False, + 'street1Calls': 0, + 'street1CheckCallRaiseChance': False, + 'street1CheckCallRaiseDone': False, + 'street1Raises': 0, + 'street1Seen': False, + 'street2Aggr': False, + 'street2Bets': 0, + 'street2CBChance': False, + 'street2CBDone': False, + 'street2Calls': 0, + 'street2CheckCallRaiseChance': False, + 'street2CheckCallRaiseDone': False, + 'street2Raises': 0, + 'street2Seen': False, + 'street3Aggr': False, + 'street3Bets': 0, + 'street3CBChance': False, + 'street3CBDone': False, + 'street3Calls': 0, + 'street3CheckCallRaiseChance': False, + 'street3CheckCallRaiseDone': False, + 'street3Raises': 0, + 'street3Seen': False, + 'street4Aggr': False, + 'street4Bets': 0, + 'street4CBChance': False, + 'street4CBDone': False, + 'street4Calls': 0, + 'street4CheckCallRaiseChance': False, + 'street4CheckCallRaiseDone': False, + 'street4Raises': 0, + 'street4Seen': False, + 'totalProfit': -2, + 'tourneyTypeId': None, + 'tourneysPlayersIds': None, + 'winnings': 0, + 'wonAtSD': 0.0, + 'wonWhenSeenStreet1': 0.0, + 'wonWhenSeenStreet2': 0.0, + 'wonWhenSeenStreet3': 0.0, + 'wonWhenSeenStreet4': 0.0}, + u'Player4': { 'card1': 0, + 'card2': 0, + 'card3': 32, + 'card4': 33, + 'card5': 16, + 'card6': 0, + 'card7': 0, + 'foldBbToStealChance': False, + 'foldSbToStealChance': False, + 'foldToOtherRaisedStreet0': False, + 'foldToOtherRaisedStreet1': False, + 'foldToOtherRaisedStreet2': True, + 'foldToOtherRaisedStreet3': False, + 'foldToOtherRaisedStreet4': False, + 'foldToStreet1CBChance': False, + 'foldToStreet1CBDone': False, + 'foldToStreet2CBChance': False, + 'foldToStreet2CBDone': False, + 'foldToStreet3CBChance': False, + 'foldToStreet3CBDone': False, + 'foldToStreet4CBChance': False, + 'foldToStreet4CBDone': False, + 'foldedBbToSteal': False, + 'foldedSbToSteal': False, + 'other3BStreet0': False, + 'other4BStreet0': False, + 'otherRaisedStreet0': False, + 'otherRaisedStreet1': True, + 'otherRaisedStreet2': True, + 'otherRaisedStreet3': False, + 'otherRaisedStreet4': False, + 'position': 0, + 'raiseFirstInChance': False, + 'raisedFirstIn': False, + 'rake': 0, + 'sawShowdown': False, + 'seatNo': 4, + 'sitout': False, + 'startCards': -7, + 'startCash': 211, + 'street0Aggr': False, + 'street0Bets': 0, + 'street0Calls': 1, + 'street0Raises': 0, + 'street0VPI': True, + 'street0_3BChance': False, + 'street0_3BDone': False, + 'street0_4BChance': False, + 'street0_4BDone': False, + 'street1Aggr': False, + 'street1Bets': 0, + 'street1CBChance': False, + 'street1CBDone': False, + 'street1Calls': 1, + 'street1CheckCallRaiseChance': False, + 'street1CheckCallRaiseDone': False, + 'street1Raises': 0, + 'street1Seen': True, + 'street2Aggr': False, + 'street2Bets': 0, + 'street2CBChance': False, + 'street2CBDone': False, + 'street2Calls': 0, + 'street2CheckCallRaiseChance': False, + 'street2CheckCallRaiseDone': False, + 'street2Raises': 0, + 'street2Seen': True, + 'street3Aggr': False, + 'street3Bets': 0, + 'street3CBChance': False, + 'street3CBDone': False, + 'street3Calls': 0, + 'street3CheckCallRaiseChance': False, + 'street3CheckCallRaiseDone': False, + 'street3Raises': 0, + 'street3Seen': False, + 'street4Aggr': False, + 'street4Bets': 0, + 'street4CBChance': False, + 'street4CBDone': False, + 'street4Calls': 0, + 'street4CheckCallRaiseChance': False, + 'street4CheckCallRaiseDone': False, + 'street4Raises': 0, + 'street4Seen': False, + 'totalProfit': -22, + 'tourneyTypeId': None, + 'tourneysPlayersIds': None, + 'winnings': 0, + 'wonAtSD': 0.0, + 'wonWhenSeenStreet1': 0.0, + 'wonWhenSeenStreet2': 0.0, + 'wonWhenSeenStreet3': 0.0, + 'wonWhenSeenStreet4': 0.0}, + u'Player5': { 'card1': 0, + 'card2': 0, + 'card3': 51, + 'card4': 0, + 'card5': 0, + 'card6': 0, + 'card7': 0, + 'foldBbToStealChance': False, + 'foldSbToStealChance': False, + 'foldToOtherRaisedStreet0': False, + 'foldToOtherRaisedStreet1': False, + 'foldToOtherRaisedStreet2': False, + 'foldToOtherRaisedStreet3': False, + 'foldToOtherRaisedStreet4': False, + 'foldToStreet1CBChance': False, + 'foldToStreet1CBDone': False, + 'foldToStreet2CBChance': False, + 'foldToStreet2CBDone': False, + 'foldToStreet3CBChance': False, + 'foldToStreet3CBDone': False, + 'foldToStreet4CBChance': False, + 'foldToStreet4CBDone': False, + 'foldedBbToSteal': False, + 'foldedSbToSteal': False, + 'other3BStreet0': False, + 'other4BStreet0': False, + 'otherRaisedStreet0': False, + 'otherRaisedStreet1': False, + 'otherRaisedStreet2': False, + 'otherRaisedStreet3': False, + 'otherRaisedStreet4': False, + 'position': 'S', + 'raiseFirstInChance': False, + 'raisedFirstIn': False, + 'rake': 0, + 'sawShowdown': False, + 'seatNo': 5, + 'sitout': False, + 'startCards': -1, + 'startCash': 818, + 'street0Aggr': False, + 'street0Bets': 0, + 'street0Calls': 0, + 'street0Raises': 0, + 'street0VPI': False, + 'street0_3BChance': False, + 'street0_3BDone': False, + 'street0_4BChance': False, + 'street0_4BDone': False, + 'street1Aggr': False, + 'street1Bets': 0, + 'street1CBChance': False, + 'street1CBDone': False, + 'street1Calls': 0, + 'street1CheckCallRaiseChance': False, + 'street1CheckCallRaiseDone': False, + 'street1Raises': 0, + 'street1Seen': False, + 'street2Aggr': False, + 'street2Bets': 0, + 'street2CBChance': False, + 'street2CBDone': False, + 'street2Calls': 0, + 'street2CheckCallRaiseChance': False, + 'street2CheckCallRaiseDone': False, + 'street2Raises': 0, + 'street2Seen': False, + 'street3Aggr': False, + 'street3Bets': 0, + 'street3CBChance': False, + 'street3CBDone': False, + 'street3Calls': 0, + 'street3CheckCallRaiseChance': False, + 'street3CheckCallRaiseDone': False, + 'street3Raises': 0, + 'street3Seen': False, + 'street4Aggr': False, + 'street4Bets': 0, + 'street4CBChance': False, + 'street4CBDone': False, + 'street4Calls': 0, + 'street4CheckCallRaiseChance': False, + 'street4CheckCallRaiseDone': False, + 'street4Raises': 0, + 'street4Seen': False, + 'totalProfit': -5, + 'tourneyTypeId': None, + 'tourneysPlayersIds': None, + 'winnings': 0, + 'wonAtSD': 0.0, + 'wonWhenSeenStreet1': 0.0, + 'wonWhenSeenStreet2': 0.0, + 'wonWhenSeenStreet3': 0.0, + 'wonWhenSeenStreet4': 0.0}, + u'Player7': { 'card1': 0, + 'card2': 0, + 'card3': 5, + 'card4': 8, + 'card5': 30, + 'card6': 14, + 'card7': 0, + 'foldBbToStealChance': False, + 'foldSbToStealChance': False, + 'foldToOtherRaisedStreet0': False, + 'foldToOtherRaisedStreet1': False, + 'foldToOtherRaisedStreet2': False, + 'foldToOtherRaisedStreet3': True, + 'foldToOtherRaisedStreet4': False, + 'foldToStreet1CBChance': False, + 'foldToStreet1CBDone': False, + 'foldToStreet2CBChance': False, + 'foldToStreet2CBDone': False, + 'foldToStreet3CBChance': False, + 'foldToStreet3CBDone': False, + 'foldToStreet4CBChance': False, + 'foldToStreet4CBDone': False, + 'foldedBbToSteal': False, + 'foldedSbToSteal': False, + 'other3BStreet0': False, + 'other4BStreet0': False, + 'otherRaisedStreet0': False, + 'otherRaisedStreet1': True, + 'otherRaisedStreet2': True, + 'otherRaisedStreet3': True, + 'otherRaisedStreet4': False, + 'position': 5, + 'raiseFirstInChance': True, + 'raisedFirstIn': False, + 'rake': 0, + 'sawShowdown': False, + 'seatNo': 7, + 'sitout': False, + 'startCards': -8, + 'startCash': 260, + 'street0Aggr': False, + 'street0Bets': 0, + 'street0Calls': 2, + 'street0Raises': 0, + 'street0VPI': True, + 'street0_3BChance': False, + 'street0_3BDone': False, + 'street0_4BChance': False, + 'street0_4BDone': False, + 'street1Aggr': False, + 'street1Bets': 0, + 'street1CBChance': False, + 'street1CBDone': False, + 'street1Calls': 1, + 'street1CheckCallRaiseChance': False, + 'street1CheckCallRaiseDone': False, + 'street1Raises': 0, + 'street1Seen': True, + 'street2Aggr': False, + 'street2Bets': 0, + 'street2CBChance': False, + 'street2CBDone': False, + 'street2Calls': 1, + 'street2CheckCallRaiseChance': False, + 'street2CheckCallRaiseDone': False, + 'street2Raises': 0, + 'street2Seen': True, + 'street3Aggr': False, + 'street3Bets': 0, + 'street3CBChance': False, + 'street3CBDone': False, + 'street3Calls': 0, + 'street3CheckCallRaiseChance': False, + 'street3CheckCallRaiseDone': False, + 'street3Raises': 0, + 'street3Seen': True, + 'street4Aggr': False, + 'street4Bets': 0, + 'street4CBChance': False, + 'street4CBDone': False, + 'street4Calls': 0, + 'street4CheckCallRaiseChance': False, + 'street4CheckCallRaiseDone': False, + 'street4Raises': 0, + 'street4Seen': False, + 'totalProfit': -42, + 'tourneyTypeId': None, + 'tourneysPlayersIds': None, + 'winnings': 0, + 'wonAtSD': 0.0, + 'wonWhenSeenStreet1': 0.0, + 'wonWhenSeenStreet2': 0.0, + 'wonWhenSeenStreet3': 0.0, + 'wonWhenSeenStreet4': 0.0}, + u'Player8': { 'card1': 0, + 'card2': 0, + 'card3': 45, + 'card4': 26, + 'card5': 7, + 'card6': 28, + 'card7': 0, + 'foldBbToStealChance': False, + 'foldSbToStealChance': False, + 'foldToOtherRaisedStreet0': False, + 'foldToOtherRaisedStreet1': False, + 'foldToOtherRaisedStreet2': False, + 'foldToOtherRaisedStreet3': False, + 'foldToOtherRaisedStreet4': False, + 'foldToStreet1CBChance': False, + 'foldToStreet1CBDone': False, + 'foldToStreet2CBChance': False, + 'foldToStreet2CBDone': False, + 'foldToStreet3CBChance': False, + 'foldToStreet3CBDone': False, + 'foldToStreet4CBChance': False, + 'foldToStreet4CBDone': False, + 'foldedBbToSteal': False, + 'foldedSbToSteal': False, + 'other3BStreet0': False, + 'other4BStreet0': False, + 'otherRaisedStreet0': False, + 'otherRaisedStreet1': False, + 'otherRaisedStreet2': False, + 'otherRaisedStreet3': False, + 'otherRaisedStreet4': False, + 'position': 4, + 'raiseFirstInChance': False, + 'raisedFirstIn': False, + 'rake': 5, + 'sawShowdown': False, + 'seatNo': 8, + 'sitout': False, + 'startCards': -7, + 'startCash': 175, + 'street0Aggr': True, + 'street0Bets': 0, + 'street0Calls': 0, + 'street0Raises': 0, + 'street0VPI': True, + 'street0_3BChance': False, + 'street0_3BDone': False, + 'street0_4BChance': False, + 'street0_4BDone': False, + 'street1Aggr': True, + 'street1Bets': 1, + 'street1CBChance': False, + 'street1CBDone': False, + 'street1Calls': 0, + 'street1CheckCallRaiseChance': False, + 'street1CheckCallRaiseDone': False, + 'street1Raises': 0, + 'street1Seen': True, + 'street2Aggr': True, + 'street2Bets': 1, + 'street2CBChance': True, + 'street2CBDone': True, + 'street2Calls': 0, + 'street2CheckCallRaiseChance': False, + 'street2CheckCallRaiseDone': False, + 'street2Raises': 0, + 'street2Seen': True, + 'street3Aggr': True, + 'street3Bets': 1, + 'street3CBChance': True, + 'street3CBDone': True, + 'street3Calls': 0, + 'street3CheckCallRaiseChance': False, + 'street3CheckCallRaiseDone': False, + 'street3Raises': 0, + 'street3Seen': True, + 'street4Aggr': False, + 'street4Bets': 0, + 'street4CBChance': False, + 'street4CBDone': False, + 'street4Calls': 0, + 'street4CheckCallRaiseChance': False, + 'street4CheckCallRaiseDone': False, + 'street4Raises': 0, + 'street4Seen': False, + 'totalProfit': 70, + 'tourneyTypeId': None, + 'tourneysPlayersIds': None, + 'winnings': 112, + 'wonAtSD': 0.0, + 'wonWhenSeenStreet1': 1.0, + 'wonWhenSeenStreet2': 1.0, + 'wonWhenSeenStreet3': 1.0, + 'wonWhenSeenStreet4': 0.0}} From 2d5580b7e6abc52c79896289d3b3b0b25490b2e5 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 10 Dec 2010 23:53:51 +0800 Subject: [PATCH 112/162] Regression: Change validated CET time, as date is during DLS --- ...HE-6max-EUR-0.01-0.02.201008.Weird.table.character.txt.hands | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-6max-EUR-0.01-0.02.201008.Weird.table.character.txt.hands b/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-6max-EUR-0.01-0.02.201008.Weird.table.character.txt.hands index bbfe68a1..9520547f 100644 --- a/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-6max-EUR-0.01-0.02.201008.Weird.table.character.txt.hands +++ b/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-6max-EUR-0.01-0.02.201008.Weird.table.character.txt.hands @@ -17,7 +17,7 @@ 'seats': 6, 'showdownPot': 0, 'siteHandNo': u'20000000801', - 'startTime': datetime.datetime(2010, 8, 13, 20, 59, 2, tzinfo=pytz.utc), + 'startTime': datetime.datetime(2010, 8, 13, 19, 59, 2, tzinfo=pytz.utc), 'street0Raises': 1, 'street1Pot': 0, 'street1Raises': 0, From e26e219327fb95e060365acf9117cd6bcba82db6 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 10 Dec 2010 23:56:04 +0800 Subject: [PATCH 113/162] Regression: Change validated ET time as date during DLS --- ...-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt.hands | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt.hands b/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt.hands index 767a0c6e..39c79c53 100644 --- a/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt.hands +++ b/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt.hands @@ -17,7 +17,7 @@ 'seats': 9, 'showdownPot': 0, 'siteHandNo': u'22488827305', - 'startTime': datetime.datetime(2010, 6, 21, 20, 13, tzinfo=pytz.utc), + 'startTime': datetime.datetime(2010, 6, 21, 19, 13, tzinfo=pytz.utc), 'street0Raises': 0, 'street1Pot': 0, 'street1Raises': 0, From 702bbb4c7168e09e957b3ee6ca1494853756dd2e Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 10 Dec 2010 23:57:28 +0800 Subject: [PATCH 114/162] Regression: Change validated date - July is the 7th month, not 6th --- ...-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt.hands | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt.hands b/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt.hands index 39c79c53..115e758f 100644 --- a/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt.hands +++ b/pyfpdb/regression-test-files/cash/FTP/Flop/NLHE-9max-USD-0.02-0.05.201007.Short.lived.date.format.txt.hands @@ -17,7 +17,7 @@ 'seats': 9, 'showdownPot': 0, 'siteHandNo': u'22488827305', - 'startTime': datetime.datetime(2010, 6, 21, 19, 13, tzinfo=pytz.utc), + 'startTime': datetime.datetime(2010, 7, 21, 19, 13, tzinfo=pytz.utc), 'street0Raises': 0, 'street1Pot': 0, 'street1Raises': 0, From d922984b91e4d98207e59bf994e68147a23e6aaf Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 10 Dec 2010 23:59:27 +0800 Subject: [PATCH 115/162] THP: Add support for Hands table Will search for <filename>.hands in the same manner as it does for .hp files --- pyfpdb/TestHandsPlayers.py | 101 +++++++++++++++++++++++++------------ 1 file changed, 70 insertions(+), 31 deletions(-) diff --git a/pyfpdb/TestHandsPlayers.py b/pyfpdb/TestHandsPlayers.py index 34ca1e36..2d978e67 100755 --- a/pyfpdb/TestHandsPlayers.py +++ b/pyfpdb/TestHandsPlayers.py @@ -29,6 +29,8 @@ import Database import SQL import fpdb_import import Options +import datetime +import pytz class FpdbError: @@ -60,6 +62,69 @@ class FpdbError: idx = f.find('regression') print "(%3d) : %s" %(self.histogram[f], f[idx:]) +def compare_handsplayers_file(filename, importer, errors): + hashfilename = filename + '.hp' + + in_fh = codecs.open(hashfilename, 'r', 'utf8') + whole_file = in_fh.read() + in_fh.close() + + testhash = eval(whole_file) + + hhc = importer.getCachedHHC() + handlist = hhc.getProcessedHands() + #We _really_ only want to deal with a single hand here. + for hand in handlist: + ghash = hand.stats.getHandsPlayers() + for p in ghash: + #print "DEBUG: player: '%s'" % p + pstat = ghash[p] + teststat = testhash[p] + + for stat in pstat: + #print "pstat[%s][%s]: %s == %s" % (p, stat, pstat[stat], teststat[stat]) + try: + if pstat[stat] == teststat[stat]: + # The stats match - continue + pass + else: + # Stats don't match - Doh! + errors.error_report(filename, hand, stat, ghash, testhash, p) + except KeyError, e: + errors.error_report(filename, False, "KeyError: '%s'" % stat, False, False, p) + +def compare_hands_file(filename, importer, errors): + hashfilename = filename + '.hands' + + in_fh = codecs.open(hashfilename, 'r', 'utf8') + whole_file = in_fh.read() + in_fh.close() + + testhash = eval(whole_file) + + hhc = importer.getCachedHHC() + handlist = hhc.getProcessedHands() + + for hand in handlist: + ghash = hand.stats.getHands() + for datum in ghash: + #print "DEBUG: hand: '%s'" % datum + try: + if ghash[datum] == testhash[datum]: + # The stats match - continue + pass + else: + # Stats don't match. + if datum == "gametypeId": + # Not an error. gametypeIds are dependent on the order added to the db. + #print "DEBUG: Skipping mismatched gamtypeId" + pass + else: + errors.error_report(filename, hand, datum, ghash, testhash, None) + except KeyError, e: + errors.error_report(filename, False, "KeyError: '%s'" % stat, False, False, p) + + def compare(leaf, importer, errors, site): filename = leaf #print "DEBUG: fileanme: %s" % filename @@ -70,39 +135,13 @@ def compare(leaf, importer, errors, site): importer.addBulkImportImportFileOrDir(filename, site=site) (stored, dups, partial, errs, ttime) = importer.runImport() - if os.path.isfile(filename + '.hp') and errs < 1: - # Compare them - hashfilename = filename + '.hp' - - in_fh = codecs.open(hashfilename, 'r', 'utf8') - whole_file = in_fh.read() - in_fh.close() - - testhash = eval(whole_file) - - hhc = importer.getCachedHHC() - handlist = hhc.getProcessedHands() - #We _really_ only want to deal with a single hand here. - for hand in handlist: - ghash = hand.stats.getHandsPlayers() - for p in ghash: - #print "DEBUG: player: '%s'" % p - pstat = ghash[p] - teststat = testhash[p] - - for stat in pstat: - #print "pstat[%s][%s]: %s == %s" % (p, stat, pstat[stat], teststat[stat]) - try: - if pstat[stat] == teststat[stat]: - # The stats match - continue - pass - else: - # Stats don't match - Doh! - errors.error_report(filename, hand, stat, ghash, testhash, p) - except KeyError, e: - errors.error_report(filename, False, "KeyError: '%s'" % stat, False, False, p) if errs > 0: errors.error_report(filename, False, "Parse", False, False, False) + else: + if os.path.isfile(filename + '.hp'): + compare_handsplayers_file(filename, importer, errors) + if os.path.isfile(filename + '.hands'): + compare_hands_file(filename, importer, errors) importer.clearFileList() From 3cd7eb881b3a60889acc4dc90c161a8be76a2ea8 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Sat, 11 Dec 2010 00:01:00 +0800 Subject: [PATCH 116/162] FTP: Change date format handling The new FTP date format contains local and ET time information, in almost the same way as Stars. Tested against a new file, an old file, a EUR file and the weird date format that existed for about 3 days --- pyfpdb/FulltiltToFpdb.py | 33 ++++++++++++++++++++------------- 1 file changed, 20 insertions(+), 13 deletions(-) diff --git a/pyfpdb/FulltiltToFpdb.py b/pyfpdb/FulltiltToFpdb.py index 756dd494..487cb12d 100755 --- a/pyfpdb/FulltiltToFpdb.py +++ b/pyfpdb/FulltiltToFpdb.py @@ -63,10 +63,10 @@ class Fulltilt(HandHistoryConverter): [%(LS)s]?(?P<SB>[.0-9]+)/[%(LS)s]?(?P<BB>[.0-9]+)\s(Ante\s[%(LS)s]?(?P<ANTE>[.0-9]+)\s)?-\s [%(LS)s]?(?P<CAP>[.0-9]+\sCap\s)? (?P<GAMETYPE>[-\da-zA-Z\/\'\s]+)\s-\s - (?P<DATETIME>\d+:\d+:\d+\s(?P<TZ1>\w+)\s-\s\d+/\d+/\d+|\d+:\d+\s(?P<TZ2>\w+)\s-\s\w+\,\s\w+\s\d+\,\s\d+) + (?P<DATETIME>.*$) (?P<PARTIAL>\(partial\))?\n (?:.*?\n(?P<CANCELLED>Hand\s\#(?P=HID)\shas\sbeen\scanceled))? - ''' % substitutions, re.VERBOSE|re.DOTALL) + ''' % substitutions, re.MULTILINE|re.VERBOSE) re_TourneyExtraInfo = re.compile('''(((?P<TOURNEY_NAME>[^$]+)? (?P<CURRENCY>[%(LS)s])?(?P<BUYIN>[.0-9]+)?\s*\+\s*[%(LS)s]?(?P<FEE>[.0-9]+)? (\s(?P<SPECIAL>(KO|Heads\sUp|Matrix\s\dx|Rebuy|Madness)))? @@ -123,6 +123,7 @@ class Fulltilt(HandHistoryConverter): re_Mixed = re.compile(r'\s\-\s(?P<MIXED>HA|HORSE|HOSE)\s\-\s', re.VERBOSE) re_Max = re.compile("(?P<MAX>\d+)( max)?", re.MULTILINE) # NB: if we ever match "Full Tilt Poker" we should also match "FullTiltPoker", which PT Stud erroneously exports. + re_DateTime = re.compile("""((?P<H>[0-9]+):(?P<MIN>[0-9]+):(?P<S>[0-9]+)\s(?P<TZ>\w+)\s-\s(?P<Y>[0-9]{4})\/(?P<M>[0-9]{2})\/(?P<D>[0-9]{2})|(?P<H2>[0-9]+):(?P<MIN2>[0-9]+)\s(?P<TZ2>\w+)\s-\s\w+\,\s(?P<M2>\w+)\s(?P<D2>\d+)\,\s(?P<Y2>[0-9]{4}))""", re.MULTILINE) @@ -225,18 +226,24 @@ class Fulltilt(HandHistoryConverter): hand.handid = m.group('HID') hand.tablename = m.group('TABLE') - timezone = "ET" - if m.group('TZ1') == "CET" or m.group('TZ2') == "CET": - timezone = "CET" - try: - stringformat = "%H:%M:%S " + m.group('TZ1') + " - %Y/%m/%d" - hand.startTime = datetime.datetime.strptime(m.group('DATETIME'), stringformat) - except: - stringformat = "%H:%M " + m.group('TZ2') + " - %a, %B %d, %Y" - hand.startTime = datetime.datetime.strptime(m.group('DATETIME'), stringformat) + if m.group('DATETIME'): + # This section of code should match either a single date (which is ET) or + # the last date in the header, which is also recorded in ET. + timezone = "ET" + m1 = self.re_DateTime.finditer(m.group('DATETIME')) + datetimestr = "2000/01/01 00:00:00" + for a in m1: + if a.group('TZ2') == None: + datetimestr = "%s/%s/%s %s:%s:%s" % (a.group('Y'), a.group('M'),a.group('D'),a.group('H'),a.group('MIN'),a.group('S')) + timezone = a.group('TZ') + hand.startTime = datetime.datetime.strptime(datetimestr, "%Y/%m/%d %H:%M:%S") + else: # Short-lived date format + datetimestr = "%s/%s/%s %s:%s" % (a.group('Y2'), a.group('M2'),a.group('D2'),a.group('H2'),a.group('MIN2')) + timezone = a.group('TZ2') + hand.startTime = datetime.datetime.strptime(datetimestr, "%Y/%B/%d %H:%M") + + hand.startTime = HandHistoryConverter.changeTimezone(hand.startTime, timezone, "UTC") - hand.startTime = HandHistoryConverter.changeTimezone(hand.startTime, timezone, "UTC") - if m.group("CANCELLED") or m.group("PARTIAL"): raise FpdbParseError(hid=m.group('HID')) From ee0ed080ed40ea0929df6302dd08ce604a14363f Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Sat, 11 Dec 2010 00:34:27 +0800 Subject: [PATCH 117/162] DerivedStats: Remove erroneous comment --- pyfpdb/DerivedStats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index cd63e871..003f5270 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -135,7 +135,7 @@ class DerivedStats(): #print "DEBUG: vpip: %s" %(self.hands['playersVpi']) self.playersAtStreetX(hand) # Gives playersAtStreet1..4 and Showdown #print "DEBUG: playersAtStreet 1:'%s' 2:'%s' 3:'%s' 4:'%s'" %(self.hands['playersAtStreet1'],self.hands['playersAtStreet2'],self.hands['playersAtStreet3'],self.hands['playersAtStreet4']) - self.streetXRaises(hand) # Empty function currently + self.streetXRaises(hand) def assembleHandsPlayers(self, hand): #street0VPI/vpip already called in Hand From c47fc8b8c04a2488c3bb478d2b0cdf52917a4233 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Sat, 11 Dec 2010 01:17:15 +0800 Subject: [PATCH 118/162] Regression: FTP Razz crasher Player6 is listed as playing the hand and sits out between the listing and ante-up Crashes in encodeRazzStartHand --- ...0-201012.Player6.listed.but.doesnt.act.txt | Bin 0 -> 3342 bytes ...12.Player6.listed.but.doesnt.act.txt.hands | 32 + ...01012.Player6.listed.but.doesnt.act.txt.hp | 752 ++++++++++++++++++ 3 files changed, 784 insertions(+) create mode 100644 pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.Player6.listed.but.doesnt.act.txt create mode 100644 pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.Player6.listed.but.doesnt.act.txt.hands create mode 100644 pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.Player6.listed.but.doesnt.act.txt.hp diff --git a/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.Player6.listed.but.doesnt.act.txt b/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.Player6.listed.but.doesnt.act.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f82d7fa41a557ce766c4638e810b2748843af22 GIT binary patch literal 3342 zcmb_fO>fgc5S=p;|6wIK00J7vA8~uDXrZd8RFd?7tR9>+X)2neN?aijza4mQ*N*M= zCUv2*TyNNUvorH%W`{q&Kgzw_;!!e`8+<dY&SfdzWFjl9KS?Tctd+cwu0-O=zH}tS z%O}8lps}fpfTr9T5G$?c9e%xp#CxDRvX`&BSSvY{1!O31Bs$Qpgow|uV~&@W^r7n~ z9<$>~52w+B1L&ZZ4|s<8F7=voJm}iPuO4<1d;<%0yc2UN&*hm6U|Xtf@U({~_`O10 zl)Qq)A$;mV?`uo8t7Xp-iBx`Q1id060)kPq5q<;VR}hS~ji5K=s5~Rc5gyKnByJ$W z1|rN6F%XQreMZzkL^*<Nh7QlkOx-F*pPqMth{23~M%+NeIf8z~h_69ZJ*C}go;ho* z%iJMnRY^v%og|~zPLf=<lcXoxCCgmeE>rb|k!&YPmTrWRS?dbQ@OL5C_`O7(XF6No z2p=Urs_O{f0ji-d$9PytW|z@C(iLDjLZ&mnv^$Yg8AG}&S8|DOg1lQ}<;GQgVGM~T z?qO-Nn4nj*lO~f1{Ay<jb16ZV&01MvddXo+-Q+)!FNl%xvKj&I8IET7UgLZv-!)rY zZ9|dSH5g<bTw$fa=betAt$Tz%Wmu;aS4yVfZ-sABFTO^We2$@)w*V1!nW}bjH-jXl zJahqCG=Y!HjZM4(rn+mIj7hO;vd-2+i*B_iuF7p^5Bc7%hxTpXC7<=(qAmi|!3lQ% zw=Ps(6XbNiWtRCkx5#&{PFv!t`9@p}W=!Ul9FM?FR$-WTr7QMN!7%-(N4Ls9t!*+~ z*i-NjJ}D0>=fJR0)Mc~B*>;+GRCz>+jyB!MmbD|yiG&d@Ir!JumKy3&y+Gv^k(|IT zg(-|Iv)@ng*VM9^xK?`S9(`be6=hA0*1fPZf?UnfYsQ!e*NuGPE_>HP=T(Mm<wSRf z(`f^5f6fcR=JqeR9moad#4~jEzI=sbdFu={mffh-Q)ppU{ld$skn?HbA14^vy?tgY zqGtSNzf$O5w3l_B!Nxk?J;%AU_=qQC>C)n!?Oa-d9k#gVJ(reUwzy}&$7*rUg%3>} lB`@wN@v&C8Cr92xyu)}S@qZR%rJjLr@h?R#bDx}7-@oh}<lO)O literal 0 HcmV?d00001 diff --git a/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.Player6.listed.but.doesnt.act.txt.hands b/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.Player6.listed.but.doesnt.act.txt.hands new file mode 100644 index 00000000..5ab8e46e --- /dev/null +++ b/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.Player6.listed.but.doesnt.act.txt.hands @@ -0,0 +1,32 @@ +{ 'boardcard1': 0, + 'boardcard2': 0, + 'boardcard3': 0, + 'boardcard4': 0, + 'boardcard5': 0, + 'gametypeId': 1, + 'importTime': None, + 'maxSeats': 8, + 'playersAtShowdown': 1, + 'playersAtStreet-1': 7, + 'playersAtStreet0': 3, + 'playersAtStreet1': 2, + 'playersAtStreet2': 1, + 'playersAtStreet3': 1, + 'playersAtStreet4': 1, + 'playersVpi': 2, + 'seats': 8, + 'showdownPot': 0, + 'siteHandNo': u'26190500040', + 'startTime': datetime.datetime(2010, 12, 7, 9, 19, tzinfo=<UTC>), + 'street0Raises': 0, + 'street1Pot': 0, + 'street1Raises': 1, + 'street2Pot': 0, + 'street2Raises': 1, + 'street3Pot': 0, + 'street3Raises': 0, + 'street4Pot': 0, + 'street4Raises': 0, + 'tableName': u'Mart', + 'texture': None, + 'tourneyId': None} diff --git a/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.Player6.listed.but.doesnt.act.txt.hp b/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.Player6.listed.but.doesnt.act.txt.hp new file mode 100644 index 00000000..2fffb326 --- /dev/null +++ b/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.Player6.listed.but.doesnt.act.txt.hp @@ -0,0 +1,752 @@ +{ u'Hero': { 'card1': 36, + 'card2': 14, + 'card3': 44, + 'card4': 8, + 'card5': 34, + 'card6': 0, + 'card7': 0, + 'foldBbToStealChance': False, + 'foldSbToStealChance': False, + 'foldToOtherRaisedStreet0': False, + 'foldToOtherRaisedStreet1': False, + 'foldToOtherRaisedStreet2': True, + 'foldToOtherRaisedStreet3': False, + 'foldToOtherRaisedStreet4': False, + 'foldToStreet1CBChance': False, + 'foldToStreet1CBDone': False, + 'foldToStreet2CBChance': False, + 'foldToStreet2CBDone': False, + 'foldToStreet3CBChance': False, + 'foldToStreet3CBDone': False, + 'foldToStreet4CBChance': False, + 'foldToStreet4CBDone': False, + 'foldedBbToSteal': False, + 'foldedSbToSteal': False, + 'other3BStreet0': False, + 'other4BStreet0': False, + 'otherRaisedStreet0': False, + 'otherRaisedStreet1': False, + 'otherRaisedStreet2': True, + 'otherRaisedStreet3': False, + 'otherRaisedStreet4': False, + 'position': 5, + 'raiseFirstInChance': True, + 'raisedFirstIn': False, + 'rake': 0, + 'sawShowdown': False, + 'seatNo': 1, + 'sitout': False, + 'startCards': 395, + 'startCash': 574, + 'street0Aggr': False, + 'street0Bets': 0, + 'street0Calls': 1, + 'street0Raises': 0, + 'street0VPI': True, + 'street0_3BChance': False, + 'street0_3BDone': False, + 'street0_4BChance': False, + 'street0_4BDone': False, + 'street1Aggr': True, + 'street1Bets': 1, + 'street1CBChance': False, + 'street1CBDone': False, + 'street1Calls': 0, + 'street1CheckCallRaiseChance': False, + 'street1CheckCallRaiseDone': False, + 'street1Raises': 0, + 'street1Seen': True, + 'street2Aggr': False, + 'street2Bets': 0, + 'street2CBChance': False, + 'street2CBDone': False, + 'street2Calls': 0, + 'street2CheckCallRaiseChance': False, + 'street2CheckCallRaiseDone': False, + 'street2Raises': 0, + 'street2Seen': True, + 'street3Aggr': False, + 'street3Bets': 0, + 'street3CBChance': False, + 'street3CBDone': False, + 'street3Calls': 0, + 'street3CheckCallRaiseChance': False, + 'street3CheckCallRaiseDone': False, + 'street3Raises': 0, + 'street3Seen': False, + 'street4Aggr': False, + 'street4Bets': 0, + 'street4CBChance': False, + 'street4CBDone': False, + 'street4Calls': 0, + 'street4CheckCallRaiseChance': False, + 'street4CheckCallRaiseDone': False, + 'street4Raises': 0, + 'street4Seen': False, + 'totalProfit': -15, + 'tourneyTypeId': None, + 'tourneysPlayersIds': None, + 'winnings': 0, + 'wonAtSD': 0.0, + 'wonWhenSeenStreet1': 0.0, + 'wonWhenSeenStreet2': 0.0, + 'wonWhenSeenStreet3': 0.0, + 'wonWhenSeenStreet4': 0.0}, + u'Player2': { 'card1': 0, + 'card2': 0, + 'card3': 23, + 'card4': 0, + 'card5': 0, + 'card6': 0, + 'card7': 0, + 'foldBbToStealChance': False, + 'foldSbToStealChance': False, + 'foldToOtherRaisedStreet0': False, + 'foldToOtherRaisedStreet1': False, + 'foldToOtherRaisedStreet2': False, + 'foldToOtherRaisedStreet3': False, + 'foldToOtherRaisedStreet4': False, + 'foldToStreet1CBChance': False, + 'foldToStreet1CBDone': False, + 'foldToStreet2CBChance': False, + 'foldToStreet2CBDone': False, + 'foldToStreet3CBChance': False, + 'foldToStreet3CBDone': False, + 'foldToStreet4CBChance': False, + 'foldToStreet4CBDone': False, + 'foldedBbToSteal': False, + 'foldedSbToSteal': False, + 'other3BStreet0': False, + 'other4BStreet0': False, + 'otherRaisedStreet0': False, + 'otherRaisedStreet1': False, + 'otherRaisedStreet2': False, + 'otherRaisedStreet3': False, + 'otherRaisedStreet4': False, + 'position': 4, + 'raiseFirstInChance': False, + 'raisedFirstIn': False, + 'rake': 0, + 'sawShowdown': False, + 'seatNo': 2, + 'sitout': False, + 'startCards': -3, + 'startCash': 650, + 'street0Aggr': False, + 'street0Bets': 0, + 'street0Calls': 0, + 'street0Raises': 0, + 'street0VPI': False, + 'street0_3BChance': False, + 'street0_3BDone': False, + 'street0_4BChance': False, + 'street0_4BDone': False, + 'street1Aggr': False, + 'street1Bets': 0, + 'street1CBChance': False, + 'street1CBDone': False, + 'street1Calls': 0, + 'street1CheckCallRaiseChance': False, + 'street1CheckCallRaiseDone': False, + 'street1Raises': 0, + 'street1Seen': False, + 'street2Aggr': False, + 'street2Bets': 0, + 'street2CBChance': False, + 'street2CBDone': False, + 'street2Calls': 0, + 'street2CheckCallRaiseChance': False, + 'street2CheckCallRaiseDone': False, + 'street2Raises': 0, + 'street2Seen': False, + 'street3Aggr': False, + 'street3Bets': 0, + 'street3CBChance': False, + 'street3CBDone': False, + 'street3Calls': 0, + 'street3CheckCallRaiseChance': False, + 'street3CheckCallRaiseDone': False, + 'street3Raises': 0, + 'street3Seen': False, + 'street4Aggr': False, + 'street4Bets': 0, + 'street4CBChance': False, + 'street4CBDone': False, + 'street4Calls': 0, + 'street4CheckCallRaiseChance': False, + 'street4CheckCallRaiseDone': False, + 'street4Raises': 0, + 'street4Seen': False, + 'totalProfit': -2, + 'tourneyTypeId': None, + 'tourneysPlayersIds': None, + 'winnings': 0, + 'wonAtSD': 0.0, + 'wonWhenSeenStreet1': 0.0, + 'wonWhenSeenStreet2': 0.0, + 'wonWhenSeenStreet3': 0.0, + 'wonWhenSeenStreet4': 0.0}, + u'Player3': { 'card1': 0, + 'card2': 0, + 'card3': 26, + 'card4': 10, + 'card5': 0, + 'card6': 0, + 'card7': 0, + 'foldBbToStealChance': False, + 'foldSbToStealChance': False, + 'foldToOtherRaisedStreet0': False, + 'foldToOtherRaisedStreet1': True, + 'foldToOtherRaisedStreet2': False, + 'foldToOtherRaisedStreet3': False, + 'foldToOtherRaisedStreet4': False, + 'foldToStreet1CBChance': False, + 'foldToStreet1CBDone': False, + 'foldToStreet2CBChance': False, + 'foldToStreet2CBDone': False, + 'foldToStreet3CBChance': False, + 'foldToStreet3CBDone': False, + 'foldToStreet4CBChance': False, + 'foldToStreet4CBDone': False, + 'foldedBbToSteal': False, + 'foldedSbToSteal': False, + 'other3BStreet0': False, + 'other4BStreet0': False, + 'otherRaisedStreet0': False, + 'otherRaisedStreet1': True, + 'otherRaisedStreet2': False, + 'otherRaisedStreet3': False, + 'otherRaisedStreet4': False, + 'position': 3, + 'raiseFirstInChance': False, + 'raisedFirstIn': False, + 'rake': 0, + 'sawShowdown': False, + 'seatNo': 3, + 'sitout': False, + 'startCards': -13, + 'startCash': 690, + 'street0Aggr': False, + 'street0Bets': 0, + 'street0Calls': 1, + 'street0Raises': 0, + 'street0VPI': True, + 'street0_3BChance': False, + 'street0_3BDone': False, + 'street0_4BChance': False, + 'street0_4BDone': False, + 'street1Aggr': False, + 'street1Bets': 0, + 'street1CBChance': False, + 'street1CBDone': False, + 'street1Calls': 0, + 'street1CheckCallRaiseChance': False, + 'street1CheckCallRaiseDone': False, + 'street1Raises': 0, + 'street1Seen': True, + 'street2Aggr': False, + 'street2Bets': 0, + 'street2CBChance': False, + 'street2CBDone': False, + 'street2Calls': 0, + 'street2CheckCallRaiseChance': False, + 'street2CheckCallRaiseDone': False, + 'street2Raises': 0, + 'street2Seen': False, + 'street3Aggr': False, + 'street3Bets': 0, + 'street3CBChance': False, + 'street3CBDone': False, + 'street3Calls': 0, + 'street3CheckCallRaiseChance': False, + 'street3CheckCallRaiseDone': False, + 'street3Raises': 0, + 'street3Seen': False, + 'street4Aggr': False, + 'street4Bets': 0, + 'street4CBChance': False, + 'street4CBDone': False, + 'street4Calls': 0, + 'street4CheckCallRaiseChance': False, + 'street4CheckCallRaiseDone': False, + 'street4Raises': 0, + 'street4Seen': False, + 'totalProfit': -5, + 'tourneyTypeId': None, + 'tourneysPlayersIds': None, + 'winnings': 0, + 'wonAtSD': 0.0, + 'wonWhenSeenStreet1': 0.0, + 'wonWhenSeenStreet2': 0.0, + 'wonWhenSeenStreet3': 0.0, + 'wonWhenSeenStreet4': 0.0}, + u'Player4': { 'card1': 0, + 'card2': 0, + 'card3': 41, + 'card4': 0, + 'card5': 0, + 'card6': 0, + 'card7': 0, + 'foldBbToStealChance': False, + 'foldSbToStealChance': False, + 'foldToOtherRaisedStreet0': False, + 'foldToOtherRaisedStreet1': False, + 'foldToOtherRaisedStreet2': False, + 'foldToOtherRaisedStreet3': False, + 'foldToOtherRaisedStreet4': False, + 'foldToStreet1CBChance': False, + 'foldToStreet1CBDone': False, + 'foldToStreet2CBChance': False, + 'foldToStreet2CBDone': False, + 'foldToStreet3CBChance': False, + 'foldToStreet3CBDone': False, + 'foldToStreet4CBChance': False, + 'foldToStreet4CBDone': False, + 'foldedBbToSteal': False, + 'foldedSbToSteal': False, + 'other3BStreet0': False, + 'other4BStreet0': False, + 'otherRaisedStreet0': False, + 'otherRaisedStreet1': False, + 'otherRaisedStreet2': False, + 'otherRaisedStreet3': False, + 'otherRaisedStreet4': False, + 'position': 2, + 'raiseFirstInChance': False, + 'raisedFirstIn': False, + 'rake': 0, + 'sawShowdown': False, + 'seatNo': 4, + 'sitout': False, + 'startCards': -11, + 'startCash': 168, + 'street0Aggr': False, + 'street0Bets': 0, + 'street0Calls': 0, + 'street0Raises': 0, + 'street0VPI': False, + 'street0_3BChance': False, + 'street0_3BDone': False, + 'street0_4BChance': False, + 'street0_4BDone': False, + 'street1Aggr': False, + 'street1Bets': 0, + 'street1CBChance': False, + 'street1CBDone': False, + 'street1Calls': 0, + 'street1CheckCallRaiseChance': False, + 'street1CheckCallRaiseDone': False, + 'street1Raises': 0, + 'street1Seen': False, + 'street2Aggr': False, + 'street2Bets': 0, + 'street2CBChance': False, + 'street2CBDone': False, + 'street2Calls': 0, + 'street2CheckCallRaiseChance': False, + 'street2CheckCallRaiseDone': False, + 'street2Raises': 0, + 'street2Seen': False, + 'street3Aggr': False, + 'street3Bets': 0, + 'street3CBChance': False, + 'street3CBDone': False, + 'street3Calls': 0, + 'street3CheckCallRaiseChance': False, + 'street3CheckCallRaiseDone': False, + 'street3Raises': 0, + 'street3Seen': False, + 'street4Aggr': False, + 'street4Bets': 0, + 'street4CBChance': False, + 'street4CBDone': False, + 'street4Calls': 0, + 'street4CheckCallRaiseChance': False, + 'street4CheckCallRaiseDone': False, + 'street4Raises': 0, + 'street4Seen': False, + 'totalProfit': -2, + 'tourneyTypeId': None, + 'tourneysPlayersIds': None, + 'winnings': 0, + 'wonAtSD': 0.0, + 'wonWhenSeenStreet1': 0.0, + 'wonWhenSeenStreet2': 0.0, + 'wonWhenSeenStreet3': 0.0, + 'wonWhenSeenStreet4': 0.0}, + u'Player5': { 'card1': 0, + 'card2': 0, + 'card3': 6, + 'card4': 0, + 'card5': 0, + 'card6': 0, + 'card7': 0, + 'foldBbToStealChance': False, + 'foldSbToStealChance': False, + 'foldToOtherRaisedStreet0': False, + 'foldToOtherRaisedStreet1': False, + 'foldToOtherRaisedStreet2': False, + 'foldToOtherRaisedStreet3': False, + 'foldToOtherRaisedStreet4': False, + 'foldToStreet1CBChance': False, + 'foldToStreet1CBDone': False, + 'foldToStreet2CBChance': False, + 'foldToStreet2CBDone': False, + 'foldToStreet3CBChance': False, + 'foldToStreet3CBDone': False, + 'foldToStreet4CBChance': False, + 'foldToStreet4CBDone': False, + 'foldedBbToSteal': False, + 'foldedSbToSteal': False, + 'other3BStreet0': False, + 'other4BStreet0': False, + 'otherRaisedStreet0': False, + 'otherRaisedStreet1': False, + 'otherRaisedStreet2': False, + 'otherRaisedStreet3': False, + 'otherRaisedStreet4': False, + 'position': 1, + 'raiseFirstInChance': False, + 'raisedFirstIn': False, + 'rake': 0, + 'sawShowdown': False, + 'seatNo': 5, + 'sitout': False, + 'startCards': -7, + 'startCash': 802, + 'street0Aggr': False, + 'street0Bets': 0, + 'street0Calls': 0, + 'street0Raises': 0, + 'street0VPI': False, + 'street0_3BChance': False, + 'street0_3BDone': False, + 'street0_4BChance': False, + 'street0_4BDone': False, + 'street1Aggr': False, + 'street1Bets': 0, + 'street1CBChance': False, + 'street1CBDone': False, + 'street1Calls': 0, + 'street1CheckCallRaiseChance': False, + 'street1CheckCallRaiseDone': False, + 'street1Raises': 0, + 'street1Seen': False, + 'street2Aggr': False, + 'street2Bets': 0, + 'street2CBChance': False, + 'street2CBDone': False, + 'street2Calls': 0, + 'street2CheckCallRaiseChance': False, + 'street2CheckCallRaiseDone': False, + 'street2Raises': 0, + 'street2Seen': False, + 'street3Aggr': False, + 'street3Bets': 0, + 'street3CBChance': False, + 'street3CBDone': False, + 'street3Calls': 0, + 'street3CheckCallRaiseChance': False, + 'street3CheckCallRaiseDone': False, + 'street3Raises': 0, + 'street3Seen': False, + 'street4Aggr': False, + 'street4Bets': 0, + 'street4CBChance': False, + 'street4CBDone': False, + 'street4Calls': 0, + 'street4CheckCallRaiseChance': False, + 'street4CheckCallRaiseDone': False, + 'street4Raises': 0, + 'street4Seen': False, + 'totalProfit': -2, + 'tourneyTypeId': None, + 'tourneysPlayersIds': None, + 'winnings': 0, + 'wonAtSD': 0.0, + 'wonWhenSeenStreet1': 0.0, + 'wonWhenSeenStreet2': 0.0, + 'wonWhenSeenStreet3': 0.0, + 'wonWhenSeenStreet4': 0.0}, + u'Player6': { 'card1': 0, + 'card2': 0, + 'card3': 0, + 'card4': 0, + 'card5': 0, + 'card6': 0, + 'card7': 0, + 'foldBbToStealChance': False, + 'foldSbToStealChance': False, + 'foldToOtherRaisedStreet0': False, + 'foldToOtherRaisedStreet1': False, + 'foldToOtherRaisedStreet2': False, + 'foldToOtherRaisedStreet3': False, + 'foldToOtherRaisedStreet4': False, + 'foldToStreet1CBChance': False, + 'foldToStreet1CBDone': False, + 'foldToStreet2CBChance': False, + 'foldToStreet2CBDone': False, + 'foldToStreet3CBChance': False, + 'foldToStreet3CBDone': False, + 'foldToStreet4CBChance': False, + 'foldToStreet4CBDone': False, + 'foldedBbToSteal': False, + 'foldedSbToSteal': False, + 'other3BStreet0': False, + 'other4BStreet0': False, + 'otherRaisedStreet0': False, + 'otherRaisedStreet1': False, + 'otherRaisedStreet2': False, + 'otherRaisedStreet3': False, + 'otherRaisedStreet4': False, + 'position': 2, + 'raiseFirstInChance': False, + 'raisedFirstIn': False, + 'rake': 0, + 'sawShowdown': False, + 'seatNo': 6, + 'sitout': False, + 'startCards': 0, + 'startCash': 54, + 'street0Aggr': False, + 'street0Bets': 0, + 'street0Calls': 0, + 'street0Raises': 0, + 'street0VPI': False, + 'street0_3BChance': False, + 'street0_3BDone': False, + 'street0_4BChance': False, + 'street0_4BDone': False, + 'street1Aggr': False, + 'street1Bets': 0, + 'street1CBChance': False, + 'street1CBDone': False, + 'street1Calls': 0, + 'street1CheckCallRaiseChance': False, + 'street1CheckCallRaiseDone': False, + 'street1Raises': 0, + 'street1Seen': False, + 'street2Aggr': False, + 'street2Bets': 0, + 'street2CBChance': False, + 'street2CBDone': False, + 'street2Calls': 0, + 'street2CheckCallRaiseChance': False, + 'street2CheckCallRaiseDone': False, + 'street2Raises': 0, + 'street2Seen': False, + 'street3Aggr': False, + 'street3Bets': 0, + 'street3CBChance': False, + 'street3CBDone': False, + 'street3Calls': 0, + 'street3CheckCallRaiseChance': False, + 'street3CheckCallRaiseDone': False, + 'street3Raises': 0, + 'street3Seen': False, + 'street4Aggr': False, + 'street4Bets': 0, + 'street4CBChance': False, + 'street4CBDone': False, + 'street4Calls': 0, + 'street4CheckCallRaiseChance': False, + 'street4CheckCallRaiseDone': False, + 'street4Raises': 0, + 'street4Seen': False, + 'totalProfit': 0, + 'tourneyTypeId': None, + 'tourneysPlayersIds': None, + 'winnings': 0, + 'wonAtSD': 0.0, + 'wonWhenSeenStreet1': 0.0, + 'wonWhenSeenStreet2': 0.0, + 'wonWhenSeenStreet3': 0.0, + 'wonWhenSeenStreet4': 0.0}, + u'Player7': { 'card1': 0, + 'card2': 0, + 'card3': 52, + 'card4': 0, + 'card5': 0, + 'card6': 0, + 'card7': 0, + 'foldBbToStealChance': False, + 'foldSbToStealChance': False, + 'foldToOtherRaisedStreet0': False, + 'foldToOtherRaisedStreet1': False, + 'foldToOtherRaisedStreet2': False, + 'foldToOtherRaisedStreet3': False, + 'foldToOtherRaisedStreet4': False, + 'foldToStreet1CBChance': False, + 'foldToStreet1CBDone': False, + 'foldToStreet2CBChance': False, + 'foldToStreet2CBDone': False, + 'foldToStreet3CBChance': False, + 'foldToStreet3CBDone': False, + 'foldToStreet4CBChance': False, + 'foldToStreet4CBDone': False, + 'foldedBbToSteal': False, + 'foldedSbToSteal': False, + 'other3BStreet0': False, + 'other4BStreet0': False, + 'otherRaisedStreet0': False, + 'otherRaisedStreet1': False, + 'otherRaisedStreet2': False, + 'otherRaisedStreet3': False, + 'otherRaisedStreet4': False, + 'position': 0, + 'raiseFirstInChance': False, + 'raisedFirstIn': False, + 'rake': 0, + 'sawShowdown': False, + 'seatNo': 7, + 'sitout': False, + 'startCards': -13, + 'startCash': 281, + 'street0Aggr': False, + 'street0Bets': 0, + 'street0Calls': 0, + 'street0Raises': 0, + 'street0VPI': False, + 'street0_3BChance': False, + 'street0_3BDone': False, + 'street0_4BChance': False, + 'street0_4BDone': False, + 'street1Aggr': False, + 'street1Bets': 0, + 'street1CBChance': False, + 'street1CBDone': False, + 'street1Calls': 0, + 'street1CheckCallRaiseChance': False, + 'street1CheckCallRaiseDone': False, + 'street1Raises': 0, + 'street1Seen': False, + 'street2Aggr': False, + 'street2Bets': 0, + 'street2CBChance': False, + 'street2CBDone': False, + 'street2Calls': 0, + 'street2CheckCallRaiseChance': False, + 'street2CheckCallRaiseDone': False, + 'street2Raises': 0, + 'street2Seen': False, + 'street3Aggr': False, + 'street3Bets': 0, + 'street3CBChance': False, + 'street3CBDone': False, + 'street3Calls': 0, + 'street3CheckCallRaiseChance': False, + 'street3CheckCallRaiseDone': False, + 'street3Raises': 0, + 'street3Seen': False, + 'street4Aggr': False, + 'street4Bets': 0, + 'street4CBChance': False, + 'street4CBDone': False, + 'street4Calls': 0, + 'street4CheckCallRaiseChance': False, + 'street4CheckCallRaiseDone': False, + 'street4Raises': 0, + 'street4Seen': False, + 'totalProfit': -2, + 'tourneyTypeId': None, + 'tourneysPlayersIds': None, + 'winnings': 0, + 'wonAtSD': 0.0, + 'wonWhenSeenStreet1': 0.0, + 'wonWhenSeenStreet2': 0.0, + 'wonWhenSeenStreet3': 0.0, + 'wonWhenSeenStreet4': 0.0}, + u'Player8': { 'card1': 0, + 'card2': 0, + 'card3': 37, + 'card4': 46, + 'card5': 18, + 'card6': 0, + 'card7': 0, + 'foldBbToStealChance': False, + 'foldSbToStealChance': False, + 'foldToOtherRaisedStreet0': False, + 'foldToOtherRaisedStreet1': False, + 'foldToOtherRaisedStreet2': False, + 'foldToOtherRaisedStreet3': False, + 'foldToOtherRaisedStreet4': False, + 'foldToStreet1CBChance': False, + 'foldToStreet1CBDone': False, + 'foldToStreet2CBChance': False, + 'foldToStreet2CBDone': False, + 'foldToStreet3CBChance': False, + 'foldToStreet3CBDone': False, + 'foldToStreet4CBChance': False, + 'foldToStreet4CBDone': False, + 'foldedBbToSteal': False, + 'foldedSbToSteal': False, + 'other3BStreet0': False, + 'other4BStreet0': False, + 'otherRaisedStreet0': False, + 'otherRaisedStreet1': True, + 'otherRaisedStreet2': False, + 'otherRaisedStreet3': False, + 'otherRaisedStreet4': False, + 'position': 'S', + 'raiseFirstInChance': False, + 'raisedFirstIn': False, + 'rake': 2, + 'sawShowdown': False, + 'seatNo': 8, + 'sitout': False, + 'startCards': -2, + 'startCash': 187, + 'street0Aggr': False, + 'street0Bets': 0, + 'street0Calls': 0, + 'street0Raises': 0, + 'street0VPI': False, + 'street0_3BChance': False, + 'street0_3BDone': False, + 'street0_4BChance': False, + 'street0_4BDone': False, + 'street1Aggr': False, + 'street1Bets': 0, + 'street1CBChance': False, + 'street1CBDone': False, + 'street1Calls': 1, + 'street1CheckCallRaiseChance': False, + 'street1CheckCallRaiseDone': False, + 'street1Raises': 0, + 'street1Seen': True, + 'street2Aggr': True, + 'street2Bets': 1, + 'street2CBChance': False, + 'street2CBDone': False, + 'street2Calls': 0, + 'street2CheckCallRaiseChance': False, + 'street2CheckCallRaiseDone': False, + 'street2Raises': 0, + 'street2Seen': True, + 'street3Aggr': False, + 'street3Bets': 0, + 'street3CBChance': False, + 'street3CBDone': False, + 'street3Calls': 0, + 'street3CheckCallRaiseChance': False, + 'street3CheckCallRaiseDone': False, + 'street3Raises': 0, + 'street3Seen': False, + 'street4Aggr': False, + 'street4Bets': 0, + 'street4CBChance': False, + 'street4CBDone': False, + 'street4Calls': 0, + 'street4CheckCallRaiseChance': False, + 'street4CheckCallRaiseDone': False, + 'street4Raises': 0, + 'street4Seen': False, + 'totalProfit': 26, + 'tourneyTypeId': None, + 'tourneysPlayersIds': None, + 'winnings': 41, + 'wonAtSD': 0.0, + 'wonWhenSeenStreet1': 1.0, + 'wonWhenSeenStreet2': 1.0, + 'wonWhenSeenStreet3': 0.0, + 'wonWhenSeenStreet4': 0.0}} From 5a5ab451d1d06e4c7354d9e1c5f3cb990533a210 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Sat, 11 Dec 2010 01:19:49 +0800 Subject: [PATCH 119/162] Regression: Fix datetime format for eval() call --- ...USD-0.10-0.20-201012.Player6.listed.but.doesnt.act.txt.hands | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.Player6.listed.but.doesnt.act.txt.hands b/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.Player6.listed.but.doesnt.act.txt.hands index 5ab8e46e..7123f7df 100644 --- a/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.Player6.listed.but.doesnt.act.txt.hands +++ b/pyfpdb/regression-test-files/cash/FTP/Stud/Razz-USD-0.10-0.20-201012.Player6.listed.but.doesnt.act.txt.hands @@ -17,7 +17,7 @@ 'seats': 8, 'showdownPot': 0, 'siteHandNo': u'26190500040', - 'startTime': datetime.datetime(2010, 12, 7, 9, 19, tzinfo=<UTC>), + 'startTime': datetime.datetime(2010, 12, 7, 9, 19, tzinfo=pytz.utc), 'street0Raises': 0, 'street1Pot': 0, 'street1Raises': 1, From caa2104fa94c0918dbb28c8e903c2781c1ef8d11 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Sat, 11 Dec 2010 01:26:56 +0800 Subject: [PATCH 120/162] Fix for FTP Razz crasher When a player is listed as playing the hand and sits out between the listing and ante-up join_holecards returned only 2 cards causing Card.encodeRazzStartHand() to crash. Make sure that join_holecards must return at least 3 cards for stud, and add an entry for this case in the lookup table --- pyfpdb/Card.py | 1 + pyfpdb/Hand.py | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/pyfpdb/Card.py b/pyfpdb/Card.py index b3ce09ff..8d426a0d 100755 --- a/pyfpdb/Card.py +++ b/pyfpdb/Card.py @@ -303,6 +303,7 @@ def encodeRazzStartHand(cards): encodeRazzList = { '(00)A':-13,'(00)2':-12,'(00)3':-11,'(00)4':-10,'(00)5':-9,'(00)6':-8,'(00)7':-7,'(00)8':-6,'(00)9':-5,'(00)T':-4, '(00)J':-3,'(00)Q':-2,'(00)K':-1, + '(00)0':0, '(32)A':1,'(3A)2':2,'(2A)3':3,'(42)A':4,'(4A)2':5,'(2A)4':6,'(43)A':7,'(4A)3':8,'(3A)4':9, '(43)2':10,'(42)3':11,'(32)4':12,'(52)A':13,'(5A)2':14,'(2A)5':15,'(53)A':16,'(5A)3':17,'(3A)5':18,'(53)2':19, '(52)3':20,'(32)5':21,'(54)A':22,'(5A)4':23,'(4A)5':24,'(54)2':25,'(52)4':26,'(42)5':27,'(54)3':28,'(53)4':29, diff --git a/pyfpdb/Hand.py b/pyfpdb/Hand.py index 8485ca9e..c2bea220 100644 --- a/pyfpdb/Hand.py +++ b/pyfpdb/Hand.py @@ -1580,6 +1580,11 @@ Add a complete on [street] by [player] to [amountTo] else: log.warning(_("join_holecards: # of holecards should be either < 4, 4 or 7 - 5 and 6 should be impossible for anyone who is not a hero")) log.warning(_("join_holcards: holecards(%s): %s") %(player, holecards)) + if holecards == [u'0x', u'0x']: + log.warning(_("join_holecards: Player '%s' appears not to have been dealt a card")) + # If a player is listed but not dealt a card in a cash game this can occur + # Noticed in FTP Razz hand. Return 3 empty cards in this case + holecards = [u'0x', u'0x', u'0x'] return holecards From df7bfedd8978a0a57d7645d4986494665856d75c Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Sat, 11 Dec 2010 01:45:23 +0800 Subject: [PATCH 121/162] Regression: add PLO .hands file Appears I forgot to add this previously --- ...-0.01-0.02.201003.River.Showdown.txt.hands | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pyfpdb/regression-test-files/cash/FTP/Flop/PLO-6max-USD-0.01-0.02.201003.River.Showdown.txt.hands diff --git a/pyfpdb/regression-test-files/cash/FTP/Flop/PLO-6max-USD-0.01-0.02.201003.River.Showdown.txt.hands b/pyfpdb/regression-test-files/cash/FTP/Flop/PLO-6max-USD-0.01-0.02.201003.River.Showdown.txt.hands new file mode 100644 index 00000000..9278fc04 --- /dev/null +++ b/pyfpdb/regression-test-files/cash/FTP/Flop/PLO-6max-USD-0.01-0.02.201003.River.Showdown.txt.hands @@ -0,0 +1,32 @@ +{ 'boardcard1': 37, + 'boardcard2': 20, + 'boardcard3': 8, + 'boardcard4': 51, + 'boardcard5': 5, + 'gametypeId': 8, + 'importTime': None, + 'maxSeats': 6, + 'playersAtShowdown': 2, + 'playersAtStreet-1': 6, + 'playersAtStreet0': 4, + 'playersAtStreet1': 3, + 'playersAtStreet2': 3, + 'playersAtStreet3': 2, + 'playersAtStreet4': 0, + 'playersVpi': 3, + 'seats': 6, + 'showdownPot': 0, + 'siteHandNo': u'18932478237', + 'startTime': datetime.datetime(2010, 3, 3, 16, 37, 56, tzinfo=pytz.utc), + 'street0Raises': 0, + 'street1Pot': 20, + 'street1Raises': 1, + 'street2Pot': 50, + 'street2Raises': 1, + 'street3Pot': 100, + 'street3Raises': 1, + 'street4Pot': 0, + 'street4Raises': 0, + 'tableName': u'Gaines', + 'texture': None, + 'tourneyId': None} From f0a5864bf4699822066d872f019c93b298754f23 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Fri, 10 Dec 2010 13:41:04 -0500 Subject: [PATCH 122/162] Fix autoclose on tourney table change. --- pyfpdb/HUD_main.pyw | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw index 38d435bc..e58260c8 100644 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -312,8 +312,9 @@ def idle_kill(hud_main, table): gtk.gdk.threads_enter() try: if table in hud_main.hud_dict: - hud_main.hud_dict[table].kill() hud_main.vb.remove(hud_main.hud_dict[table].tablehudlabel) + hud_main.hud_dict[table].main_window.destroy() + hud_main.hud_dict[table].kill() del(hud_main.hud_dict[table]) hud_main.main_window.resize(1, 1) except: From f023527595a4c7726217bea6c51f274dc8a7a660 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Fri, 10 Dec 2010 19:35:43 -0500 Subject: [PATCH 123/162] Make HUD_main executable (again). --- pyfpdb/HUD_main.pyw | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 pyfpdb/HUD_main.pyw diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw old mode 100644 new mode 100755 From 669fb58471d3678b40b4c5e7dc463fb3a8a8d3d4 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Sat, 11 Dec 2010 10:42:04 -0500 Subject: [PATCH 124/162] Make windows more nearly happy - adapt change from Eric. --- pyfpdb/HUD_main.pyw | 3 ++- pyfpdb/TableWindow.py | 2 +- pyfpdb/WinTables.py | 5 +++++ 3 files changed, 8 insertions(+), 2 deletions(-) mode change 100755 => 100644 pyfpdb/HUD_main.pyw diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw old mode 100755 new mode 100644 index 55fa7d93..34b701c9 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -343,7 +343,8 @@ def idle_create(hud_main, new_hand_id, table, temp_key, max, poker_game, type, s gtk.gdk.threads_enter() try: - table.gdkhandle = gtk.gdk.window_foreign_new(table.number) + if table.gdkhandle is not None: # on windows this should already be set + table.gdkhandle = gtk.gdk.window_foreign_new(table.number) newlabel = gtk.Label("%s - %s" % (table.site, temp_key)) hud_main.vb.add(newlabel) newlabel.show() diff --git a/pyfpdb/TableWindow.py b/pyfpdb/TableWindow.py index 2f13634f..05c6ce4e 100644 --- a/pyfpdb/TableWindow.py +++ b/pyfpdb/TableWindow.py @@ -117,6 +117,7 @@ class Table_Window(object): self.config = config self.site = site self.hud = None # fill in later + self.gdkhandle = None if tournament is not None and table_number is not None: self.tournament = int(tournament) self.table = int(table_number) @@ -136,7 +137,6 @@ class Table_Window(object): self.search_string = getTableTitleRe(self.config, self.site, self.type, **table_kwargs) self.find_table_parameters() -# self.gdkhandle = gtk.gdk.window_foreign_new(self.number) geo = self.get_geometry() if geo is None: return None self.width = geo['width'] diff --git a/pyfpdb/WinTables.py b/pyfpdb/WinTables.py index b7114ae3..599e51c6 100644 --- a/pyfpdb/WinTables.py +++ b/pyfpdb/WinTables.py @@ -76,6 +76,11 @@ class Table(Table_Window): self.title = titles[hwnd] self.hud = None self.number = hwnd + if self.gdkhandle is not None: + try: # Windows likes this here - Linux doesn't + self.gdkhandle = gtk.gdk.window_foreign_new(self.number) + except AttributeError: + pass def get_geometry(self): try: From d351205fc8751d96bd35a2ead7cf2bbeeceefd22 Mon Sep 17 00:00:00 2001 From: gimick <bbtgaf@googlemail.com> Date: Sat, 11 Dec 2010 23:59:45 +0000 Subject: [PATCH 125/162] pypokereval : Draft walkthrough to create python site-package --- ...ypokereval-win32-packaging-walkthrough.txt | 155 ++++++++++++++++++ 1 file changed, 155 insertions(+) create mode 100644 packaging/windows/pypokereval-win32-packaging-walkthrough.txt diff --git a/packaging/windows/pypokereval-win32-packaging-walkthrough.txt b/packaging/windows/pypokereval-win32-packaging-walkthrough.txt new file mode 100644 index 00000000..f5527309 --- /dev/null +++ b/packaging/windows/pypokereval-win32-packaging-walkthrough.txt @@ -0,0 +1,155 @@ +pypokereval packaging for fpdb project +-------------------------------------- + +Created by Gimick on 11th December 2010 +Content is available under the the GNU Affero General Public License version 3 + +Background +---------- + +The walktrough builds an unoffical python installer package for pypokereval. + +In a previous walkthrough, the pypokereval dll(pyd) was built from source. +In this walkthrough, we are going to generate a windows package which will allow +the sources to be installed through distutils onto a client computer + +The current situation is that there is no windows build or windows installer provided +by the package authors. + +Until a package is available, the fpdb project needs some method of providing a windows +installation for the pypokereval module. This walkthrough will therefore be obsolete once +an official package becomes available. + +Actually, for windows fpdb users, the majority will use a pre-built fpdb executable (which contains the +pypokereval package) Therefore, pypokereval installation will only be needed for two groups of people: + i) anyone wanting to build an fpdb package using py2exe + ii) anyone wanting to run fpdb on windows from source + +Credits +------- + +To loic@dachary.org at pokersource http://pokersource.sourceforge.net/ +To donn.ingle@gmail.com for the tutorial here ... http://wiki.python.org/moin/Distutils/Tutorial +Official python reference here ... http://docs.python.org/distutils/index.html + +Assumptions +----------- + +The underlying dll(pyd) and pokereval library is built for win32 x86 platform only, so we will assume +32bit only in this walkthrough. Contributions for a x86-64 build are most welcome. + +Similarly, the underlying package is built against the python 2-6 library and is valid only for that version. +The underlying package was not built with sse enabled, and therefore should work for legacy systems. + + +1. Install pre-requisites +------------------------- + +System used for building is winXP home + +1.1/ Install python runtime from here ... + +Python 2.6.5 ... http://www.python.org/ftp/python/2.6.5/python-2.6.5.msi + +1.2/ Grab pypokereval stuff from fpdb project here ... + +pypokereval ... http://sourceforge.net/projects/fpdb/files/fpdb/pypoker-eval-win32/pypokereval-138-win32-py265-fpdb-1.1.exe/download + +1.3/ Double click the pypokereval-138-win32-py265-fpdb-1.1.exe and extract the folder to the desktop + + +2. Prepare a folder containing the items needing packaging +---------------------------------------------------------- + +dos>cd desktop +dos>mkdir pypokereval138-installer-win32-py265-fpdb +dos>cd pypokereval138-installer-win32-py265-fpdb +dos>mkdir payload +dos>cd payload + +dos>copy ..\..\pypokereval-138-win32-py265-fpdb-1.1\_pokereval_2_6.pyd +dos>copy ..\..\pypokereval-138-win32-py265-fpdb-1.1\pokereval.py + +dos>mkdir utils +dos>cd utils +dos>copy ..\..\..\pypokereval-138-win32-py265-fpdb-1.1\test.py +dos>cd .. + +The next step is to rename the pokereval.py file to __init__.py. The reason for doing this +is that site-packages require an __init__ file to be found when the module is imported at runtime +Inserting a dummy __init__.py which simply imports pokereval does not work, the reason being that the +PokerEval class is not seen by the caller. Syntax such as "from pokereval import PokerEval" +does not work unless the pokereval.py (which defines the PokerEval class) is renamed to __init__.py. + +dos> rename pokereval.py __init__.py + +3. Prepare the additional packaging files + +dos>cd desktop +dos>cd pypokereval138-installer-win32-py265-fpdb + +3.1/ setup.py +------------- + +dos> edit setup.py + +Include the following python code: + +#================================================== + +from distutils.core import setup + +filelist = ["utils/*", "_pokereval_2_6.pyd"] + +setup(name = "pokereval", +version = "138", +description = "pypokereval installer (unofficial)", +author = "project fpdb", +author_email = "Fpdb-main@lists.sourceforge.net", +url = "fpdb.sourceforge.net", +packages = ['pokereval'], +package_data = {'pokereval' : filelist }, +long_description = """An unofficial installer for pypokereval v138, win32, python v2.6.5 +pokereval official project page is at http://www.pokersource.info/""" +) + +#================================================== + +3.2 / review directory tree +--------------------------- + +The following structure should now exist. + +pypokereval138-installer-win32-py265-fpdb + |--setup.py + |--pokereval + |--_pokereval_2_6.pyd + |--__init__.py + |--utils + |--test.py + + +3.3 Build +--------- + +Navigate to the desktop/pypokereval138-installer-win32-py265-fpdb directory + +dos>c:\Python26\python.exe setup.py bdist_wininst --plat-name=win32 --user-access-control auto + +3.4 Complete +------------ + +The executable file pokereval-138.win32.exe will be in the newly-created dist folder. + +3.5 Install and test +-------------------- + +Double click to install +Navigate to c:\python26\lib\site-packages\pokereval\test + +execute dos>c:\Python26\python.exe test.py + +Output should scroll down the screen + + + From c6fbca1e374ffde15e4cd9d72dd74f483f339bd5 Mon Sep 17 00:00:00 2001 From: gimick <bbtgaf@googlemail.com> Date: Sun, 12 Dec 2010 19:48:10 +0000 Subject: [PATCH 126/162] pokereval: remove windows pypokereval files - these files now installed in site-packages --- pyfpdb/_pokereval_2_6.pyd | Bin 143360 -> 0 bytes pyfpdb/pokereval.py | 338 -------------------------------------- 2 files changed, 338 deletions(-) delete mode 100644 pyfpdb/_pokereval_2_6.pyd delete mode 100644 pyfpdb/pokereval.py diff --git a/pyfpdb/_pokereval_2_6.pyd b/pyfpdb/_pokereval_2_6.pyd deleted file mode 100644 index f11d3081e396138da2d9b9bc2aadb69ca1388e57..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 143360 zcmeF43w&Hvo%nB(X`7OixoE0UqTaE?nq2}rGb!4dijx-vO=0rrgQX=&n}M{JHce&< z_)pn}Nq~4e-KvQ0Zrz2&b#d3-W%u7jP*#(sw7gV6#T2O46?JM@sE?&ZkokXq=blM! z9-X#^wfkS%e!lt5x#yneJ?D3R=bZak`X@V$Ji{<NkWL%M{Yd#2R)4eqN#T9=d%k+M zv3u?}efQ_of7938v98<d?Aml~SKD>g+O~}wH^r<qQL8Jy(OS3Bs=1=cx^7c@^ul@b z&hqQ1=iaz$?b7031~SyNwgs-hUDJAP;4&pQ2O5y;e=wkqH+`fnaJf4FSAm%F-=f?# zt*wE2<zA~~<GQsS5@)6aky^v3&zWu9UHM9V=GY-4*H@4;*D!A3$QN_e;cIpxOt@1y zP4zq1FlH&|xHLLBNTuC+f3CqV{t-yRjY-G(#6K9uGLAm?MZ<`QcO=)i*9jo5@qewk zMj(^O_|dUnVZs;VI`+4duFajqJ$BaA9~Z`=H^ev`>*tT;Ps%D6+x5>fjMfXg+S_7n zhH+jY9(Tgo@Ck7J3zPJP&S}Px+o-R5@w^53IoC=2<h;QPV;j2V=s(M!Fa?$}zk6cA z!*X6%ch_3HRGm;aDsR@5^THQ)MK^5X#LlxgxfOrOr+><MRUAF@?-Xhv@j|}c>^Ga1 z*&F;t%k4*per~R?f7|;X>Gv4M(0`h}KawBzFAILr`xE)q`!o4l@LvT-z4!gqJ)3jP z^M?m&{O0}Aa`)HxOC;rr5%0}=k&AAX6S~Si@z?h><d}WW#@^cEy>IyHSw_BLtR6aK zUX|FJKWvx$`#nz@X74ZoW{qCIs9%M7$0t7Tgo!_Hm;9sagyoBR^$CBjPxuGBB<VWg zqD43B6aGS<@Cm!*Gp-YgB;(|#|Jm4kNtLcJ^kZ{imA`}o=OlXkW?uJMEmyC$hn?(E zxJ1hE_I;IRo=D|*`#zre@t@?_-m_q6!9xr7$1d>RciTPxVwm^iYkcQWOYe{|hnRol zDc|S4Z=3jBoi{|G3!PZ^mG3DZDu1YaKb1#@wn>&NNGeus6QBLd1>auqy@Dqf94*+l zV2_TufHNf%#&`ZhVxR5Aj_=gixeon<-u|;W+wPJ0KPwrqAJv)b-6NfG=s!I6!{y)h z-Zvng-%v6CEbmDUmme#C-Fx4ya=7K{yglSP-^uk4%AYAeP=2udhp|7h3qLP)YJaEv zY43eEt5azLxyIF;-1{Trh}T%1H{^tRX2JKQPz!!oFudT~6l#zCgwC{t{e*=5x=Q`0 zvt%S1I^@Y4D*vVTzB^Q`IH%8p_dZ)ru!qa{*`9vMOv_NpL(LG^)#n{ar@cczGRHFE z`8RdO)vHyW9v}agc%iUq1+`RM{#5z1<&PxNxdYAqd?@T`OYDFB$(Jro7JhiyKs}vf zG%tCX;l1zPdp?;%W!f)(=O^~J@(%vH%KJ}}AMqsi<d;8`@mIb%8~mpBFMlZUQciq` zlq~vNkzMaEzIt`Vx3|vo-nUaC%zGs7k?;J6UE|Ns8*a(lLpBSCC6`V1Du3a!<#x<( z+WXE^z4Aq~_own>g?-F^%zk<(RX8+iCJyBcy;#`$W8Fz#N~aS)&7m9f!|B6$>4IbS zaNbh|Puss38ZA6ed=fv-Au4_h9WKlpEErDwC@1gbf?wFFf)@*ZZXYc8;U{cqne>jL zZLiGgDzrVHzvo|aXceok8n%B>@XUgj7K{`ev|n8CbMJkR6dX((&h_5+4^kR$-@njO z6NhtR@0UMw2vI&rm~ZMPxIVAE#$TNJ)7QzvUQh2sa?x6beo}aK-a|Au&sD?Qz9tFh z+TV;<>qfsm$KF#uoT=V#>4@k@64CpKsCS=g)<5+SW8Qxa{nXQvx9@7zc!x8o=BktD zj-^U-Bh`E-)%>wk;|t5BgYI8Ia<@rwruI8j=GD^h@zni#yl@nUzE8v+l9SW6sneun zg;%MII^O&qry+P~5c&2{!JeU%S%6Si*?yR7qApV2AeW`!VcV0Gx=%*Zy}zl7&M~&k zqEv<XljG}sVHY*uWbg9dgDf9hwj34XheFZQEAGE1m}}bkcEn@<V!>{|4B+-}7QAY| zSnyKpd>H}~zx8;NpXYMe2L^V%uwDG0;m1z-vCF?3Q9HnC3%2{kQe1Gm|3UGgofkYB zTfnH$znQR!-_G(TZ;(hNrGfev+6S6n=#YSBVle+hb>+FHcl(xfI!&`KN?!6B+UnMS zMkghg{x<PSuJ_hY^V@#VFM~*bI(C8Gr!rcwOC?s&r;=`pqz1W=<xeq+d`N1-`<Xp- z+tTDE>C8Zcw8V$#cN9yMJ^lbGmVJ$!8TMnz+x=2L`u0KsN*yh+(-rh|JD1<hc9jRQ z67NOcqy$m@-|l-{0-=qY@vX-xRfBUS&PcNMbxADF*>sxX<SKuAa%q~MHTZ^;?S8|q z_Hc5<errLqzn+5ux_oiP5E&@*Cf^}dwqb9(UB9=Zpxz${+am=(uUO?b$wVtB*Ljma zA+^zq=})RnU)8%;F88pwDWKtY)40dnqxs1%_;DLMX>YBG2mOQM;EMM=*I~z=YcF`E z;J;QZSEG39=SR6N^?pC~S}}CJr~i?-)I$k@<a!vfCI-n;BUW$kE7&hB7I8`~mbk5o zp|1SiSLE8L$gOHAq<4FZGzp4HhbZGT^RkK|@AgryvNSLhVT~$u4mFk-&i_MdRBG1S ze~+BOWwJ-|9+T^*F4^`*Im&g#XCbON@3B8z<zJ#MGzYx>ZxwH+Oth~-O4dIZo6X53 z1Nk(%*#xx)-tH(aS1pU7<E~}whcUNw>t*%}iRX{?zECEYvbMCzUTrR45uqiD@ouD6 zZ#Ine9m#tC4eO1Dlou1(-s(?Yffh6quN0E;8t<Q7MH-AoFP9H88ugr=SCq($B|M42 z+=`)|UsmkjI>+`TxFSV%ZSmY%EAQzX8BdlK&0SVfKG^@rO~v-ILc3@WPWjQi$1``C z6((rPt`$?SsQl%Mect~6#DJ)H+Ph;li6s~QyJT*8dVbxVhA9f8Z0b+@BJsp;QTl2A zhLfJ(N}x#k>BQb54y@`=-*g?-XK?}j=MQmYp*^Im!(xsE&L6ga#W8cB$6sQf-LQUP z>QfsjJe8a*3?Y_820Z7aUf;yAw-Jj!?<xL&t8pO5$%#Zf;0a1K?eioy_)Bu)57@QV zffwy%B}7}#b*(EOtPp#OepEr_CkqqF*xpW+8?jMqoLopA_+?SmG6<KRKYadU94nR{ zHtNBrSnA03<Z{UtN&)eVNT2>2eiNYP;E27)F3RDjNuup`kr)dlqjPizBZd<E77|N) zq@gjjL`p<@_98~~{Zu-3@+Hz}&}=vTF=v*H7V4mme#x<m9#Tr$^U#;k)pOrA_YzNH z$RpOnkL}s^<(>s}kOlSr`huaDmzWoZF&rc0a$!$`>OhLy+c%5;Z=Y>1_sp&L*Ud%Q zkX8}7Y8~*L#aU%xiF99nMXe~lGN}&l_TNgM*y=AIyrSZmsuWt8l%I=M<K6LRWZI4w z+TT_KPx3*3KGpoIe@OQDZ#e&TyZ!^7g3CR&=K}?^3+nx`f*OBk!P4S_+M<TY{S1dj z>Qlc`y>umdWuR~Sh(v}FM5lXa#n2YhewZv2Q|U!SYK+c~d(zUxNjxmM<oZcQdOp|x zNbIa<@i~zC!7oO04-9ffjU6v7e*_&`Pq}wIM)2e<Pf&W?X7Y|B=i$CQOz0Ac?ZA-T z*C&aWrzuq{$)88$#qnYWhoXZc2L?y>B+@zYS?S6rMhnt8qjS=g0lZozZ1018Qe;tE zvDxX~L1N*sd2m+bF2l^*KXM@5cS|cLd~9$bK}ynd(tUw2mpti+A0B#n@2rm#@CX5) z%cXn~$$f$-<{f-zV!vo9F3Mt#OE2+muSXrGFUdbRLgve8gWH!9IhE!o_5hc%^!!&i zu^pFn{*&h)kmjEB^m0%xTQjk&Vq}xN-{i5+KKgxM4~<|+uCxK#_t7VPG>l8tg)Z?X zZKp6)0b{nbYfr9R5TY_k(d1BZ!-~e#bsJQf!yL2hlKd%c`q`V#m(yM2&GFjv=rrwl z&ZQL;yl2OO7e!JzWj*hvvln^l5-;XEmC#d9R;1pF4xcBZMf2WH8h0HdW(<$gxpWLv z?!c0pX~*HiqpzmZ9gDa+2S?KLYtUcVhH4CHx%w*mC##3;T0aH;P#B;7!J96`I0!Jz z_|N}=l-uc#p7KcQv+F4J*$wIM({>X||Cl-PpOBuvG5vk=;*TI0uQ`K*OPqrnB8Nvm zfRg>zffom2{!$2dcl1g%uP)5=AZduY2fb?7zsFNR&#^u4DH!WK1t0Yk<YjtLgjtOw zqk7P8X^IniPbs}8z`;!K30%S`SrPNs^n5}0n!s4E*;-mYNJEoOWqEgemq1P{mU1UQ ztNP3p;pA7O8&N*%z#e*yBv}3|jcS$dHKp{LRsI0IW@uzM@#^GW!-*1>UL(bv+-pXj z%o|pQSkA6nb*IUBch0UwPKQxKI!tAJcFvzW9Y!Kkoh5IW?xOliVxMR`rxe?pq`O?2 zfAE=uBL_zg$KKC^Caweg?%;RgSdO=U9ZL@~>K&bS)LSw>>XquBW22sxemYsGM!W`T zh?!BZ87<z$HIc@;P>p)4^r%<LkzzgSS@gm{@-L|cMz==BzB{hv7gv(j(w_INhzxys z(#B-yTR3&-3%G~AKu-Lt#~J#HyvcL8NaI7_LNx%(WgshZt@%}=eo6LZ@rF!ryq$~$ zI8sWt=Mp>WX2-3P-+KS5@gdJbt+YBro?n-T*3UVuk*0=Jq=WNm|Mmx`=!Nu63pmSf zr|skEgXzY%Ibs)<_53CJ0O{=uzD5U-F>o$ppz7*UhcZr3kKuumv)p5vn1KQB_V<dG zsP&gWQl~};=_Ho4MST4rXO($(yq9XDUnXl9%cP<r#2T@Ciaqwi;)4I<DJU=KVN8oL zrfn@Qh!<fit1<2CFQ^{5kO9q<7`|2T?V-bF0YWdFJvsFALVn6z`#*B>9w~UzF8qv| z#x-E_<!5Gc4@ib&W`Zg&9oW8G`itt?`xzLI(Rd`+eiF!ZZ9fIJ90Qu+^U-e8ev&I= zan{7)v(|q}ohX4LXrD6g_V-a2y}waCu^1cI&p_%wI4gjDJTUl!Up~WRZ1lYxFP7t? zDh>>dzU9CmE@!x%ePHmw(1AznrG6Q4)0b6zo2-fHfN^k?%q4FT#UZuFfJ+X`L~YzY zrZxf<!)mZCjZ1Gq@g5K>F@Wkgrd7ur2HZRuaA|;gm{wD}SSh{SA{Yx1BST7oSB%7G z<y5wgo}JSx6R^?DcuYHXG+EN~cGrMBFK;+m^qzFz9iq_~rj?etUAdBuYr^O(SN}O_ z%VkweSP!l|CJk%<yozRY4F{!&-tF&{mPO%Zh(^muW9omzyM2i?1hj#@RYpzoe7Sxy zVi&7lt^6uE|A}Pm@y=x7Z5)ygC{gyHElbX#bu(Bu^Skh@qfhu~=FYfXU2%XjEpPJE z6qeXgx@w%3ksOb9a#ZS!SJ<?KZ*OR7Obxa>=aR`K_L8ZCb(#^6(?<)m0jlPwr`$iS z9$WQK(Je)4ybff>>!SX_9?@|!nF}0#m(<t9@!Fg#<MmemK*`OF+Tp|RXS|*`CjSxL zLPnW|YD_NOX?xxsNzGY9!6uByrOtS~&>4CyXFM);#$!E5w?__N6&M?jP5MfS(gU=5 zdWT>2knDP3f(lStA)^QGOTFQGz?@DGNUkULaONIU^gsz`P1F`A)&oTo^nia%52&6$ zrU#T(7|rN`TG0b_BvwYFlzv|$6Qx-!P3kVF^Z|x8oj0QqhTR&WRBHrNX#_F9_eet? z*?V#tp+so}|Hz&bXoS*{CzGBJjv41l7gU@`7hrfemO9Pa%B~A6?{<r}EqdTt(F9l= zFJB-QN3OU3MLo~1Ic1CEIP>h4SR9+_PvaIxv$i-)(F-n%qgeH4HP`-w7CH<jyffEc z6%m8uQ>`2mgQMgG21oJn=h_$?GVV<_IGUZD$aUve2@0xM6pfy1tJN$u*H+Vt2_{FM zsJD85^F)(lRmSAFOmv^v8>__LIOLSd|KDbB49S#rlD#3T8EPIqoxM@)-L7UO*c;E* zRSaV*%i?)4$e6(}`DH2J*1}{AJL4!SCqg~&mlDO8E!#yG6MH9<W;=GVr{H=|!Q0mx z$z8h&spF=G$nr)a+K_t3&&d@FUx~fN`}=lfY-_q+|K?m`m!(UoLuNFtskLa1VwVL` zjGC>kOYG0D7#Yjm_RTb6Jyj@nPZgZWHD=O&>F10?<5Psc)>DKsHL+G>{mYcASx*s6 zrU)o-J+Xd$@)Us+$#2>8Qv^#-toMx^P#Z)!yT>L9<vF`2PZXG0=lqMFD8v|XsBR_; z*1Su`<_g0LGj@=gSTi?}i8W)Ccl#wWW;Z)ywlvh=FdWOgI-q{7Qe*a`&iwjj4pEiV zf}fL`Ww?G@W^OI3Ld~`(=jc;D=A_QtnlW1~oDhaaEtBb0juD-MFn5wqIo29k(U3A% zt6X$)%x{<EPBEgNRpYgJa^tm{Ut>QIdHsUf3oiGtUZm#N&Uh{RP?_<%*galfOaMP# z#fN<|Ue`0fW}Sd>JBCN;Tv<qx`E{?FUms<>J~%Qfg;6!_jJk}AFEeUq^fuW)vx~|b zQ<we;1)a?xJ#jwG+{YQQEoT@HIK%i7=U~U-zbrM3123|E`7K(Q3B}$We=QwqnPa#= zA%+wk$}u=phjMxoooLA~?dByt_Jd2d5uo6~Un|l4>z?GU-MV+Ny77&l%6=5RN?G7y z9Z0V_SL)$hwueRKniV5k&Zfsq?N3Ynmt0oyi=JNDLpIbR)p#FLBV}d^A`6zNf>v*4 zoTM$4jxAIrzpi@JDt`&q^R8X0M-38UB^fwRmdWW+sx7HWcgAuaTdLwj>bs=(!7;@! zwp6u>k#&61omr{Mc~8!+$*WWoC*39Vqf!RVv5vGqGwEiHN=>>M_?$_1`VVB-%k%cX z%JfJk+W&Z>VK1}NJT}p8oiNd^$xO8C81}BE1xl-RCfY0YuqRg~GwhYpB~53FUA~fr zAx)VXYqBKBkoVTqUtfv(%Cl$Z4dx9-#uk<rxo6ib?0myDyOs@uMS5YG!S3y%CzhH@ z6O{D2vLacK*^Er9E%i&X711jKGFp4yfd)2dd}1j1#ZcPGZ*sR1wcvTDbS}H-9r!hq zWU+faS;kHoDVt?I`2{If#T3=x%&&`2G{0u`p2(JD^nt7&o3eiFCtb7W(`x-#Zba~V z`yP_1?b-Bw39(Ank(t>Kc-}#fB3Y76411ilW7dsT4`IxExvpZLbWKV+(Y96%{+N{4 z>5$20{|zMBfiqT6E31qf?ApTf#rhM?T}Ej)Bnyw&HHA0W^@TkJ^}p^ZsQL8`bk-3f zX-Yn*I_-)^&WklRL{hVVtU9jr*6U;n@nNYlX0q?Bc!e4Cx9MP0E$4GdsHFE*H5-0s z#Rzj~nfOn!oiC9UH1GCnPy)_ew3rc6X3kSB=10`bIh)1IwE5Y^4BaS@QtysY$}%=* zE*1-!1|)N4XQ}O}@-(C90xpLce<xmI9}n42Og~>Poibk*>zJ8mX1;uE+WB&3uKd<< z>v-fq-u`6K3GL&tm27fWtnA}b*IaoxGgmI9PO*yADh#dQ;DOA7wi<UYm@w`})MzU+ zWM|xM=9hK;lySG6PQG${++}Jj<L=7LxVva<O<S#BDP5_?UFld@l4{%~(`qP|VfW9u zKTjGQ$Br}XzE7HyUhg{I{8*2-6Z)54&;HcddbTq^o-p2CK-}$8hll@ge7s$x$J>bN zbb7G8URw5q1?vkY4X?7lEaU6X8Yxkh@m0@=S56pTS01kLxyRSZo!GnMmGKUY4a<df z_g}SiCi`z<%tma_V!M8^r{D@t!JOpns@F<q?aU0fV?DS2hhshW|H{Vmxtt~UX1%lG z8G7z_xMWj%t}{H7Oo`JY*+8QA$_CQZ-YXXFSO?ZK<>LOQj?;smI#Ca1aIcXY-LOOq z!@DC-jR&Q=7xl{Wms&ox5<^aBX1Y7pnUh^P^yl}g{;brf%y;R}dn@+QH#a{qIwvPM znwPUVKx>%Toka(f#NV#E^PY;=<!o8``WG2NMlpK_kxa#9n(OMwC)JIoPIHgjjhW__ zN)xRuJ@{-otk%4k=@v5GmqX9UA({HV`fjlSJl=j=PkmoyyL0Lmvum+^;pD~k!1P<p z?b-&ALDsPW>ZY*)ij@tZroDe0Q9WBGjFDtX2pgav^_LACdz(yo8wc{nY=F{}w*lVj z*Z{OsYqA|sN5&jGKy0+q^M}rVQic>7akHB5Vg=;UcrsRi?CI^0du+*H9acb*w2ET8 zFpmH$Y0ZAIm*oxyM_H|Gj5MTPkRly#{6FFP`tinpnVq`Ff7aR`dY()DHuMj=h)E4= z?idaO7%J0@|7xbNlsWHZ6_1H+3^GB&$n8}vbGrSmlh`qC{T^9h?Lh5!DN8u}l(rhP z1Pgh5ziZ3@SKZd$D$D5V7FF+#N68qjB7`wMo6T%^m5k43Wy7n^HJhbqdNw=FhL<z| zZ13qdyf7EkHu3Ptfs@$wlG*I|wwGAoMQ#gxY}*S9e5v$F8Cpl!?&3PCfpwuY(y<Ax zH8zcP2G*5mlG3RIYb!mcZpy$~H+5j$Ay;*LU|lH<eB!{`ECXx!a+Qe=PCd@RD(lau zHlLkte3kWQXTSJ3<7=yA_OP-+ocU~Ke6?ubOEQz$b7gnwq{i1<KT5%}jIU+R{I&G( zv+o#RaCYXaszYSi0RE^)_J8vVroDyYil<y1V(JF)lsV~?4dAg3AsaZE4d9YV8^9-? zi`Jd&T(s^q&PBV6+39h%W)5G=@5HfL-u^9m1Nh|=%}Y;ZOxi#zE~SZ`U`%rMXVk!S z$7QN#Oc<DQrBTgfV0x!BFr9Evk|BxQI@8o<@;+&Ds)i-C&%`2DW^&5fq)bkwtIK#K zIhQ%<N|}?c{0KRpZcLK<oBXG8e^d7H>DICNDdW?5KcFvU=BLfs=cmQWY#G}F9-p5& z`@gae{JZY~fAw2rL{#nM&EJ8(+tsG<sqX>*f3Wv+Dto}UkM98&SA2(6ER6cG9UoaW zDV}~#J9Q5@v*R;#f*qgY%)Iu4llOp6X<qv~?*U&VU2$v=*it*cvWgr~zntNB!X9uj z{mL1BOU}vc0oU1u=cqm4MQVL{iL(dHy;`pIWVu(1nXhcAG*gkRCp-PJS?&K`qH-a9 zwd45vzb85Vs{1o0^-pzwMv3146`eBe_$#-JV8uD>$<F>Sqd4oySkPirI{Uxj!wXMp zek=E5&8eYa6ZU`g{aAYcx6GN?mQJ`IE5`osTgHcDF$GU?|M&R!f!z0~8kpb6`#}Cb z&;iHU|E2Bg?)N6%|7CGsj1Om7JcTQ9Y__+5#~W#O$a45em>qN!?l|*T(q&}qc1?wM zR&i`57KdyovK%fQ`Gi)-)TyxC?K@#Atn}K%sj%opH5DG6t=Hcs&4-_pa!qG@oYehh zll0lxdiXT+;eV6K=t<6pOSHYA_kdMFm9F9bC8m>p?~b3z463$J9t2Q(1hV2?mh?Ph z_jr2jnCFIqp67ZBV$a=>xxr-FzI1wpx-);EZ<kbi>c@}B!kNj;w#49=tc%Aiu5Jl2 z6<0jUCKWoD8lHH&2&2Q~H8Zh>Cf_YmUB^S5+dC+RUNSqEbc&7G`=(j<KF{%zo5r#& zeNQkL<dy(d2d2AeOt!sT21A)P7>Xwt3}w?B3?)+*!Nty?!ZVBD$GvH+?2R-SN?Z%! zV>gY-uHW%*8dLN2-_c+gyJ-xA!MSN{vcce*uWN%rZW>bt11(1FEs4Fb^I{sMtm?|P z*>Ud|`@Pu<YQCPuUf43(USNe<mXIfGIoo0{e7}N%O|cgaKgQXKV{^Ryb55j|r`!(A z%{i{yfyZ_!WrcF1>V%VLgBBH=*`-t~l$qy6)cwG>NCrilb8mZQv+|cqrrWG6J^6)7 zJs%{_((Kx~L@!iYC|hTt(wb(W@{^*nCTi!gg-X}`{*(0c5=!xV(a-arIC=f7?%Z6> zb1omP7?D9p>1L)ObWscaTys;8Jm>OQ^7xOqu;;jDud?|{)#_yCd6sFl>%{wRNJBl+ zqVC7;`FpKk<)N0b)fqPap7rkdiB!0((<FDO8}gTj$zKupd-us5^N9x^l)D3r14ER- z;)fB-OIHQ#z6WJ6aMXN&odYwj?&ml-qShS`3`!|S_EZeBjqoS3jqn#cIh`A5ZyrRV zE%kjjV$L&rnw>XnuP#mZCFHh*q$A`cy!{z3=brt9h|F!YHy<Ig=W;kxZo?^>*URZ& z;?Ti&T$&ilPwe5@qlFc(dbfW-4V9%VUWW742CQ1XRP(2?<xA&&9B2L{cjn0aspNNE zzMOhLj;v{9mM?cwEZG=T>zCUWQy<N0m+QZA{qh9&<H-JCE4i9*KTc--QtrnYTfg*7 zUcdD2xD3TMNgvAo;C`Nmn7V#>_*~9T94qwpA9y^S&bnhWoj#;lO?fErchHB*THPWU zL~l{{v5lMm;9;5>S*!me^kJEl;`d>%&U);P(}!dGI497F&I80>`q~?z82|Qvo?_Hn zICMtq_=-_<t@Yog7}diCZ<u1tS2rr^8zxYUcgO&Ms?j$pYQ-oIxSC`0FPDC7<pJ3@ zRzK?JTNm+s>yneaUvXSNI?rRM`xU3vkH4O5FWz*#`zQV`NWrq~?@W7tVvJ3n#9p4t zF145W?WOrGAGvxUe;`u0Kg|9&_XP~9Ck~zG!|mF#-WSw;hs&`vR<JV}NmZ4rN5h>L zE6CH~zmV!(>c1?Zo(=c@*-|z!?A1KgZ56C8Dp*!rJ~*(tWMG-aGvDv9m+UL}q2063 z6E65Z&w3vrMttz+p>KIM*4r=dN~(CpyCd~>xygf3)MBrTxQLPKyHK{Gd*$*km9<1O z>AV{Poz5fVezQEi_=5u%58ULr>2i6JGQ#tcfBpd3GmgH3ie6|BFYtU%9$H>d_&s@O zxnL;%jO`q;og;H+&*kCZCmF65N_>|Vj8uHE=e`3kVjGz97&1?J7UslnCrjneChO8; z+sH*^hW#mZCr^BA8+jWk^VsBr>O~Nfo;}{KUQ)qJBJSm+iBBM#Ur~xl?I+jl;;HUQ z_eW2dD(lVUlAgOJKXOcEV1Iab+(!a-ylm{wP3p9;cb}L^cFlu4Xsn)<Tr^?pSZ?8x zCyb}rI$qTK;Db^wbw66>X(p<FeB0PwU4|K^pOs9{PWKf%c9#+vyGuV@OuZJ)yOf6{ z5B`aIb_ruk^1OWw=GJH)F{uUggCjZB@*V}t+yByU)9J&H&KCoK=OhCZLK@50IB+0E z!2$<fJg6QNvzJPXp$d3thfeC<p{51P%!AL!*69IJ74Eh}Q(C;(X*rQ8EyrmZx}ivy zUof1l<t&-da>~<_+K!XI1E~X#@`zfkzmAsya5E^TG5w6k{b=w|1l%?JZtP}x+|PNH zh<f6$2E|u1;fcQootEVEgo)4n?c1$dlErg>w@E9Qy!B(B+MbU*d``F9?KH{ELw}NY z9#tHB=+C13g?dyRf9S7}vnDiL%0B+kAGhB5WfkW)s#(2-TOv!CXjmh!$ZE~VZ${tE zks@{E)dPD*%>zT~_-j1kGjw2&sz+M5JmQ1yQFpG&o27RAlHbmai|XN?GUwr*;sf$< z&o=y2%deU6aE~Q7FQQIrrhmAH`(^qf&Xh%-^($1%HYa}8uO_o>GqY#?%GCXf#gmt9 zL@~;okS8bQ*)^xj9LQl=cZ5z8pwnP+^T5x6!=GehK|Su%rnD?QgZ;#tIEaSZ%1wE- zO3l{D%AZ!Uj1inwnCUCd<F|$Mt3}7xv;I@jvvT8ep<B-uYCX&I!%ENU2Vx7!hG<!O z#ou%3<l&Uvj$W1LQ)<-nDK$*vifye~<uR2H@X8dWUu$_%g%>}JJ*m=16zWNpRJWsS zd03rQ$n6nne{y?n1B0Qu$**w2O@7n0;!5>+irm&mE0(tfaogU+cRw(ItuD*lRxeiy ztvpN)2x2BbttQPM4JW_msAQ(s^6rOi_?OEgDjCgOs2)+tXy$1iQCTD=QEyM5D#O^_ z^bA~DHIF}^l2Oh%AIRA~jdC7)K85&1dCkk)H}Rf&StF#Z5z0!MWhl(*{BT8WsnZ7k zRaEr*OlfJ{VgELzqA4jYt%!ptKCPlh=c1txJfid<+L{-9pjwp?Fs`hXrXFj3G-lE} zLF-#`Dy>g+^>JI@0bWI;pF1vp1XZK5T37z8dO%xRg0mpwv`fpmtfF#UjV>;?pVo0; zH^-ej$m^3@oA1M`2D7Bb_5|(vpuCo(V0N;3S43_)jU*r3C5=?wJKik!jz5Ynr;$qI zyjO;W4@=h7z2m>(4%F|X1Ew}ktOpX9cClxI#?BZK-t8Mi3#&IC#oj_Y7A;()w6LYL z@KZ_)qmd5`qlNc48kwrub6^-P94}M1jhD!Mby#p@f9$sLKt}iOWz~EeKIMa~9zDfv z<K&y$#(9~IXkL5I$U}+WOn%H7^=3EU9?_#isos}oq#POgsti08zhRB2LDq;qxf5sR zA?u7uGWnkIQ+mESFh%F8d&V<5H=v)SlWySLGd|uC-bF`{owdX7oX3Ka+G2A*f~0Of zU82q1R|>VcTQ)%v*Uvx^Pc~cXvzsmQ!jj{51?>CGU6X}e-RaET9)Dzlt;>Uf@}8ZG zdCyK3Ti5?(WuX)~_fAT~m|*TsY0{aN+VfYF&0V#_WN$5#en~Xk^}L_IxGZr^y>}8L zBBN&I-buHbrGQxsU{sJfjhf9o2Kc+&IBBA0ttmH7ikdYYHJdSmFBLPm%-jEc(Xqp4 ziH_xNv7k1CcXL3Q!HY6FRy8JN3Zq<UOjE4j3A&Ymo{?SK!PCv4>Q6<tW^GWDtl-Sx zI902v5r3w3@YlcehTFl|Ba`glDQ%SwWlph!r&`M=wu9Xo*s+6)M#k-6Yvc{FgEOza z5StdIukGN#N!h{9_9g0AwbPS$=f%wKclw>|;6*&-p0R@m=19-sMu%fs{eGMSs^^qV z=s6jCIMZ{M%KUMe%pWJ%#A11!z$$rTdd?zj;^Xw3@fl>s9#K8#=jc9r>DUZXUOpyj zMP`xm{x@cl`Mf(Ozu*Q>K_Ih<zw?XqmJ!ad*vjA4Cqrtg<nL7vVi(CAz)Z#{mf&W^ zfw8AdCr<7dOEMeydwA$Y9(k4iF~RB}g<=L4bYDq+n0F|WFRV(L`s<N?K02LeRNphf z2=O@wWj2_#7nG-+skOGZUy?yUy=9H8C~Jh&WG2|R4IgI>WWr1^(*qVw*8{{Nskwd1 zOz=cKfcrSKQR03J8;U=9YA=16YLuw`dzVr2ZfbGTM37<QePWTwMDRAIH)>1ygSrFU z$N{z77C2e^<M-O=Gxi5f$XO;?B?}S$5?*Q*FJ$NOLBCwZ<Jcb<&#V7#+|0lz&NR); z^H_S=8C$|I$IOhcxR&?L%)17}c3rGyaX%zgSzB}Me9A<i*xC6U%`N9mM7WC<_o+oQ zXXBGqxA9%iLbdD3i{Hj~J&R6p*Hf0;WbQb=>nSfJESAN6@jCvlr?NWO@hp}d&r1)! zV|>R`Ey8`6HZ*k+j`f5CVtv%oa?~!|YTbn1k93-l1S-*{hhulB)r4iHO!80!nbid6 zwx-{U%^{lexQ*!g<2Iu4mqqe&JGLE-RQFxKV@vwi|7k60nr))rdrSJRD5Md#8JxX{ zk7RZtWL8%`sNdDla<$TAYF{GrN^0JRu091|*LseIn>jl-{vLbYZWjFQb2=X9O<|4c z`S+_ADds00POnbzn)0UQE0(3_KghvyhBw}@Sn)&betFZYUTuAjXfpdpE0&>Z<T1i@ zdj6mjk9{OPe=k2}23|%6?Mpm%xLLYReyoX?(mt$C^Vmloc$oA*VSezO_&fWaioN9% zk(>`U<iyYB&A5r7+`gyc&zBF5&N_E6F(S`R*K%*2)j;s?F3jb%k1RgLVlwoOo=42v z3~%2*kO1C~JF%lotPiC*6e~;|TX_8j^_y1!F&2-$%`TkqN>&VkxpeMJ<^F{-3PQB9 z+NNIWPSp;W19cvbc~tG#^PeCEJ9l}<7sx$t9r&(Fu#gio6_}~t^$Q~%H#k-7oWz^f z$4<ISU4#6Nm7LHpb`4x7I9CwkA)jlQ^!OtkFF2=u*-5Z}Fg}}C3Uk41kDmwdJ&lpn z*}U*o)lJV&>_R`$%2ky4szlS+kov*r)9FY@ig?oV?^V$-p>$qMuN#bfKSEa9B)wlt zdNPtwjYfL@c)GljJ%3o<Vei40CvXfyT}peOoj%FS8TUy@xjx?e_z~$i;>uJ0)e=8N z%5QXE@A!A+BG~g({ht$2^-t^7^<O@yLM2`(zN_=1T(f+y3@6e+l2n8$a%8%qcqwgB z`QxcS;mNMV-eRdsr>VTRLt3Y*gG^mX&B(bI>T{h+PtSjX7MY})oEme^=2YIeZF07u z&(_ydionHavWu759iHVYzQKTGBrD&ST=>mHA>QTw*n+d|?=4vFDR?yg)+-V(b|g~s z`qNueytta?#Vhx9(=AeO6Xp^W9ewiXQwttj@V%CSvj>)Y<W>HezAsYx|MK-*y)Q^h zkoRq*sFV`>3Ho)xlkpFB9Gh55`^a)S|2?X0n2FhGZ+|-(lrCIXygdCRp{}+cQXK*F z(lS;wL}K$&b41t6d+~}!oll3P;(wWz*Mt?>$GDVD_78_fS!MqGAu6g-RVfO^(iJr+ zL2lG?B}O8=o4n9@t%J9(PsY+EpD*PC=OjH!N-Ey%Kcf<dUNRFu^Xd@&>G+&)NW&e? zxgznZCw4>P)%;j@vYHzNXJ22E_V@3-p09floiX~>`{fdh7T%9(XN<~g_+@d$c|S6- z7ju~{UM5pT-*WdIcTE*jQ<E~j!OwfP_Kq$sfA)UKMt`~|*WMo?E`MX{DBAqwqpGF= zvw9v-YxdarqL~sO%<btOdZ{o|UX|zASrmF!@`eIc<lNY-#H+L8vs4**87}Xhm-mO! zPOTM@RQ$v_U{R`pOa2s>Ji*Hl_Q{?WO{XZaD6gm4=2h|ei9=(xJs6*(iaDB77eP_` z8&Yp21^Zp1WOPZtGo`|cc*@JJA`NMbqqCi}rH>^Rdw4G}NqCNzgsR4SnWi2$@(Inz zsk2!<mu4!=-cM}}Qd^f6sw~&|{gG5__V`>C@(uR(jjPoA*gU^gZ}%?zt!$Jpplh-5 zX>qT^AFXidS$EN;S50awFXi0$m6lAuveOsD4O3VMRT}wS0dL6nAg+{A`FH#tguLQI zeGfw2;(YSogV;-7%X|;w9)6$1_aN@wb@JbXxIm(0UmJ~B#_Lx}YwFh^<a!<Fdk{|$ z#Ce```~wj7?arqmxSJ3)Am4((Ca)LGU~{(q76fBTu_T8=tKqEh=)zO|mIH0Go_-Z6 z;7by3B?{TP8T*2SjF2bzg2ZE-GFq6i$LK!e--GzTbl-z`<}=DLcYP0nl?q0LKL5i~ zj=;bTp0RI3v^d&y<s0;E2ua8yp~o``>F-2b>KI+Tl}x=_)cH=tEIGIVokPtk{Wj%0 z5qr?cly_0(_(vi><Q$TlQvBR4QOSKMOXLMHvS-FeB3>7z^u~WA!ZqObzVKxVw|oV9 zwj)AO2XUbgI~&maH#C;N+~N5fv8y8kyZwDq3%mW>M8y0(44>^td9gSz(Q=HfB6L(i z3#Lu)UWs;?rqTI;K@2BlX7L^pnXpHsebP4~RLTbOvWQ1~f5Mv(8JT&X>s{1fN7FL$ z+sf-GzL`1hEP<2hMU8mXM@U)1mNjtt1`da1^Q~D9H#am!$a6E)KnHAqm9Q$clzX%i zd##GsWAbE^pX*<&ru5#vn;C88;t|afS)t$}S%=rkLD>kD*T`~jku*#^<wo}6!}6I0 z8iZ_Khwc4GN6sBQPu&SZoGdi(cBS%1I9DR8hZ@*$^m`A8rY0*TU>*I=z?c1ZItS!y z537iO5!8X)jNL()qQkdf4$$sb8nKT^@d~Ix`7Vn7IqBOd@`<Iv@vr&Ru_@^Knok9J zBi@Ch3#7J)Ez+o`$IYLjCGuWhE&?kg>Ldzno;!GSgqh8|<x~R73bQC53n`UR%=SHJ z;Zk|#wPQV(XDmYJ`w|0v{%sV{mIcfnd%JQh7+&yAZp3+rV66o;v@{~;cYA?zF3#q| z1=8D`sLP}}cxb$5&6KF`S5XtK{Ls-pLNK1}_215+0?#*PG$ed0M?U8qk%5sT?e>r) zAd&kISC1zbkRt(->zI<<y_w|XhbuYmiC4WRlbn+{2j%7+4yqKL^v4q|(=TLF)mJKs zmQI`KJ()!1hbvKD;iJAUG@ht*U=GT<?|7n;h4DlKhZpFQGV?5=RTUZDq>m1H8P~_; z_0mbvg&&c&*#A^d&BUARbmBkaT7?Uo+wYPe5wp6EBQ+dR<s=>s)sOzG?X>O7`(NG~ zN){=z<ch@4`S^`@`z%tlbM23Kbd*1{&$1gmWTAtUHzco5k3MRb{g*^%7yXyAXTHf7 zq3)ET>`}X+cavgAfxOQx%&!dv59!1>P{S9R5UcDb4lkCnI!(YXR99iaHzl}ScW?h( z@g?(_3Y1kXGM=eAKG&42RFj6o-*vQj(WJOkGxqlXQ^uDFGI2SVhUk`LqI0gx_?0L< zER$o@;L7rs$xlfEY9;Q~dW4*LDFddcGf(0z%#F%?v$;D`Y*_mOnG#{fHKo6o*jqHk zgrh4<A1ztIBz)kPq%-kMm+2^9B5cX%^T!{*zxaJDmc7h|q|(8qVm$|BuqYF~YsnC@ zgfkq~yWROMo*lRGvAptUJ38;iz%KvK2JDY!kZ**@+vt{nd`+pIZ*&Eab?NzcsyQ8P zK0bFfUp$g@)f~R$fezxZ_c_mFp4`AP96zTi)tgWANXbXQ4ws-ZA81w4oNNSdS)Y^o z@OTW*V81=E@)TppP5pMxSROtnF+@%=hP>3*#$#A6G1Q%644%}D<1rLT3}F?6eje=P zt7BFwFdorkbl3+Lo?=#Jr{wL_`jQMt3}vSn!<^KY$78ruV(_104Ed?`<1vWZd7$JJ zW0;#N9gkrc74(3qVmP(->0N(T>d>rAZH(UZK)#A(=gD3V@A`t&o#Wvze&98%E_>fe zhc8}Vm}+&xb8`ao+lo>4i?Kt-*AF|1aeVy{?P1w<o}-m&k#<G=5A6ABg)q0H**Q;E zX*nr?#lRFJ(}V2~$r7J>^{$6E>B>WB+)}iaYD;eLck=#FCgaN+238vbt3Bf@w8zF* zXjjr?m#s*B_b^I}#om0LRNG#|u@%nZq2zpI>s!WMa&ztOn$i6I{3R9RlEg##-0Btc z7x#Qxnd>S;q6<-CChG9x67vyauK1OA`_E|+qJ4RjgT#Df>s!#ACF)Ll&-rqrS9sJT zs*CVt>@r&Dy+v$Gy`MNFZ-d_L_ecyVIO=i{`$jK!to#GYdb|I-<Ym3ln6jnP<<oz> zE0eWNRz4OcxBH*KS4`I;F?>prD{>l}mPZ=wr3RT?)tGb!3+&$uc<L~*w{(;n&G?ex z?JAsDx<$!Lb0SU48yf9p26}mAggCcLoQ<hxJ}E&k#dz=cU21JIzoV2(#_FqHn#_E3 zPO03nwYX(P*io{S&K7bl1B?tayb-R$A}m#~B>g=ZMC^CTz?1$?VsD8v=(v_l%3o$| z-|<<Za6PZN-9N&CXZw`se`M?I=VlcX<8u%GdXS2;Z{K~VRAAq3nep1&cXuLK^F3JN zZ^Vx`Xc!DRyJgDIfbXw~N{$!PAb2xSM?Nu;uVYkVWJN@B6-dmH)r>1-v1o-_ERq+j zvOV4HjP|9jwkp%4j{jn)SkM2CQU<V&-So=z{9P20QB@W$WmP%9|K(U^;--8)d-<*~ zUa<>Su#b50O(pXFyi4*EOYS$4p8I3@c7B6o!E<TF#XUc>m*+PsSIcrGuDV*SgEq+S zhpE1|%4>gL^!`~JMO(qgEc^fSrneJcvM$Ho=l$pXe}43p%PH4T#X~(WkZc{vt}jfp zW<~t{FMIp`iJC}y{*k{%WZ*)coKT4jTq13<Pi#Jw!}spw#d`ATS29M120UMt{IY;X zmSa)L=MQ;J*X*0-*_Y?rMZE*L;fmQkzf!Z?#g}+!{-$@wgOXAtFY`R{>_jT(hI0Gr zeEZ?^znRCq3dto2`;YAnfAm^y#o?RYTbFprb6Nl3))z1;$_H0pIlMge0Co;(W)9ee z3A^W<*YX~{bYL;dvB%P}pYUD5^i9RidIuRP?6p_P31M!re@D-M($p(vZ+*9ZKLh?f zy|39z-k#*NxtE3qmYhYNWf9p7^VnyFlkKf@spgWymvhmtviEV#uhgs1oX75uXKYQH ze&wMGa&CGTy{b^I3y;g(m~St+)n4)yKJyi>$mw~h#kqFUUL?Hg;_Hn_>Yt^tPTa2$ ze|A@|KPOrEkX)SeA5MCb@<Gz!@<B;d(!2kP7xrF$^zhJca&5lJ`kp*q()qEc=AHlO zCqB8G1!>O6zwMk)Y}?E4%G+}GRpuCK&D6=V`j9sHyl5pYf@bLbdaZmT(fjp3ldx2C z#ltZk%t#mB^b@C>5A*v^1NOU`Iluhno!+l6%b{I*zrI7_*XLi7cs+0Ye14C8P?ve` z$6lV7ceG_7l=%ecSk*~&sPZ(~S9+Xgy~18xKKON+;*MtCr%~wG??uX*=eyJ2;X|&o z2KZcjIPqf6jfbQ=x?`03YqD3e5n=OQ><8|ZDL}(9d-H1xzQ5pC1y9Fv!uC1#X3w~* zA>ZCy=yIC&=AtoYVu-I8MX3Frud<UR>7>uAry?rm$(~F+_gBM*N9q5nB+j1(G`#2h zhne?2vEX5Q?|BB_M5}nX>nwZd%G+&Yz~djjKt6NdZ;T$c)5|-yQPlMOR-!~XrsuEX z$CX#!om!M@-u*m(`d^OEDjy7AJ)HOhBXz|r!|3SylwqbW<kx<W|Bg@c`@Q_Wk`<L< zJI%9O4GlEL+QRtRi)Y<Q4sTkLo+mP~wJ^t?cY`D|m+jDjc_T#b?Uym8-JVyBuy6F( z7nO0sKy6{<YlrY2WfkJ^Bec+p{js-qq$p;3et;9!8!MX9Ph)ofY;?~4T6sv!xa&F2 zU!Qw5W5(R|?@2Xc?~E?#c!85Up6Ad0S>i7zrh<4~c_rt~A@X$`>Nq54J;$GvSNsMp zl5@+`S1#UK7|$oA`3vz|{Gk^(8Y}4#kt&rU6UV%C++3cH=cnh(;j}98VfnxqHQ?=+ zXV2U3Qe|TWF#4L|l+P)fH*29@lf0@z@z6wU9!2_7N%HW&aX5XETpjzO4ziVg`bw%x zH0G_!M=n|VY1D3QAs*(y)_k;C#n!^EhQx=B*ss#_+oddXVu#Zo;0?01SS@m3U`~43 zF(=ye)9H&O67hT5Udm=u;o_xceAeRH{MhaR9(`L{I8d8!9~=EU2C4M?Frlw>B2mpn zHJtLnyQK;j*S;3dkLdcN4bgrd*;8n&H#=_lB9(ne7N1_Re`&AI$8(_ec@~?NzBX{t zHd@O-?Q0dkh?|R5(~0K~EPej)S14b_5w>7n&y8Pr*9(737Z{4=uVDK41Yr|fpEtaH zpXMBnq`Fy@<e*f`Hhrj`)Z{##Ucj)3vt!egTEwvx>y4&VHRr1+xumn@Ncsr|Op?lr zS4(^g@F!57&q*leq|eFcWzru#*RFkm?@i4eSb7MfXN0zT<(0#BG?j=xZ^)(JU;7$^ zNIEr_{Mfb6r`|`}!~17RVL6<3`i^vx_^eb7el#k1Z_u*B)Z>J^ay1pF`?%_5y)TrK z#NGG4pSqg&W%)b*9{KyOFUa4E?v%eD+Qr{%w$Fc9iFpqy@vhG)G3$0E&fBTP1=|t3 z{%qDD!mc&$-mRqP?)#C++Wfosio5?1n>qVu8T`&Ma*Vsg^X}c`fB&p|_&e8Q4DO%x zWqzrqE81zGe}o`+#njK|_?ezxOnbTe7zdcE{z@uIjJFaFb{ye~rsrGyOngXAFyi@~ z^KCh&L*h=)_v43kUy68SxZ??0Sn59U9$sJ6ai_GX9oSS;I>+;j&$LwOqqh_C%F%1r z=cjf`IJqpDMo-gl+C3eLj&mqkdx-6c=Oc0%E)t!{@kpwPU<0+!rQ^@1pH?kB9Y3T# zzo6Rw#7q2KN^JgN5_`MKq`GWGmy!`(mRgUFTv^BWHPg%Q?;!JEmp^>3zG7du*PcVu z%4H94zo+8$u3s>A%UPXrmi#&HSxy5{3GsC8{Y&|V$Tf>|Vps>HQ@JE>sCQAM)-d8P zl|S`B0axjo#dXEr+xOUeR!<neM2pLpkn5J@J?#BTWl_^|?^ia@E`N#@`26Djm$#hD z6Hs<tVZ|$5bM2M+c?T+9?K+DG!%8cj?n<dUXC_4VxXRD^*E<HuddFvOH_Z0C=mSOs z8<~MX-C7W=Jy!k@^?juMZt)t3rl?E#)d6PekEk)mc`9WY`MN-k$%hp2k>`NaEGAZA zhy7S0N1sR>%F!3XUV5Z`U>@fgSE72HkC{pz%_)ECLnzZhRdng2`uy_2sUa9`H^|jL zuT%YvslPq^Ri#q>^(~1Hi8eCgb5$cN!V`VwbXcdn>5C*2*afC6?J$cp&p$L?^w%gl zB~Hgt+OO%Xpnb<`W7wT5ryvcEx=6>17=N7B-Eqfus#khl>H!i<>@AkICC^g7V5&M! zM2{&&)U@Iom;W^UwXe}t(hNcK`iEn4k3Mm?bkfn*<;mJ(bTLB;7=Nui&iLSw@*GLe z&)2e0Npi<|rkq#%>+;$o<wq)x#^-$f3Su5D=>JuGj=gW_kXdkK;3CP=(WeJ4k_4`9 zx$2SO^m*F|mOigf{k={7-LC%bRDYN7SL*A3%D*pg8`KWC0XpDv2*JC-fam|-FrI)1 z;jiEh*aq_N8f5903?l#^gc`UUmP0FSf!p8?_#)g7d*LZK1V<p3IErBjTmsFo3gllt z{y)Em*T}%*a6jAwcR(L(fp%zwi{U~jhJ2X(?^zm<``FsHuJ%xOtZUuIYYj()<d6~F z(zanECw6Z7ShTA}T!uQ<($TiDeJp}QAKthrW<@t{ieKAdNx1H_wBJ8n`lF8*{nJYy zmV?%H@$Q(lCTg`=P7>CpE~{;$wQgg~Q2xXok6NYYwg2JRsp~dcv5u(K)wc24sC8A~ zg7ex}JLjI)ZLRCJB-u8LaO>Jty4J?F>!Ol$OAGnDp)<NR7H#K@4eLmG(=|@s#D5)J z0c)TeF5eXEkg{*sbiL7i#T7>BI_F>eAL2Ro??|N_mqV&PE|B{8pw)R}bYuKFt1B9d zcWorOXjc~nTf3<}YMm!_)VXQx$D*<Bu`)?!GErVjeyyox(KXSrX+wMTx-!d=i^{A` z*R^%DX@T<t-LZJP78&Qp?#*S?*T+9zW?j_Y)porWcq^y!rj%>iHf$)f^pDU7q)cOu z@!v)!jO17SUZf>%NkopTToCWrZ_ZK2IG{3&TS?ryBwAAUS6tC^#kzHd)PscAb!DvC zB(0D39Bot0?3#5OHne0sIle9y?P`my+q993$8j2`T#J@a3vbG~=mOQ6YAC!Fy5Iv= zy;Ir=$15+mD0AGpeqF4?S}$=-3|qJEj|oZ}vo^<RVb`pScAe<lMHg)9x?oK-M(!q@ zIw9@4brby>sYk2y15U1+xT2QM9T&xYbejB3=kLnH<nXk4X+V~aX~LP~esUe^RLh(G z#4$h4Yl@)<xKuUKwI7pkO|eTh#Jf8z`P~q2Ywxx!_4|?yb(`YdQT<!aaE>>3t?SI3 z(|rA=NZYzDb<PzVqhr4>cMhxLI({c^10CtaizH6mO|h=Fb=P*N{-xsPn2y)banjc% zYCQNS#;h2*b&m6Q`YVH8EA~!~gbwGL{{&y)*srG<+c1fy{U_4}@nHQ_$&CA|osOP< zAF={6$9W^wg!3+Do-W}t{v$5`$3AVCKZJ+>PR?-tz4J?kvFlFyqwCmujxin^Wv*ji zmvN6{)BXG3JXYRpL~g9@>T0=UQ`dEEw5DgoeZ$(8#`wnAy6d8NZK4G&%8A@~*~VB) zWq1811`p#;aw9j=0vSj+<oqyh)iGVMc5S??D~dL|f>8C00WFtCW0%FE*I^-Kjx??N zc+~g{9ik~3({cP*r`~*Hr%t*!FLGl`Rears_T@5Y8gn?Kvg_KGNLyETv^n0n0c~2J ziM6t`Gs<Y)m~meoy&kJzN{Gsh?H`Tac>N}ZZ)1_ff7!-$v89{Z;~Sz2(abl-IyP+# zz5l}Y4cGwBd#>q<lE#IzIw@}K8pAku)^!Xio7Nh}AI-WhdR=#vT3a-WftwO{&5CVe zbV0#(^D9nvx{Rew%c~m~2UK+Hb6TPsWxzz06C1v_=C(M|wXE%m86V5|x3_GJlYDDV zOM7&}`JUXCb>x<y*BP_Mf44-9`8h3Z*L7dp61`y^IV!-_z8*WI<(l?&TVyG{rKP&F zbLHC3*d^;WNXj40ktB(KP5jzxv3WW+Z9=nc=e)HWqHP;nVq62#x@J?0*c#pZB-BQ+ zi+-Bd65mJ-e9X9mv#F*{8&#rPa$D5VlDrmuq?_{Gur}HmQ)bkLXxGA)wVSTHZqr8N z-*ahC(JnbZ+D?PR%(^ye_&iM;qR~#{t8U-wP1kj{bw$TcGA{5mQ~Y%s+hWm3*QT}6 zZpOwh<<Q8grQvOiWe#5KS+-Hkw+$)<a=|dF3vbN#(CUus{bcTC-8H&mB3;pLA~hZ} zYSwkPt=SN5?&xB$u3xvNtF7zCYT81#(VW*1k9OS{iFREh{b=LbX!RyK5Vd?wF8OL+ zxAtS|fMNWjE1yn8m(gzi-gQ*xp2Js2*rpr1={n8y#ma6nAC+ImM{64|udOc+Ic+qf zv+k~ZrCxsLepy~8G|n+}+iRlVIDY4ChVd4pwDU1@LPaCZYO;kP=bicYzp(~tu_F0Q zkKq{eYVLt;AMIMVwrv9zey7vumE|e(i8eK(n0S7-8UUs}c|0nyP^JD{>4*UvAB$OL zJ<>_btSIIw<|O)4=1U#xF0>k>-SG`Eng2L5n=<Q~bzMwwq8p;u(Ir(lnH0sNWmY$O zawBsR?IqE!iE{2m&U{Idu-Y;aWu{0@;O+~ZxgM#gE@7$3N_PzXV)%LNVcY*P%sk4_ zd9Ps><G#1oahvQ+nz*0XtZgFvJ-EYNjyoUsF|m!h9rq&KQWx%jH?Xm}4Q_*-@Hw~# z#?Q&g$>m?3{^yzWZ`KL^&7R@EIj8ww{+s;Y+%x~))HQI{nSW<$;7kp?X=|Y1%)c`= zaHa;%)WDe<I8y^>YT!**1BGY)ovDE{HE^Z|&eXt}8aPt}XKLU~4V<ZgGc|Cg2F}#L znHo4#1OMx5z;z!0Kjp3-p1%=HjUjg?fZU-VSQ;NvFgy+>Qm`~Wq!7>qkwVD9L<)v6 z%fUnnmd1w^0-7LF2sxNY!3b+AkwTS&i4=@#2NNk+8Xr<H44z&TOpS#Ue3}4KkS8F8 zkb{X7jIgE>DO5R_NWrLfFp+|#@gW5xqG>=1@(?DN8lwp}m>LTy_%uc{{$Oe>q~Oy8 zkU~%sLb@@y<56KE1xw>Y3i2`#A*cx<!PFRG+(M<M3JIphsKyPZ#zG1{jS<0LXwWnw z!PFQ{xWUv|NWrHun(+ryV<82fCV&)znh?^B(MousO|u3Grp8!{8%&Lb6nq+^9e*%2 z7E<tO0!SgK2_fAWQNn|%v5<mK6F>?<O$g~Gj9aMG$V<Q6RO8Nu+`p<Yk%Fc1A%%b@ zh!jE&CQ>lMno6Wl<zONOquRkl3YNx)6pV<b0Vy;(m`K5BaxjsCrSTyJquIek3YNx) z6atzcQV31LXeGSRrdfjoQ)8^f4W`CI3O<d|jz5?h3n}<C0i+Prgph8GDB;1>SV+OA z2_S`_CWLeo#w}E8s*rA~ac9HmBz<ACrV9zC#^}Zkrp7`FK8+E>A54vf6nvThQV427 zNH;vN%CnV(*H}owrwJg1peBTL6UHr6YO0WKs&Qw-*h2bXYAmGS(*%%0P!mGB3F8(j zHC0GA)wr_}!Cz?5G$P$J;m$@g{xiWa=F<Pc)L2NtrwJg1peBR_Q)7g23zeEGB$yhb z8aJ343n}<CMg)JMLDPr?Q)4vY22*1p1)s)f#ve?Lg%o_608$8QLP$48E8&GU%^D<_ z8e=VPFf|rZ@M(;8{K3>%NWrHGAcdeNgmhy>2@j^mLJB@j04W4DA*7oyZlO|Bg>+Mm zI~ztP=?j}RT}UuBMmKISH5O9vX^a^DU}`L+;L`+<LQoSzy5Rv}`aj_{7E<tO0!SgK z2_fBtaSN52Dx{lg+}SX;kUp3i3n}<C0i+Prgph8+xP?kh71B*L?rcQx7aBB;NH<Nm zv(b$IOfa@lexX-$GZIXVk-!b6#zG1{jnRicm>LTy_%s2e5Y&W_Zj64ygQ>BQf=?4b z3PDW>=_ZU@sMJ&;-BjbwhH(q&gQ>BQf=?4b3PDW>=_ZU@sMJ&;-BjbwMg)JMLDPtI z(}X)4&G^p*<5tQKrp7`FK1~2A1T`U~n=o#nQd5O=Q;j<t5&VS)O(W7x6Ygv@<3AHx z2`{v1)*#)i#hs0I{AWUx@TU{QkSEN+)L2NtrwJg1peBR_Q)7g23zeEGB$yhb8aJ34 z3n}<CMg)JMLDPr?Q)4vY22*1p1)s)f#ve?Lg%o_608$8QLP$48E8&GU%^D<_8e=VP zFf|rZ@M(;8{K3>%NWrHGAcdeNgmhy>2@j^mLJB@j04W4DA*7oyZlO|Bg>+MmI~ztP z=?j}RT}UuBMmKISH5O9vX^a^DU}`L+;L`+<LQoSzx-sH}2UBAq1)nB>6oQ%%(oGn* zP^qaxx~ayU4Py)GgQ>BQf=?4b3PDW>=_ZU@sMJ&;-BjbwMg)JMLDPtI(}X)4&G^p* zV;kicdNnsA!PFQD++b=fq~OySefWc^v5<mK6F>?<O$h16=qEgw8Vf1-Gy$X#)P#_3 z!nlP>O%>8jHSTN}w~#)V8Vf1-Gy$X#)P#_3!nlP>O%>8jHSTOg@E001jYv05xU<oW z|4cA$rTk!OETrJm1du{d6GFNP;}$A4RY*70xU&(#Uue)YBHc9M&PFr-Goh96LYrm{ z(#=}j*=WaqCPWE;Ix%)~{e@3zK7|BRV|*Gnm>LTy_%z1t_=Bmjkb+MWKng)k2<gW7 z4B^4lSV+OA2_S`_CWLeo#w}E8s*rA~ac9H0gY?1FSV+OA2_S`_CWLeo#w}E8s*rA~ zac3ifztEs*M7n9hosDMvXM*ur$`7W-LJB@j04W4DA*7oyZlO|Bg>+MmI~x)Fg$7L{ z(oGZYY&7FP6Iux`v}x8L-K@o(jduKJLX_~Q6XSDSe=s!`Qt)X4NFk^RA>D*=3zeEG zq?>Bo*@)mTG-w);ZkljsqZ$91&`NlrO|u5+W-ab)wBtV$qJ%%4bdtWXS<{7d(~UbD zG5lvjobacUEu{ZuhBvt|{|8fJAqAf%fE0q75E4v{5ymZ4YO0W6YK&^!U}`L+;L{ip z{DlThBN9xF(S#dJjfE6^8lxG1Ff|rZ@M!`_A*cx<-59Ne7uqyykYH+zwYb65SV+OA zG1~D5Q)3|opC*75f|?N0jS(e0m>LTy_%s2e5Y&W_Zo;^QN=+5gO*QUp7@edqY}Rxk z!PFStxWUv|NWrHuV)%opv5<mK6F>?<O$h16h!Y-6jfE6^ngCJ=YC=diVcbHcrV8n% z8h18~Eu;^o#zG1{O#mqbH6f&%Fm9nzQ-yR>jXN6={DlThBhpP1?rb#UKNE~?lwau8 z+>8WMV<d2csj-lPPh<4q52nUK3O-E$DFihkq#L83@L*~zq~Oy8kU~%sLb?g#7AiGW zNH^8Evtisq`e14-q~Oy8kU~%sLb?g#7AiGWNH^8Evk}2xXwWnw-8A9OMl=31!MK(3 zgQ>BQf=?4b3PDW>=_ZU@sMJ&;-BjbwMg)JMLDPtI(}X)4&G^rRR>BKynl(r_YjJ0z z9sijSCH(2c*va)5KB@T>5=@QpY209HETrJm7`NjOrp7`FK1~2A1T`U~8{;#C2UBAq z1)nB>6oQ%%(oGn*P^qaxx~ayU4dV{d2UBAq1)nB>6oQ%%(oGn*P^qaxx~ayUjR^ii zgQgMbrU`d8n(?0r#%C!%m>LTy_%s2e5Y&W_Zo;^QN=+5gO*QUpMDQ0HG>u3%O}Mks zjQ>n%CA`q4S%Y-57I!w<@t+A%!k<oz&vE_1)L2NtrwJg1peBTL6UHr6YO0WKs&Qu{ zg1^w9X+*kd!kvv~{AWTd;e|HM8l;=GxU<oY|4fJy{&dnw`od;S7t&2P?rg;Hp9yio zpH8-r{+k)&PWr!am*#JfU}}uJaf7L`kb+NRd;xzjH5O9vX#z+gs0kt67=KH6Ff|rZ z@M!`_A*cx<-Gp%qm6|G~n`+$IFuq9oU}`L+;L`+<LQoSzx(VYJDm7I|H`Tba5y4+* z&@>|5G~v!hGyXHd_&drErp7`FK1~2A1T`U~n=o#nQd5O=Q;j<t5&VS)O(W7x6Ygv@ z<3AHx2`{v1)*#)i#hs0I{AWUx@TU{w9<D!_8Vf1-Gy$X#)P#_3!nlP>O%>8jHSTOg z@E001jYv05xU<oW|4e8lywIjugLJbNcQ)Gbp9xXIpH4bSU)ZeaLb~b3osAg&Ga*j+ z)5#Xne=}oziT)3!#zG1{O#mqbH6f&%Fm9nzQ-yR>jXN6={DlThBhpP1?rb#UKNDIB zFSKdaAl<CRosD+<XF`<lr;|?77dC6UkZ!thXCsFHOo$Wybh3r?-^^^I{6eqhW~7@0 z?rikoKNI>1e>%B^^xw?fO8L+5=B)$6C}jU1OpS#Ue3}4K2x>w|Ff~RPw@|66LV~F= zs&Rv<v5<mKV?^*58Z?baFf~RKZZI_#Qt)YvX8gg_SV+OA2_S`_CWLfjv=Uxu)2u;) zsWH~#22*1p1)s)f#~)0Mg%o_608$8QLP$48l<;6`ETrJm1du{d6GFNP;}$A4RY*70 zxU*q&lD@E6(}e_6V|3#NQ)3|opT>yc52nUK3O-E$DFihkq#GkncrY~<Qt)X4NFk^R zA>D*=3zeEGq?>Bo*)X<{KA0K{Dfl!2q!84EkZ!`bg-T5o(oHq)Y((%E8Z?baH%+*+ z(Tx90Ft$;Cp;vP=5=@PezzwFxLJB^O(T6{n8Vf1-Gy$X#)P#_3jDEs{sj-lPPZK~2 zK}`thCX8FC)KnqeRO8NuaSQ2#sj-lPPZK~2K}`thCX8FC)KnqeRO8M@1b?AH(};A_ zggYC}_|F96R>}{i#zG1{O#mqbH6f&%Fm9nzQ-yR>jXN6={DlThBhpP1?rb#UKNDIB zFSKdaAl<CRosD+<XF`<lrxRl**I)Rg=2J*8HO8lLgQ>BQf=^@Ijz5?h3n}<C0i+Pr zgph8G&k!C=jfE6^ngCJ=YC=diVcbHcrV8n%8h18~J4hc)jfE6^ngCJ=YC=diVcbHc zrV8n%8h17#_zMl1Mx>i2+}UWxe<m28rTk!OETrJm1du{d6GFNP;}$A4RY*70xU&(# zUue)YBHc9M&PFr-Goh96LYrm{(#=}j*=WaqCPWE;Ix#-S^#@a9AqAf%fE0q75YkN; zw@|66Lb|EOos9_oLW8Ce>81&HHk$FD39W<|+B9pBZr0+?Mmzp9AxikuNhj$Gn>AfX zH{H0i5yO8b#0h^o*+TknW{f-O|H56Gzd?ejG493<rp7`FK8^7O{K3>%NWrHGAcdeN zgmh#4E#bk`SV+OA2_S`_CWLeo#w}E8s*rA~ac9H$BI$#vv5<mK6F>?<O$g~Gj9aMG zR3Y6|<IY9|f1yFsh;-A0I~&dT&jjP|C_k7Q3n}<C0i+Prgph8+xP?kh71B*L?rcQx z7aBB;NH<Nmv(b$IOlT#%(56{~bh8$BHrnx@2~onIPK<lF{$Oe>q~Oy8kU~%sLb?g# z7AiGWNH^8Evk}2xXwWnw-8A9OMl=31p_TALn`RBt&05^qXvcphL<xU7=_Gw&v!)B_ zrW<!QV))O5IN?txTS))SjPWJ<KbRT|Dfl!2q!84EkZ!`bg-T5o(oHq)Y((%E8Z?ba zH%+*+(Tx90XeGSRrdfk@vle$Y+VP(WQNo{2I!RyHtm#6!>BgOn82&RMPWaQw7Sew+ zvyJi#y_%bmZW6e&(TD#`=qLQ?<QCF@Gjl8DKf{~14vc#l|Al|i{3{Ynjq!hRgQ>BQ zf=^@Y#ve?Lg%o_608$8QLP$5pzY!ixjfE6^ngCJ=YC=diVcbHcrV8n%8h18~`$!*5 zjfE6^ngCJ=YC=diVcbHcrV8n%8h17#_zMl1Mx>i2+}UWxe<m1Tq5NQKETrJm1du{d z6GFNP;}$A4RY*70xU&(#Uue)YBHc9M&PFr-Goh96LYrm{(#=}j*=WaqCPWE;Ix+6& z`h%&lkb+MWKng)k2<aw_Td34jA>CBt&PD`(p+VD#bkl@88_oF7gjT`}ZJISmH*0Zc zqaFX55GDNSq?7c8&6+Nxn{M3Mh~YmI;)Fk)Y$5$OGsXk-e=s!`Qt)X4NFk^RA>D*= z3zeEGq?>Bo*@)mTG-w);ZkljsqZ$91&`NlrO|u5+W-ab)wBtV$qJ%%4bdtWXS<{7d z(~UbDG5lvjobacUEu{ZuW*g-fdNnsA-6U{l<NvjHKERRO)tw*j|CN-uD+vh(lA2x| z3UYYe-SbDYl4dlTF#*Sh8c7qgBpfGcG=>fPS0f37o!r{H+9ipT81Emi6GJ7e*FY{L z#sOj=|40bOU7U-Hm>hTU72FwI1e`0E16Nmf)cHQI=l9#5?%D2<)oW(Mw5r~I=k@E? zuix+2zj^cYouBqN_BgVJe?R2}@dsH>l7AwDI|ivwQ~wb|Ng5O}l~|yNt;7L4rHn2z zrKAFON)<gyYS=}lmCS&hGK(H1b?k9u4u6q(B@1AuG|;1D5qlhI;@?j>Oni|eN|wM* zX`x5SGWIyKf`30{mH2}!N6BC0P9=ANopKC4N{(ZXBWw8gQ%(?nkmV%#Co;HWa1Zk@ z@;)W^f}L^-JxWevk0WRB@28w4{vgYJ<e$jkj=?$RKape%l4oErp8+=iNBwMxGNw{n zw?^Ajk^bBGiQ^w9{&w}#ulN$TANlVH{0v(DI^RK=|D8R4^mv3|<ob=X{v=*Mo`0R^ zpv=F{S7TuL@6g9XFq!|5foUJ^fBhSZ`4gF5D!P6r>%af=|3c?4S^w=38<h9|9_63^ z{5|p~dH;_bo@D(;4o{Ezk$nE!wr#l2KY{t%9MFU7KVa{A{sZ=|&ksKPCFb8}=U!g4 z_#yBA-?R8K&i%;0NB#f4&tE^^gEIdwu>L3WuOE;$zG&}1a`|Nacm4kNd-nW&zpVe5 z?LYtdx9{hBHvST|AJ4ze_WNc2bv_Dv&R<gh+aon7^Pkjz-wL_7J_cp}ec7i{o0IkL zU;iTm{*$`us!dmI+O%0@)8@@vG|KDETefTs>iW3Ywrt(Ht(QG`zV;K}t=qP3kL%y- z`oVZQuEgH9efy4n$B%pez48m@tMiuJx9`}obI|ke_xQ)1zh3hjoNqnvGWR=n?i@<y zzx_U^=Ru<$*PyPC>v8R651z06^gP7%?{)oPJRMih|DZqr{T~0g^Ve&BgY&KDUDp22 zp`qbq{U_^R)_`6I8ufD-)b(-w-1V{t&)0tXxs2=I>-xcXI<8&^{f-~^{(I#Y%va~F z*MIW<-|l1dJZRM88r1c1J+8g%!Sl7Bo`<;py{;dOr{n7RAN1$H-{T*5{(8-CaK81t zOYI*T9v(^Re^USDJwU$?Xw>T>sO#hUx$R{Sp0EA%a~s#c*Y$((bX>hI`W-*+{rAc* zn6J)TzYiq!KdJxn4C?1lqkgV}x<0O-t6uit`PxrEhjIOTT|XF4$JNh&zvIWf|6ch8 z^VNCl`k$=-Wc|w;(Ca{>elCN$KCYj;UiRSm+D|{1as7K;KNwHP)$5?&@#Efqul$1f z>b&*(AN0>ZgFgR*o`1jBU)=TEYkddTyI%Lw`wx$d{J`_6t5Tbg%?h^!^sNCsXy4Yu z-phY`O#is?cl0@azw_TY;Q0^w{0}AbKhW=g$@(Ac`Zt`c|78913?!fb+V2Cw&$qok zzsCLi+3(MPN&O$}_y45+5BB_zB=tY3|4IEH*v~&n{U7Z2|D^s8_WURP|6tF5vi=8q z{*(GY*z=#P|G}RBz~6`Xo~niu{PS8bEWF`F|Mvq%#cwyNZ9NT|Nc{NG|9yc`@!O4R zTTg=~(ks3(6Y!r^{-B8j^Ec|s4w{J0-{Q3`IypPw<;#D2<b)X&zul;|^)zTAz4H(F z&nkb=M7r}=_BwXN%YQrhqr3TUUw8h-LLh!aT^}?N!wJmKqOyY~qUYb@wJkbx?to$Q zZ#0!ZXd-(4EneHAGv^MN4$Oa<V^d;hZYyF3_54@SU%dH`{`2uh#cwyNZ9NT|NbmU% z_|GbT&_ufDU)k%}5pVu?F#qW8{O@=H^B;)cP}c`dq<j9AeGxn2%|G!)cjsT?UwZu; zP2~@oh&TWEi|)=p{$2CGgZanq&OdhF{O{QC{2NPw{9Ee&Koc>X!1`ELcF;uh`nPy( zi_V&Nz_9gitSEobM2wmC^(|i8qO;~5FdbO`WsXgWoi$z&d&l~(qFd<eS^vhWiVvEI zUjG)aZP8it4ww$C|1!s>#Ln8Th#l1Hzlz>#{nt2WTKrk7GvW{G^*<~A=wa)>j=g{D zKl;yy8x_CZsJ8VqXd=DWf53lM`GY3Xz5bQGjvevV|4!x~-Ch4XU%>hg#BZqUgC^3w z{*`?ZJL0W>;*0LCe~BNq{*`|df5cn=_>1nYfBd`F|4!CFc6a?__pSe(G1h+||CYKx z&_ue|zp^i5N4)jV{fq9df61Tc8wt+8v7-Dz6Y<tR{-V3<U-HKv(eq!%HYIj<{Y(DX z5t;ug$Jf99Rs2=rBi{NazUZub2kc(|#234}{;~VkKk?C{>VFO2Y4La0KmNY;kALL) z-}$1gf8(z9c<2v##xXTMpothx`~C8w{kXD&CZg-V#cNx1YQ6)8)qi76`GY26%(Sm> z@!A%hn(u&Vu(SS`IW{Hs`i@jZ?4YjyRdfq|J@wx>q2hxkVl1fmytYNB<~v|IQ2)yu zn-V)Uz9ROH`d>x2(4*>qjdP~OpBg?R{-Cb^v*M2)R{!hR%h)eR{Wngk{6Q1Z_21&P zEjl&d0n=b-{V#KDO6=73ir7J2|EuV|>VJ)Mrp2FHJtO|0uK%;*j~-V4>)7Mg|2eKP zk4XJr0MnqZ{|)r0`oD-hPW^A<|1Y=x2mgGqekW+7QSsZ2YFkf(CK7!A_j{*U{{jD5 z<qw*Oe*f2gMqSxK6Y=W*5bGb^t^Y&3|E#b7Hx>f%8|wO?iFDV0WnaXOc=ez7qPz89 z;)m6L<=?~~@#;VRqPz7U|E~H!#QMkX)_?52`acw-{s;1Jsrv&>q`Uqr`!aUKtN+}; z=x+U&{KM+M@?XIp@#;VRqPz89@(<R3@)x^X|0Vy<`Y-vf_w&Dsze;?>tN+9o-L3yz zAMEV^%h;yG?$&?ozWPu6p7no-`j5X`|MB<LfBYls|ImwA|J&nnaeW<A;{%#Vcl}rP z<Jb|e{xg1}yY-*^z)SW2#+vd6O~kAJ_>1n=fBd`ZKjSZU>U;(C*MFJ+_11qC{{-<7 zul^HXbhrL<{jT~?e6hRrAG@#q%l!AM|IEMmyY(M`U;UT)kE;JN|Cg)&tNc%rKjPJY z@)zB$|J+|!{U?91yY(Ntul{rY=r$78|JU%H7Js+?<L|5g_(#@%^2Z*h|DPlFyu^3w zKk<F_pZMru{r@6<@#_E36<hy}d)v>$#r1zmJs+Tn7*6~1;zj#uWd}_}_x~2JZPBYc zQw|u`{~KqNKWHMxO#Av4uWixk`5iC~cJ}{ej!lW39={@XQ1|~;bPIhw{l9Tm#RpBq zSWxkKZHwL@K9~kO`~Nb>ro_HTe6fSN|F5E3=u!QDjdP~OzqvCtBmSW7|7XP?J*@w) zV=rUB9R0s>pUNLJ5o1Z^&ud$BdVU8?gPr|<nPXF8r^l~|9n}4Q72QIQ>i=t;GcEq~ z>NDaG>i&OL{L#bu|2p=#{r?=-m`4nH@C7gp>i)lhZlQ<u|BKkm*f-k$H}Stx`hVk` znt#wlbpLPh+7_Lj-vQHLXa8U3*p%4m?JHsjb^l*Q@74d;IA>b?*O-6t2X+5HEB@$V z{eK;M-2Q)#Ys@3k|1W@PQ1|~0bPGMK|6jx&r~hx_-|znaF!yi-k^X-POoO`rZ=px^ z|I66p^#3dP_p|?BC4SQX>k9tD&~Sz$9gK?KZdBWP8Z?pK{eQrJR{4V_(%t_ndmTIC z_5Z`ve{{G1ALjGNdi(!C{D!(dXd>PHzp^i4N4)-@_@cZ0zr+vg|CN6ef5hwm@fY3g z|MBnY|A(pn*xmjgyRZKr=JU_S_<v(5kbg_vA7~=o{lBs=V@JIHpZgcx?f)hJu>N29 zui%e({XhPqyZyi9AMF3hU+ixGFZp-&|C0ZD`+pUGmH3F){}W$yxBut*UHw1t#qRe1 z*nRy!@q70F!}S07yZt}@zWyKo$o_x$MeP6E<DnP1aZHU5Xd>PHzp@|4j(Gh)<0rb? z|C3*6|F8Vl@JGD<AAix^{vZFY{-5y|dtLf}?4bAif0=*!H>4N;Z=6u^K@;)%f8vYo z_WxYJtN$my*xmjgyRZM3`6oUS#{bvwofdz$|Ht3g|I7U2k6eoXuj6<5`hS)GN%BX$ z{-69scl&?tudDwjf3Yvi@Bgub-tYgpfAr}7pZvw&?f>!j_5b)s_W$G`yZ;}i|0llN z{}bQW{}Vs5|0h27jq?9Z;@0rL68V4Q-uClwas8iC&j)BC-Tl9^pT>@O{Xfr-=vDd$ zFuea){%7z<y#615(cS(Z|E~U@=TGeP`4!OL|1*CaUtj;P;-4ix;`RT;7oEP}0lWKu z;)|U=zan<f>;H+59^L=*{EI(*{EYa6UjL6jdU*dY>;H1~|0@6c$RF|gfASaI?f<#I zuKu6=#ZI4J0sZ|y_usSsCx7vG`+xj>{XhPZ{lBb#@<-bBAO6l)|Kaa?)c-kR&r5u_ z|0lk$|0jNA|1ax5PX90K|H|P1jdN=LK@;)%f979wxBq8+y83_SU+nb#70}=RGkzS8 z;{R*-OpE`T^#AySUjL6jdU*fO_+yX5|IZO~UgEp`Kk<G2Kk*~`f8t}`DF5FiZvXrL zVfugacl&?x_x1nej~>SVFXI=l|0jR0-!J}umHSWne_i4IXne5!exQ#U=hgcIXd;Hw z{(a#^`-933nuzBAEneHASBFv#7{>n_7nDC}BAWlVcx{V5i$9nKJNf@I$EL(yA4*lk z4r>0tif*B=hyOPoQt?3((fq%~Yg_aN@xe6M$^Vx*HYIjA{)*T^&Hq=?E%Ye<zs5P! z;@=!f&4@p!`Ttq*M-Suw>)6ZKF9-i`d`RUFnuxK~o?naCw&*SL2h(6D|6k_Vl-QTa zU+kdf|EuU0dKCX(<D6;nUm<_-2Q~jcEB@$V{C^#L8G9W5e~xR+BgX1bY5`1xn*VR0 zTj*i@|04D{{C^Yw8rQ!P_<!TWYW_hJG44|H&ud$BIDZFBgPr_;nPXF8hvTn^9n}1P z72QIQ;{R)$GcEpW%)j`9n*W~_fAlc^zmC0(Jr4gr$2H~=0}g%xOoN*LZ=hS~Vf_Ch z_A>U3^8ZczYxwt*|3Az<96=1Y>?JS_YW}~4ZlQ<q|I66R*f+}mui)QL{(qJD3IE@& z;KoPP`Ug!!^ZypFZP8D${=qcZ$^Vx*HYN7ctbehCn*Xn&_u~I+oHH%{XITH@4{H8@ zR{YV!`2RZgxcvVd*O*6y|6c&ppyvM@=oWey|G$Vm4*%c8zu)}-Vea7wBK-dnm<Bcf z-$J+0!}$MY>~Z-275w|j|F05%(E0zPjKQ6V@c(y#X;Ab3$Izqr|Kr%>@c(Q0_mlrW zLHt4H|4)*C!v81V|JObI3qivfi9Fq?`0Ylut*1c~>COKK{AZOvXd>PGzp~e{BOd=h zLjRBM^8X|J{$aiRe;|HCT^}@&ZvJ1{7qKHA|4)3;UH)I<hw=Z)zllHM@&EXX?(+Zm zck%xt^#9mh{vW%K{~zJ^9~<TW1Npbq{edRZ&HpR=GIqq{|G9tBUH)J4599xp{|f$y z$N%Fmy37Ad{z3kq{Kd}i`75CR_y3ardij49f0g)%$Nv*wbeI3<`d$1#@x|`)|JZ%} zKk<9=|0DGO_`Cc+{yzR6|49CSgx~+XIQ##NyV~QS7rAjvjSpxd-Tc3@AIFY({6FI- zy37BQUnu{t{MYbDJpLbl(Ov!@|1SQY@fSNBe+BgO|1$sU<^NUu6U0Y6{-5}wyZk@b z@8bW7FLsyz$L{0*W&V5d|IEMmyZk@?KK@_kKZ^gC`M+G>|5y2+B!9%?|H)r;m;dMf zy7+(c7dt$E1@!a(+<#C0pZvw&<^S>b@&EWo^8e%?oBtny|0g~?{DRy+=<WX_K6?1~ z|A~)%<NW`~70my)pNEU<|CD+@KojZa|CRkTcEscVd45E9`G3Y2ywv`G<BakLO~m8> z@fY3Y|MBnQ|9Sqz?(+ZGLGSzj%pdyt_<t4uEb$SK|0lla4dMT}KIs4cKk>y5&tDNc z=<)x=M~~+JdH%(}Df~bFpvV8?j~>qd%le0ZMB4RV_-{U6AnyKmj<2`=8~3UFK@;)# zfASaI<^Q?AF8-hV#SYJ30sZ_x_s?+~Y1e=5FHrw$_)LpG9R7^>gWmW5@kbB;{=ck$ z@<%q#|FixjK0N$_#0S0a{}UfQ{QLj1{)vyY>p%JV>ObQjQU9C7yK?w{HUH<Bf5hYe znSarb$@l*mAJG5(f97B8@cb3AgWmW589(%B{-605|25(N@drKrAAj_4{-5#39*_TL z{w2Q4{}bQG{}Vrw|0jMd{-62Bzn}a650m>5$=~Jw$=}ESlYb=tPyX09y8nNLxc%k- zNBI4J(*Nrk--*Tt+wTYZm~mdcKY%9E&HpR=gV+&||L6Tf^eX%T7|#DI{|opd9{-QO z=(G5P-TXiAKVq-LKZqUl_<x>X^!4%oD*i*nM?C(Y_@cx6J772ePkgb%^H;<Udi+1} z(WCi)-v7kEDf~bFpvV8?j~>qdv;MGO9{ykD{~_{6JpP~jMThryz;6DZ{KdXZ{$d9` z{-66tkLLf$U;N?mXT%@$_<#J-!})*m#~zRW=lx&e!^1B~e9+_niH{!6{}UhkM)&_W ziFf7j|7!j}%={xB|Ihr3?(+YPPZ$5s{EHo)zXJOCf5wmF(fmL2FaB%7|KksO{6GHa z;ru`2k3Am$&-_b#c=!d04|@DR@zKNif8t}`IR7v8zu){n^<VOL`G4~F@&Du>$^Vmo zEdF2WKlvl={-6DazW$&6hmrk1`wwIE|EuJk@c-=!Z+t|pf6zoc{-5<Py37Cbe01^u ztbeheX8nVH{-5WE<5BznYxqoy{~6)`@drKrAAj_4{-5U$dz}6MbHtpN_-BRxCqC%$ z|HMZR=l_Y1eWUyTo5brs|IhlD{9XQ^{C)gC`A72q<d1!$`~O!YfBgHk|9_SE3I9I= z|Ihrp{6F*W<Nuj|^sxQ^$MK8D|1<wwzhC?RPsscee^B@TpCtc;|4;gV-Q#zn@ksmg zfIepYq56CPnn-Z}zwvQp2Terp|F?K;i(Va0IbhiSf8!I%A2bnTru}_Hi`Ta3v-pE) zuyg-^nPXF8uMejxVh8p9|0=qLzMlR6#wS&L&_s*{6`$9(=ndk7X|Qwuf0<)bVqYY_ z*g?Jjzlv_5NA3Twan7{(H-}R*;t%Tm|Fhzc9=89#j=hZia_s*%{z&Bynuy;2Z}Hj| zy+!_D8tmNvU*_19*q6y)?4aKNUq!djqxS#TIA>b?SIA%dLB0QfR{YV!_W#$hm$Ap$ z|3Aky<`H9cIJE$#LB0RKfo`FP?f+lIUdF!B{r^q;YxrLY`~Qtc)%=4dV%(*ke_q?7 zA7lQ(G}yWSzs#{Iu^(st#SZHI|5bDgJ!=1djdP~Oe~tMUe^BrLpA~=fu>Jpa>}Bk6 z_W#dujd?`&|1W@PQ1Ab5pj+rRa;g3Qi`dK9HoE`6iGL0MX}P}3|MUGzAOFwyFC+PX zzJD2$|3Az<96^ke!>J`O4VsAX|1ETj*S6>`|Iht(@c+x$%h;yG?(+ZG!S(L{U%|hI z@3i>S$IpQN{-69K`+xF})Bh8Hj+pZj-{t>_@8kc8AIbj{KNkPb_h0e9688TapHk}| zG!ec3-{Q3``YF~wm<Bud|Cc#7CHB*-f3bsl|9=(TLXX=2U*nu<@jt`*7k^Oi|DP3q z^sxQ^b?jyAarXbuagBMzILrD6)1cn}-$1v}!}k9#VlQLg=>GpE{x$sjx&Qw#_izL; z*aN==ra`^`zlCn0hwcAg#$Lw0(f$7`_}B37*Z%)i;t%@%|D%k-orvuJzY9!*djJ11 zbPGLf|Nn99W$YW>|G$QRKllHiApRil|369ohnc@*|3BZ~p$-r7-~Ts0t?EB$B6|P7 z#cNyi^VEMZ4R-GTFLP{4><?1^#SZHI|5fx}`~Pd4GcEoXsQ=;*>iz$-;*TD-|G$ns z?*9Kdt}%}o4^jWYG^qFgH_$C~8@bf}|3&O^_Ww8WuW{{Zxqegle?EVL9{(?&|M~qZ za;d-ne>wL5ALbs8AjXHN|6m$45#j$^=oYVS(Ov$Z`vdj<|7GlDY*S)~=YOI5|5xy@ z;X5t<E5iTF=YOt`$oKzW?EU|%#GfPPyu@D>{$D=-6CaW9{}00c|D%k-orvuJzY9!* zdjJ11bPGLf|Nn99arXbO;or~w|0jq)$ov0Kl7F)Qf3W}l|2;ed??Yt&|Gi)u)cgNW zp-1iiKaD-k{{J)h_jCXMS>g}!{{Q>PKiU63xPSlu9P^*-{~u)jKiU7EeE<I{Me%P^ zxJ9A<|2++*rxlhJ9#xoH*9F#f5?4&CtCkfWRXBK2+KJ1oh-_8kAme!Lg_I%KX%k&! z2R1n_vnbN(_uU6m#^!)c`+XIgoG<py|JhsYk7JYTblSAv!`QZk*zUn5*9!V^D7B1D zKVkYF<+xmTFE;(ZOKF>q_gZZFFHZ(-DQs=l+Ml;v_sR1qqx~DMZrkUuIhkxOKU&yR z|C#BVra1o{i;Y$mv=~q0S5rm}`6^=Foie`0u_uuykjIceM;=8UMm~)EHgXzyFLDQR z7?E=pk-f;xNEwm)*JCbYBst14J+Gq6kDxv#=XHwM-}H3(GatL=&u);{^7Fj<X=};9 z$q4jk1mxM4r}w4&iyReAe)Ms9rmagH-^mGYz_z!xDRm1ceXZ?~nwW33ng<s4zdL=~ zf&B+t#a$~)2gh2CcQg;ox2`*|ud#Hfb?DaR>l%j+jLo+W>|V8Zr4P&>+;?lUwR}r+ zskQIW!Qw7^x3#PE14HTb#PZTgYx%~5w;o#O)iP~AJX_7i%F@2&ce~d~^E0v3JhDQR z=3;GW-|D{o&9^sO7mc0f*WHHeGB<K_bG5lYy<h$<?wW7icyRU5JDW?p(kuI>8jWU) z+-{xU-)inEO<aHR+J5JY*Y7x^EBeIszI&ax{$kSYF<5LKZXR509&G4bCiIczDK*w! z96kCs;;>Bm>E(AHZWedFYu~|)vnzdY{s77w^(^eZrMk!3U7e}#O0Vj%-?Q7=?bw#% z>@Ms|A6_~ni5^;-T57yw-*U6Dyt2dvZY$)mtt{-{*SM+q?mD9)lXh#Pu#j2UGjBKT zLNl`<!xFq3b)OU0UpfQtxSOlzU#d;jrf#_5#y7ow?_TvH(c_IrijRy(S-%t3zqXpz zG3$NS{nmrlBi5&_zq0<$`UmT2>pRv>Oyvptg8i5F)AnZPWzLxMI_Ea$PUp9rKX(4T z^N&s@Gn+Y{NoTF>O!oflBiXBSX0DWL=6)~tY;HOKw!#mNT{Cv=*uNS(KXzvPf$`TB zo2C7wr%K-{ZJi`=I+eNs7`C?9SKBYMP5T4(igSn4%52VlDf^QAEAsc}Zyy~l>@BSB zxpU9mdrs}SdhF|C&y0Ow;;)L272jMsD%aqRN#27FShtbEuUOx;zGOdX7c*C7bGeD! zCv(r|Uq5=Ja7W=};nxePJzv`M<evTGXC@w)_|f7B_h3xEd~(<1{c@dh`(9S8JFIuv z+nxX7yd?XI?Ah$?x#9fY{2ikwNADfIpL_Xw;h92iY-s#-6E{zMe&UCVKT&*5(JFqV zxK_Hml&YmtbuRUz*3a5+wg29JrL)`F<CL9GIcG8tWUkMx<nPG;uY9iXGll8GTMLcC z`8}^4J2du7V{2n)$KF5o*w{PAKRfaM;v>aR6+c(}>tbp0Z{@z`QmMBBFSjgf)T&rF zTDMzy=T(_pW+L;(Og(cUo5{T^cX#eo?gP0Cxi98g`TsC_pzyK6=L>&R_;TSZg^@jf zJ@(M}XU6|x{BOpe7#}HqtC%WnFa1#In$j(ksl%z%GhF*s)^%2vE8k(Aw9Z=}wf={7 zmHle_db?r2(_Uis@3HT*f7kw){U{^*lzp{xt@BgP&CbvB96aj$sq;nWDd$_xbIz8` zk7Zt!xhYf2+>%+&{1Q*aA7`G*d^2-R*3Ra$6WO26zCU|D`_b$lWxt;Nr|fHTbGch{ zhjaff_p#h(a@XZE`C|Sz@@MkDlmC<abNT<5uZ+HFv^Dyk(YqP<2Sz_P`i0TQMjs!2 zV)V<SPmZPv#|!Tn`<?MGj6XI0p5k|k-!0ZkZ!X<gI#v3!(&tOhGOyXm@yX`odnP|S z`Gv`UnEWRh$D^s#w}ByR!m3)wtzWesvOZxwZvAKLIi9{L`zCwVevAE&_OtfOoUC)Z z^C!;p&Q#`D=CRBVW^37dvrlBN$-O0ap8I_y_gL=la{o2=T<$0GugTw>|GE6J{J$MN zG5Twx7e+rl`WK^L9Q~2P+X}y1_=CbH3Xd0Fzh~?C?(wnlw~YV7_%DzD=J@7`p^3?f zV-xpIoSXRi#Q&W5&cy$jFp94zjuk7#n~QHQ9w@FBf4%rn@iWCgFMhuG--}NdpDS)E z?I>McdR6JQr8kylN{!O(WO{$;qow~;`bz1WrRPdNK6&lrYbJM3<|ZqXvy+D>e{u56 z<ToVeds2MVPNiPL`hLLrp!H$v_pOh!x<6}u!TMY4@2&r4ea-ro_0QJ-wKlW<UTXii z{Yv{fJI`pm(Vnpv?6=zo?3Vq@?)+b{AGSYf|3~{P_BZWK&P$!2bQYYqJMVRV&3OaQ z;lIiJV&;9B`!cEQw(LmuhqABCUY{*ye=hr>?C)j&GW&G)pR><rx96_Ty*xLWdwp&u zw>S5;++yw*nE%vor&6!x9=~BdoBMVyn=j<c`5W?YU|jFXpUXdxe>DF@{>ynzcsP}k z&-t&mUu$RWf<0m1V86k>*{<7rS!;{-JM8`Tvi)BBZtnK9ea?Qs=45M=EXmYd=8nv{ z%*Qj2XP(LI$X=T*XWyE=EqglqaQ3n6<IL=rvrlHfn*Cb#8`)>F&t|`!{omQ|W>dK> oxgEKYoRRyH+)Hz>$fa}F=D1YylZ-$z0?7y@Ban>1zxWaO|5U9n1ONa4 diff --git a/pyfpdb/pokereval.py b/pyfpdb/pokereval.py deleted file mode 100644 index 08d08786..00000000 --- a/pyfpdb/pokereval.py +++ /dev/null @@ -1,338 +0,0 @@ -# -# Copyright (C) 2007, 2008 Loic Dachary <loic@dachary.org> -# Copyright (C) 2004, 2005, 2006 Mekensleep -# -# Mekensleep -# 24 rue vieille du temple -# 75004 Paris -# licensing@mekensleep.com -# -# 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 3 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -# -# Authors: -# Loic Dachary <loic@dachary.org> -# -# -import sys - -# for fpdb alter the following line from __import__ to import...as... . -# fpdb py2exe package build does no recognise __import__ statement, -# and fails at runtime with _pokereval_2_6 not found - -#_pokereval = __import__('_pokereval_' + sys.version[0] + '_' + sys.version[2]) -import _pokereval_2_6 as _pokereval - -from types import * - -class PokerEval: - """\ -Evaluate the strengh of a poker hand for a given poker variant. -In all methods, when a list of cards is to be provided (for instance -with the "hand" argument of the "best" method), each member of the -list may be a number or a string designating a card according to -the following table: - - 2h/00 2d/13 2c/26 2s/39 - 3h/01 3d/14 3c/27 3s/40 - 4h/02 4d/15 4c/28 4s/41 - 5h/03 5d/16 5c/29 5s/42 - 6h/04 6d/17 6c/30 6s/43 - 7h/05 7d/18 7c/31 7s/44 - 8h/06 8d/19 8c/32 8s/45 - 9h/07 9d/20 9c/33 9s/46 - Th/08 Td/21 Tc/34 Ts/47 - Jh/09 Jd/22 Jc/35 Js/48 - Qh/10 Qd/23 Qc/36 Qs/49 - Kh/11 Kd/24 Kc/37 Ks/50 - Ah/12 Ad/25 Ac/38 As/51 - -The string __ (two underscore) or the number 255 are placeholders -meaning that the card is unknown. -""" - - def best(self, side, hand, board = []): - """\ -Return the best five card combination that can be made with the cards -listed in "hand" and, optionally, board. The "side" may be "hi" or -"low". The "board" argument must only be provided for variants where -knowing if a given card is taken from the board or not is significant -(such as Omaha but not Holdem). - -A list is returned. The first element is the numerical value -of the hand (better hands have higher values if "side" is "hi" and -lower values if "side" is "low"). The second element is a list whose -first element is the strength of the hand among the following: - -Nothing (only if "side" equals "low") -NoPair -TwoPair -Trips -Straight -Flush -FlHouse -Quads -StFlush - -The last five elements are numbers describing the best hand properly -sorted (for instance the ace is at the end for no pair if "side" is low or -at the beginning if "side" high). - -Examples: - -[134414336, ['StFlush', 29, 28, 27, 26, 38]] is the wheel five to ace, clubs -[475920, ['NoPair', 45, 29, 41, 39, 51]] is As, 8s, 5c, 4s, 2s -[268435455, ['Nothing']] means there is no qualifying low -""" - if len(hand + board) >= 5: - return _pokereval.eval_hand(side, hand, board) - else: - return False - - def best_hand(self, side, hand, board = []): - """\ -Return the best five card combination that can be made with the cards -listed in "hand" and, optionaly, board. The "side" may be "hi" or -"low". The returned value is the second element of the list returned -by the "best" method. -""" - if len(hand + board) >= 5: - return _pokereval.eval_hand(side, hand, board)[1] - else: - return False - - def best_hand_value(self, side, hand, board = []): - """\ -Return the best five card combination that can be made with the cards -listed in "hand" and, optionaly, board. The "side" may be "hi" or -"low". The returned value is the first element of the list returned -by the "best" method. -""" - if len(hand + board) >= 5: - return _pokereval.eval_hand(side, hand, board)[0] - else: - return False - - def evaln(self, cards): - """\ -Call the poker-eval Hand_EVAL_N function with the "cards" argument. -Return the strength of the "cards" as a number. The higher the -better. -""" - return _pokereval.evaln(cards) - - def winners(self, *args, **kwargs): - """\ -Return a list of the indexes of the best hands, relative to the "pockets" -keyword argument. For instance, if the first pocket and third pocket cards -tie, the list would be [0, 2]. Since there may be more than one way to -win a hand, a hash is returned with the list of the winners for each so -called side. For instace {'hi': [0], 'low': [1]} means pocket cards -at index 0 won the high side of the hand and pocket cards at index 1 -won the low side. - -See the"poker_eval" method for a detailed -explanation of the semantics of the arguments. - -If the keyword argument "fill_pockets" is set, pocket cards -can contain a placeholder (i.e. 255 or __) that will be be -used as specified in the "poker_eval" method documentation. - -If the keyword argument "fill_pockets" is not set, pocket cards -that contain at least one placeholder (i.e. 255 or __) are -ignored completly. For instance if winners is called as follows -o.winners(game = 'holdem', pockets = [ [ '__', 'As' ], [ 'Ks', 'Kd'] ]) -it is strictly equivalent as calling -o.winners(game = 'holdem', pockets = [ [ 'Ks', 'Kd'] ]). -""" - index2index = {} - normalized_pockets = [] - normalized_index = 0 - pockets = kwargs["pockets"][:] - for index in xrange(len(pockets)): - if not kwargs.has_key("fill_pockets"): - if 255 in pockets[index] or "__" in pockets[index]: - pockets[index] = [] - - if pockets[index] != []: - normalized_pockets.append(pockets[index]) - index2index[index] = normalized_index - normalized_index += 1 - kwargs["pockets"] = normalized_pockets - - results = _pokereval.poker_eval(*args, **kwargs) - - (count, haslopot, hashipot) = results.pop(0) - winners = { 'low': [], 'hi': [] } - for index in xrange(len(pockets)): - if index2index.has_key(index): - result = results[index2index[index]] - if result[1] == 1 or result[3] == 1: - winners["hi"].append(index) - if result[4] == 1 or result[6] == 1: - winners["low"].append(index) - - if not haslopot or len(winners["low"]) == 0: - del winners["low"] - if not hashipot: - del winners["hi"] - return winners - - def poker_eval(self, *args, **kwargs): - """\ -Provided with a description of a poker game, return the outcome (if at showdown) or -the expected value of each hand. The poker game description is provided as a set -of keyword arguments with the following meaning: - -game : the variant (holdem, holdem8, omaha, omaha8, 7stud, 7stud8, razz, - 5draw, 5draw8, 5drawnsq, lowball, lowball27). - Mandatory, no default. - -pockets : list of pocket cards for each player still in game. Each member - of the list is a list of cards. The position of the pocket cards - in the list is meaningfull for the value returned will refer to - this position when stating which player wins, tie or loose. - Example: [ ["tc", "ac"], ["3h", "ah"], ["8c", "6h"]] - Cards do not have to be real cards like "tc" or "4s". They may also be a - placeholder, denoted by "__" or 255. When using placeholders, the - keyword argument "iterations" may be specified to use Monte Carlo instead of - exhaustive exploration of all the possible combinations. - Example2: [ ["tc", "__"], [255, "ah"], ["8c", "6h"]] - - Mandatory, no default. - -board : list of community cards, for games where this is meaningfull. If - specified when irrelevant, the return value cannot be predicted. - Default: [] - -dead : list of dead cards. These cards won't be accounted for when exloring - the possible hands. - Default: [] - -iterations: the maximum number of iterations when exploring the - possible outcome of a given hand. Roughly speaking, each - iteration means to distribute cards that are missing (for - which there are place holders in the board or pockets - keywords arguments, i.e. 255 or __). If the number of - iterations is not specified and there are place holders, - the return value cannot be predicted. - Default: +infinite (i.e. exhaustive exploration) - -Example: object.poker_eval(game = "holdem", - pockets = [ ["tc", "ac"], ["3h", "ah"], ["8c", "6h"]], - dead = [], - board = ["7h", "3s", "2c"]) - -The return value is a map of two entries: -'info' contains three integers: - - the number of samples (which must be equal to the number of iterations given - in argument). - - 1 if the game has a low side, 0 otherwise - - 1 if the game has a high side, 0 otherwise -'eval' is a list of as many maps as there are pocket cards, each -made of the following entries: - 'scoop': the number of time these pocket cards scoop - 'winhi': the number of time these pocket cards win the high side - 'losehi': the number of time these pocket cards lose the high side - 'tiehi': the number of time these pocket cards tie for the high side - 'winlo': the number of time these pocket cards win the low side - 'loselo': the number of time these pocket cards lose the low side - 'tielo': the number of time these pocket cards tie for the low side - 'ev': the EV of these pocket cards as an int in the range [0,1000] with - 1000 being the best. - -It should be clear that if there is only one sample (i.e. because all the -cards are known which is the situation that occurs at showdown) the details -provided by the 'eval' entry is mostly irrelevant and the caller might -prefer to call the winners method instead. -""" - result = _pokereval.poker_eval(*args, **kwargs) - return { - 'info': result[0], - 'eval': [ { 'scoop': x[0], - 'winhi': x[1], - 'losehi': x[2], - 'tiehi': x[3], - 'winlo': x[4], - 'loselo': x[5], - 'tielo': x[6], - 'ev': int(x[7] * 1000) } for x in result[1:] ] - } - - def deck(self): - """\ -Return the list of all cards in the deck. -""" - return [ self.string2card(i + j) for i in "23456789TJQKA" for j in "hdcs" ] - - def nocard(self): - """Return 255, the numerical value of a place holder in a list of cards.""" - return 255 - - def string2card(self, cards): - """\ -Convert card names (strings) to card numbers (integers) according to the -following map: - - 2h/00 2d/13 2c/26 2s/39 - 3h/01 3d/14 3c/27 3s/40 - 4h/02 4d/15 4c/28 4s/41 - 5h/03 5d/16 5c/29 5s/42 - 6h/04 6d/17 6c/30 6s/43 - 7h/05 7d/18 7c/31 7s/44 - 8h/06 8d/19 8c/32 8s/45 - 9h/07 9d/20 9c/33 9s/46 - Th/08 Td/21 Tc/34 Ts/47 - Jh/09 Jd/22 Jc/35 Js/48 - Qh/10 Qd/23 Qc/36 Qs/49 - Kh/11 Kd/24 Kc/37 Ks/50 - Ah/12 Ad/25 Ac/38 As/51 - -The "cards" argument may be either a list in which case a converted list -is returned or a string in which case the corresponding number is -returned. -""" - if type(cards) is ListType or type(cards) is TupleType: - return [ _pokereval.string2card(card) for card in cards ] - else: - return _pokereval.string2card(cards) - - def card2string(self, cards): - """\ -Convert card numbers (integers) to card names (strings) according to the -following map: - - 2h/00 2d/13 2c/26 2s/39 - 3h/01 3d/14 3c/27 3s/40 - 4h/02 4d/15 4c/28 4s/41 - 5h/03 5d/16 5c/29 5s/42 - 6h/04 6d/17 6c/30 6s/43 - 7h/05 7d/18 7c/31 7s/44 - 8h/06 8d/19 8c/32 8s/45 - 9h/07 9d/20 9c/33 9s/46 - Th/08 Td/21 Tc/34 Ts/47 - Jh/09 Jd/22 Jc/35 Js/48 - Qh/10 Qd/23 Qc/36 Qs/49 - Kh/11 Kd/24 Kc/37 Ks/50 - Ah/12 Ad/25 Ac/38 As/51 - -The "cards" argument may be either a list in which case a converted list -is returned or an integer in which case the corresponding string is -returned. -""" - if type(cards) is ListType or type(cards) is TupleType: - return [ _pokereval.card2string(card) for card in cards ] - else: - return _pokereval.card2string(cards) - From 3e34a7804f6e7fd5ea11ac98c73452e68d416fc3 Mon Sep 17 00:00:00 2001 From: gimick <bbtgaf@googlemail.com> Date: Sun, 12 Dec 2010 19:54:43 +0000 Subject: [PATCH 127/162] pokereval: update py2exe walkthrough, add build instructions for windows site-package --- .../windows/py2exeWalkthroughPython26.txt | 9 ++++--- ...ypokereval-win32-packaging-walkthrough.txt | 26 +++++++++++-------- 2 files changed, 21 insertions(+), 14 deletions(-) diff --git a/packaging/windows/py2exeWalkthroughPython26.txt b/packaging/windows/py2exeWalkthroughPython26.txt index 68a74c81..7ad865c0 100644 --- a/packaging/windows/py2exeWalkthroughPython26.txt +++ b/packaging/windows/py2exeWalkthroughPython26.txt @@ -30,14 +30,17 @@ py2exe 0.6.9 ... http://sourceforge.net/projects/py2exe/files/py2exe/0.6.9/py2ex psycopg2 ... http://www.stickpeople.com/projects/python/win-psycopg/psycopg2-2.2.1.win32-py2.6-pg8.4.3-release.exe (Note: stickpeople is the offical repository, not a community build) +(py)pokereval v138 ... http://sourceforge.net/projects/fpdb/files/fpdb/pypoker-eval-win32/pokereval-138.win32.exe/download +(Note: There are no official windows builds, this installer is built from source. A walkthrough is in the same directory as this walkthrough. 1.2/ MySQL -MySQL-python-1.2.3.win32-py2.6-fpdb0.20.exe ... http://www.mediafire.com/file/iodnnnznmj1/MySQL-python-1.2.3.win32-py2.6-fpdb0.20.exe +Install the following file: -This is an intaller built from source by gimick. There are no official mysql-python2.6 builds for windows. +MySQL-python-1.2.3.win32-py2.6-fpdb0.20.exe ... http://sourceforge.net/projects/fpdb/files/fpdb/MySQL-python-1.2.3-win32-py2.6/MySQL-python-1.2.3.win32-py2.6-fpdb0.20.exe/download -Community builds are also available from some developers. see www.codegood.com for example. +Note: This is an intaller built from source by gimick. A walkthrough to build this installer is in the same directory as this walkthrough. +Note: There is no official mysql-python2.6 build for windows. Community builds are available from some developers. see www.codegood.com for example. 1.3/ pytz fixup to work in an executable package diff --git a/packaging/windows/pypokereval-win32-packaging-walkthrough.txt b/packaging/windows/pypokereval-win32-packaging-walkthrough.txt index f5527309..b0fbe5f9 100644 --- a/packaging/windows/pypokereval-win32-packaging-walkthrough.txt +++ b/packaging/windows/pypokereval-win32-packaging-walkthrough.txt @@ -53,7 +53,7 @@ Python 2.6.5 ... http://www.python.org/ftp/python/2.6.5/python-2.6.5.msi 1.2/ Grab pypokereval stuff from fpdb project here ... -pypokereval ... http://sourceforge.net/projects/fpdb/files/fpdb/pypoker-eval-win32/pypokereval-138-win32-py265-fpdb-1.1.exe/download +pypokereval ... http://sourceforge.net/projects/fpdb/files/fpdb/pypoker-eval-win32/dev/pypokereval-138-win32-py265-fpdb-1.1.exe/download 1.3/ Double click the pypokereval-138-win32-py265-fpdb-1.1.exe and extract the folder to the desktop @@ -62,10 +62,10 @@ pypokereval ... http://sourceforge.net/projects/fpdb/files/fpdb/pypoker-eval-win ---------------------------------------------------------- dos>cd desktop -dos>mkdir pypokereval138-installer-win32-py265-fpdb -dos>cd pypokereval138-installer-win32-py265-fpdb -dos>mkdir payload -dos>cd payload +dos>mkdir temp +dos>cd temp +dos>mkdir pokereval +dos>cd pokereval dos>copy ..\..\pypokereval-138-win32-py265-fpdb-1.1\_pokereval_2_6.pyd dos>copy ..\..\pypokereval-138-win32-py265-fpdb-1.1\pokereval.py @@ -84,9 +84,10 @@ does not work unless the pokereval.py (which defines the PokerEval class) is ren dos> rename pokereval.py __init__.py 3. Prepare the additional packaging files +----------------------------------------- dos>cd desktop -dos>cd pypokereval138-installer-win32-py265-fpdb +dos>cd temp 3.1/ setup.py ------------- @@ -109,8 +110,9 @@ author_email = "Fpdb-main@lists.sourceforge.net", url = "fpdb.sourceforge.net", packages = ['pokereval'], package_data = {'pokereval' : filelist }, -long_description = """An unofficial installer for pypokereval v138, win32, python v2.6.5 -pokereval official project page is at http://www.pokersource.info/""" +long_description = """An unofficial and experimental installer for pypokereval v138 +Built for 32bit windows and python v2.6.5 +pokereval official project page is at http://www.pokersource.info/""" ) #================================================== @@ -120,7 +122,7 @@ pokereval official project page is at http://www.pokersource.info/""" The following structure should now exist. -pypokereval138-installer-win32-py265-fpdb +temp |--setup.py |--pokereval |--_pokereval_2_6.pyd @@ -132,9 +134,11 @@ pypokereval138-installer-win32-py265-fpdb 3.3 Build --------- -Navigate to the desktop/pypokereval138-installer-win32-py265-fpdb directory +Navigate to the desktop/temp directory -dos>c:\Python26\python.exe setup.py bdist_wininst --plat-name=win32 --user-access-control auto +dos>c:\Python26\python.exe setup.py bdist_wininst --plat-name=win32 --user-access-control force + +Note: UAC auto seems to cause lockup on my win7 system 3.4 Complete ------------ From 6d8f1ca4f9d1da86627def15cda943e1d8197944 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Mon, 13 Dec 2010 13:45:04 -0500 Subject: [PATCH 128/162] New window from id routine. --- pyfpdb/XTables.py | 42 ++++++++++++++++++++++++++++-------------- 1 file changed, 28 insertions(+), 14 deletions(-) diff --git a/pyfpdb/XTables.py b/pyfpdb/XTables.py index 5ae3112e..b9900054 100644 --- a/pyfpdb/XTables.py +++ b/pyfpdb/XTables.py @@ -65,28 +65,35 @@ class Table(Table_Window): if self.number is None: return None - (self.window, self.parent) = self.get_window_from_xid(self.number) +# def get_window_from_xid(self, id): +# for outside in root.query_tree().children: +# if outside.id == id: +# return (outside, outside.query_tree().parent) +# for inside in outside.query_tree().children: +# if inside.id == id: # GNOME, Xfce +# return (inside, inside.query_tree().parent) +# for wayinside in inside.query_tree().children: +# if wayinside.id == id: # KDE +# parent = wayinside.query_tree().parent +# return (wayinside, parent.query_tree().parent) +# return (None, None) + def get_window_from_xid(self, id): - for outside in root.query_tree().children: - if outside.id == id: - return (outside, outside.query_tree().parent) - for inside in outside.query_tree().children: - if inside.id == id: # GNOME, Xfce - return (inside, inside.query_tree().parent) - for wayinside in inside.query_tree().children: - if wayinside.id == id: # KDE - parent = wayinside.query_tree().parent - return (wayinside, parent.query_tree().parent) - return (None, None) + for top_level in root.query_tree().children: + if top_level.id == id: + return (top_level, None) + for w in treewalk(top_level): + if w.id == id: + return (w, top_level) def get_geometry(self): try: my_geo = self.window.get_geometry() if self.parent is None: - return {'x' : my_geo.x + pa_geo.x, - 'y' : my_geo.y + pa_geo.y, + return {'x' : my_geo.x, + 'y' : my_geo.y, 'width' : my_geo.width, 'height' : my_geo.height } @@ -116,3 +123,10 @@ class Table(Table_Window): # This is the gdkhandle for the HUD window gdkwindow = gtk.gdk.window_foreign_new(window.window.xid) gdkwindow.set_transient_for(self.gdkhandle) + +def treewalk(parent): + for w in parent.query_tree().children: + for ww in treewalk(w): + yield ww + yield w + From f58af287792805c166e0ce4cf80cd3e2d7c91ec6 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Mon, 13 Dec 2010 13:48:24 -0500 Subject: [PATCH 129/162] Make executables executable. --- pyfpdb/HUD_main.pyw | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 pyfpdb/HUD_main.pyw diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw old mode 100644 new mode 100755 From 46dd6524ec55b9c816e8089c3d7801fd28ce5b56 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Wed, 15 Dec 2010 12:44:12 +0800 Subject: [PATCH 130/162] Options: Add site_alias function Function returns the FPDB name for a given site. Should make command line options a bit simpler --- pyfpdb/Options.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/pyfpdb/Options.py b/pyfpdb/Options.py index 9492fc87..2b2dc06e 100644 --- a/pyfpdb/Options.py +++ b/pyfpdb/Options.py @@ -77,6 +77,35 @@ def fpdb_options(): (options, argv) = parser.parse_args() return (options, argv) +def site_alias(alias): + """Function for converting various site aliases to the FPDB name""" + tmp = alias + aliases = { + "PokerStars" : "PokerStars", + "Full Tilt Poker": "Full Tilt Poker", + "PartyPoker" : "PartyPoker", + "Betfair" : "Betfair", + "OnGame" : "OnGame", + "Absolute" : "Absolute", + "UltimateBet" : "UltimateBet", + "Everleaf" : "Everleaf", + "Carbon" : "Carbon", + "iPoker" : "iPoker", + "Winamax" : "Winamax", + "Win2day" : "Win2day", + "Stars" : "PokerStars", + "FTP" : "Full Tilt Poker", + "Party" : "PartyPoker", + "AP" : "Absolute", + "UB" : "UltimateBet", + } + try: + tmp = aliases[alias] + except KeyError, e: + print _("Alias '%s' unknown" % alias) + + return False + if __name__== "__main__": (options, argv) = fpdb_options() print "errorsToConsole =", options.errorsToConsole From e5b514cb553f2cdd2d94b2ca6337da3ade5e9191 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Wed, 15 Dec 2010 12:49:52 +0800 Subject: [PATCH 131/162] Options: Modify site_alias so it returns False on failure --- pyfpdb/Options.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyfpdb/Options.py b/pyfpdb/Options.py index 2b2dc06e..65ed888e 100644 --- a/pyfpdb/Options.py +++ b/pyfpdb/Options.py @@ -102,9 +102,10 @@ def site_alias(alias): try: tmp = aliases[alias] except KeyError, e: + tmp = False print _("Alias '%s' unknown" % alias) - return False + return tmp if __name__== "__main__": (options, argv) = fpdb_options() From acf5e4a677facd7c1e2ccd8bf13d3bafddc99bac Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Wed, 15 Dec 2010 12:50:23 +0800 Subject: [PATCH 132/162] THP: Make THP use new Options.site_aliases function --- pyfpdb/TestHandsPlayers.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pyfpdb/TestHandsPlayers.py b/pyfpdb/TestHandsPlayers.py index 2d978e67..177fe9e2 100755 --- a/pyfpdb/TestHandsPlayers.py +++ b/pyfpdb/TestHandsPlayers.py @@ -157,6 +157,10 @@ def walk_testfiles(dir, function, importer, errors, site): else: compare(nfile, importer, errors, site) +def usage(): + print "USAGE:" + sys.exit(0) + def main(argv=None): if argv is None: argv = sys.argv[1:] @@ -166,11 +170,12 @@ def main(argv=None): test_all_sites = True if options.usage == True: - #Print usage examples and exit - print "USAGE:" - sys.exit(0) + usage() if options.sitename: + options.sitename = Options.site_alias(options.sitename) + if options.sitename == False: + usage() print "Only regression testing '%s' files" % (options.sitename) test_all_sites = False From ec62b1911d00992f2bf6969466734dad2f3de290 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Wed, 15 Dec 2010 14:27:50 +0800 Subject: [PATCH 133/162] SessionViewer: Fix total profit for single session Bound to be lots more bugs, but the total profit for a single session is now being calculated correctly. --- pyfpdb/GuiSessionViewer.py | 45 ++++++++++++++++++++++---------------- 1 file changed, 26 insertions(+), 19 deletions(-) diff --git a/pyfpdb/GuiSessionViewer.py b/pyfpdb/GuiSessionViewer.py index 6f0fd269..e559914a 100644 --- a/pyfpdb/GuiSessionViewer.py +++ b/pyfpdb/GuiSessionViewer.py @@ -265,8 +265,9 @@ Thankyou #end def fillStatsFrame(self, vbox): def generateDatasets(self, playerids, sitenos, limits, seats): - THRESHOLD = 1800 # Minimum number of seconds between consecutive hands before being considered a new session - PADDING = 5 # Additional time in minutes to add to a session, session startup, shutdown etc (FiXME: user configurable) + print "DEBUG: Starting generateDatasets" + THRESHOLD = 1800 # Min # of secs between consecutive hands before being considered a new session + PADDING = 5 # Additional time in minutes to add to a session, session startup, shutdown etc # Get a list of all handids and their timestampts #FIXME: Query still need to filter on blind levels @@ -288,6 +289,9 @@ Thankyou times = map(lambda x:long(x[0]), hands) handids = map(lambda x:int(x[1]), hands) winnings = map(lambda x:float(x[4]), hands) + #print "DEBUG: times : %s" % times + #print "DEBUG: handids : %s" % handids + #print "DEBUG: winnings: %s" % winnings #print "DEBUG: len(times) %s" %(len(times)) diffs = diff(times) # This array is the difference in starttime between consecutive hands diffs2 = append(diffs,THRESHOLD + 1) # Append an additional session to the end of the diffs, so the next line @@ -318,6 +322,7 @@ Thankyou cum_sum = cum_sum/100 sid = 1 # Take all results and format them into a list for feeding into gui model. + #print "DEBUG: range(len(index[0]): %s" % range(len(index[0])) for i in range(len(index[0])): hds = index[0][i] - first_idx + 1 # Number of hands in session if hds > 0: @@ -328,19 +333,21 @@ Thankyou minutesplayed = 1 minutesplayed = minutesplayed + PADDING hph = hds*60/minutesplayed # Hands per hour - won = sum(winnings[first_idx:index[0][i]])/100.0 - hwm = max(cum_sum[first_idx:index[0][i]]) - lwm = min(cum_sum[first_idx:index[0][i]]) + end_idx = first_idx+hds + won = sum(winnings[first_idx:end_idx])/100.0 + #print "DEBUG: winnings[%s:%s]: %s" % (first_idx, end_idx, winnings[first_idx:end_idx]) + hwm = max(cum_sum[first_idx:end_idx]) + lwm = min(cum_sum[first_idx:end_idx]) open = (sum(winnings[:first_idx]))/100 - close = (sum(winnings[:index[0][i]]))/100 - #print "DEBUG: range: (%s, %s) - (min, max): (%s, %s) - (open,close): (%s, %s)" %(first_idx, index[0][i], lwm, hwm, open, close) + close = (sum(winnings[:end_idx]))/100 + print "DEBUG: range: (%s, %s) - (min, max): (%s, %s) - (open,close): (%s, %s)" %(first_idx, index[0][i], lwm, hwm, open, close) results.append([sid, hds, stime, etime, hph, won]) opens.append(open) closes.append(close) highs.append(hwm) lows.append(lwm) - #print "DEBUG: Hands in session %4s: %4s Start: %s End: %s HPH: %s Profit: %s" %(sid, hds, stime, etime, hph, won) + print "DEBUG: Hands in session %4s: %4s Start: %s End: %s HPH: %s Profit: %s" %(sid, hds, stime, etime, hph, won) total = total + (index[0][i] - first_idx) first_idx = index[0][i] + 1 sid = sid+1 @@ -374,17 +381,17 @@ Thankyou def generateGraph(self, opens, closes, highs, lows): self.clearGraphData() -# print "DEBUG:" -# print "highs = %s" % highs -# print "lows = %s" % lows -# print "opens = %s" % opens -# print "closes = %s" % closes -# print "len(highs): %s == len(lows): %s" %(len(highs), len(lows)) -# print "len(opens): %s == len(closes): %s" %(len(opens), len(closes)) -# -# for i in range(len(highs)): -# print "DEBUG: (%s, %s, %s, %s)" %(lows[i], opens[i], closes[i], highs[i]) -# print "DEBUG: diffs h/l: %s o/c: %s" %(lows[i] - highs[i], opens[i] - closes[i]) + print "DEBUG:" + print "highs = %s" % highs + print "lows = %s" % lows + print "opens = %s" % opens + print "closes = %s" % closes + print "len(highs): %s == len(lows): %s" %(len(highs), len(lows)) + print "len(opens): %s == len(closes): %s" %(len(opens), len(closes)) + + for i in range(len(highs)): + print "DEBUG: (%s, %s, %s, %s)" %(lows[i], opens[i], closes[i], highs[i]) + print "DEBUG: diffs h/l: %s o/c: %s" %(lows[i] - highs[i], opens[i] - closes[i]) self.ax = self.fig.add_subplot(111) From f4805746ae1bc754caf39002035d64a9f2c63009 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Wed, 15 Dec 2010 15:05:41 +0800 Subject: [PATCH 134/162] Grapher: Add 0th entry into winnings so graph starts at 0 --- pyfpdb/GuiGraphViewer.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyfpdb/GuiGraphViewer.py b/pyfpdb/GuiGraphViewer.py index 443d65aa..2880a7d7 100644 --- a/pyfpdb/GuiGraphViewer.py +++ b/pyfpdb/GuiGraphViewer.py @@ -224,9 +224,6 @@ class GuiGraphViewer (threading.Thread): self.graphBox.add(self.canvas) self.canvas.show() self.canvas.draw() - - #TODO: Do something useful like alert user - #print "No hands returned by graph query" else: self.ax.set_title(_("Profit graph for ring games"+names),fontsize=12) @@ -340,7 +337,10 @@ class GuiGraphViewer (threading.Thread): if len(winnings) == 0: return (None, None, None) - green = map(lambda x:float(x[1]), winnings) + #Insert a 0th entry into winnings so graph starts 'zerod' + winnings.insert(0, (0,0,0)) + + green = map(lambda x: float(x[1]), winnings) blue = map(lambda x: float(x[1]) if x[2] == True else 0.0, winnings) red = map(lambda x: float(x[1]) if x[2] == False else 0.0, winnings) greenline = cumsum(green) From c333bb768972fb48a9e5e7173adba2644de08998 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Wed, 15 Dec 2010 16:51:59 +0800 Subject: [PATCH 135/162] SessionViewer: A few updates - Added a 0th hand to the start of the winnings array - Miscalculating number of hands again High/Low watermark values appear to be much more accurate, as do max/min values for the session. --- pyfpdb/GuiSessionViewer.py | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/pyfpdb/GuiSessionViewer.py b/pyfpdb/GuiSessionViewer.py index e559914a..466f8d9b 100644 --- a/pyfpdb/GuiSessionViewer.py +++ b/pyfpdb/GuiSessionViewer.py @@ -37,8 +37,6 @@ try: from matplotlib.finance import candlestick2 from numpy import diff, nonzero, sum, cumsum, max, min, append -# from matplotlib.dates import DateFormatter, WeekdayLocator, HourLocator, \ -# DayLocator, MONDAY, timezone except ImportError, inst: print _("""Failed to load numpy and/or matplotlib in Session Viewer""") @@ -285,6 +283,8 @@ Thankyou self.db.cursor.execute(q) hands = self.db.cursor.fetchall() + hands.insert(0, (hands[0][0], 0, 0, 0, 0)) + # Take that list and create an array of the time between hands times = map(lambda x:long(x[0]), hands) handids = map(lambda x:int(x[1]), hands) @@ -324,7 +324,7 @@ Thankyou # Take all results and format them into a list for feeding into gui model. #print "DEBUG: range(len(index[0]): %s" % range(len(index[0])) for i in range(len(index[0])): - hds = index[0][i] - first_idx + 1 # Number of hands in session + hds = index[0][i] - first_idx # Number of hands in session if hds > 0: stime = strftime("%d/%m/%Y %H:%M", localtime(times[first_idx])) # Formatted start time etime = strftime("%d/%m/%Y %H:%M", localtime(times[index[0][i]])) # Formatted end time @@ -333,21 +333,21 @@ Thankyou minutesplayed = 1 minutesplayed = minutesplayed + PADDING hph = hds*60/minutesplayed # Hands per hour - end_idx = first_idx+hds + end_idx = first_idx+hds+1 won = sum(winnings[first_idx:end_idx])/100.0 #print "DEBUG: winnings[%s:%s]: %s" % (first_idx, end_idx, winnings[first_idx:end_idx]) hwm = max(cum_sum[first_idx:end_idx]) lwm = min(cum_sum[first_idx:end_idx]) open = (sum(winnings[:first_idx]))/100 close = (sum(winnings[:end_idx]))/100 - print "DEBUG: range: (%s, %s) - (min, max): (%s, %s) - (open,close): (%s, %s)" %(first_idx, index[0][i], lwm, hwm, open, close) + #print "DEBUG: range: (%s, %s) - (min, max): (%s, %s) - (open,close): (%s, %s)" %(first_idx, end_idx, lwm, hwm, open, close) results.append([sid, hds, stime, etime, hph, won]) opens.append(open) closes.append(close) highs.append(hwm) lows.append(lwm) - print "DEBUG: Hands in session %4s: %4s Start: %s End: %s HPH: %s Profit: %s" %(sid, hds, stime, etime, hph, won) + #print "DEBUG: Hands in session %4s: %4s Start: %s End: %s HPH: %s Profit: %s" %(sid, hds, stime, etime, hph, won) total = total + (index[0][i] - first_idx) first_idx = index[0][i] + 1 sid = sid+1 @@ -381,17 +381,17 @@ Thankyou def generateGraph(self, opens, closes, highs, lows): self.clearGraphData() - print "DEBUG:" - print "highs = %s" % highs - print "lows = %s" % lows - print "opens = %s" % opens - print "closes = %s" % closes - print "len(highs): %s == len(lows): %s" %(len(highs), len(lows)) - print "len(opens): %s == len(closes): %s" %(len(opens), len(closes)) + #print "DEBUG:" + #print "\thighs = %s" % highs + #print "\tlows = %s" % lows + #print "\topens = %s" % opens + #print "\tcloses = %s" % closes + #print "\tlen(highs): %s == len(lows): %s" %(len(highs), len(lows)) + #print "\tlen(opens): %s == len(closes): %s" %(len(opens), len(closes)) - for i in range(len(highs)): - print "DEBUG: (%s, %s, %s, %s)" %(lows[i], opens[i], closes[i], highs[i]) - print "DEBUG: diffs h/l: %s o/c: %s" %(lows[i] - highs[i], opens[i] - closes[i]) + #for i in range(len(highs)): + # print "DEBUG: (%s, %s, %s, %s)" %(lows[i], opens[i], closes[i], highs[i]) + # print "DEBUG: diffs h/l: %s o/c: %s" %(lows[i] - highs[i], opens[i] - closes[i]) self.ax = self.fig.add_subplot(111) From 5e2d64744bef8c8caad07484538369290f2dc933 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Wed, 15 Dec 2010 12:59:07 -0500 Subject: [PATCH 136/162] See if I can quash HUD freeze bug. No resize, autofold. --- pyfpdb/HUD_main.pyw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw index 34b701c9..79b2fbfe 100644 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -126,7 +126,7 @@ class HUD_main(object): self.main_window.set_icon_stock(gtk.STOCK_HOME) if not options.hidden: self.main_window.show_all() - gobject.timeout_add(100, self.check_tables) +# gobject.timeout_add(100, self.check_tables) except: log.exception("Error initializing main_window") From e0987e67a62326271cd7636acd889f125b8eab1b Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 17 Dec 2010 11:24:07 +0800 Subject: [PATCH 137/162] Stars: Add new blind levels to lookup --- pyfpdb/PokerStarsToFpdb.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index 0e934db3..a46b2298 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -57,9 +57,11 @@ class PokerStars(HandHistoryConverter): '20.00': ('5.00', '10.00'), '20': ('5.00', '10.00'), '30.00': ('10.00', '15.00'), '30': ('10.00', '15.00'), '60.00': ('15.00', '30.00'), '60': ('15.00', '30.00'), + '80.00': ('20.00', '40.00'), '80': ('20.00', '40.00'), '100.00': ('25.00', '50.00'), '100': ('25.00', '50.00'), '200.00': ('50.00', '100.00'), '200': ('50.00', '100.00'), '400.00': ('100.00', '200.00'), '400': ('100.00', '200.00'), + '800.00': ('200.00', '400.00'), '800': ('200.00', '400.00'), '1000.00': ('250.00', '500.00'),'1000': ('250.00', '500.00') } From fd28ad398721fb571a76fa90b458b94201c6d3c2 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 17 Dec 2010 15:56:15 +0800 Subject: [PATCH 138/162] Replayer: Add option to run from cli --- pyfpdb/GuiReplayer.py | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/pyfpdb/GuiReplayer.py b/pyfpdb/GuiReplayer.py index 4b95faf2..8307dd90 100644 --- a/pyfpdb/GuiReplayer.py +++ b/pyfpdb/GuiReplayer.py @@ -272,3 +272,41 @@ class GuiReplayer: def temp(self): pass +def main(argv=None): + """main can also be called in the python interpreter, by supplying the command line as the argument.""" + if argv is None: + argv = sys.argv[1:] + + def destroy(*args): # call back for terminating the main eventloop + gtk.main_quit() + + import Options + + (options, argv) = Options.fpdb_options() + + if options.usage == True: + #Print usage examples and exit + sys.exit(0) + + config = Configuration.Config(file = "HUD_config.test.xml") + db = Database.Database(config) + sql = SQL.Sql(db_server = 'sqlite') + + settings = {} + settings.update(config.get_db_parameters()) + settings.update(config.get_import_parameters()) + settings.update(config.get_default_paths()) + + + main_window = gtk.Window() + main_window.connect('destroy', destroy) + + replayer = GuiReplayer(config, sql, main_window, debug=True) + + main_window.add(replayer.get_vbox()) + main_window.set_default_size(800,800) + main_window.show_all() + gtk.main() + +if __name__ == '__main__': + sys.exit(main()) From caab83e6b6b2ea2aaf44cb3d0b6c4677de92ac22 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 17 Dec 2010 16:50:32 +0800 Subject: [PATCH 139/162] Replayer: Add command line parsing for filename and site --- pyfpdb/GuiReplayer.py | 69 +++++++++++++++++++++++-------------------- 1 file changed, 37 insertions(+), 32 deletions(-) diff --git a/pyfpdb/GuiReplayer.py b/pyfpdb/GuiReplayer.py index 8307dd90..1045eb27 100644 --- a/pyfpdb/GuiReplayer.py +++ b/pyfpdb/GuiReplayer.py @@ -33,28 +33,38 @@ import gobject class GuiReplayer: - def __init__(self, config, querylist, mainwin, debug=True): + def __init__(self, config, querylist, mainwin, options = None, debug=True): self.debug = debug self.conf = config self.main_window = mainwin self.sql = querylist + # These are temporary variables until it becomes possible + # to select() a Hand object from the database + self.filename="regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt" + self.site="PokerStars" + + if options.filename != None: + self.filename = options.filename + if options.sitename != None: + self.site = options.sitename + self.db = Database.Database(self.conf, sql=self.sql) filters_display = { "Heroes" : True, - "Sites" : True, - "Games" : True, - "Limits" : True, - "LimitSep" : True, - "LimitType" : True, - "Type" : True, - "Seats" : True, - "SeatSep" : True, + "Sites" : False, + "Games" : False, + "Limits" : False, + "LimitSep" : False, + "LimitType" : False, + "Type" : False, + "Seats" : False, + "SeatSep" : False, "Dates" : True, - "Groups" : True, - "GroupsAll" : True, + "Groups" : False, + "GroupsAll" : False, "Button1" : True, - "Button2" : True + "Button2" : False } @@ -239,27 +249,23 @@ class GuiReplayer: be replaced by a function to select a hand from the db in the not so distant future. This code has been shamelessly stolen from Carl """ - config = Configuration.Config(file = "HUD_config.test.xml") - db = Database.Database(config) - sql = SQL.Sql(db_server = 'sqlite') settings = {} - settings.update(config.get_db_parameters()) - settings.update(config.get_import_parameters()) - settings.update(config.get_default_paths()) - #db.recreate_tables() - importer = fpdb_import.Importer(False, settings, config, None) + settings.update(self.conf.get_db_parameters()) + settings.update(self.conf.get_import_parameters()) + settings.update(self.conf.get_default_paths()) + + importer = fpdb_import.Importer(False, settings, self.conf, None) importer.setDropIndexes("don't drop") importer.setFailOnError(True) importer.setThreads(-1) importer.setCallHud(False) importer.setFakeCacheHHC(True) + #Get a simple regression file with a few hands of Hold'em - filename="regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt" - site="PokerStars" + print "DEBUG: self.filename: '%s' self.site: '%s'" %(self.filename, self.site) - - importer.addBulkImportImportFileOrDir(filename, site=site) + importer.addBulkImportImportFileOrDir(self.filename, site=self.site) (stored, dups, partial, errs, ttime) = importer.runImport() @@ -288,24 +294,23 @@ def main(argv=None): #Print usage examples and exit sys.exit(0) + if options.sitename: + options.sitename = Options.site_alias(options.sitename) + if options.sitename == False: + usage() + config = Configuration.Config(file = "HUD_config.test.xml") db = Database.Database(config) sql = SQL.Sql(db_server = 'sqlite') - settings = {} - settings.update(config.get_db_parameters()) - settings.update(config.get_import_parameters()) - settings.update(config.get_default_paths()) - - main_window = gtk.Window() main_window.connect('destroy', destroy) - replayer = GuiReplayer(config, sql, main_window, debug=True) + replayer = GuiReplayer(config, sql, main_window, options=options, debug=True) main_window.add(replayer.get_vbox()) main_window.set_default_size(800,800) - main_window.show_all() + main_window.show() gtk.main() if __name__ == '__main__': From 06978fb77bd82ec928606fbd522bc5a4d4a26b15 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 17 Dec 2010 18:59:01 +0800 Subject: [PATCH 140/162] SQL: Add get_gameinfo_from_hid --- pyfpdb/SQL.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index 83e19f13..378c7288 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -1451,6 +1451,34 @@ class Sql: and (p.siteId = %s or %s = -1) """ + self.query['get_gameinfo_from_hid'] = """ + SELECT + s.name, + g.category, + g.base, + g.type, + g.limitType, + g.hilo, + round(g.smallBlind / 100.0,2), + round(g.bigBlind / 100.0,2), + round(g.smallBet / 100.0,2), + round(g.bigBet / 100.0,2), + g.currency + FROM + Hands as h, + Sites as s, + Gametypes as g, + HandsPlayers as hp, + Players as p + WHERE + h.id = %s + and g.id = h.gametypeid + and hp.handid = h.id + and p.id = hp.playerid + and s.id = p.siteid + limit 1 + """ + self.query['get_stats_from_hand'] = """ SELECT hc.playerId AS player_id, hp.seatNo AS seat, From 20c5ecee8218ba5c43a06698399699e1c0d3502a Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 17 Dec 2010 19:02:01 +0800 Subject: [PATCH 141/162] Replayer: Add start of relacement importhand function --- pyfpdb/GuiReplayer.py | 57 +++++++++++++++++++++++++++++-------------- 1 file changed, 39 insertions(+), 18 deletions(-) diff --git a/pyfpdb/GuiReplayer.py b/pyfpdb/GuiReplayer.py index 1045eb27..bc29090c 100644 --- a/pyfpdb/GuiReplayer.py +++ b/pyfpdb/GuiReplayer.py @@ -249,31 +249,52 @@ class GuiReplayer: be replaced by a function to select a hand from the db in the not so distant future. This code has been shamelessly stolen from Carl """ - settings = {} - settings.update(self.conf.get_db_parameters()) - settings.update(self.conf.get_import_parameters()) - settings.update(self.conf.get_default_paths()) + if True: + settings = {} + settings.update(self.conf.get_db_parameters()) + settings.update(self.conf.get_import_parameters()) + settings.update(self.conf.get_default_paths()) - importer = fpdb_import.Importer(False, settings, self.conf, None) - importer.setDropIndexes("don't drop") - importer.setFailOnError(True) - importer.setThreads(-1) - importer.setCallHud(False) - importer.setFakeCacheHHC(True) + importer = fpdb_import.Importer(False, settings, self.conf, None) + importer.setDropIndexes("don't drop") + importer.setFailOnError(True) + importer.setThreads(-1) + importer.setCallHud(False) + importer.setFakeCacheHHC(True) + print "DEBUG: self.filename: '%s' self.site: '%s'" %(self.filename, self.site) + importer.addBulkImportImportFileOrDir(self.filename, site=self.site) + (stored, dups, partial, errs, ttime) = importer.runImport() - #Get a simple regression file with a few hands of Hold'em - print "DEBUG: self.filename: '%s' self.site: '%s'" %(self.filename, self.site) + hhc = importer.getCachedHHC() + handlist = hhc.getProcessedHands() - importer.addBulkImportImportFileOrDir(self.filename, site=self.site) - (stored, dups, partial, errs, ttime) = importer.runImport() + return handlist[0] + else: + # Fetch hand info + # We need at least sitename, gametype, handid + # for the Hand.__init__ + ####### Shift this section in Database.py for all to use ###### + handid = 40 + q = self.sql.query['get_gameinfo_from_hid'] + q = q.replace('%s', self.sql.query['placeholder']) - hhc = importer.getCachedHHC() - handlist = hhc.getProcessedHands() - - return handlist[0] + c = self.db.get_cursor() + c.execute(q, (handid,)) + res = c.fetchone() + gametype = {'category':res[1],'base':res[2],'type':res[3],'limitType':res[4],'hilo':res[5],'sb':res[6],'bb':res[7], 'currency':res[10]} + #FIXME: smallbet and bigbet are res[8] and res[9] respectively + ###### End section ######## + print "DEBUG: gametype: %s" % gametype + if gametype['base'] == 'hold': + h = HoldemOmahaHand(config = self.conf, hhc = None, sitename=res[0], gametype = gametype, handText=None, builtFrom = "DB", handid=handid) + h.select(self.db, handid) + elif gametype['base'] == 'stud': + print "DEBUG: Create stud hand here" + elif gametype['base'] == 'draw': + print "DEBUG: Create draw hand here" def temp(self): pass From 70c34801059cb8f4456d29b323f0d04bc6b1c127 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Fri, 17 Dec 2010 19:03:50 +0800 Subject: [PATCH 142/162] Hand: Start select() method Can currently add the players in the hand. Still a long way to go, but a good start --- pyfpdb/Hand.py | 218 +++++++++++++++++++++---------------------------- 1 file changed, 93 insertions(+), 125 deletions(-) diff --git a/pyfpdb/Hand.py b/pyfpdb/Hand.py index c2bea220..10f15f57 100644 --- a/pyfpdb/Hand.py +++ b/pyfpdb/Hand.py @@ -282,75 +282,10 @@ db: a connected Database object""" def updateSessionsCache(self, db): db.storeSessionsCache(self.dbid_pids, self.startTime, self.gametype, self.stats.getHandsPlayers()) - def select(self, handId): + def select(self, db, handId): """ Function to create Hand object from database """ - c = cnxn.cursor() - - # We need at least sitename, gametype, handid - # for the Hand.__init__ - c.execute("""SELECT - s.name, - g.category, - g.base, - g.type, - g.limitType, - g.hilo, - round(g.smallBlind / 100.0,2), - round(g.bigBlind / 100.0,2), - round(g.smallBet / 100.0,2), - round(g.bigBet / 100.0,2), - s.currency, - h.boardcard1, - h.boardcard2, - h.boardcard3, - h.boardcard4, - h.boardcard5 - FROM - hands as h, - sites as s, - gametypes as g, - handsplayers as hp, - players as p - WHERE - h.id = %(handid)s - and g.id = h.gametypeid - and hp.handid = h.id - and p.id = hp.playerid - and s.id = p.siteid - limit 1""", {'handid':handid}) - #TODO: siteid should be in hands table - we took the scenic route through players here. - res = c.fetchone() - gametype = {'category':res[1],'base':res[2],'type':res[3],'limitType':res[4],'hilo':res[5],'sb':res[6],'bb':res[7], 'currency':res[10]} - c = Configuration.Config() - h = HoldemOmahaHand(config = c, hhc = None, sitename=res[0], gametype = gametype, handText=None, builtFrom = "DB", handid=handid) - cards = map(Card.valueSuitFromCard, res[11:16] ) - if cards[0]: - h.setCommunityCards('FLOP', cards[0:3]) - if cards[3]: - h.setCommunityCards('TURN', [cards[3]]) - if cards[4]: - h.setCommunityCards('RIVER', [cards[4]]) - #[Card.valueSuitFromCard(x) for x in cards] - - # HandInfo : HID, TABLE - # BUTTON - why is this treated specially in Hand? - # answer: it is written out in hand histories - # still, I think we should record all the active seat positions in a seat_order array - c.execute("""SELECT - h.sitehandno as hid, - h.tablename as table, - h.startTime as startTime - FROM - hands as h - WHERE h.id = %(handid)s - """, {'handid':handid}) - res = c.fetchone() - h.handid = res[0] - h.tablename = res[1] - h.startTime = res[2] # automatically a datetime - - # PlayerStacks - c.execute("""SELECT + c = db.get_cursor() + q = """SELECT hp.seatno, round(hp.winnings / 100.0,2) as winnings, p.name, @@ -358,69 +293,101 @@ db: a connected Database object""" hp.card1,hp.card2, hp.position FROM - handsplayers as hp, - players as p + HandsPlayers as hp, + Players as p WHERE - hp.handid = %(handid)s + hp.handId = %s and p.id = hp.playerid - """, {'handid':handid}) + """ + q = q.replace('%s', db.sql.query['placeholder']) + + # PlayerStacks + c.execute(q, (handId,)) for (seat, winnings, name, chips, card1,card2, position) in c.fetchall(): - h.addPlayer(seat,name,chips) - if card1 and card2: - h.addHoleCards(map(Card.valueSuitFromCard, (card1,card2)), name, dealt=True) - if winnings > 0: - h.addCollectPot(name, winnings) - if position == 'B': - h.buttonpos = seat + print "DEBUG: seat: '%s'\tname: '%s'\tchips: '%s'" % (seat, name, chips) + self.addPlayer(seat,name,str(chips)) + #if card1 and card2: + # self.addHoleCards(map(Card.valueSuitFromCard, (card1,card2)), name, dealt=True) + #if winnings > 0: + # self.addCollectPot(name, winnings) + #if position == 'B': + # self.buttonpos = seat + + + # HandInfo : HID, TABLE + # BUTTON - why is this treated specially in Hand? + # answer: it is written out in hand histories + # still, I think we should record all the active seat positions in a seat_order array + #c.execute("""SELECT + # h.sitehandno as hid, + # h.tablename as table, + # h.startTime as startTime + # FROM + # Hands as h + # WHERE h.id = %(handid)s + # """, {'handid':handid}) + #res = c.fetchone() + #h.handid = res[0] + #h.tablename = res[1] + #h.startTime = res[2] # automatically a datetime + + + #cards = map(Card.valueSuitFromCard, res[11:16] ) + #if cards[0]: + # h.setCommunityCards('FLOP', cards[0:3]) + #if cards[3]: + # h.setCommunityCards('TURN', [cards[3]]) + #if cards[4]: + # h.setCommunityCards('RIVER', [cards[4]]) + #[Card.valueSuitFromCard(x) for x in cards] # actions - c.execute("""SELECT - (ha.street,ha.actionno) as actnum, - p.name, - ha.street, - ha.action, - ha.allin, - round(ha.amount / 100.0,2) - FROM - handsplayers as hp, - handsactions as ha, - players as p - WHERE - hp.handid = %(handid)s - and ha.handsplayerid = hp.id - and p.id = hp.playerid - ORDER BY - ha.street,ha.actionno - """, {'handid':handid}) - res = c.fetchall() - for (actnum,player, streetnum, act, allin, amount) in res: - act=act.strip() - street = h.allStreets[streetnum+1] - if act==u'blind': - h.addBlind(player, 'big blind', amount) - # TODO: The type of blind is not recorded in the DB. - # TODO: preflop street name anomalies in Hand - elif act==u'fold': - h.addFold(street,player) - elif act==u'call': - h.addCall(street,player,amount) - elif act==u'bet': - h.addBet(street,player,amount) - elif act==u'check': - h.addCheck(street,player) - elif act==u'unbet': - pass - else: - print act, player, streetnum, allin, amount - # TODO : other actions + #c.execute("""SELECT + # (ha.street,ha.actionno) as actnum, + # p.name, + # ha.street, + # ha.action, + # ha.allin, + # round(ha.amount / 100.0,2) + # FROM + # handsplayers as hp, + # handsactions as ha, + # players as p + # WHERE + # hp.handid = %(handid)s + # and ha.handsplayerid = hp.id + # and p.id = hp.playerid + # ORDER BY + # ha.street,ha.actionno + # """, {'handid':handid}) + #res = c.fetchall() + #for (actnum,player, streetnum, act, allin, amount) in res: + # act=act.strip() + # street = h.allStreets[streetnum+1] + # if act==u'blind': + # h.addBlind(player, 'big blind', amount) + # # TODO: The type of blind is not recorded in the DB. + # # TODO: preflop street name anomalies in Hand + # elif act==u'fold': + # h.addFold(street,player) + # elif act==u'call': + # h.addCall(street,player,amount) + # elif act==u'bet': + # h.addBet(street,player,amount) + # elif act==u'check': + # h.addCheck(street,player) + # elif act==u'unbet': + # pass + # else: + # print act, player, streetnum, allin, amount + # # TODO : other actions #hhc.readShowdownActions(self) #hc.readShownCards(self) - h.totalPot() - h.rake = h.totalpot - h.totalcollected + #h.totalPot() + #h.rake = h.totalpot - h.totalcollected - return h def addPlayer(self, seat, name, chips): """\ @@ -853,10 +820,11 @@ class HoldemOmahaHand(Hand): hhc.readOther(self) #print "\nHand:\n"+str(self) elif builtFrom == "DB": - if handid is not None: - self.select(handid) # Will need a handId - else: - log.warning(_("HoldemOmahaHand.__init__:Can't assemble hand from db without a handid")) + #if handid is not None: + # self.select(handid) # Will need a handId + #else: + # log.warning(_("HoldemOmahaHand.__init__:Can't assemble hand from db without a handid")) + print "DEBUG: HoldemOmaha hand initialised for select()" else: log.warning(_("HoldemOmahaHand.__init__:Neither HHC nor DB+handid provided")) pass From 9413e74e0cddc12316620643e7e4a377abee0edf Mon Sep 17 00:00:00 2001 From: Steffen Schaumburg <steffen@schaumburger.info> Date: Fri, 17 Dec 2010 19:09:28 +0100 Subject: [PATCH 143/162] add +git to version string again --- pyfpdb/fpdb.pyw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 50823a93..13e90ce5 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -122,7 +122,7 @@ import Configuration import Exceptions import Stats -VERSION = "0.21-rc1" +VERSION = "0.21-rc1 plus git" class fpdb: From 147a40bff998ceb23fae7abf21d0af63b4ebda61 Mon Sep 17 00:00:00 2001 From: Steffen Schaumburg <steffen@schaumburger.info> Date: Fri, 17 Dec 2010 19:13:33 +0100 Subject: [PATCH 144/162] gettextify warning --- pyfpdb/GuiSessionViewer.py | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/pyfpdb/GuiSessionViewer.py b/pyfpdb/GuiSessionViewer.py index 6f0fd269..903c7fd1 100644 --- a/pyfpdb/GuiSessionViewer.py +++ b/pyfpdb/GuiSessionViewer.py @@ -157,15 +157,10 @@ class GuiSessionViewer (threading.Thread): # make sure Hand column is not displayed #[x for x in self.columns if x[0] == 'hand'][0][1] = False if DEBUG == False: - warning_string = """ -Session Viewer is proof of concept code only, and contains many bugs. - -Feel free to use the viewer, but there is no guarantee that the data is accurate. - -If you are interested in developing the code further please contact us via the usual channels. - -Thankyou -""" + warning_string = _("Session Viewer is proof of concept code only, and contains many bugs.\n") + warning_string += _("Feel free to use the viewer, but there is no guarantee that the data is accurate.\n") + warning_string += _("If you are interested in developing the code further please contact us via the usual channels.\n") + warning_string += _("Thankyou") self.warning_box(warning_string) def warning_box(self, str, diatitle=_("FPDB WARNING")): From 43911a49e8620fe4e43bb97f5c721d2d4965ccf8 Mon Sep 17 00:00:00 2001 From: Steffen Schaumburg <steffen@schaumburger.info> Date: Fri, 17 Dec 2010 19:16:11 +0100 Subject: [PATCH 145/162] split warning into several strings for easier translation --- pyfpdb/GuiStove.py | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/pyfpdb/GuiStove.py b/pyfpdb/GuiStove.py index f238e503..b600c81e 100644 --- a/pyfpdb/GuiStove.py +++ b/pyfpdb/GuiStove.py @@ -54,15 +54,10 @@ class GuiStove(): self.mainHBox.show_all() if DEBUG == False: - warning_string = _(""" -Stove is a GUI mockup of a EV calculation page, and completely non functional. - -Unless you are interested in developing this feature, please ignore this page. - -If you are interested in developing the code further see GuiStove.py and Stove.py - -Thankyou -""") + warning_string = _("Stove is a GUI mockup of a EV calculation page, and completely non functional.\n") + warning_string = _("Unless you are interested in developing this feature, please ignore this page.\n") + warning_string = _("If you are interested in developing the code further see GuiStove.py and Stove.py\n") + warning_string = _("Thank you\n") self.warning_box(warning_string) From 3157cf3c15211f0b8a0142670e7c3261271d1b7d Mon Sep 17 00:00:00 2001 From: Steffen Schaumburg <steffen@schaumburger.info> Date: Fri, 17 Dec 2010 19:18:52 +0100 Subject: [PATCH 146/162] correct comment --- pyfpdb/fpdb.pyw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 6dc2feb2..1cdb7783 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -1094,7 +1094,7 @@ You can find the full license texts in agpl-3.0.txt, gpl-2.0.txt, gpl-3.0.txt an self.add_and_display_tab(gv_tab, _("Tourney Graphs")) def tabStove(self, widget, data=None): - """opens a tab for bulk importing tournament summaries""" + """opens a tab for poker stove""" thread = GuiStove.GuiStove(self.config, self.window) self.threads.append(thread) tab = thread.get_vbox() From 15eb78c0c87f2a7a8fcb8f72998de9ba1e56d6d0 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Fri, 17 Dec 2010 22:14:56 -0500 Subject: [PATCH 147/162] Fix bug with translated text. --- pyfpdb/Hello.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyfpdb/Hello.py b/pyfpdb/Hello.py index 1dd48cb4..79efddba 100644 --- a/pyfpdb/Hello.py +++ b/pyfpdb/Hello.py @@ -32,6 +32,8 @@ import sys import pygtk import gtk import gobject +import L10n +_ = L10n.get_translation() # FreePokerTools modules from Mucked import Aux_Window From 6696cab13cf599864e6c57e2d98117184375141b Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Fri, 17 Dec 2010 22:16:19 -0500 Subject: [PATCH 148/162] Use sys.platform to detect OS instead of os.system. --- pyfpdb/HUD_main.pyw | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) mode change 100755 => 100644 pyfpdb/HUD_main.pyw diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw old mode 100755 new mode 100644 index 79b2fbfe..4a8f46ed --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -44,9 +44,11 @@ import Options (options, argv) = Options.fpdb_options() # get the correct module for the current os -if os.name == 'posix': +if sys.platform == 'linux2': import XTables as Tables -elif os.name == 'nt': +elif sys.platform == 'darwin': + import OSXTables as Tables +else: # This is bad--figure out the values for the various windows flavors import WinTables as Tables import locale From 9c73c0b791c33f9519b0d96c1257ab7b1cc677f7 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Fri, 17 Dec 2010 22:33:55 -0500 Subject: [PATCH 149/162] New module for poker client window finding on OSX. --- pyfpdb/OSXTables.py | 90 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 pyfpdb/OSXTables.py diff --git a/pyfpdb/OSXTables.py b/pyfpdb/OSXTables.py new file mode 100644 index 00000000..9d03cff7 --- /dev/null +++ b/pyfpdb/OSXTables.py @@ -0,0 +1,90 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +"""XWindows specific methods for TableWindows Class. +""" +# Copyright 2008 - 2010, 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 + +######################################################################## + +import L10n +_ = L10n.get_translation() + +# Standard Library modules +import re +import os + +# pyGTK modules +import gtk + +# Other Library modules +from Quartz import CoreGraphics + +# FPDB modules +from TableWindow import Table_Window + +class Table(Table_Window): + + def find_table_parameters(self): + +# This is called by __init__(). Find the poker table window of interest, +# given the self.search_string. Then populate self.number, self.title, +# self.window, and self.parent (if required). + + self.number = None + WinList = CoreGraphics.CGWindowListCreate(0,0) + WinListDict = CoreGraphics.CGWindowListCreateDescriptionFromArray(WinList) + + for d in WinListDict: + if re.search(self.search_string, d['kCGWindowName'], re.I): + title = d['kCGWindowName'] + if self.check_bad_words(title): continue + self.number = d['kCGWindowNumber'] + self.title = title + if self.number is None: + return None + + def get_geometry(self): + + WinList = CoreGraphics.CGWindowListCreate(0,0) + WinListDict = CoreGraphics.CGWindowListCreateDescriptionFromArray(WinList) + + for d in WinListDict: + if d['kCGWindowNumber'] == self.number: + return {'x' : d['kCGWindowBounds']['X'], + 'y' : d['kCGWindowBounds']['Y'], + 'width' : d['kCGWindowBounds']['Width'], + 'height' : d['kCGWindowBounds']['Height'] + } + return None + + def get_window_title(self): + WinList = CoreGraphics.CGWindowListCreate(0,0) + WinListDict = CoreGraphics.CGWindowListCreateDescriptionFromArray(WinList) + + for d in WinListDict: + if d['kCGWindowNumber'] == self.number: + return d['kCGWindowName'] + return None + + def topify(self, window): +# The idea here is to call set_transient_for on the HUD window, with the table window +# as the argument. This should keep the HUD window on top of the table window, as if +# the hud window was a dialog belonging to the table. + +# This is the gdkhandle for the HUD window + gdkwindow = gtk.gdk.window_foreign_new(window.number) + gdkwindow.set_transient_for(self.gdkhandle) From efc2db9fca4c27dd93625c5a6c90b92591b959e2 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Fri, 17 Dec 2010 22:35:03 -0500 Subject: [PATCH 150/162] Make HUD_main.pyw executable. --- pyfpdb/HUD_main.pyw | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 pyfpdb/HUD_main.pyw diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw old mode 100644 new mode 100755 From 16da7ceda779383dc0b3dbd98412a77102cf05c6 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Fri, 17 Dec 2010 22:43:41 -0500 Subject: [PATCH 151/162] Update to work with OSXTables changes. --- pyfpdb/Tables_Demo.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) mode change 100755 => 100644 pyfpdb/Tables_Demo.py diff --git a/pyfpdb/Tables_Demo.py b/pyfpdb/Tables_Demo.py old mode 100755 new mode 100644 index 86e5f1f3..fb573a6f --- a/pyfpdb/Tables_Demo.py +++ b/pyfpdb/Tables_Demo.py @@ -22,12 +22,8 @@ Main program module to test/demo the Tables subclasses. ######################################################################## -import L10n -_ = L10n.get_translation() - # Standard Library modules import sys -import os # pyGTK modules import pygtk @@ -36,11 +32,15 @@ import gobject # fpdb/free poker tools modules import Configuration +import L10n +_ = L10n.get_translation() # get the correct module for the current os -if os.name == 'posix': +if sys.platform == 'linux2': import XTables as Tables -elif os.name == 'nt': +elif sys.platform == 'darwin': + import OSXTables as Tables +else: # This is bad--figure out the values for the various windows flavors import WinTables as Tables config = Configuration.Config() From 2027c9b89ffb8cbe0330eba3c782ad4d3d655e4c Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Fri, 17 Dec 2010 22:44:40 -0500 Subject: [PATCH 152/162] Maked executable. --- pyfpdb/Tables_Demo.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 pyfpdb/Tables_Demo.py diff --git a/pyfpdb/Tables_Demo.py b/pyfpdb/Tables_Demo.py old mode 100644 new mode 100755 From 3b6867df296afd4c7426f96a1712216be675763b Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Sat, 18 Dec 2010 10:04:34 -0500 Subject: [PATCH 153/162] Another try at sussing the Quartz bindings. --- pyfpdb/OSXTables.py | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/pyfpdb/OSXTables.py b/pyfpdb/OSXTables.py index 9d03cff7..e99d53e1 100644 --- a/pyfpdb/OSXTables.py +++ b/pyfpdb/OSXTables.py @@ -31,7 +31,7 @@ import os import gtk # Other Library modules -from Quartz import CoreGraphics +from Quartz.CoreGraphics import * # FPDB modules from TableWindow import Table_Window @@ -45,39 +45,39 @@ class Table(Table_Window): # self.window, and self.parent (if required). self.number = None - WinList = CoreGraphics.CGWindowListCreate(0,0) - WinListDict = CoreGraphics.CGWindowListCreateDescriptionFromArray(WinList) + WinList = CGWindowListCreate(0,0) + WinListDict = CGWindowListCreateDescriptionFromArray(WinList) for d in WinListDict: - if re.search(self.search_string, d['kCGWindowName'], re.I): - title = d['kCGWindowName'] + if re.search(self.search_string, d[kCGWindowName], re.I): + title = d[kCGWindowName] if self.check_bad_words(title): continue - self.number = d['kCGWindowNumber'] + self.number = d[kCGWindowNumber] self.title = title if self.number is None: return None def get_geometry(self): - WinList = CoreGraphics.CGWindowListCreate(0,0) - WinListDict = CoreGraphics.CGWindowListCreateDescriptionFromArray(WinList) + WinList = CGWindowListCreate(0,0) + WinListDict = CGWindowListCreateDescriptionFromArray(WinList) for d in WinListDict: - if d['kCGWindowNumber'] == self.number: - return {'x' : d['kCGWindowBounds']['X'], - 'y' : d['kCGWindowBounds']['Y'], - 'width' : d['kCGWindowBounds']['Width'], - 'height' : d['kCGWindowBounds']['Height'] + if d[CGWindowNumber] == self.number: + return {'x' : d[kCGWindowBounds][X], + 'y' : d[kCGWindowBounds][Y], + 'width' : d[kCGWindowBounds][Width], + 'height' : d[kCGWindowBounds][Height] } return None def get_window_title(self): - WinList = CoreGraphics.CGWindowListCreate(0,0) - WinListDict = CoreGraphics.CGWindowListCreateDescriptionFromArray(WinList) + WinList = CGWindowListCreate(0,0) + WinListDict = CGWindowListCreateDescriptionFromArray(WinList) for d in WinListDict: - if d['kCGWindowNumber'] == self.number: - return d['kCGWindowName'] + if d[kCGWindowNumber] == self.number: + return d[kCGWindowName] return None def topify(self, window): From d8cf53a2bd1c813af27972d29e8bfa40d4b5be66 Mon Sep 17 00:00:00 2001 From: Eratosthenes <ray.barker@hughes.net> Date: Sat, 18 Dec 2010 10:43:56 -0500 Subject: [PATCH 154/162] Don't fail on windows that don't have names. --- pyfpdb/OSXTables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/OSXTables.py b/pyfpdb/OSXTables.py index e99d53e1..8baa6aec 100644 --- a/pyfpdb/OSXTables.py +++ b/pyfpdb/OSXTables.py @@ -49,7 +49,7 @@ class Table(Table_Window): WinListDict = CGWindowListCreateDescriptionFromArray(WinList) for d in WinListDict: - if re.search(self.search_string, d[kCGWindowName], re.I): + if re.search(self.search_string, d.get(kCGWindowName, ""), re.I): title = d[kCGWindowName] if self.check_bad_words(title): continue self.number = d[kCGWindowNumber] From 185aa5af3ebb9f74f04388ea2282e70632ab5796 Mon Sep 17 00:00:00 2001 From: Steffen Schaumburg <steffen@schaumburger.info> Date: Sat, 18 Dec 2010 20:32:24 +0100 Subject: [PATCH 155/162] tiny cosmetic change to prints --- pyfpdb/GuiReplayer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/GuiReplayer.py b/pyfpdb/GuiReplayer.py index 4b95faf2..6cdf326b 100644 --- a/pyfpdb/GuiReplayer.py +++ b/pyfpdb/GuiReplayer.py @@ -108,11 +108,11 @@ class GuiReplayer: self.table[i]={"name":self.MyHand.players[i][1],"stack":Decimal(self.MyHand.players[i][2]),"x":x,"y":y,"chips":0,"status":"live"} #save coordinates of each player try: self.table[i]['holecards']=self.MyHand.holecards["PREFLOP"][self.MyHand.players[i][1]][1]+' '+self.MyHand.holecards["PREFLOP"][self.MyHand.players[i][1]][2] - print "holecards",self.table[i]['holecards'] + print "holecards: ",self.table[i]['holecards'] except: self.table[i]['holecards']='' except IndexError: #if seat is empty - print "seat",i+1,"out of",self.maxseats,"empty" + print "seat ",i+1," out of ",self.maxseats," empty" self.actions=[] #create list with all actions From 51ff6d0bb0dfa9ab30f7df24003c6aa198fed18e Mon Sep 17 00:00:00 2001 From: Steffen Schaumburg <steffen@schaumburger.info> Date: Sat, 18 Dec 2010 20:33:22 +0100 Subject: [PATCH 156/162] another trivial cosmetic change to guireplayer --- pyfpdb/GuiReplayer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/GuiReplayer.py b/pyfpdb/GuiReplayer.py index 6cdf326b..f9269b8e 100644 --- a/pyfpdb/GuiReplayer.py +++ b/pyfpdb/GuiReplayer.py @@ -226,7 +226,7 @@ class GuiReplayer: rect = gtk.gdk.Rectangle(270,270,100,50) self.area.window.invalidate_rect(rect, True) #refresh pot area self.area.window.process_updates(True) - print "draw action",self.action_number,self.actions[self.action_number][1],self.actions[self.action_number][2],self.actions[self.action_number][3] + print "draw action: ",self.action_number,self.actions[self.action_number][1],self.actions[self.action_number][2],self.actions[self.action_number][3] return True From 86150294ec917cbd3804c27b9a7259bacd7597da Mon Sep 17 00:00:00 2001 From: Steffen Schaumburg <steffen@schaumburger.info> Date: Sat, 18 Dec 2010 21:28:01 +0100 Subject: [PATCH 157/162] some gettextifications --- pyfpdb/Database.py | 4 ++-- pyfpdb/HUD_main.pyw | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index fa23f1cd..943479cd 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1694,11 +1694,11 @@ class Database: def storeHand(self, p, printdata = False): if printdata: - print "######## Hands ##########" + print _("######## Hands ##########") import pprint pp = pprint.PrettyPrinter(indent=4) pp.pprint(p) - print "###### End Hands ########" + print _("###### End Hands ########") #stores into table hands: q = self.sql.query['store_hand'] diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw index 79b2fbfe..9c50bcb4 100755 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -321,7 +321,7 @@ def idle_resize(hud): [aw.update_card_positions() for aw in hud.aux_windows] hud.resize_windows() except: - log.exception("Error resizing HUD for table: %s." % hud.table.title) + log.exception(_("Error resizing HUD for table: %s.") % hud.table.title) finally: gtk.gdk.threads_leave() @@ -335,7 +335,7 @@ def idle_kill(hud_main, table): del(hud_main.hud_dict[table]) hud_main.main_window.resize(1, 1) except: - log.exception("Error killing HUD for table: %s." % table.title) + log.exception(_("Error killing HUD for table: %s.") % table.title) finally: gtk.gdk.threads_leave() @@ -358,7 +358,7 @@ def idle_create(hud_main, new_hand_id, table, temp_key, max, poker_game, type, s hud_main.hud_dict[temp_key].update(new_hand_id, hud_main.config) hud_main.hud_dict[temp_key].reposition_windows() except: - log.exception("Error creating HUD for hand %s." % new_hand_id) + log.exception(_("Error creating HUD for hand %s.") % new_hand_id) finally: gtk.gdk.threads_leave() return False @@ -369,7 +369,7 @@ def idle_update(hud_main, new_hand_id, table_name, config): hud_main.hud_dict[table_name].update(new_hand_id, config) [aw.update_gui(new_hand_id) for aw in hud_main.hud_dict[table_name].aux_windows] except: - log.exception("Error updating HUD for hand %s." % new_hand_id) + log.exception(_("Error updating HUD for hand %s.") % new_hand_id) finally: gtk.gdk.threads_leave() return False From 2eb51d060734d3b4372c14c6d8bcd92c55d9f271 Mon Sep 17 00:00:00 2001 From: Steffen Schaumburg <steffen@schaumburger.info> Date: Sun, 19 Dec 2010 04:10:08 +0100 Subject: [PATCH 158/162] change line ending on IdentifySite to unix and make it executable --- pyfpdb/IdentifySite.py | 244 ++++++++++++++++++++--------------------- 1 file changed, 122 insertions(+), 122 deletions(-) mode change 100644 => 100755 pyfpdb/IdentifySite.py diff --git a/pyfpdb/IdentifySite.py b/pyfpdb/IdentifySite.py old mode 100644 new mode 100755 index b4f1a8a7..26a3e1e2 --- a/pyfpdb/IdentifySite.py +++ b/pyfpdb/IdentifySite.py @@ -1,122 +1,122 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- - -#Copyright 2010 Chaz Littlejohn -#This program is free software: you can redistribute it and/or modify -#it under the terms of the GNU Affero General Public License as published by -#the Free Software Foundation, version 3 of the License. -# -#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 Affero General Public License -#along with this program. If not, see <http://www.gnu.org/licenses/>. -#In the "official" distribution you can find the license in agpl-3.0.txt. - -import L10n -_ = L10n.get_translation() - -import re -import sys -import os -import os.path -from optparse import OptionParser -import codecs -import Configuration -import Database - -__ARCHIVE_PRE_HEADER_REGEX='^Hand #(\d+)\s*$|\*{20}\s#\s\d+\s\*+\s+' -re_SplitArchive = re.compile(__ARCHIVE_PRE_HEADER_REGEX) - - -class IdentifySite: - def __init__(self, config, in_path = '-'): - self.in_path = in_path - self.config = config - self.db = Database.Database(config) - self.sitelist = {} - self.filelist = {} - self.generateSiteList() - self.walkDirectory(self.in_path, self.sitelist) - - def generateSiteList(self): - """Generates a ordered dictionary of site, filter and filter name for each site in hhcs""" - for site, hhc in self.config.hhcs.iteritems(): - filter = hhc.converter - filter_name = filter.replace("ToFpdb", "") - result = self.db.get_site_id(site) - if len(result) == 1: - self.sitelist[result[0][0]] = (site, filter, filter_name) - else: - pass - - def walkDirectory(self, dir, sitelist): - """Walks a directory, and executes a callback on each file""" - dir = os.path.abspath(dir) - for file in [file for file in os.listdir(dir) if not file in [".",".."]]: - nfile = os.path.join(dir,file) - if os.path.isdir(nfile): - self.walkDirectory(nfile, sitelist) - else: - self.idSite(nfile, sitelist) - - def __listof(self, x): - if isinstance(x, list) or isinstance(x, tuple): - return x - else: - return [x] - - def idSite(self, file, sitelist): - """Identifies the site the hh file originated from""" - if file.endswith('.txt'): - self.filelist[file] = '' - archive = False - for site, info in sitelist.iteritems(): - mod = __import__(info[1]) - obj = getattr(mod, info[2], None) - - for kodec in self.__listof(obj.codepage): - try: - in_fh = codecs.open(file, 'r', kodec) - whole_file = in_fh.read() - in_fh.close() - - if info[2] in ('OnGame', 'Winamax'): - m = obj.re_HandInfo.search(whole_file) - elif info[2] in ('PartyPoker'): - m = obj.re_GameInfoRing.search(whole_file) - if not m: - m = obj.re_GameInfoTrny.search(whole_file) - else: - m = obj.re_GameInfo.search(whole_file) - if re_SplitArchive.search(whole_file): - archive = True - if m: - self.filelist[file] = [info[0]] + [info[1]] + [kodec] + [archive] - break - except: - pass - -def main(argv=None): - if argv is None: - argv = sys.argv[1:] - - config = Configuration.Config(file = "HUD_config.test.xml") - in_path = 'regression-test-files/' - IdSite = IdentifySite(config, in_path) - - print "\n----------- SITE LIST -----------" - for site, info in IdSite.sitelist.iteritems(): - print site, info - print "----------- END SITE LIST -----------" - - print "\n----------- ID REGRESSION FILES -----------" - for file, site in IdSite.filelist.iteritems(): - print file, site - print "----------- END ID REGRESSION FILES -----------" - - -if __name__ == '__main__': - sys.exit(main()) +#!/usr/bin/python +# -*- coding: utf-8 -*- + +#Copyright 2010 Chaz Littlejohn +#This program is free software: you can redistribute it and/or modify +#it under the terms of the GNU Affero General Public License as published by +#the Free Software Foundation, version 3 of the License. +# +#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 Affero General Public License +#along with this program. If not, see <http://www.gnu.org/licenses/>. +#In the "official" distribution you can find the license in agpl-3.0.txt. + +import L10n +_ = L10n.get_translation() + +import re +import sys +import os +import os.path +from optparse import OptionParser +import codecs +import Configuration +import Database + +__ARCHIVE_PRE_HEADER_REGEX='^Hand #(\d+)\s*$|\*{20}\s#\s\d+\s\*+\s+' +re_SplitArchive = re.compile(__ARCHIVE_PRE_HEADER_REGEX) + + +class IdentifySite: + def __init__(self, config, in_path = '-'): + self.in_path = in_path + self.config = config + self.db = Database.Database(config) + self.sitelist = {} + self.filelist = {} + self.generateSiteList() + self.walkDirectory(self.in_path, self.sitelist) + + def generateSiteList(self): + """Generates a ordered dictionary of site, filter and filter name for each site in hhcs""" + for site, hhc in self.config.hhcs.iteritems(): + filter = hhc.converter + filter_name = filter.replace("ToFpdb", "") + result = self.db.get_site_id(site) + if len(result) == 1: + self.sitelist[result[0][0]] = (site, filter, filter_name) + else: + pass + + def walkDirectory(self, dir, sitelist): + """Walks a directory, and executes a callback on each file""" + dir = os.path.abspath(dir) + for file in [file for file in os.listdir(dir) if not file in [".",".."]]: + nfile = os.path.join(dir,file) + if os.path.isdir(nfile): + self.walkDirectory(nfile, sitelist) + else: + self.idSite(nfile, sitelist) + + def __listof(self, x): + if isinstance(x, list) or isinstance(x, tuple): + return x + else: + return [x] + + def idSite(self, file, sitelist): + """Identifies the site the hh file originated from""" + if file.endswith('.txt'): + self.filelist[file] = '' + archive = False + for site, info in sitelist.iteritems(): + mod = __import__(info[1]) + obj = getattr(mod, info[2], None) + + for kodec in self.__listof(obj.codepage): + try: + in_fh = codecs.open(file, 'r', kodec) + whole_file = in_fh.read() + in_fh.close() + + if info[2] in ('OnGame', 'Winamax'): + m = obj.re_HandInfo.search(whole_file) + elif info[2] in ('PartyPoker'): + m = obj.re_GameInfoRing.search(whole_file) + if not m: + m = obj.re_GameInfoTrny.search(whole_file) + else: + m = obj.re_GameInfo.search(whole_file) + if re_SplitArchive.search(whole_file): + archive = True + if m: + self.filelist[file] = [info[0]] + [info[1]] + [kodec] + [archive] + break + except: + pass + +def main(argv=None): + if argv is None: + argv = sys.argv[1:] + + config = Configuration.Config(file = "HUD_config.test.xml") + in_path = 'regression-test-files/' + IdSite = IdentifySite(config, in_path) + + print "\n----------- SITE LIST -----------" + for site, info in IdSite.sitelist.iteritems(): + print site, info + print "----------- END SITE LIST -----------" + + print "\n----------- ID REGRESSION FILES -----------" + for file, site in IdSite.filelist.iteritems(): + print file, site + print "----------- END ID REGRESSION FILES -----------" + + +if __name__ == '__main__': + sys.exit(main()) From 573a2fad886280bc393d3eaf45748c8340566dcc Mon Sep 17 00:00:00 2001 From: Steffen Schaumburg <steffen@schaumburger.info> Date: Sun, 19 Dec 2010 04:29:00 +0100 Subject: [PATCH 159/162] make ongame work with EUR --- pyfpdb/OnGameToFpdb.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyfpdb/OnGameToFpdb.py b/pyfpdb/OnGameToFpdb.py index faf52522..6f6c7c54 100755 --- a/pyfpdb/OnGameToFpdb.py +++ b/pyfpdb/OnGameToFpdb.py @@ -92,7 +92,7 @@ class OnGame(HandHistoryConverter): (%(LS)s)?(?P<SB>[.0-9]+)/ (%(LS)s)?(?P<BB>[.0-9]+) )? - """ % substitutions, re.MULTILINE|re.DOTALL|re.VERBOSE) + """ % substitutions, re.MULTILINE|re.DOTALL|re.VERBOSE) #TODO: detect play money (identified by "Play money" rather than "Real money" and set currency accordingly re_TailSplitHands = re.compile(u'(\*\*\*\*\*\sEnd\sof\shand\s[-A-Z\d]+.*\n)(?=\*)') re_Button = re.compile('Button: seat (?P<BUTTON>\d+)', re.MULTILINE) # Button: seat 2 @@ -136,7 +136,7 @@ class OnGame(HandHistoryConverter): #lopllopl checks, Eurolll checks, .Lucchess checks. #chumley. calls $0.25 - self.re_Action = re.compile('(, )?(?P<PNAME>.*?)(?P<ATYPE> bets| checks| raises| calls| folds)( (%(CUR)s)?(?P<BET>[\d\.]+))?( and is all-in)?' % subst) + self.re_Action = re.compile('(, )?(?P<PNAME>.*?)(?P<ATYPE> bets| checks| raises| calls| folds)( (%(CUR)s)?(?P<BET>[\d\.]+))( and is all-in)?' % subst) #self.re_Board = re.compile(r"\[board cards (?P<CARDS>.+) \]") #Uchilka shows [ KC,JD ] @@ -326,7 +326,7 @@ class OnGame(HandHistoryConverter): def readAction(self, hand, street): m = self.re_Action.finditer(hand.streets[street]) for action in m: - acts = action.groupdict() + #acts = action.groupdict() #log.debug("readaction: acts: %s" %acts) if action.group('ATYPE') == ' raises': hand.addRaiseBy( street, action.group('PNAME'), action.group('BET') ) From 62e9e61facf388f2fb0e8c9c460f381fc5740ba7 Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Sun, 19 Dec 2010 15:38:26 +0800 Subject: [PATCH 160/162] OnGame: Fix crasher in OnGame EUR parsing --- pyfpdb/OnGameToFpdb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/OnGameToFpdb.py b/pyfpdb/OnGameToFpdb.py index faf52522..582bdf6d 100755 --- a/pyfpdb/OnGameToFpdb.py +++ b/pyfpdb/OnGameToFpdb.py @@ -42,10 +42,10 @@ class OnGame(HandHistoryConverter): siteId = 5 # Needs to match id entry in Sites database mixes = { } # Legal mixed games - sym = {'USD': "\$", 'CAD': "\$", 'T$': "", "EUR": "\xe2\x82\xac", "GBP": "\xa3"} # ADD Euro, Sterling, etc HERE + sym = {'USD': "\$", 'CAD': "\$", 'T$': "", "EUR": u"\xe2\x82\xac", "GBP": "\xa3"} # ADD Euro, Sterling, etc HERE substitutions = { 'LEGAL_ISO' : "USD|EUR|GBP|CAD|FPP", # legal ISO currency codes - 'LS' : "\$|\xe2\x82\xac|" # legal currency symbols - Euro(cp1252, utf-8) + 'LS' : u"\$|\xe2\x82\xac|" # legal currency symbols - Euro(cp1252, utf-8) } limits = { 'NO_LIMIT':'nl', 'LIMIT':'fl'} From 7b103536827dcc2160c5cc780d0ec9680831c8c3 Mon Sep 17 00:00:00 2001 From: Steffen Schaumburg <steffen@schaumburger.info> Date: Sun, 19 Dec 2010 08:59:10 +0100 Subject: [PATCH 161/162] Ongame: manually revert the regex change I made --- pyfpdb/OnGameToFpdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/OnGameToFpdb.py b/pyfpdb/OnGameToFpdb.py index 6076b912..5a229ea0 100755 --- a/pyfpdb/OnGameToFpdb.py +++ b/pyfpdb/OnGameToFpdb.py @@ -136,7 +136,7 @@ class OnGame(HandHistoryConverter): #lopllopl checks, Eurolll checks, .Lucchess checks. #chumley. calls $0.25 - self.re_Action = re.compile('(, )?(?P<PNAME>.*?)(?P<ATYPE> bets| checks| raises| calls| folds)( (%(CUR)s)?(?P<BET>[\d\.]+))( and is all-in)?' % subst) + self.re_Action = re.compile('(, )?(?P<PNAME>.*?)(?P<ATYPE> bets| checks| raises| calls| folds)( (%(CUR)s)?(?P<BET>[\d\.]+))?( and is all-in)?' % subst) #self.re_Board = re.compile(r"\[board cards (?P<CARDS>.+) \]") #Uchilka shows [ KC,JD ] From d4df513ce097a2422829537af2036b1dc69bd79a Mon Sep 17 00:00:00 2001 From: Worros <carl.gherardi@gmail.com> Date: Sun, 19 Dec 2010 16:30:11 +0800 Subject: [PATCH 162/162] OnGame: Finish rest of OnGame EUR parsing --- pyfpdb/OnGameToFpdb.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pyfpdb/OnGameToFpdb.py b/pyfpdb/OnGameToFpdb.py index 582bdf6d..66b19b9b 100755 --- a/pyfpdb/OnGameToFpdb.py +++ b/pyfpdb/OnGameToFpdb.py @@ -42,11 +42,12 @@ class OnGame(HandHistoryConverter): siteId = 5 # Needs to match id entry in Sites database mixes = { } # Legal mixed games - sym = {'USD': "\$", 'CAD': "\$", 'T$': "", "EUR": u"\xe2\x82\xac", "GBP": "\xa3"} # ADD Euro, Sterling, etc HERE + sym = {'USD': "\$", 'CAD': "\$", 'T$': "", "EUR": u"\u20ac", "GBP": "\xa3"} # ADD Euro, Sterling, etc HERE substitutions = { 'LEGAL_ISO' : "USD|EUR|GBP|CAD|FPP", # legal ISO currency codes - 'LS' : u"\$|\xe2\x82\xac|" # legal currency symbols - Euro(cp1252, utf-8) + 'LS' : u"\$|\xe2\x82\xac|\u20ac" # legal currency symbols - Euro(cp1252, utf-8) } + currencies = { u'\u20ac':'EUR', u'\xe2\x82\xac':'EUR', '$':'USD', '':'T$' } limits = { 'NO_LIMIT':'nl', 'LIMIT':'fl'} @@ -89,7 +90,7 @@ class OnGame(HandHistoryConverter): ( (?P<LIMIT>NO_LIMIT|Limit|LIMIT|Pot\sLimit)\s (?P<GAME>TEXAS_HOLDEM|OMAHA_HI|SEVEN_CARD_STUD|SEVEN_CARD_STUD_HI_LO|RAZZ|FIVE_CARD_DRAW)\s - (%(LS)s)?(?P<SB>[.0-9]+)/ + (?P<CURRENCY>%(LS)s|)?(?P<SB>[.0-9]+)/ (%(LS)s)?(?P<BB>[.0-9]+) )? """ % substitutions, re.MULTILINE|re.DOTALL|re.VERBOSE) @@ -174,7 +175,8 @@ class OnGame(HandHistoryConverter): mg = m.groupdict() info['type'] = 'ring' - info['currency'] = 'USD' + if 'CURRENCY' in mg: + info['currency'] = self.currencies[mg['CURRENCY']] if 'LIMIT' in mg: if mg['LIMIT'] in self.limits: