diff --git a/pyfpdb/GuiTourneyImport.py b/pyfpdb/GuiTourneyImport.py index bb2731b3..d8fe6ec5 100755 --- a/pyfpdb/GuiTourneyImport.py +++ b/pyfpdb/GuiTourneyImport.py @@ -158,15 +158,12 @@ class SummaryImporter: self.updatedtime = {} def addImportFile(self, filename, site = "default", tsc = "passthrough"): - print "DEBUG: addImportFile" if filename in self.filelist or not os.path.exists(filename): print "DEBUG: addImportFile: File exists, or path non-existent" return self.filelist[filename] = [site] + [tsc] - print "DEBUG: addImportFile: self.filelist[%s]: %s" %(filename, self.filelist[filename]) def addImportDirectory(self,dir,monitor=False, site="default", tsc="passthrough"): - print "DEBUG: addImportDirectory" if os.path.isdir(dir): if monitor == True: self.monitor = True @@ -178,7 +175,6 @@ class SummaryImporter: log.warning(_("Attempted to add non-directory '%s' as an import directory") % str(dir)) def addImportFileOrDir(self, inputPath, site = "PokerStars"): - print "DEBUG: addImportFileOrDir" tsc = self.config.hhcs[site].summaryImporter if os.path.isdir(inputPath): for subdir in os.walk(inputPath): @@ -213,6 +209,17 @@ class SummaryImporter: if callable(obj): foabs = self.readFile(obj, filename) summaryTexts = re.split(obj.re_SplitTourneys, foabs) + + # The summary files tend to have a header or footer + # Remove the first and/or last entry if it has < 100 characters + if len(summaryTexts[-1]) <= 100: + summaryTexts.pop() + log.warn(_("TourneyImport: Removing text < 100 characters from end of file")) + + if len(summaryTexts[0]) <= 130: + del summaryTexts[0] + log.warn(_("TourneyImport: Removing text < 100 characters from start of file")) + print "Found %s summaries" %(len(summaryTexts)) errors = 0 imported = 0 @@ -236,7 +243,6 @@ class SummaryImporter: tsc.codepage for kodec in codepage: - print "DEBUG: TSC.readFile: trying codepage '%s'" % kodec try: in_fh = codecs.open(filename, 'r', kodec) whole_file = in_fh.read() diff --git a/pyfpdb/PokerStarsSummary.py b/pyfpdb/PokerStarsSummary.py index cfa33322..8ee68712 100644 --- a/pyfpdb/PokerStarsSummary.py +++ b/pyfpdb/PokerStarsSummary.py @@ -57,13 +57,13 @@ class PokerStarsSummary(TourneySummary): (?PNo\sLimit|Limit|LIMIT|Pot\sLimit)\s (?PHold\'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[ a-zA-Z]+\s+)? - (Buy-In:\s\$(?P[.0-9]+)(\/\$(?P[.0-9]+))?\s+)? + (Buy-In:\s\$(?P[.0-9]+)(\/\$(?P[.0-9]+))?(?P\s%(LEGAL_ISO)s)?\s+)? (?P[0-9]+)\splayers\s+ (\$?(?P[.\d]+)\sadded\sto\sthe\sprize\spool\sby\sPokerStars\.com\s+)? - (Total\sPrize\sPool:\s\$?(?P[.0-9]+)\s+)? + (Total\sPrize\sPool:\s\$?(?P[.0-9]+)(\s%(LEGAL_ISO)s)?\s+)? (Target\sTournament\s.*)? - Tournament\sstarted\s-\s - (?P[0-9]{4})\/(?P[0-9]{2})\/(?P[0-9]{2})[\-\s]+(?P[0-9]+):(?P[0-9]+):(?P[0-9]+)\s?\(?(?P[A-Z]+)\)\s + Tournament\sstarted\s+(-\s)? + (?P[0-9]{4})\/(?P[0-9]{2})\/(?P[0-9]{2})[\-\s]+(?P[0-9]+):(?P[0-9]+):(?P[0-9]+)\s?\(?(?P[A-Z]+)\)?\s """ % substitutions ,re.VERBOSE|re.MULTILINE|re.DOTALL) re_Currency = re.compile(u"""(?P[%(LS)s]|FPP)""" % substitutions) diff --git a/pyfpdb/TestHandsPlayers.py b/pyfpdb/TestHandsPlayers.py index 53a2dbd4..ee3be1e9 100755 --- a/pyfpdb/TestHandsPlayers.py +++ b/pyfpdb/TestHandsPlayers.py @@ -147,6 +147,7 @@ def main(argv=None): CarbonErrors = FpdbError('Carbon') PKRErrors = FpdbError('PKR') iPokerErrors = FpdbError('iPoker') + Win2dayErrors = FpdbError('Win2day') WinamaxErrors = FpdbError('Winamax') ErrorsList = [ @@ -154,6 +155,7 @@ def main(argv=None): BetfairErrors, OnGameErrors, AbsoluteErrors, EverleafErrors, CarbonErrors, PKRErrors, iPokerErrors, WinamaxErrors, UltimateBetErrors, + Win2dayErrors, ] sites = { @@ -168,6 +170,7 @@ def main(argv=None): 'Carbon' : True, 'PKR' : False, 'iPoker' : True, + 'Win2day' : True, 'Winamax' : True, } @@ -198,6 +201,8 @@ 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") + if sites['Win2day'] == True: + walk_testfiles("regression-test-files/cash/Win2day/", compare, importer, Win2dayErrors, "Win2day") totalerrors = 0 diff --git a/pyfpdb/TestSummaryImport.py b/pyfpdb/TestSummaryImport.py new file mode 100755 index 00000000..88a2cd7e --- /dev/null +++ b/pyfpdb/TestSummaryImport.py @@ -0,0 +1,228 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# Copyright 2010, Carl Gherardi +# +# 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 sys +import os +import codecs +import pprint +import Configuration +import Database +import SQL +from GuiTourneyImport import SummaryImporter + + +class FpdbError: + def __init__(self, sitename): + self.site = sitename + self.errorcount = 0 + self.histogram = {} + self.statcount = {} + + def error_report(self, filename, hand, stat, ghash, testhash, player): + print "Regression Test Error:" + print "\tFile: %s" % filename + print "\tStat: %s" % stat + print "\tPlayer: %s" % player + if filename in self.histogram: + self.histogram[filename] += 1 + else: + self.histogram[filename] = 1 + + if stat in self.statcount: + self.statcount[stat] += 1 + else: + self.statcount[stat] = 1 + self.errorcount += 1 + + def print_histogram(self): + print "%s:" % self.site + for f in self.histogram: + idx = f.find('regression') + print "(%3d) : %s" %(self.histogram[f], f[idx:]) + +def compare(leaf, importer, errors, site): + filename = leaf + #print "DEBUG: fileanme: %s" % filename + + if filename.endswith('.txt'): + # test if there is a .hp version of the file + importer.addImportFileOrDir(filename, site = site) + (stored, errs) = 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) + + importer.clearFileList() + + + +def walk_testfiles(dir, function, importer, errors, site): + """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): + walk_testfiles(nfile, compare, importer, errors, site) + else: + print "***********************************" + compare(nfile, importer, errors, site) + print "***********************************" + +def main(argv=None): + if argv is None: + argv = sys.argv[1:] + + config = Configuration.Config(file = "HUD_config.test.xml") + db = Database.Database(config) + sql = SQL.Sql(db_server = 'sqlite') + db.recreate_tables() + + importer = SummaryImporter(config, sql, None) + + PokerStarsErrors = FpdbError('PokerStars') + #FTPErrors = FpdbError('Full Tilt Poker') + #PartyPokerErrors = FpdbError('Party Poker') + #BetfairErrors = FpdbError('Betfair') + #OnGameErrors = FpdbError('OnGame') + #AbsoluteErrors = FpdbError('Absolute Poker') + #UltimateBetErrors = FpdbError('Ultimate Bet') + #EverleafErrors = FpdbError('Everleaf Poker') + #CarbonErrors = FpdbError('Carbon') + #PKRErrors = FpdbError('PKR') + #iPokerErrors = FpdbError('iPoker') + #WinamaxErrors = FpdbError('Winamax') + + ErrorsList = [ + PokerStarsErrors, + #FTPErrors, PartyPokerErrors, + #BetfairErrors, OnGameErrors, AbsoluteErrors, + #EverleafErrors, CarbonErrors, PKRErrors, + #iPokerErrors, WinamaxErrors, UltimateBetErrors, + ] + + 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, + #'Winamax' : True, + } + + if sites['PokerStars'] == True: + walk_testfiles("regression-test-files/summaries/Stars/", compare, importer, PokerStarsErrors, "PokerStars") + #if sites['Full Tilt Poker'] == True: + # walk_testfiles("regression-test-files/cash/FTP/", compare, importer, FTPErrors, "Full Tilt Poker") + # walk_testfiles("regression-test-files/tour/FTP/", compare, importer, FTPErrors, "Full Tilt Poker") + #if sites['PartyPoker'] == True: + # walk_testfiles("regression-test-files/cash/PartyPoker/", compare, importer, PartyPokerErrors, "PartyPoker") + # walk_testfiles("regression-test-files/tour/PartyPoker/", compare, importer, PartyPokerErrors, "PartyPoker") + #if sites['Betfair'] == True: + # walk_testfiles("regression-test-files/cash/Betfair/", compare, importer, BetfairErrors, "Betfair") + #if sites['OnGame'] == True: + # walk_testfiles("regression-test-files/cash/OnGame/", compare, importer, OnGameErrors, "OnGame") + #if sites['Absolute'] == True: + # walk_testfiles("regression-test-files/cash/Absolute/", compare, importer, AbsoluteErrors, "Absolute") + #if sites['UltimateBet'] == True: + # walk_testfiles("regression-test-files/cash/UltimateBet/", compare, importer, UltimateBetErrors, "Absolute") + #if sites['Everleaf'] == True: + # 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['iPoker'] == True: + # 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") + + totalerrors = 0 + + for i, site in enumerate(ErrorsList): + totalerrors += ErrorsList[i].errorcount + + print "---------------------" + print "Total Errors: %d" % totalerrors + print "---------------------" + for i, site in enumerate(ErrorsList): + ErrorsList[i].print_histogram() + + # Merge the dicts of stats from the various error objects + statdict = {} + for i, site in enumerate(ErrorsList): + tmp = ErrorsList[i].statcount + for stat in tmp: + if stat in statdict: + statdict[stat] += tmp[stat] + else: + statdict[stat] = tmp[stat] + + print "\n" + print "---------------------" + print "Errors by stat:" + print "---------------------" + #for stat in statdict: + # print "(%3d) : %s" %(statdict[stat], stat) + + sortedstats = sorted([(value,key) for (key,value) in statdict.items()]) + for num, stat in sortedstats: + print "(%3d) : %s" %(num, stat) + + +if __name__ == '__main__': + sys.exit(main()) + diff --git a/pyfpdb/regression-test-files/cash/UltimateBet/Flop/NLHE-FR-USD-0.01-0.02-201011.Sample.txt b/pyfpdb/regression-test-files/cash/UltimateBet/Flop/NLHE-FR-USD-0.01-0.02-201011.Sample.txt deleted file mode 100644 index 6310ec86..00000000 --- a/pyfpdb/regression-test-files/cash/UltimateBet/Flop/NLHE-FR-USD-0.01-0.02-201011.Sample.txt +++ /dev/null @@ -1,58 +0,0 @@ - -Stage #C241220000: Holdem No Limit $0.02 - 2010-11-06 15:00:00 (ET) -Table: BASELINE RD (Real Money) Seat #8 is the dealer -Seat 8 - PLAYER8 ($2.05 in chips) -Seat 9 - PLAYER9 ($2.01 in chips) -Seat 1 - PLAYER1 ($2.90 in chips) -Seat 2 - VILLAIN1 ($1.52 in chips) -Seat 3 - PLAYER3 ($2 in chips) -Seat 4 - VILLAIN2 ($3.58 in chips) -Seat 5 - PLAYER5 ($2 in chips) -Seat 6 - PLAYER6 ($1.07 in chips) -Seat 7 - Hero ($1 in chips) -PLAYER9 - Posts small blind $0.01 -PLAYER1 - Posts big blind $0.02 -Hero - Posts $0.02 -*** POCKET CARDS *** -Dealt to Hero [10s 3s] -VILLAIN1 - Calls $0.02 -PLAYER3 - Folds -VILLAIN2 - Calls $0.02 -PLAYER5 - Folds -PLAYER6 - Folds -Hero - Checks -PLAYER8 - Folds -PLAYER9 - Folds -PLAYER1 - Folds -*** FLOP *** [Kc Qh 8h] -VILLAIN1 - Checks -VILLAIN2 - Checks -Hero - Checks -*** TURN *** [Kc Qh 8h] [6d] -VILLAIN1 - Checks -VILLAIN2 - Checks -Hero - Checks -*** RIVER *** [Kc Qh 8h 6d] [8c] -VILLAIN1 - Checks -VILLAIN2 - Checks -Hero - Checks -*** SHOW DOWN *** -VILLAIN1 - Shows [5c Ac] (One pair, eights) -VILLAIN2 - Shows [7s 6c] (Two Pair, eights and sixes) -Hero - Mucks -VILLAIN2 Collects $0.09 from main pot -*** SUMMARY *** -Total Pot($0.09) -Board [Kc Qh 8h 6d 8c] -Seat 1: PLAYER1 (big blind) Folded on the POCKET CARDS -Seat 2: VILLAIN1 HI:lost with One pair, eights [5c Ac - B:8h,B:8c,P:Ac,B:Kc,B:Qh] -Seat 3: PLAYER3 Folded on the POCKET CARDS -Seat 4: VILLAIN2 won Total ($0.09) HI:($0.09) with Two Pair, eights and sixes [7s 6c - B:8h,B:8c,B:6d,P:6c,B:Kc] -Seat 5: PLAYER5 Folded on the POCKET CARDS -Seat 6: PLAYER6 Folded on the POCKET CARDS -Seat 7: Hero HI: [Mucked] [10s 3s] -Seat 8: PLAYER8 (dealer) Folded on the POCKET CARDS -Seat 9: PLAYER9 (small blind) Folded on the POCKET CARDS - - - diff --git a/pyfpdb/regression-test-files/cash/UltimateBet/Flop/NLHE-FR-USD-0.01-0.02-201011.Sample.txt.hp b/pyfpdb/regression-test-files/cash/UltimateBet/Flop/NLHE-FR-USD-0.01-0.02-201011.Sample.txt.hp deleted file mode 100644 index 0fd0c27d..00000000 --- a/pyfpdb/regression-test-files/cash/UltimateBet/Flop/NLHE-FR-USD-0.01-0.02-201011.Sample.txt.hp +++ /dev/null @@ -1,846 +0,0 @@ -{ u'Hero': { 'card1': 48, - 'card2': 41, - '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': 1, - 'raiseFirstInChance': False, - 'raisedFirstIn': False, - 'rake': 0, - 'sawShowdown': True, - 'seatNo': 7, - 'sitout': False, - 'startCards': 106, - 'startCash': 100, - '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': 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': True, - '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'PLAYER1': { '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': 'B', - 'raiseFirstInChance': False, - 'raisedFirstIn': False, - 'rake': 0, - 'sawShowdown': False, - 'seatNo': 1, - 'sitout': False, - 'startCards': 0, - 'startCash': 290, - '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': 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': 5, - 'raiseFirstInChance': False, - 'raisedFirstIn': False, - 'rake': 0, - 'sawShowdown': False, - 'seatNo': 3, - 'sitout': False, - 'startCards': 0, - 'startCash': 200, - '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'PLAYER5': { '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': 3, - 'raiseFirstInChance': False, - 'raisedFirstIn': False, - 'rake': 0, - 'sawShowdown': False, - 'seatNo': 5, - 'sitout': False, - 'startCards': 0, - 'startCash': 200, - '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'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': 107, - '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'PLAYER8': { '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': 0, - 'raiseFirstInChance': False, - 'raisedFirstIn': False, - 'rake': 0, - 'sawShowdown': False, - 'seatNo': 8, - 'sitout': False, - 'startCards': 0, - 'startCash': 205, - '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'PLAYER9': { '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': False, - 'raisedFirstIn': False, - 'rake': 0, - 'sawShowdown': False, - 'seatNo': 9, - 'sitout': False, - 'startCards': 0, - 'startCash': 201, - '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': -1, - 'tourneyTypeId': None, - 'tourneysPlayersIds': None, - 'winnings': 0, - 'wonAtSD': 0.0, - 'wonWhenSeenStreet1': 0.0, - 'wonWhenSeenStreet2': 0.0, - 'wonWhenSeenStreet3': 0.0, - 'wonWhenSeenStreet4': 0.0}, - u'VILLAIN1': { 'card1': 30, - 'card2': 39, - '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': 6, - 'raiseFirstInChance': True, - 'raisedFirstIn': False, - 'rake': 0, - 'sawShowdown': True, - 'seatNo': 2, - 'sitout': False, - 'startCards': 160, - 'startCash': 152, - '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': 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': -2, - 'tourneyTypeId': None, - 'tourneysPlayersIds': None, - 'winnings': 0, - 'wonAtSD': 0.0, - 'wonWhenSeenStreet1': 0.0, - 'wonWhenSeenStreet2': 0.0, - 'wonWhenSeenStreet3': 0.0, - 'wonWhenSeenStreet4': 0.0}, - u'VILLAIN2': { 'card1': 45, - 'card2': 31, - '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': 4, - 'raiseFirstInChance': False, - 'raisedFirstIn': False, - 'rake': -2, - 'sawShowdown': True, - 'seatNo': 4, - 'sitout': False, - 'startCards': 58, - 'startCash': 358, - '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': 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': 7, - 'tourneyTypeId': None, - 'tourneysPlayersIds': None, - 'winnings': 9, - 'wonAtSD': 1.0, - 'wonWhenSeenStreet1': 1.0, - 'wonWhenSeenStreet2': 1.0, - 'wonWhenSeenStreet3': 1.0, - 'wonWhenSeenStreet4': 0.0}} diff --git a/pyfpdb/regression-test-files/cash/Win2day/Flop/PLO-EUR-0.05-0.10-Date-unknown.Sample.txt b/pyfpdb/regression-test-files/cash/Win2day/Flop/PLO-EUR-0.05-0.10-Date-unknown.Sample.txt new file mode 100644 index 00000000..9a80bd93 --- /dev/null +++ b/pyfpdb/regression-test-files/cash/Win2day/Flop/PLO-EUR-0.05-0.10-Date-unknown.Sample.txt @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pyfpdb/regression-test-files/cash/Win2day/Flop/PLO-EUR-0.05-0.10-Date-unknown.Sample.txt.hp b/pyfpdb/regression-test-files/cash/Win2day/Flop/PLO-EUR-0.05-0.10-Date-unknown.Sample.txt.hp new file mode 100644 index 00000000..5ac2a97f --- /dev/null +++ b/pyfpdb/regression-test-files/cash/Win2day/Flop/PLO-EUR-0.05-0.10-Date-unknown.Sample.txt.hp @@ -0,0 +1,470 @@ +{ u'Hero': { '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': True, + 'otherRaisedStreet3': True, + 'otherRaisedStreet4': False, + 'position': 2, + 'raiseFirstInChance': True, + 'raisedFirstIn': False, + 'rake': 0, + 'sawShowdown': True, + 'seatNo': 3, + 'sitout': False, + 'startCards': 0, + 'startCash': 1000, + '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': 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': 1, + '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': -127, + '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': 0, + 'card4': 0, + 'card5': 0, + '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': 0, + 'raiseFirstInChance': False, + 'raisedFirstIn': False, + 'rake': 0, + 'sawShowdown': False, + 'seatNo': 5, + 'sitout': False, + 'startCards': 0, + 'startCash': 2954, + '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': 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': -10, + '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': 0, + 'card4': 0, + 'card5': 0, + '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': 'S', + 'raiseFirstInChance': False, + 'raisedFirstIn': False, + 'rake': 0, + 'sawShowdown': False, + 'seatNo': 1, + 'sitout': False, + 'startCards': 0, + 'startCash': 1440, + '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': True, + 'street3Aggr': False, + 'street3Bets': 0, + 'street3CBChance': False, + 'street3CBDone': False, + 'street3Calls': 0, + 'street3CheckCallRaiseChance': True, + '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'Player4': { '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': 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': False, + 'otherRaisedStreet2': True, + 'otherRaisedStreet3': True, + 'otherRaisedStreet4': False, + 'position': 1, + 'raiseFirstInChance': False, + 'raisedFirstIn': False, + 'rake': 0, + 'sawShowdown': False, + 'seatNo': 4, + 'sitout': False, + 'startCards': 0, + 'startCash': 585, + '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': 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': -47, + 'tourneyTypeId': None, + 'tourneysPlayersIds': None, + 'winnings': 0, + 'wonAtSD': 0.0, + 'wonWhenSeenStreet1': 0.0, + 'wonWhenSeenStreet2': 0.0, + 'wonWhenSeenStreet3': 0.0, + 'wonWhenSeenStreet4': 0.0}, + u'Villain': { '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': 'B', + 'raiseFirstInChance': False, + 'raisedFirstIn': False, + 'rake': 21, + 'sawShowdown': True, + 'seatNo': 2, + 'sitout': False, + 'startCards': 0, + 'startCash': 4587, + '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': True, + 'street2Aggr': True, + 'street2Bets': 1, + 'street2CBChance': False, + 'street2CBDone': False, + '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': 178, + 'tourneyTypeId': None, + 'tourneysPlayersIds': None, + 'winnings': 305, + 'wonAtSD': 1.0, + 'wonWhenSeenStreet1': 1.0, + 'wonWhenSeenStreet2': 1.0, + 'wonWhenSeenStreet3': 1.0, + 'wonWhenSeenStreet4': 0.0}} 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 new file mode 100644 index 00000000..d558def8 --- /dev/null +++ b/pyfpdb/regression-test-files/summaries/Stars/NLHE-USD-MTT-4max-2.00-201011.Stars.local.format.txt @@ -0,0 +1,450 @@ +PokerStars Tournament #329147523, No Limit Hold'em +Buy-In: $2.00/$0.20 USD +440 players +Total Prize Pool: $880.00 USD +Tournament started 2010/11/10 8:15:00 ET + + 1: koppelbaas (wijchen), still playing + 2: cmdc007 (curitiba-Brasil), still playing + 3: Daannijmegen (nijmegen), still playing + 4: tommy10aces (Mandurah), still playing + 5: Svensson91 (Sweden), still playing + 6: roulis1966 (katerini), still playing + 7: Sinan01 (Auburn), still playing + 8: McKallito (Lüchow), still playing + 9: SirMichel123 (Grootebroek), still playing + 10: Zens7 (Spa), still playing + 11: lybermixa (Lyubertsy), still playing + 12: jan e.h.692 (værløse), still playing + 13: NDTLDN (Erpe-Mere), still playing + 14: bars444 (станица Казанская), still playing + 15: rfk091154 (Holyoke), still playing + 16: bier-boy18 (Norden), still playing + 17: big-al 567 (T-B-D-K-A---), still playing + 18: 13♠ (Minsk), still playing + 19: Full-I-one (Сатка), still playing + 20: Bécike7474 (segesd), still playing + 21: ehrenfeld1 (Köln), still playing + 22: Zico90 (Warszawa), still playing + 23: finalframe23 (München), still playing + 24: choc3 (cleveland), still playing + 25: WeissBrot6 (Ratingen), still playing + 26: cashflow1004 (Mannheim), still playing + 27: divaina81 (Palma de Mallorca), still playing + 28: 202063 (Cincinnati), still playing + 29: arifino (Tilburg), still playing + 30: er-kan001 (Alkmaar), still playing + 31: bredadarter (breda), still playing + 32: fizban_07 (Athens), still playing + 33: netzroller (Cologne), still playing + 34: villi5 (alagon), still playing + 35: Yanis989 (Ярославль), still playing + 36: ahtoh88 (Kolpino), still playing + 37: toonman65 (gateshead), still playing + 38: Druiddew (Новосибирск), still playing + 39: petertje95 (san jose), still playing + 40: TiltFkrTilt (Canberra), still playing + 41: dgoker33 (живой ручей), still playing + 42: DijkieAA (Veendam), still playing + 43: GP10000 (Maria Wörth), still playing + 44: Nedb52 (КАЛИНИНГРАД), still playing + 45: PayForMyAudi (Vladimir), still playing + 46: Perry600 (boskoop), still playing + 47: Kiri urba (A Coruña), still playing + 48: charo0247 (Toledo), still playing + 49: yelmosuras (madrid), still playing + 50: Purplejaze (Lake Havasu City), still playing + 51: Deckeldome (Buchs), still playing + 52: briand99 (hjørring), still playing + 53: bucepena (santiago), still playing + 54: hahol21 (Livani), still playing + 55: geocupra1979 (Αθηνα), still playing + 56: benhenro (4600 vise), still playing + 57: ptothedizzle (Oxford), still playing + 58: barca91 (mirna), still playing + 59: Marissa0815 (Berlin), still playing + 60: monguz7 (Oroszlány), still playing + 61: bragadosss (salamanca), still playing + 62: soxo12 (Москва), still playing + 63: Rhubein (Vejle), still playing + 64: tamebabe44 (Saint John), still playing + 65: guennixx (Darmstadt), still playing + 66: getuk (Zwijndrecht), still playing + 67: mcaurich (berlin), still playing + 68: Tschibu (Lucerne/Switzerland), still playing + 69: mihaicatrina (targoviste), still playing + 70: pawelt (Warszawa), still playing + 71: wallie5504 (eindhoven), still playing + 72: KlimoFF-AK (Brest), still playing + 73: monkey VSOP (Москва), still playing + 74: acer2410 (москва), still playing + 75: qqisso (Rio de Janeiro), still playing + 76: bigmac17603 (lancaster), still playing + 77: huojin chen (Auburn), still playing + 78: K238 (Melbourne), still playing + 79: nene_natxo (Manacor), still playing + 80: Vasyan99 (Чехов), still playing + 81: Vader123 (Anaheim), still playing + 82: jennie446 (nyborg), still playing + 83: CmeTilt (Surrey), still playing + 84: Patoche1978 (Genève), still playing + 85: manuel151075 (lugo), still playing + 86: dany131313 (Kraków), still playing + 87: boomer3264 (crewe), still playing + 88: iason9 (korinthos), still playing + 89: grantaver (logroño(españa)), still playing + 90: fgmma (Sherman Oaks), still playing + 91: rabbit7408 (Dortmund), still playing + 92: Blekbull (Timisoara), still playing + 93: Xitur (paphos), still playing + 94: heidi96 (Juist), still playing + 95: mangan76 (Göteborg), still playing + 96: lukmalik3 (Southampton), still playing + 97: maggy345 (Gentbrugge), still playing + 98: august1305 (hankensbüttel), still playing + 99: ochief266 (stockholm), still playing + 100: peterlarge (den-helder), still playing + 101: MightyPol (Saint-Hubert), still playing + 102: karkoul (TINOS), still playing + 103: belitus (cordoba), still playing + 104: cryzeiro9229 (Riga), still playing + 105: meggitt1977 (Bellevue), still playing + 106: SumStor (Kharkov), still playing + 107: nokrassaa (antwerpen), still playing + 108: Stravados (Berlaar), still playing + 109: astef4n (Moscow), still playing + 110: Santei87 (Vladivostok), still playing + 111: beest1r (Elen), still playing + 112: capNemo86 (Sofia), still playing + 113: V557722V (красноярск), still playing + 114: Srappy4sure (Miami), still playing + 115: Netolip (Hörby), still playing + 116: hjald (copenhagen), still playing + 117: Don_Pet (København), still playing + 118: fani1977 (Moscow), still playing + 119: paojuve (ATHENS), still playing + 120: aboeraga (oss), still playing + 121: Martin_Sucu (Asturias), still playing + 122: luc3131 (sherbrooke), still playing + 123: UG82CDBB (MOUNT PEARL), still playing + 124: paiporta885 (valencia), still playing + 125: robustianoma (monzon (españa)), still playing + 126: moscowknight (moscow), still playing + 127: Rom1809 (Uglich), still playing + 128: dbkarcz (Hartville), still playing + 129: n0_lov3 (Ekaterinburg), still playing + 130: bardachek (Moskow), still playing + 131: hollywoody97 (Marina del Rey), still playing + 132: boast123 (Stade), still playing + 133: gaezka (FERRERIES), still playing + 134: Bandicot25 (Denmark), still playing + 135: feki023 (Kisújszállás), still playing + 136: puupsius (Alytus), still playing + 137: VasjaVasilev (Черновцы), still playing + 138: Avalium (Bayreuth), still playing + 139: W1INGING IT (Bournemouth), still playing + 140: MrHunting (Dresden), still playing + 141: küsz541 (badacsony), still playing + 142: poosar (kiel), still playing + 143: MrzimRadit (Ljubljana), still playing + 144: DartSven (Burscheid), still playing + 145: devilcarp666 (Hengelo), still playing + 146: woodman18 (opmeer), still playing + 147: POSADKIN (MOSCOW), still playing + 148: CSKA2010 (Moscow), still playing + 149: orelius (dianalund), still playing + 150: zeesatek (zumaia), still playing + 151: andipanda75 (Balti), still playing + 152: dj_soso9 (blaj), still playing + 153: Xnina67 (Melbourne), still playing + 154: ulliente (Auetal), still playing + 155: advex (Москва), still playing + 156: gejzir (Hatvan), still playing + 157: henkibenki (Höheinöd), still playing + 158: monalagarto (Funchal), still playing + 159: whlegend (Alnwick), still playing + 160: bakkie886 (moordrecht), still playing + 161: loren39 (malaga marbella), still playing + 162: OUF RE (halkidiki), still playing + 163: luda555 (moscow), still playing + 164: bretstl (washington), still playing + 165: mikeyb35 (ellsworth), still playing + 166: djrewa (москва), still playing + 167: lburt1111 (Naples), still playing + 168: mixalis84t (pafos), still playing + 169: faylp (salisbury), still playing + 170: iAmPokerPr0 (Irvine), still playing + 171: miospb (Санкт-Петербург), still playing + 172: matija360 (ljubljana), still playing + 173: sm2000p (Bristol), still playing + 174: Opsa (Åtvidaberg), still playing + 175: snoky320 (Heidenau), still playing + 176: teufeltanzt (Malsch), still playing + 177: )(OM9K (Stariy Oskol), still playing + 178: vroli23 (Kazincbarcika), still playing + 179: dolly525 (Sofia), still playing + 180: knvb1988 (Olginka), still playing + 181: IamDaDean (Breitenbrunn), still playing + 182: svak78 (EKATERINBURG), still playing + 183: Mcdee1234 (Brandon), still playing + 184: theone513 (milford), still playing + 185: jensjensen4 (Dortmund), still playing + 186: robereskila (zaragoza), still playing + 187: transporte55 (enschede), still playing + 188: StarG777 (Izhevsk), still playing + 189: kent132 (сочи), still playing + 190: Pokerbum1313 (Boyceville), still playing + 191: Kalypsoid (Göttingen), still playing + 192: Schveik (Москва), still playing + 193: VAGameHunter (kenbridge), still playing + 194: Mvleent123 (Groningen), still playing + 195: Marusya99222 (Сочи), still playing + 196: linoflo (erp), still playing + 197: tokkopas (Espoo), still playing + 198: dpnn (Ardmore), still playing + 199: cat777aa (Ivanovo), still playing + 200: raca1983 (šentjur), still playing + 201: lennoncruz (Poços de caldas), still playing + 202: BORUSSE1981 (DORTMUND), still playing + 203: kfldt (Fribourg), still playing + 204: LanzelotRuS (г. Барнаул), still playing + 205: robse68 (Heddesheim), still playing + 206: Schlumpf1988 (Mönchengladbach), still playing + 207: subine (Vilnius), still playing + 208: Perlablu575 (Sulzbach murr), still playing + 209: Ants722 (Москва), still playing + 210: trickytwos (toowoomba), still playing + 211: beertje 65 (helmond), still playing + 212: bucku2020 (byron bay), still playing + 213: STXIKI (arrasate), still playing + 214: jimvandam33 (Saint Clair), still playing + 215: blacki1164 (Witten), still playing + 216: LSUCATMAN (Nebraska City), still playing + 217: qia2000 (Neupre), still playing + 218: spaunit (anp), still playing + 219: jps860 (manitowoc), still playing + 220: region08 (Москва), still playing + 221: fkldo77 (Dortmund), still playing + 222: kiselevich1 (Ekaterinburg), still playing + 223: hunter171 (berlin), still playing + 224: uzunL (анапа), still playing + 225: Robinus (Alma), still playing + 226: ROSEMARY1234 (AKRON), still playing + 227: jopi44 (Berlin), still playing + 228: Twistedd1 (Warmenhuizen), still playing + 229: AAS481 (Moscow), still playing + 230: AAirlines97 (Landshut), still playing + 231: AUGIE72457 (Liverpool), still playing + 232: AVDDEVA (чебоксары), still playing + 233: Amecs (Mettlach), still playing + 234: Bkackmoon (Калач), still playing + 235: BobF333 (grove city), still playing + 236: Bowman82 (Hengelo), still playing + 237: CougarFTD (Lake of the Ozarks), still playing + 238: Danjo27 (Sottrum), still playing + 239: Deadeye10 (London), still playing + 240: Den is 85805 (Podolsk), still playing + 241: Dikra2007 (Duisburg), still playing + 242: Diogo911 (Loures), still playing + 243: Dshadowfax (Athens), still playing + 244: Durrrr_x (Wuppertal), still playing + 245: EddiBay0r (Rösrath), still playing + 246: El Raui (ede), still playing + 247: F17Kislata (Уфа), still playing + 248: FOSGA-SE (BRAGA-PT), still playing + 249: Flip My Flop (Toronto), still playing + 250: Freluye (Vva. de la Serena), still playing + 251: GIMLLER (калуга), still playing + 252: Geminichaos7 (Milwaukee), still playing + 253: Gereni (Osnabrück), still playing + 254: Guzsma6almas (Pirtó), still playing + 255: Hadde22000 (Butjadingen), still playing + 256: HairKiller (Newton), still playing + 257: Hoogland89 (Hilversum), still playing + 258: Ian Arkley (South Shields), still playing + 259: Ichcallmal (Goslar), still playing + 260: Jebiveter (Mojstrana), still playing + 261: Johnswilde88 (mcKean), still playing + 262: JudgeOfPoker (Eys), still playing + 263: KenyCasy (Lowell), still playing + 264: KranDM (Odense), still playing + 265: Lenarkin (Dzhalil), still playing + 266: Luna4444 (Grand Rapids), still playing + 267: Makena7 (Palma de Mallorca), still playing + 268: MazVegas (we), still playing + 269: s0rrow (Perth), + 270: queya (Rawdon), + 271: pistike771 (Debrecen), + 272: jolinejuli (Selb), + 273: tadco4321 (Virginia Beach), + 274: Barflies10 (Val Caron), + 275: rutsa (east boldon), + 276: ademar2 (SAO BENTO-PB), + 277: kika1950 (Austria), + 278: Jack1806 (Grub am Forst), + 279: jansen333 (Leiderdorp), + 280: DonRon66 (Berlin), + 281: fayedannii (york), + 282: samy alejo (floridablanca), + 283: rey-marmotta (baarle-hertog), + 284: Der Gök (Glattbrugg), + 285: viewsolo (Мариуполь), + 286: makss333 (Пенза), + 287: palomino1234 (Montehermoso), + 288: bartis3000 (Jelgava), + 289: Phoenix2604 (Nordenham), + 290: elpuutoamo96 (Barcelona), + 291: portillo23 (Bistra Maramures), + 292: 0palma0 (Budapest), + 293: Mr_Habi (Stuttgart), + 294: Uzamaki_NL (ALMERE), + 295: VLAD798 (Zelenogorsk), + 296: LupenBamio (Villagarcía de Arosa), + 297: foxyroxydoxy (denpasar), + 298: Lonesome_Cry (Elgin), + 299: BoxWox (Moscow), + 300: dimaz79 (liski), + 301: HeRbY924 (Beckdorf), + 302: summen8 (a coruña), + 303: Kamelion13 (Brasschaat), + 304: mihahaus (Tikhvin), + 305: fipp999 (Köln), + 306: higuita69 (santa maria da feira), + 307: papa_poke (heathmont), + 308: TheDeafPoker (Adelaide), + 309: papa_fagioli (SPRING HILL), + 310: bimbo1968 (dortmund), + 311: dannyKK10 (norman), + 312: voreios (Serres), + 313: pinnochio200 (magog), + 314: TOBI 1992 (Menden), + 315: manolo1953 (manresa), + 316: GAKler1983 (graz), + 317: liondog61962 (exeter), + 318: Andrew Gvozd (Санкт-Петербург(RUS)), + 319: goshoo20 (Монтана), + 320: Dony12345 (Saint Petersburg), + 321: herloch (Stade), + 322: Kleine45 (Holland), + 323: reyburdeo (Capital Federal), + 324: filip_315 (eeklo), + 325: famag2010 (GILLY), + 326: Zimka222 (Kazan), + 327: BigViggi (Reykjavik), + 328: RA-Lexx (Москва), + 329: claudiomasti (Athina-Kallithea), + 330: Andreev.B.G1 (Ростов-на-дону), + 331: pokerchief29 (webster), + 332: knuckler3 (dublin), + 333: Toppo5 (Cheadle), + 334: Ligia27 (Santa Maria da Feira), + 335: 2swild007 (felton), + 336: ruediger1234 (Frankfurt am Main), + 337: poppers8 (newport), + 338: baristabob (melbourne), + 339: superbrono (Ratece), + 340: Bony884 (Озерск), + 341: doitagain36 (louisville), + 342: Sailor1962 (Willich), + 343: winzy1 (Rådal), + 344: Nossovicflop (Den-Haag), + 345: riverman0007 (pickerington), + 346: vero 311 (bayamon), + 347: TH(The age) (Antwerpen), + 348: asddsa10 (Moscow), + 349: shwza (st peters), + 350: nenomfgottie (nashville), + 351: Hungry86 (Békéscsaba), + 352: tinemaus15 (hannover), + 353: Meowthz (durrrrland), + 354: tedeev (yakutsk), + 355: ddarko25 (santiago), + 356: snookumz69 (Monticello), + 357: migo1301 (Mühlhausen), + 358: laura-may_2@ (algeciras), + 359: Kakadu60 (Estenfeld), + 360: Fadeyka (Moscow), + 361: artic gnome (peabody), + 362: demiseko (OLYMPOS), + 363: hazecannabis (murcia), + 364: APT001 (brisbane), + 365: sweet1407 (Nottingham), + 366: papa wolle (Wuppertal), + 367: GingaNinja09 (Shrewsbury), + 368: leoy12 (raamsdonksveer), + 369: Puzl73 (Moscow), + 370: CrazyJesse86 (East Malvern), + 371: xfever88x (Rutherford), + 372: chelsearule5 (herne bay kent (uk)), + 373: SHRAM 11 (Н.Новгород), + 374: yeti072 (bautzen), + 375: Skorrpions (Чехов), + 376: rosoboronexp (Vidnoe), + 377: bakaba (kfar yona), + 378: michon0769 (москва), + 379: lrlem (clarington), + 380: dunkmeister2 (Brisbane), + 381: xxgcarp29 (haaksbergen), + 382: psoliogkos (Perama), + 383: tibobogek (Valkenswaard), + 384: catstone006 (Wernau), + 385: Zelenyi (Sergeevka), + 386: lady cyprus (london), + 387: Pincelin1970 (ESPAÑA), + 388: Rammerkbh (Odense Denmark), + 389: !$p3cIaLOn3! (targoviste), + 390: PiCaMaN 2788 (l´ampolla), + 391: Shrew4 (Wabash), + 392: KenHansen (Ottawa), + 393: totobwfb (Bad Wildungen), + 394: rokoti (Klaukkala), + 395: yakudza-vd (Volgodonsk), + 396: Ronaldvdl (Veendam), + 397: N33RB33K (Beek), + 398: infulgencio (castellon), + 399: vimmer147 (esbjerg), + 400: pcorr07 (V.N.FAMALICÃO), + 401: GamesOfMind (Tashkent), + 402: obelix34145 (evora), + 403: guup83 (Zottegem), + 404: CAMELIA.1999 (BARCO DE AVILA), + 405: Puma 2307 (swansea), + 406: lokito-abre1 (oion), + 407: kkopika (pécs), + 408: viv.bg (Plovdiv), + 409: old yorky (SITTINGBOURNE), + 410: Babbzan (Gislaved), + 411: tobzko (Box Hill), + 412: cucan68 (melilla), + 413: Blasstha (Schoonhoven), + 414: Olli2004 (München), + 415: Cepa863 (Nedvědice), + 416: 5valet (Kineshma), + 417: jbomann30 (marquartstein), + 418: Bestee (Rhenen No CHAT), + 419: stormfour (Sterling Hts.), + 420: kissbela69 (kecskemet), + 421: lordoming (murcia), + 422: dragoselu90 (keswick), + 423: Ma1kl13 (Lucky River), + 424: 1topshelf (Theresa), + 425: lobikcek (Kolín), + 426: noy2222 (London), + 427: MVL609 (Yekaterinburg), + 428: Rokos75 (Павловский Посад), + 429: camikatze28 (elz), + 430: briantjeeh (Spakenburg), + 431: iacommodity (okoboji), + 432: mikka510 (Koszeg), + 433: Marchx (Riga), + 434: SPFW2008 (Sao Paulo), + 435: DoNilsOn (Rangsdorf), + 436: notforsho (matamoras), + 437: prowlin-wolf (sebring), + 438: tipa_Egor (Старый Оскол), + 439: veldmuis91 (Renswoude), + 440: matze68 (harsefeld), + +You finished in 269th place (eliminated at hand #52470080319). + +