pokerstats 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. data/.document +5 -0
  2. data/.gitignore +5 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +18 -0
  5. data/Rakefile +50 -0
  6. data/VERSION +1 -0
  7. data/bin/checkps +190 -0
  8. data/generators/pokerstats/USAGE +1 -0
  9. data/generators/pokerstats/pokerstats_generator.rb +7 -0
  10. data/generators/pokerstats/templates/create_pokerstats.rhtml +28 -0
  11. data/lib/pokerstats.rb +2 -0
  12. data/lib/pokerstats/.gitignore +0 -0
  13. data/lib/pokerstats/hand_constants.rb +27 -0
  14. data/lib/pokerstats/hand_history.rb +38 -0
  15. data/lib/pokerstats/hand_statistics.rb +225 -0
  16. data/lib/pokerstats/hand_statistics_api.rb +64 -0
  17. data/lib/pokerstats/player_statistics.rb +58 -0
  18. data/lib/pokerstats/plugins/aggression_statistics.rb +57 -0
  19. data/lib/pokerstats/plugins/blind_attack_statistics.rb +78 -0
  20. data/lib/pokerstats/plugins/cash_statistics.rb +95 -0
  21. data/lib/pokerstats/plugins/continuation_bet_statistics.rb +68 -0
  22. data/lib/pokerstats/plugins/preflop_raise_statistics.rb +50 -0
  23. data/lib/pokerstats/poker-edge.rb +57 -0
  24. data/lib/pokerstats/pokerstars_file.rb +100 -0
  25. data/lib/pokerstats/pokerstars_hand_history_parser.rb +141 -0
  26. data/pokerstats.gemspec +91 -0
  27. data/spec/file_empty.txt +0 -0
  28. data/spec/file_many_hands.txt +564 -0
  29. data/spec/file_one_hand.txt +52 -0
  30. data/spec/hand_statistics_spec.rb +846 -0
  31. data/spec/hand_statistics_spec_helper.rb +89 -0
  32. data/spec/player_statistics_spec.rb +230 -0
  33. data/spec/pokerstars_file_spec.rb +160 -0
  34. data/spec/pokerstars_hand_history_parser_spec.rb +197 -0
  35. data/spec/spec_helper.rb +9 -0
  36. data/spec/zpokerstars_hand_history_parser_integration.rb.txt +67 -0
  37. metadata +125 -0
@@ -0,0 +1,57 @@
1
+ require 'rubygems'
2
+ require 'hpricot'
3
+ require 'open-uri'
4
+
5
+ module Pokerstats
6
+ class PokerEdge
7
+
8
+ def initialize screen_name
9
+ @screen_name = URI.escape(screen_name)
10
+ end
11
+
12
+ def get_response_from_internet
13
+ url = "http://www.poker-edge.com/whoami.php?name=#{@screen_name}"
14
+ puts url
15
+ open(url) do |f|
16
+ @response = f.read
17
+ end
18
+ @response
19
+ end
20
+
21
+ def response
22
+ @response ||= get_response_from_internet
23
+ end
24
+
25
+ def preflop_style
26
+ if self.response =~ /(Pre-Flop Tend.*\n)/
27
+ verbose = $1.gsub(/<\/?[^>]*>/, "")
28
+ if verbose =~ /Pre-Flop Tendency: ([^-]*) -/
29
+ preflop_style = $1
30
+ else
31
+ preflop_style = "N/A"
32
+ end
33
+ end
34
+ preflop_style
35
+ end
36
+
37
+ def player_type
38
+ if response =~ /(Player Type.*\n)/
39
+ verbose = $1.gsub(/<\/?[^>]*>/, "")
40
+ if verbose =~ /[Yy]ou are a ([^(]* \(.*\))/
41
+ player = $1
42
+ else
43
+ player = ""
44
+ end
45
+ end
46
+ player
47
+ end
48
+
49
+ def report format = "%20s -- %s -- %s\n"
50
+ open("foo.html", "w+") do |file|
51
+ file.write(response)
52
+ end
53
+ `open foo.html`
54
+ printf(format, @screen_name, preflop_style, player_type)
55
+ end
56
+ end
57
+ end
@@ -0,0 +1,100 @@
1
+ require 'iconv'
2
+ require File.expand_path(File.dirname(__FILE__) + '/hand_history')
3
+ module Pokerstats
4
+ class PokerstarsFile
5
+ include Enumerable
6
+
7
+ POKERSTARS_HEADER_PATTERN = /PokerStars Game #([0-9]+)/
8
+
9
+ def self.open(filename, starting_at = 0, &block)
10
+ new(filename, starting_at).open(starting_at, &block)
11
+ end
12
+
13
+ def initialize(filename, starting_at = 0, transliterate_from = "ISO-8859-1", transliterate_to = "ASCII//TRANSLIT//IGNORE")
14
+ @filename = File.expand_path(filename)
15
+ @lastline = nil
16
+ @lines = []
17
+ @transliterator = Iconv.new(transliterate_to, transliterate_from)
18
+ end
19
+
20
+ def open_file_and_verify_first_line(starting_at = 0)
21
+ @file = File.open(@filename, "r")
22
+ self.pos=starting_at
23
+ end
24
+
25
+ def open(starting_at = 0)
26
+ open_file_and_verify_first_line(starting_at)
27
+ if block_given?
28
+ begin
29
+ yield self
30
+ ensure
31
+ close
32
+ end
33
+ end
34
+ self
35
+ end
36
+
37
+ def closed?
38
+ @file.closed?
39
+ end
40
+
41
+ def pos
42
+ return @file.pos if @lastline.nil?
43
+ @file.pos - @lastline.size - 1
44
+ end
45
+
46
+ def pos=(index)
47
+ @file.pos=index unless pos == index
48
+ @lastline = read_and_chomp_next_line_from_file
49
+ unless @lastline && @lastline =~ POKERSTARS_HEADER_PATTERN
50
+ close
51
+ raise "hand record must begin with a valid header line"
52
+ end
53
+ @lines = [@lastline]
54
+ end
55
+
56
+ def eof?
57
+ @lastline.nil?
58
+ end
59
+
60
+ def first(starting_at = 0)
61
+ open(starting_at) do
62
+ return next_handrecord
63
+ end
64
+ end
65
+
66
+ def each
67
+ yield next_handrecord
68
+ yield next_handrecord until @lastline.nil?
69
+ end
70
+
71
+ def next_handrecord
72
+ starting_at = pos
73
+ until @file.eof?
74
+ @lastline = read_and_chomp_next_line_from_file
75
+ break if @lastline =~ POKERSTARS_HEADER_PATTERN
76
+ @lines << @lastline unless @lastline.empty?
77
+ end
78
+ result, @lines = HandHistory.new(@lines, @filename, starting_at), [@lastline]
79
+ if @file.eof?
80
+ @lastline = nil
81
+ @index_of_last_header = nil
82
+ @lines = []
83
+ else
84
+ @index_of_last_header = @file.pos-@lastline.size-1
85
+ @lines = [@lastline]
86
+ end
87
+ result
88
+ end
89
+
90
+ def close
91
+ @file.close unless @file.closed?
92
+ end
93
+
94
+ private
95
+
96
+ def read_and_chomp_next_line_from_file
97
+ @transliterator.iconv(@file.readline.chomp!)
98
+ end
99
+ end
100
+ end
@@ -0,0 +1,141 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/hand_constants')
2
+ require File.expand_path(File.dirname(__FILE__) + '/hand_statistics')
3
+
4
+ module Pokerstats
5
+ CASH = "[0-9$,.]+"
6
+
7
+ class PokerstarsHandHistoryParser
8
+ def self.parse_lines(lines, stats=nil)
9
+ parser = self.new(stats)
10
+ lines.each {|line| parser.parse(line)}
11
+ end
12
+
13
+ def self.has_valid_header?(lines)
14
+ lines.lstrip!
15
+ case lines[/^[^\n\r]*/]
16
+ when /PokerStars Game #([0-9]+): Tournament #([0-9]+), (\$[0-9+$]+) ([^\-]*) - Level ([IVXL]+) \((#{CASH})\/(#{CASH})\) - (.*)$/
17
+ true
18
+ when /PokerStars Game #([0-9]+): +([^(]*) \((#{CASH})\/(#{CASH})\) - (.*)$/
19
+ true
20
+ when /PokerStars Game #([0-9]+): +([^(]*) \((#{CASH})\/(#{CASH}) USD\) - (.*)$/
21
+ true
22
+ else
23
+ false
24
+ end
25
+ end
26
+
27
+ def self.game(line)
28
+ line.lstrip!
29
+ case line[/^[^\n\r]*/]
30
+ when /PokerStars Game #([0-9]+): Tournament #([0-9]+), (\$[0-9+$]+) ([^\-]*) - Level ([IVXL]+) \((#{CASH})\/(#{CASH})\) - (.*)$/
31
+ "PS#{$1}"
32
+ when /PokerStars Game #([0-9]+): +([^(]*) \((#{CASH})\/(#{CASH})\) - (.*)$/
33
+ "PS#{$1}"
34
+ when /PokerStars Game #([0-9]+): +([^(]*) \((#{CASH})\/(#{CASH}) USD\) - (.*)$/
35
+ "PS#{$1}"
36
+ else
37
+ nil
38
+ end
39
+ end
40
+
41
+ def initialize stats=nil
42
+ @stats = stats || HandStatistics.new
43
+ end
44
+
45
+ def ignorable?(line)
46
+ regular_expressions_for_ignorable_phrases = [
47
+ /(.*): doesn't show hand/,
48
+ /(.*) has timed out/,
49
+ /(.*) has returned/,
50
+ /(.*) leaves the table/,
51
+ /(.*) joins the table at seat #[0-9]+/,
52
+ /(.*) sits out/,
53
+ /(.*) mucks hand/,
54
+ /(.*) is sitting out/,
55
+ /(.*) is (dis)?connected/,
56
+ /(.*) said,/,
57
+ /(.*) will be allowed to play after the button/,
58
+ /(.*) was removed from the table for failing to post/,
59
+ /(.*) re-buys and receives (.*) chips for (.*)/,
60
+ /Seat [0-9]+: (.*) \(((small)|(big)) blind\) folded on the Flop/,
61
+ /Seat [0-9]+: (.*) folded on the ((Flop)|(Turn)|(River))/,
62
+ /Seat [0-9]+: (.*) folded before Flop \(didn't bet\)/,
63
+ /Seat [0-9]+: (.*) (\((small blind)|(big blind)|(button)\) )?folded before Flop( \(didn't bet\))?/,
64
+ /Seat [0-9]+: (.*) (\((small blind)|(big blind)|(button)\) )?collected (.*)/,
65
+ /^\s*$/
66
+ ]
67
+ regular_expressions_for_ignorable_phrases.any?{|re| re =~ line }
68
+ end
69
+
70
+ def parse(line)
71
+ begin
72
+ case line
73
+ when /PokerStars Game #([0-9]+): Tournament #([0-9]+), (\$[0-9+$]+) ([^\-]*) - Level ([IVXL]+) \((#{CASH})\/(#{CASH})\) - (.*)$/
74
+ @stats.update_hand :name => "PS#{$1}", :description=> "#{$2}, #{$3} #{$4}", :tournament=> $2, :sb=> $6.to_d, :bb=> $7.to_d, :played_at=> Time.parse($8), :street => :prelude
75
+ when /PokerStars Game #([0-9]+): +([^(]*) \((#{CASH})\/(#{CASH})\) - (.*)$/
76
+ @stats.update_hand :name => "PS#{$1}", :description=> "#{$2} (#{$3}/#{$4})", :tournament=> nil, :sb=> cash_to_d($3), :bb=> cash_to_d($4), :played_at=> Time.parse($5), :street => :prelude
77
+ when /PokerStars Game #([0-9]+): +([^(]*) \((#{CASH})\/(#{CASH}) USD\) - (.*)$/
78
+ @stats.update_hand :name => "PS#{$1}", :description=> "#{$2} (#{$3}/#{$4})", :tournament=> nil, :sb=> cash_to_d($3), :bb=> cash_to_d($4), :played_at=> Time.parse($5), :street => :prelude
79
+ when /PokerStars Game #([0-9]+):/
80
+ raise "invalid hand record: #{line}"
81
+ when /\*\*\* HOLE CARDS \*\*\*/
82
+ @stats.register_button(@stats.button)
83
+ @stats.update_hand :street => :preflop
84
+ when /\*\*\* FLOP \*\*\* \[(.*)\]/
85
+ @stats.update_hand :street => :flop
86
+ when /\*\*\* TURN \*\*\* \[([^\]]*)\] \[([^\]]*)\]/
87
+ @stats.update_hand :street => :turn
88
+ when /\*\*\* RIVER \*\*\* \[([^\]]*)\] \[([^\]]*)\]/
89
+ @stats.update_hand :street => :river
90
+ when /\*\*\* SHOW DOWN \*\*\*/
91
+ @stats.update_hand :street => :showdown
92
+ when /\*\*\* SUMMARY \*\*\*/
93
+ @stats.update_hand :street => :summary
94
+ when /Dealt to ([^)]+) \[([^\]]+)\]/
95
+ @stats.register_action($1, 'dealt', :result => :cards, :data => $2)
96
+ when /(.*): shows \[(.*)\]/
97
+ @stats.register_action($1, 'shows', :result => :cards, :data => $2)
98
+ when /Board \[(.*)\]/
99
+ @stats.update_hand :board => $1
100
+ when /Total pot (#{CASH}) (((Main)|(Side)) pot(-[0-9]+)? (#{CASH}). )*\| Rake (#{CASH})/
101
+ @stats.update_hand(:total_pot => cash_to_d($1), :rake => cash_to_d($8))
102
+ when /Total pot (#{CASH}) Main pot (#{CASH}).( Side pot-[0-9]+ (#{CASH}).)* | Rake (#{CASH})/
103
+ raise "popo!"
104
+ when /Seat ([0-9]+): (.+) \(#{CASH} in chips\)( is sitting out)?/
105
+ @stats.register_player(:seat => $1.to_i, :screen_name => $2)
106
+ when /(.*): posts ((small)|(big)|(small \& big)) blind(s)? (#{CASH})/
107
+ @stats.register_action($1, 'posts', :result => :post, :amount => cash_to_d($7))
108
+ when /(.*): posts the ante (#{CASH})/
109
+ @stats.register_action($1, 'antes', :result => :post, :amount => cash_to_d($2))
110
+ when /Table '([0-9]+) ([0-9]+)' (.*) Seat #([0-9]+) is the button/
111
+ @stats.register_button($4.to_i)
112
+ when /Table '(.*)' (.*) Seat #([0-9]+) is the button/
113
+ @stats.register_button($3.to_i)
114
+ when /Uncalled bet \((.*)\) returned to (.*)/
115
+ @stats.register_action($2, 'return', :result => :win, :amount => cash_to_d($1))
116
+ when /(.+): ((folds)|(checks))/
117
+ @stats.register_action($1, $2, :result => :neutral)
118
+ when /(.+): ((calls)|(bets)) ((#{CASH})( and is all-in)?)?$/
119
+ @stats.register_action($1, $2, :result => :pay, :amount => cash_to_d($6))
120
+ when /(.+): raises (#{CASH}) to (#{CASH})( and is all-in)?$/
121
+ @stats.register_action($1, 'raises', :result => :pay_to, :amount => cash_to_d($3))
122
+ when /(.*) collected (.*) from ((side )|(main ))?pot/
123
+ @stats.register_action($1, "wins", :result => :win, :amount => cash_to_d($2))
124
+ when /Seat [0-9]+: (.*) (\((small blind)|(big blind)|(button)\) )?showed \[([^\]]+)\] and ((won) \(#{CASH}\)|(lost)) with (.*)/
125
+ when /Seat [0-9]+: (.*) mucked \[([^\]]+)\]/
126
+ else
127
+ raise "invalid line for parse: #{line}" unless ignorable?(line)
128
+ end
129
+ rescue => e
130
+ raise e
131
+ end
132
+ end
133
+
134
+ private
135
+
136
+ def cash_to_d(string)
137
+ string.gsub!(/[$, ]/,"")
138
+ string.to_d
139
+ end
140
+ end
141
+ end
@@ -0,0 +1,91 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{pokerstats}
8
+ s.version = "2.0.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Andrew C. Greenberg"]
12
+ s.date = %q{2009-10-09}
13
+ s.default_executable = %q{checkps}
14
+ s.description = %q{a library for extracting, computing and reporting statistics of poker hands parsed from hand history files}
15
+ s.email = %q{wizardwerdna@gmail.com}
16
+ s.executables = ["checkps"]
17
+ s.extra_rdoc_files = [
18
+ "LICENSE",
19
+ "README.rdoc"
20
+ ]
21
+ s.files = [
22
+ ".document",
23
+ ".gitignore",
24
+ "LICENSE",
25
+ "README.rdoc",
26
+ "Rakefile",
27
+ "VERSION",
28
+ "bin/checkps",
29
+ "generators/pokerstats/USAGE",
30
+ "generators/pokerstats/pokerstats_generator.rb",
31
+ "generators/pokerstats/templates/create_pokerstats.rhtml",
32
+ "lib/pokerstats.rb",
33
+ "lib/pokerstats/.gitignore",
34
+ "lib/pokerstats/hand_constants.rb",
35
+ "lib/pokerstats/hand_history.rb",
36
+ "lib/pokerstats/hand_statistics.rb",
37
+ "lib/pokerstats/hand_statistics_api.rb",
38
+ "lib/pokerstats/player_statistics.rb",
39
+ "lib/pokerstats/plugins/aggression_statistics.rb",
40
+ "lib/pokerstats/plugins/blind_attack_statistics.rb",
41
+ "lib/pokerstats/plugins/cash_statistics.rb",
42
+ "lib/pokerstats/plugins/continuation_bet_statistics.rb",
43
+ "lib/pokerstats/plugins/preflop_raise_statistics.rb",
44
+ "lib/pokerstats/poker-edge.rb",
45
+ "lib/pokerstats/pokerstars_file.rb",
46
+ "lib/pokerstats/pokerstars_hand_history_parser.rb",
47
+ "pokerstats.gemspec",
48
+ "spec/file_empty.txt",
49
+ "spec/file_many_hands.txt",
50
+ "spec/file_one_hand.txt",
51
+ "spec/hand_statistics_spec.rb",
52
+ "spec/hand_statistics_spec_helper.rb",
53
+ "spec/player_statistics_spec.rb",
54
+ "spec/pokerstars_file_spec.rb",
55
+ "spec/pokerstars_hand_history_parser_spec.rb",
56
+ "spec/spec_helper.rb",
57
+ "spec/zpokerstars_hand_history_parser_integration.rb.txt"
58
+ ]
59
+ s.homepage = %q{http://github.com/wizardwerdna/pokerstats}
60
+ s.rdoc_options = ["--charset=UTF-8"]
61
+ s.require_paths = ["lib"]
62
+ s.rubygems_version = %q{1.3.5}
63
+ s.summary = %q{poker hand history statistics library}
64
+ s.test_files = [
65
+ "spec/hand_statistics_spec.rb",
66
+ "spec/hand_statistics_spec_helper.rb",
67
+ "spec/player_statistics_spec.rb",
68
+ "spec/pokerstars_file_spec.rb",
69
+ "spec/pokerstars_hand_history_parser_spec.rb",
70
+ "spec/spec_helper.rb"
71
+ ]
72
+
73
+ if s.respond_to? :specification_version then
74
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
75
+ s.specification_version = 3
76
+
77
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
78
+ s.add_development_dependency(%q<rspec>, [">= 0"])
79
+ s.add_development_dependency(%q<wizardwerdna-pluggable>, [">= 0"])
80
+ s.add_runtime_dependency(%q<wizardwerdna-pluggable>, [">= 0"])
81
+ else
82
+ s.add_dependency(%q<rspec>, [">= 0"])
83
+ s.add_dependency(%q<wizardwerdna-pluggable>, [">= 0"])
84
+ s.add_dependency(%q<wizardwerdna-pluggable>, [">= 0"])
85
+ end
86
+ else
87
+ s.add_dependency(%q<rspec>, [">= 0"])
88
+ s.add_dependency(%q<wizardwerdna-pluggable>, [">= 0"])
89
+ s.add_dependency(%q<wizardwerdna-pluggable>, [">= 0"])
90
+ end
91
+ end
File without changes
@@ -0,0 +1,564 @@
1
+ PokerStars Game #21650146783: Hold'em No Limit ($0.25/$0.50) - 2008/10/31 17:14:44 ET
2
+ Table 'Charybdis IV' 9-max Seat #2 is the button
3
+ Seat 1: Laxxer1919 ($31.65 in chips)
4
+ Seat 2: WowSick ($50 in chips)
5
+ Seat 3: perkys23 ($100.60 in chips)
6
+ Seat 4: JERONIMOX10 ($46.50 in chips)
7
+ Seat 5: lzlitnin ($53.10 in chips)
8
+ Seat 6: ruffraider1 ($18.65 in chips)
9
+ Seat 7: rokke75 ($35.40 in chips)
10
+ Seat 8: wizardwerdna ($50 in chips)
11
+ Seat 9: ATTACCA ($50 in chips)
12
+ perkys23: posts small blind $0.25
13
+ JERONIMOX10: posts big blind $0.50
14
+ wizardwerdna: posts big blind $0.50
15
+ *** HOLE CARDS ***
16
+ Dealt to wizardwerdna [Ks 9h]
17
+ lzlitnin: folds
18
+ ruffraider1: folds
19
+ rokke75: calls $0.50
20
+ wizardwerdna: checks
21
+ ATTACCA: folds
22
+ Laxxer1919: folds
23
+ WowSick: folds
24
+ perkys23: calls $0.25
25
+ JERONIMOX10: checks
26
+ *** FLOP *** [Kd Td 4h]
27
+ perkys23: checks
28
+ JERONIMOX10: checks
29
+ rokke75: checks
30
+ wizardwerdna: bets $1.50
31
+ perkys23: folds
32
+ JERONIMOX10: folds
33
+ rokke75: folds
34
+ Uncalled bet ($1.50) returned to wizardwerdna
35
+ wizardwerdna collected $1.90 from pot
36
+ *** SUMMARY ***
37
+ Total pot $2 | Rake $0.10
38
+ Board [Kd Td 4h]
39
+ Seat 1: Laxxer1919 folded before Flop (didn't bet)
40
+ Seat 2: WowSick (button) folded before Flop (didn't bet)
41
+ Seat 3: perkys23 (small blind) folded on the Flop
42
+ Seat 4: JERONIMOX10 (big blind) folded on the Flop
43
+ Seat 5: lzlitnin folded before Flop (didn't bet)
44
+ Seat 6: ruffraider1 folded before Flop (didn't bet)
45
+ Seat 7: rokke75 folded on the Flop
46
+ Seat 8: wizardwerdna collected ($1.90)
47
+ Seat 9: ATTACCA folded before Flop (didn't bet)
48
+
49
+
50
+
51
+ PokerStars Game #21650168228: Hold'em No Limit ($0.25/$0.50) - 2008/10/31 17:15:35 ET
52
+ Table 'Charybdis IV' 9-max Seat #3 is the button
53
+ Seat 1: Laxxer1919 ($31.65 in chips)
54
+ Seat 2: WowSick ($50 in chips)
55
+ Seat 3: perkys23 ($100.10 in chips)
56
+ Seat 4: JERONIMOX10 ($46 in chips)
57
+ Seat 5: lzlitnin ($53.10 in chips)
58
+ Seat 6: ruffraider1 ($18.65 in chips)
59
+ Seat 7: rokke75 ($34.90 in chips)
60
+ Seat 8: wizardwerdna ($51.40 in chips)
61
+ Seat 9: ATTACCA ($50 in chips)
62
+ JERONIMOX10: posts small blind $0.25
63
+ lzlitnin: posts big blind $0.50
64
+ *** HOLE CARDS ***
65
+ Dealt to wizardwerdna [9c Ah]
66
+ ruffraider1: folds
67
+ rokke75: calls $0.50
68
+ wizardwerdna: folds
69
+ ATTACCA: folds
70
+ Laxxer1919: raises $1 to $1.50
71
+ WowSick: folds
72
+ perkys23: folds
73
+ JERONIMOX10: calls $1.25
74
+ lzlitnin: folds
75
+ rokke75: calls $1
76
+ *** FLOP *** [Qc 5s Qd]
77
+ JERONIMOX10: checks
78
+ rokke75: checks
79
+ Laxxer1919: bets $3
80
+ JERONIMOX10: folds
81
+ rokke75: folds
82
+ Uncalled bet ($3) returned to Laxxer1919
83
+ Laxxer1919 collected $4.75 from pot
84
+ *** SUMMARY ***
85
+ Total pot $5 | Rake $0.25
86
+ Board [Qc 5s Qd]
87
+ Seat 1: Laxxer1919 collected ($4.75)
88
+ Seat 2: WowSick folded before Flop (didn't bet)
89
+ Seat 3: perkys23 (button) folded before Flop (didn't bet)
90
+ Seat 4: JERONIMOX10 (small blind) folded on the Flop
91
+ Seat 5: lzlitnin (big blind) folded before Flop
92
+ Seat 6: ruffraider1 folded before Flop (didn't bet)
93
+ Seat 7: rokke75 folded on the Flop
94
+ Seat 8: wizardwerdna folded before Flop (didn't bet)
95
+ Seat 9: ATTACCA folded before Flop (didn't bet)
96
+
97
+
98
+
99
+ PokerStars Game #21650192967: Hold'em No Limit ($0.25/$0.50) - 2008/10/31 17:16:35 ET
100
+ Table 'Charybdis IV' 9-max Seat #4 is the button
101
+ Seat 1: Laxxer1919 ($34.90 in chips)
102
+ Seat 2: WowSick ($50 in chips)
103
+ Seat 3: perkys23 ($100.10 in chips)
104
+ Seat 4: JERONIMOX10 ($44.50 in chips)
105
+ Seat 5: lzlitnin ($52.60 in chips)
106
+ Seat 6: ruffraider1 ($18.65 in chips)
107
+ Seat 7: rokke75 ($33.40 in chips)
108
+ Seat 8: wizardwerdna ($51.40 in chips)
109
+ Seat 9: ATTACCA ($50 in chips)
110
+ lzlitnin: posts small blind $0.25
111
+ ruffraider1: posts big blind $0.50
112
+ *** HOLE CARDS ***
113
+ Dealt to wizardwerdna [Js 9s]
114
+ rokke75: calls $0.50
115
+ wizardwerdna: calls $0.50
116
+ ATTACCA: folds
117
+ Laxxer1919: folds
118
+ WowSick: folds
119
+ perkys23: folds
120
+ JERONIMOX10: calls $0.50
121
+ lzlitnin: calls $0.25
122
+ ruffraider1: checks
123
+ *** FLOP *** [Kc 6s Qc]
124
+ lzlitnin: checks
125
+ ruffraider1: checks
126
+ rokke75: checks
127
+ wizardwerdna: checks
128
+ JERONIMOX10: checks
129
+ *** TURN *** [Kc 6s Qc] [Qh]
130
+ lzlitnin: checks
131
+ ruffraider1: bets $1
132
+ rokke75: folds
133
+ wizardwerdna: folds
134
+ JERONIMOX10: folds
135
+ lzlitnin: folds
136
+ Uncalled bet ($1) returned to ruffraider1
137
+ ruffraider1 collected $2.40 from pot
138
+ *** SUMMARY ***
139
+ Total pot $2.50 | Rake $0.10
140
+ Board [Kc 6s Qc Qh]
141
+ Seat 1: Laxxer1919 folded before Flop (didn't bet)
142
+ Seat 2: WowSick folded before Flop (didn't bet)
143
+ Seat 3: perkys23 folded before Flop (didn't bet)
144
+ Seat 4: JERONIMOX10 (button) folded on the Turn
145
+ Seat 5: lzlitnin (small blind) folded on the Turn
146
+ Seat 6: ruffraider1 (big blind) collected ($2.40)
147
+ Seat 7: rokke75 folded on the Turn
148
+ Seat 8: wizardwerdna folded on the Turn
149
+ Seat 9: ATTACCA folded before Flop (didn't bet)
150
+
151
+
152
+
153
+ PokerStars Game #21650216534: Hold'em No Limit ($0.25/$0.50) - 2008/10/31 17:17:32 ET
154
+ Table 'Charybdis IV' 9-max Seat #5 is the button
155
+ Seat 1: Laxxer1919 ($34.90 in chips)
156
+ Seat 2: WowSick ($50 in chips)
157
+ Seat 3: perkys23 ($100.10 in chips)
158
+ Seat 4: JERONIMOX10 ($44 in chips)
159
+ Seat 5: lzlitnin ($52.10 in chips)
160
+ Seat 6: ruffraider1 ($20.55 in chips)
161
+ Seat 7: rokke75 ($32.90 in chips)
162
+ Seat 8: wizardwerdna ($50.90 in chips)
163
+ Seat 9: ATTACCA ($50 in chips)
164
+ ruffraider1: posts small blind $0.25
165
+ rokke75: posts big blind $0.50
166
+ *** HOLE CARDS ***
167
+ Dealt to wizardwerdna [4d Ks]
168
+ wizardwerdna: folds
169
+ ATTACCA: raises $1.50 to $2
170
+ Laxxer1919: folds
171
+ WowSick: folds
172
+ perkys23: folds
173
+ JERONIMOX10: folds
174
+ lzlitnin: folds
175
+ ruffraider1: folds
176
+ rokke75: folds
177
+ Uncalled bet ($1.50) returned to ATTACCA
178
+ ATTACCA collected $1.25 from pot
179
+ ATTACCA: doesn't show hand
180
+ *** SUMMARY ***
181
+ Total pot $1.25 | Rake $0
182
+ Seat 1: Laxxer1919 folded before Flop (didn't bet)
183
+ Seat 2: WowSick folded before Flop (didn't bet)
184
+ Seat 3: perkys23 folded before Flop (didn't bet)
185
+ Seat 4: JERONIMOX10 folded before Flop (didn't bet)
186
+ Seat 5: lzlitnin (button) folded before Flop (didn't bet)
187
+ Seat 6: ruffraider1 (small blind) folded before Flop
188
+ Seat 7: rokke75 (big blind) folded before Flop
189
+ Seat 8: wizardwerdna folded before Flop (didn't bet)
190
+ Seat 9: ATTACCA collected ($1.25)
191
+
192
+
193
+
194
+ PokerStars Game #21650226963: Hold'em No Limit ($0.25/$0.50) - 2008/10/31 17:17:57 ET
195
+ Table 'Charybdis IV' 9-max Seat #6 is the button
196
+ Seat 1: Laxxer1919 ($34.90 in chips)
197
+ Seat 2: WowSick ($50 in chips)
198
+ Seat 3: perkys23 ($100.10 in chips)
199
+ Seat 4: JERONIMOX10 ($44 in chips)
200
+ Seat 5: lzlitnin ($52.10 in chips)
201
+ Seat 6: ruffraider1 ($20.30 in chips)
202
+ Seat 7: rokke75 ($32.40 in chips)
203
+ Seat 8: wizardwerdna ($50.90 in chips)
204
+ Seat 9: ATTACCA ($50.75 in chips)
205
+ rokke75: posts small blind $0.25
206
+ wizardwerdna: posts big blind $0.50
207
+ *** HOLE CARDS ***
208
+ Dealt to wizardwerdna [7d Jd]
209
+ ATTACCA: folds
210
+ Laxxer1919: folds
211
+ WowSick has timed out
212
+ WowSick: folds
213
+ WowSick is sitting out
214
+ perkys23: calls $0.50
215
+ JERONIMOX10: folds
216
+ lzlitnin: folds
217
+ ruffraider1: folds
218
+ rokke75: raises $0.50 to $1
219
+ wizardwerdna: calls $0.50
220
+ perkys23: calls $0.50
221
+ *** FLOP *** [Td 3h 7c]
222
+ rokke75: bets $1
223
+ wizardwerdna: raises $2 to $3
224
+ perkys23: folds
225
+ rokke75: calls $2
226
+ *** TURN *** [Td 3h 7c] [6c]
227
+ rokke75: checks
228
+ wizardwerdna: checks
229
+ *** RIVER *** [Td 3h 7c 6c] [7s]
230
+ rokke75: bets $4.50
231
+ wizardwerdna: raises $12 to $16.50
232
+ rokke75: folds
233
+ Uncalled bet ($12) returned to wizardwerdna
234
+ wizardwerdna collected $17.15 from pot
235
+ *** SUMMARY ***
236
+ Total pot $18 | Rake $0.85
237
+ Board [Td 3h 7c 6c 7s]
238
+ Seat 1: Laxxer1919 folded before Flop (didn't bet)
239
+ Seat 2: WowSick folded before Flop (didn't bet)
240
+ Seat 3: perkys23 folded on the Flop
241
+ Seat 4: JERONIMOX10 folded before Flop (didn't bet)
242
+ Seat 5: lzlitnin folded before Flop (didn't bet)
243
+ Seat 6: ruffraider1 (button) folded before Flop (didn't bet)
244
+ Seat 7: rokke75 (small blind) folded on the River
245
+ Seat 8: wizardwerdna (big blind) collected ($17.15)
246
+ Seat 9: ATTACCA folded before Flop (didn't bet)
247
+
248
+
249
+
250
+ PokerStars Game #21650281040: Hold'em No Limit ($0.25/$0.50) - 2008/10/31 17:20:07 ET
251
+ Table 'Charybdis IV' 9-max Seat #7 is the button
252
+ Seat 1: Laxxer1919 ($34.90 in chips)
253
+ Seat 3: perkys23 ($99.10 in chips)
254
+ Seat 4: JERONIMOX10 ($44 in chips)
255
+ Seat 5: lzlitnin ($52.10 in chips)
256
+ Seat 6: ruffraider1 ($20.30 in chips)
257
+ Seat 7: rokke75 ($23.90 in chips)
258
+ Seat 8: wizardwerdna ($59.55 in chips)
259
+ Seat 9: ATTACCA ($50.75 in chips)
260
+ wizardwerdna: posts small blind $0.25
261
+ ATTACCA: posts big blind $0.50
262
+ *** HOLE CARDS ***
263
+ Dealt to wizardwerdna [3s 8c]
264
+ Laxxer1919: folds
265
+ perkys23: folds
266
+ JERONIMOX10: folds
267
+ lzlitnin: calls $0.50
268
+ ruffraider1: calls $0.50
269
+ rokke75: raises $1 to $1.50
270
+ wizardwerdna: folds
271
+ ATTACCA: folds
272
+ lzlitnin: calls $1
273
+ ruffraider1: calls $1
274
+ *** FLOP *** [9s Jh Qh]
275
+ lzlitnin: bets $3
276
+ ruffraider1: folds
277
+ rokke75: calls $3
278
+ *** TURN *** [9s Jh Qh] [Tc]
279
+ lzlitnin: checks
280
+ rokke75: bets $2
281
+ lzlitnin: calls $2
282
+ *** RIVER *** [9s Jh Qh Tc] [Jd]
283
+ lzlitnin: checks
284
+ rokke75: bets $5
285
+ lzlitnin: folds
286
+ Uncalled bet ($5) returned to rokke75
287
+ rokke75 collected $14.55 from pot
288
+ *** SUMMARY ***
289
+ Total pot $15.25 | Rake $0.70
290
+ Board [9s Jh Qh Tc Jd]
291
+ Seat 1: Laxxer1919 folded before Flop (didn't bet)
292
+ Seat 3: perkys23 folded before Flop (didn't bet)
293
+ Seat 4: JERONIMOX10 folded before Flop (didn't bet)
294
+ Seat 5: lzlitnin folded on the River
295
+ Seat 6: ruffraider1 folded on the Flop
296
+ Seat 7: rokke75 (button) collected ($14.55)
297
+ Seat 8: wizardwerdna (small blind) folded before Flop
298
+ Seat 9: ATTACCA (big blind) folded before Flop
299
+
300
+
301
+
302
+ PokerStars Game #21650317512: Hold'em No Limit ($0.25/$0.50) - 2008/10/31 17:21:34 ET
303
+ Table 'Charybdis IV' 9-max Seat #8 is the button
304
+ Seat 1: Laxxer1919 ($34.90 in chips)
305
+ Seat 3: perkys23 ($99.10 in chips)
306
+ Seat 4: JERONIMOX10 ($44 in chips)
307
+ Seat 5: lzlitnin ($45.60 in chips)
308
+ Seat 6: ruffraider1 ($18.80 in chips)
309
+ Seat 7: rokke75 ($31.95 in chips)
310
+ Seat 8: wizardwerdna ($59.30 in chips)
311
+ Seat 9: ATTACCA ($50.25 in chips)
312
+ ATTACCA: posts small blind $0.25
313
+ Laxxer1919: posts big blind $0.50
314
+ *** HOLE CARDS ***
315
+ Dealt to wizardwerdna [9h 6s]
316
+ perkys23: calls $0.50
317
+ JERONIMOX10: folds
318
+ lzlitnin: folds
319
+ ruffraider1: calls $0.50
320
+ rokke75 has timed out
321
+ rokke75: folds
322
+ rokke75 is sitting out
323
+ rokke75 has returned
324
+ wizardwerdna: folds
325
+ ATTACCA: folds
326
+ Laxxer1919: checks
327
+ *** FLOP *** [Ac 2h Qd]
328
+ Laxxer1919: checks
329
+ perkys23: checks
330
+ ruffraider1: checks
331
+ *** TURN *** [Ac 2h Qd] [6h]
332
+ Laxxer1919: checks
333
+ perkys23: checks
334
+ ruffraider1: checks
335
+ *** RIVER *** [Ac 2h Qd 6h] [7c]
336
+ Laxxer1919: bets $1
337
+ perkys23: folds
338
+ ruffraider1: folds
339
+ Uncalled bet ($1) returned to Laxxer1919
340
+ Laxxer1919 collected $1.70 from pot
341
+ *** SUMMARY ***
342
+ Total pot $1.75 | Rake $0.05
343
+ Board [Ac 2h Qd 6h 7c]
344
+ Seat 1: Laxxer1919 (big blind) collected ($1.70)
345
+ Seat 3: perkys23 folded on the River
346
+ Seat 4: JERONIMOX10 folded before Flop (didn't bet)
347
+ Seat 5: lzlitnin folded before Flop (didn't bet)
348
+ Seat 6: ruffraider1 folded on the River
349
+ Seat 7: rokke75 folded before Flop (didn't bet)
350
+ Seat 8: wizardwerdna (button) folded before Flop (didn't bet)
351
+ Seat 9: ATTACCA (small blind) folded before Flop
352
+
353
+
354
+
355
+ PokerStars Game #21650343556: Hold'em No Limit ($0.25/$0.50) - 2008/10/31 17:22:37 ET
356
+ Table 'Charybdis IV' 9-max Seat #9 is the button
357
+ Seat 1: Laxxer1919 ($36.10 in chips)
358
+ Seat 3: perkys23 ($98.60 in chips)
359
+ Seat 4: JERONIMOX10 ($44 in chips)
360
+ Seat 5: lzlitnin ($45.60 in chips)
361
+ Seat 6: ruffraider1 ($18.30 in chips)
362
+ Seat 7: rokke75 ($31.95 in chips)
363
+ Seat 8: wizardwerdna ($59.30 in chips)
364
+ Seat 9: ATTACCA ($50 in chips)
365
+ Laxxer1919: posts small blind $0.25
366
+ perkys23: posts big blind $0.50
367
+ *** HOLE CARDS ***
368
+ Dealt to wizardwerdna [Ac Js]
369
+ JERONIMOX10: folds
370
+ lzlitnin: folds
371
+ ruffraider1: folds
372
+ lzlitnin leaves the table
373
+ rokke75: folds
374
+ Mokuscuna joins the table at seat #5
375
+ wizardwerdna: raises $1.50 to $2
376
+ ATTACCA: folds
377
+ Laxxer1919: folds
378
+ perkys23: calls $1.50
379
+ *** FLOP *** [2c 3s 6h]
380
+ perkys23: checks
381
+ wizardwerdna: bets $3
382
+ perkys23: folds
383
+ Uncalled bet ($3) returned to wizardwerdna
384
+ wizardwerdna collected $4.05 from pot
385
+ *** SUMMARY ***
386
+ Total pot $4.25 | Rake $0.20
387
+ Board [2c 3s 6h]
388
+ Seat 1: Laxxer1919 (small blind) folded before Flop
389
+ Seat 3: perkys23 (big blind) folded on the Flop
390
+ Seat 4: JERONIMOX10 folded before Flop (didn't bet)
391
+ Seat 5: lzlitnin folded before Flop (didn't bet)
392
+ Seat 6: ruffraider1 folded before Flop (didn't bet)
393
+ Seat 7: rokke75 folded before Flop (didn't bet)
394
+ Seat 8: wizardwerdna collected ($4.05)
395
+ Seat 9: ATTACCA (button) folded before Flop (didn't bet)
396
+
397
+
398
+
399
+ PokerStars Game #21650364080: Hold'em No Limit ($0.25/$0.50) - 2008/10/31 17:23:27 ET
400
+ Table 'Charybdis IV' 9-max Seat #1 is the button
401
+ Seat 1: Laxxer1919 ($35.85 in chips)
402
+ Seat 3: perkys23 ($96.60 in chips)
403
+ Seat 4: JERONIMOX10 ($44 in chips)
404
+ Seat 6: ruffraider1 ($18.30 in chips)
405
+ Seat 7: rokke75 ($31.95 in chips)
406
+ Seat 8: wizardwerdna ($61.35 in chips)
407
+ Seat 9: ATTACCA ($50 in chips)
408
+ perkys23: posts small blind $0.25
409
+ JERONIMOX10: posts big blind $0.50
410
+ Mokuscuna: sits out
411
+ *** HOLE CARDS ***
412
+ Dealt to wizardwerdna [2s 3d]
413
+ ruffraider1: folds
414
+ ruffraider1 leaves the table
415
+ rokke75: raises $0.50 to $1
416
+ wizardwerdna: folds
417
+ ATTACCA: folds
418
+ Laxxer1919: folds
419
+ perkys23: calls $0.75
420
+ JERONIMOX10: folds
421
+ *** FLOP *** [Jc Ad 6d]
422
+ jam1741 joins the table at seat #6
423
+ perkys23: checks
424
+ rokke75: bets $1.50
425
+ perkys23: folds
426
+ Uncalled bet ($1.50) returned to rokke75
427
+ rokke75 collected $2.40 from pot
428
+ *** SUMMARY ***
429
+ Total pot $2.50 | Rake $0.10
430
+ Board [Jc Ad 6d]
431
+ Seat 1: Laxxer1919 (button) folded before Flop (didn't bet)
432
+ Seat 3: perkys23 (small blind) folded on the Flop
433
+ Seat 4: JERONIMOX10 (big blind) folded before Flop
434
+ Seat 6: ruffraider1 folded before Flop (didn't bet)
435
+ Seat 7: rokke75 collected ($2.40)
436
+ Seat 8: wizardwerdna folded before Flop (didn't bet)
437
+ Seat 9: ATTACCA folded before Flop (didn't bet)
438
+
439
+
440
+
441
+ PokerStars Game #21650377200: Hold'em No Limit ($0.25/$0.50) - 2008/10/31 17:23:59 ET
442
+ Table 'Charybdis IV' 9-max Seat #3 is the button
443
+ Seat 1: Laxxer1919 ($35.85 in chips)
444
+ Seat 3: perkys23 ($95.60 in chips)
445
+ Seat 4: JERONIMOX10 ($43.50 in chips)
446
+ Seat 5: Mokuscuna ($50 in chips)
447
+ Seat 7: rokke75 ($33.35 in chips)
448
+ Seat 8: wizardwerdna ($61.35 in chips)
449
+ Seat 9: ATTACCA ($50 in chips)
450
+ JERONIMOX10: posts small blind $0.25
451
+ Mokuscuna: posts big blind $0.50
452
+ jam1741: sits out
453
+ *** HOLE CARDS ***
454
+ Dealt to wizardwerdna [9c Tc]
455
+ rokke75: folds
456
+ wizardwerdna: raises $0.50 to $1
457
+ ATTACCA: folds
458
+ Laxxer1919: folds
459
+ perkys23: folds
460
+ JERONIMOX10: folds
461
+ Mokuscuna: folds
462
+ Uncalled bet ($0.50) returned to wizardwerdna
463
+ wizardwerdna collected $1.25 from pot
464
+ *** SUMMARY ***
465
+ Total pot $1.25 | Rake $0
466
+ Seat 1: Laxxer1919 folded before Flop (didn't bet)
467
+ Seat 3: perkys23 (button) folded before Flop (didn't bet)
468
+ Seat 4: JERONIMOX10 (small blind) folded before Flop
469
+ Seat 5: Mokuscuna (big blind) folded before Flop
470
+ Seat 7: rokke75 folded before Flop (didn't bet)
471
+ Seat 8: wizardwerdna collected ($1.25)
472
+ Seat 9: ATTACCA folded before Flop (didn't bet)
473
+
474
+
475
+
476
+ PokerStars Game #21650387347: Hold'em No Limit ($0.25/$0.50) - 2008/10/31 17:24:23 ET
477
+ Table 'Charybdis IV' 9-max Seat #4 is the button
478
+ Seat 1: Laxxer1919 ($35.85 in chips)
479
+ Seat 3: perkys23 ($95.60 in chips)
480
+ Seat 4: JERONIMOX10 ($43.25 in chips)
481
+ Seat 5: Mokuscuna ($50 in chips)
482
+ Seat 6: jam1741 ($30 in chips)
483
+ Seat 7: rokke75 ($33.35 in chips)
484
+ Seat 8: wizardwerdna ($62.10 in chips)
485
+ Seat 9: ATTACCA ($50 in chips)
486
+ Mokuscuna: posts small blind $0.25
487
+ jam1741: posts big blind $0.50
488
+ *** HOLE CARDS ***
489
+ Dealt to wizardwerdna [Qd 6h]
490
+ rokke75: folds
491
+ wizardwerdna: folds
492
+ ATTACCA: raises $1.50 to $2
493
+ Laxxer1919: folds
494
+ perkys23: folds
495
+ JERONIMOX10: folds
496
+ Mokuscuna: folds
497
+ jam1741: folds
498
+ Uncalled bet ($1.50) returned to ATTACCA
499
+ ATTACCA collected $1.25 from pot
500
+ ATTACCA: doesn't show hand
501
+ *** SUMMARY ***
502
+ Total pot $1.25 | Rake $0
503
+ Seat 1: Laxxer1919 folded before Flop (didn't bet)
504
+ Seat 3: perkys23 folded before Flop (didn't bet)
505
+ Seat 4: JERONIMOX10 (button) folded before Flop (didn't bet)
506
+ Seat 5: Mokuscuna (small blind) folded before Flop
507
+ Seat 6: jam1741 (big blind) folded before Flop
508
+ Seat 7: rokke75 folded before Flop (didn't bet)
509
+ Seat 8: wizardwerdna folded before Flop (didn't bet)
510
+ Seat 9: ATTACCA collected ($1.25)
511
+
512
+
513
+
514
+ PokerStars Game #21650401569: Hold'em No Limit ($0.25/$0.50) - 2008/10/31 17:24:58 ET
515
+ Table 'Charybdis IV' 9-max Seat #5 is the button
516
+ Seat 1: Laxxer1919 ($35.85 in chips)
517
+ Seat 3: perkys23 ($95.60 in chips)
518
+ Seat 4: JERONIMOX10 ($43.25 in chips)
519
+ Seat 5: Mokuscuna ($50 in chips)
520
+ Seat 6: jam1741 ($29.50 in chips)
521
+ Seat 7: rokke75 ($33.35 in chips)
522
+ Seat 8: wizardwerdna ($62.10 in chips)
523
+ Seat 9: ATTACCA ($50.75 in chips)
524
+ jam1741: posts small blind $0.25
525
+ rokke75: posts big blind $0.50
526
+ *** HOLE CARDS ***
527
+ Dealt to wizardwerdna [2s Th]
528
+ wizardwerdna: folds
529
+ ATTACCA: folds
530
+ Laxxer1919: folds
531
+ perkys23: calls $0.50
532
+ JERONIMOX10: folds
533
+ Mokuscuna: raises $2 to $2.50
534
+ jam1741: folds
535
+ rokke75: folds
536
+ perkys23: calls $2
537
+ *** FLOP *** [5c 2d Jh]
538
+ perkys23: checks
539
+ Mokuscuna: checks
540
+ *** TURN *** [5c 2d Jh] [4c]
541
+ perkys23: bets $2.50
542
+ WowSick has returned
543
+ Mokuscuna: calls $2.50
544
+ *** RIVER *** [5c 2d Jh 4c] [5h]
545
+ perkys23: checks
546
+ Mokuscuna: checks
547
+ *** SHOW DOWN ***
548
+ perkys23: shows [Qc Js] (two pair, Jacks and Fives)
549
+ Mokuscuna: mucks hand
550
+ perkys23 collected $10.25 from pot
551
+ *** SUMMARY ***
552
+ Total pot $10.75 | Rake $0.50
553
+ Board [5c 2d Jh 4c 5h]
554
+ Seat 1: Laxxer1919 folded before Flop (didn't bet)
555
+ Seat 3: perkys23 showed [Qc Js] and won ($10.25) with two pair, Jacks and Fives
556
+ Seat 4: JERONIMOX10 folded before Flop (didn't bet)
557
+ Seat 5: Mokuscuna (button) mucked [Ac Qs]
558
+ Seat 6: jam1741 (small blind) folded before Flop
559
+ Seat 7: rokke75 (big blind) folded before Flop
560
+ Seat 8: wizardwerdna folded before Flop (didn't bet)
561
+ Seat 9: ATTACCA folded before Flop (didn't bet)
562
+
563
+
564
+