From 5b3a3b256054e85c1d849fad5216fc82456a0562 Mon Sep 17 00:00:00 2001 From: Harry Brundage Date: Sun, 12 Sep 2010 22:51:35 -0400 Subject: [PATCH] Woo --- .gitignore | 10 +- Rakefile | 7 +- lib/darwin.rb | 10 + lib/darwin/chromosome.rb | 92 + lib/darwin/game_player.rb | 30 + lib/finchbot.rb | 33 +- lib/finchbot/angles.rb | 32 +- lib/finchbot/angles/attackable.rb | 6 +- lib/finchbot/angles/crippling.rb | 11 + lib/finchbot/angles/defendable.rb | 7 + lib/finchbot/angles/defense_assist.rb | 2 +- lib/finchbot/angles/investment.rb | 18 +- lib/planetwars/planetwars.rb | 3 +- log.txt | 76338 ------------------------ mybot.rb | 68 +- parameters.yml | 8 + spec/finchbot_spec.rb | 63 +- spec/game_player_spec.rb | 31 + spec/spec_helper.rb | 1 + stderr.txt | 0 tools/PlayGame.jar | Bin 21502 -> 20621 bytes tools/ShowGame.jar | Bin 983045 -> 980793 bytes tools/shell.sh | 3 + tools/tcp | Bin 0 -> 14200 bytes tools/tcp.c | 200 + 25 files changed, 557 insertions(+), 76416 deletions(-) create mode 100644 lib/darwin.rb create mode 100644 lib/darwin/chromosome.rb create mode 100644 lib/darwin/game_player.rb create mode 100644 lib/finchbot/angles/crippling.rb create mode 100644 lib/finchbot/angles/defendable.rb delete mode 100644 log.txt mode change 100644 => 100755 mybot.rb create mode 100644 parameters.yml create mode 100644 spec/game_player_spec.rb create mode 100644 stderr.txt create mode 100755 tools/shell.sh create mode 100755 tools/tcp create mode 100644 tools/tcp.c diff --git a/.gitignore b/.gitignore index 2288186..5750b33 100644 --- a/.gitignore +++ b/.gitignore @@ -27,11 +27,12 @@ pkg # # For MacOS: # -#.DS_Store +.DS_Store # # For TextMate -#*.tmproj -#tmtags +.tmproj +tmtags + # # For emacs: #*~ @@ -40,3 +41,6 @@ pkg # # For vim: #*.swp + +# Finchbot +logs diff --git a/Rakefile b/Rakefile index fe1b286..42a659c 100644 --- a/Rakefile +++ b/Rakefile @@ -1,5 +1,7 @@ require 'rubygems' require 'bundler' +$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), 'lib')) + begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e @@ -38,8 +40,11 @@ end task :default => :spec +require 'finchbot' +require 'darwin' + task :build_code do - files = Dir.glob("lib/finchbot*") + Dir.glob("lib/planetwars*") + ["mybot.rb"] + files = Dir.glob("lib/finchbot*") + Dir.glob("lib/finchbot/**/*") + Dir.glob("lib/planetwars*") + ["mybot.rb", "parameters.yml"] puts "Zipping..." system "zip package"+Time.now.to_i.to_s+".zip "+files.join(" ") end diff --git a/lib/darwin.rb b/lib/darwin.rb new file mode 100644 index 0000000..db14361 --- /dev/null +++ b/lib/darwin.rb @@ -0,0 +1,10 @@ +require 'ai4r' +require 'darwin/chromosome' +require 'darwin/game_player' + +task :evolve do + search = Ai4r::GeneticAlgorithm::GeneticSearch.new(2, 3) + result = search.run + puts result.inspect + puts result.data +end \ No newline at end of file diff --git a/lib/darwin/chromosome.rb b/lib/darwin/chromosome.rb new file mode 100644 index 0000000..e0c0b5e --- /dev/null +++ b/lib/darwin/chromosome.rb @@ -0,0 +1,92 @@ +module Finch + class Chromosome + + attr_accessor :data + attr_accessor :normalized_fitness + attr_accessor :fitness + + def initialize(data) + @data = data + end + + # The fitness method quantifies the optimality of a solution + # (that is, a chromosome) in a genetic algorithm so that that particular + # chromosome may be ranked against all the other chromosomes. + # + # Optimal chromosomes, or at least chromosomes which are more optimal, + # are allowed to breed and mix their datasets by any of several techniques, + # producing a new generation that will (hopefully) be even better. + def fitness + return @fitness if @fitness + maps = Array.new(99) do |i| + "maps/map#{i+1}.txt" + end + + bots = ["RandomBot", "BullyBot", "DualBot", "ProspectorBot", "RageBot"].collect do |s| + "java -jar example_bots/#{s}.jar" + end + finch = "/Users/hornairs/.rvm/rubies/ruby-1.9.2-rc2/bin/ruby mybot.rb #{self.data.join(" ")}" + scores = [] + maps[0..2].each do |map| + bots[1..3].each do |bot| + scores.push GamePlayer.new.play(bot, finch, map) + end + end + + @fitness = scores.sum / scores.length + return @fitness + end + + def self.mutate(chromosome) + if chromosome.normalized_fitness && rand < ((1 - chromosome.normalized_fitness) * 0.3) + data = chromosome.data + index = rand(data.length-1) + data[index] = data[index] + ((rand - 0.5) * data[index]) + chromosome.data = data + chromosome.fitness = nil + end + end + + def self.reproduce(a, b) + data_size = Finch.parameter_count-2 + crossover = rand(data_size) + spawn = a.data[0..crossover] + b.data[crossover+1..-1] + return self.class.new(spawn) + end + + # Initializes an individual solution (chromosome) for the initial + # population. Usually the chromosome is generated randomly, but you can + # use some problem domain knowledge, to generate a + # (probably) better initial solution. + def self.seed + seed = Array.new(Finch.parameter_count) do |i| + rand + end + return Chromosome.new(seed) + end + end +end + +module Ai4r + module GeneticAlgorithm + class GeneticSearch + def generate_initial_population + @population = [] + @population_size.times do + population << Finch::Chromosome.seed + end + end + + def reproduction(selected_to_breed) + offsprings = [] + 0.upto(selected_to_breed.length/2-1) do |i| + offsprings << Finch::Chromosome.reproduce(selected_to_breed[2*i], selected_to_breed[2*i+1]) + end + @population.each do |individual| + Finch::Chromosome.mutate(individual) + end + return offsprings + end + end + end +end \ No newline at end of file diff --git a/lib/darwin/game_player.rb b/lib/darwin/game_player.rb new file mode 100644 index 0000000..6dc6b38 --- /dev/null +++ b/lib/darwin/game_player.rb @@ -0,0 +1,30 @@ +require "open3" +module Finch + class GamePlayer + def play(bot1, bot2, map) + str = "java -jar tools/PlayGame.jar #{map} 1000 1000 logs/log#{Time.now.to_i}.txt \"#{bot1}\" \"#{bot2}\"" + puts str + output = "" + Open3.popen3(str) { |stdin, stdout, stderr| + output = stdout.read + errors = stderr.read + puts errors + } + self.parse_output(output) + end + + def parse_output(string) + if string.match("WARNING: player 2 timed out") + return -1001 + else + turns = string.scan(/Turn \d{1,3}/).length + if string.match("Player 2 Wins!") + winner = 1 + else + winner = -1 + end + return (1000 - turns) * winner + end + end + end +end \ No newline at end of file diff --git a/lib/finchbot.rb b/lib/finchbot.rb index 12b9262..8928fb3 100644 --- a/lib/finchbot.rb +++ b/lib/finchbot.rb @@ -12,35 +12,50 @@ def angles def lookahead @lookahead || 5 end + + def parameter_count + 6 + end end class Bot attr_reader :parameters def initialize(parameters) - @parameters = decode_parameters(parameters) + @parameters = decode_parameters(parameters) if parameters.is_a?(Array) + @parameters = parameters if parameters.is_a?(Hash) end def decode_parameters(ps) - r = {:angle_weights => {:investment => 2, :attackable => 1, :defense_assist => 2}, :score_threshhold => 1} + ps = ps.map(&:to_f) + r = {:angle_weights => {:investment => ps[1], :attackable => ps[2], :defendable => ps[3], :defense_assist => ps[4], :crippling => ps[5]}, :score_threshold => ps[0]} r[:total_weight] = r[:angle_weights].values.sum r end def angled_strategy - + moves = [] Finch.pw.my_planets.each do |src| Finch.pw.planets.each do |dest| opinions = [] - Finch.angles.map(&:new).each do |a| - opinions.push((a.opinion(src, dest) || 0) * self.parameters[:angle_weights][a.class.key]) + reservation = 0 + Finch.angles.collect{|a| a.new(src,dest) }.each do |a| + opinions.push((a.opinion || 0) * self.parameters[:angle_weights][a.class.key]) + reservation += a.reservation end - puts "comparing #{src.id} and #{dest.id}, gives #{opinions.join(" ")}" +# puts "comparing #{src.id} and #{dest.id}, gives #{opinions.join(" ")} => #{opinions.sum}" opinion = opinions.sum - if(opinion > self.parameters[:score_threshhold]) - num_ships = src.num_ships / 2 - Finch.pw.issue_order(src, dest, num_ships) + if(opinion > self.parameters[:score_threshold]) + moves.push({:source => src, :destination => dest, :score => opinion, :reservation => reservation}) + end + end + moves.sort_by {|m| m[:score]} + moves.each do |move| + ships = move[:reservation] + if move[:source].num_ships < move[:reservation] + ships = move[:source].num_ships - 1 end + Finch.pw.issue_order(move[:source], move[:destination], ships) if ships > 0 end end end diff --git a/lib/finchbot/angles.rb b/lib/finchbot/angles.rb index fcbdaf9..2e44e3e 100644 --- a/lib/finchbot/angles.rb +++ b/lib/finchbot/angles.rb @@ -2,18 +2,38 @@ module Finch class Angle - def self.inherited(subclass) - Finch.angles += [subclass] - end - def self.key - self.name.to_s[7..-6].underscore.to_sym + class << self + def inherited(subclass) + Finch.angles += [subclass] + end + def key + self.name.to_s[7..-6].underscore.to_sym + end end + attr_reader :source, :destination, :reservation + + def initialize(source, destination) + @source, @destination = source, destination + end - def opinion(source, destination, state) + def opinion 0 end + def reservation + @reservation || 0 + end + + private + + def reserve(num_ships) + @reservation = self.reservation + num_ships + end + + def reserve_conquering_fleet! + reserve(@destination.num_ships) + end end end diff --git a/lib/finchbot/angles/attackable.rb b/lib/finchbot/angles/attackable.rb index 590448b..5bc12fe 100644 --- a/lib/finchbot/angles/attackable.rb +++ b/lib/finchbot/angles/attackable.rb @@ -1,8 +1,8 @@ module Finch class AttackableAngle < Angle - def opinion(source, destination) - if destination.owner != $FINCH && source.num_ships > 10 - 1 + def opinion + if destination.owner != $FINCH + Finch.pw.distance(source, destination) / (destination.num_ships + 1) else 0 end diff --git a/lib/finchbot/angles/crippling.rb b/lib/finchbot/angles/crippling.rb new file mode 100644 index 0000000..43a4233 --- /dev/null +++ b/lib/finchbot/angles/crippling.rb @@ -0,0 +1,11 @@ +module Finch + class CripplingAngle < Angle + def opinion + if destination.owner == $ENEMY + destination.num_ships / Finch.pw.distance(source, destination) + else + 0 + end + end + end +end \ No newline at end of file diff --git a/lib/finchbot/angles/defendable.rb b/lib/finchbot/angles/defendable.rb new file mode 100644 index 0000000..3035565 --- /dev/null +++ b/lib/finchbot/angles/defendable.rb @@ -0,0 +1,7 @@ +module Finch + class DefendableAngle < Angle + def opinion + source.num_ships - destination.num_ships + end + end +end \ No newline at end of file diff --git a/lib/finchbot/angles/defense_assist.rb b/lib/finchbot/angles/defense_assist.rb index 344ab01..6fe8758 100644 --- a/lib/finchbot/angles/defense_assist.rb +++ b/lib/finchbot/angles/defense_assist.rb @@ -1,7 +1,7 @@ module Finch class DefenseAssistAngle < Angle - def opinion(source, destination) + def opinion return 0 if destination.owner != $FINCH attackers = destination.incoming_fleets.inject(Array.new(Finch.lookahead, 0)) do |acc, fleet| diff --git a/lib/finchbot/angles/investment.rb b/lib/finchbot/angles/investment.rb index f1aab25..169e40e 100644 --- a/lib/finchbot/angles/investment.rb +++ b/lib/finchbot/angles/investment.rb @@ -1,19 +1,27 @@ module Finch class InvestmentAngle < Angle - def find_best_investments + def self.calculate_investments calculations = [] Finch.pw.my_planets.each do |src| calculations[src.id] = [] Finch.pw.not_my_planets.each do |dest| # How good is the growth rate in comparison to how many ships would be generated while not doing so - calculations[src.id][dest.id] = dest.growth_rate / (src.growth_rate * Finch.pw.distance(src, dest)) +# calculations[src.id][dest.id] = (dest.growth_rate * 10) / ((src.growth_rate * Finch.pw.distance(src, dest))) + calculations[src.id][dest.id] = dest.growth_rate / (src.growth_rate + 1) end end calculations end - def opinion(source, destination) - @calculations ||= self.find_best_investments - @calculations[source.id][destination.id] || 0 + + def opinion + Finch.pw.calculations[:investments] ||= self.class.calculate_investments + calcs = Finch.pw.calculations[:investments] + if(calcs[source.id][destination.id]) + reserve_conquering_fleet! + calcs[source.id][destination.id] + else + 0 + end end end end \ No newline at end of file diff --git a/lib/planetwars/planetwars.rb b/lib/planetwars/planetwars.rb index c4e13cf..853d065 100644 --- a/lib/planetwars/planetwars.rb +++ b/lib/planetwars/planetwars.rb @@ -43,8 +43,9 @@ def incoming_fleets end class PlanetWars - attr_reader :planets, :fleets + attr_reader :planets, :fleets, :calculations def initialize(game_state) + @calculations = {} parse_game_state(game_state) end diff --git a/log.txt b/log.txt deleted file mode 100644 index d72be9e..0000000 --- a/log.txt +++ /dev/null @@ -1,76338 +0,0 @@ -initializing -engine > player1: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 1 100 5 -P 14.288424 0.622569 2 100 5 -P 11.865493 5.273785 0 81 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -go - -engine > player2: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 2 100 5 -P 14.288424 0.622569 1 100 5 -P 11.865493 5.273785 0 81 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -go - -player1 > engine: 1 9 50 -player1 > engine: go -player2 > engine: comparing 2 and 0, gives 1 0 0.11028813087720954 -player2 > engine: 2 0 50 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 25 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 12 -player2 > engine: comparing 2 and 3, gives 1 0 0.22881269671267385 -player2 > engine: 2 3 6 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 1 55 5 -P 14.288424 0.622569 2 24 5 -P 11.865493 5.273785 0 81 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 23 -F 2 50 2 0 11 10 -F 2 25 2 1 22 21 -F 2 6 2 3 6 5 -go - -engine > player2: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 2 55 5 -P 14.288424 0.622569 1 24 5 -P 11.865493 5.273785 0 81 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 23 -F 1 50 2 0 11 10 -F 1 25 2 1 22 21 -F 1 6 2 3 6 5 -go - -player1 > engine: go -player2 > engine: comparing 2 and 0, gives 1 0 0.11028813087720954 -player2 > engine: 2 0 12 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 6 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 1 60 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 81 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 22 -F 2 50 2 0 11 9 -F 2 25 2 1 22 20 -F 2 6 2 3 6 4 -F 2 12 2 0 11 10 -F 2 6 2 1 22 21 -go - -engine > player2: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 2 60 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 81 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 22 -F 1 50 2 0 11 9 -F 1 25 2 1 22 20 -F 1 6 2 3 6 4 -F 1 12 2 0 11 10 -F 1 6 2 1 22 21 -go - -player1 > engine: go -player2 > engine: comparing 2 and 0, gives 1 0 0.11028813087720954 -player2 > engine: 2 0 5 -player2 > engine: comparing 2 and 1, gives 0 0 0.09190677065479348 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 1 65 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 81 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 21 -F 2 50 2 0 11 8 -F 2 25 2 1 22 19 -F 2 6 2 3 6 3 -F 2 12 2 0 11 9 -F 2 6 2 1 22 20 -F 2 5 2 0 11 10 -go - -engine > player2: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 2 65 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 81 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 21 -F 1 50 2 0 11 8 -F 1 25 2 1 22 19 -F 1 6 2 3 6 3 -F 1 12 2 0 11 9 -F 1 6 2 1 22 20 -F 1 5 2 0 11 10 -go - -player1 > engine: go -player2 > engine: comparing 2 and 0, gives 1 0 0.11028813087720954 -player2 > engine: 2 0 5 -player2 > engine: comparing 2 and 1, gives 0 0 0.09190677065479348 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 1 70 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 81 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 20 -F 2 50 2 0 11 7 -F 2 25 2 1 22 18 -F 2 6 2 3 6 2 -F 2 12 2 0 11 8 -F 2 6 2 1 22 19 -F 2 5 2 0 11 9 -F 2 5 2 0 11 10 -go - -engine > player2: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 2 70 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 81 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 20 -F 1 50 2 0 11 7 -F 1 25 2 1 22 18 -F 1 6 2 3 6 2 -F 1 12 2 0 11 8 -F 1 6 2 1 22 19 -F 1 5 2 0 11 9 -F 1 5 2 0 11 10 -go - -player1 > engine: go -player2 > engine: comparing 2 and 0, gives 1 0 0.11028813087720954 -player2 > engine: 2 0 5 -player2 > engine: comparing 2 and 1, gives 0 0 0.09190677065479348 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 1 75 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 81 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 19 -F 2 50 2 0 11 6 -F 2 25 2 1 22 17 -F 2 6 2 3 6 1 -F 2 12 2 0 11 7 -F 2 6 2 1 22 18 -F 2 5 2 0 11 8 -F 2 5 2 0 11 9 -F 2 5 2 0 11 10 -go - -engine > player2: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 2 75 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 81 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 19 -F 1 50 2 0 11 6 -F 1 25 2 1 22 17 -F 1 6 2 3 6 1 -F 1 12 2 0 11 7 -F 1 6 2 1 22 18 -F 1 5 2 0 11 8 -F 1 5 2 0 11 9 -F 1 5 2 0 11 10 -go - -player1 > engine: go -player2 > engine: comparing 2 and 0, gives 1 0 0.11028813087720954 -player2 > engine: 2 0 5 -player2 > engine: comparing 2 and 1, gives 0 0 0.09190677065479348 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 1 80 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 18 -F 2 50 2 0 11 5 -F 2 25 2 1 22 16 -F 2 12 2 0 11 6 -F 2 6 2 1 22 17 -F 2 5 2 0 11 7 -F 2 5 2 0 11 8 -F 2 5 2 0 11 9 -F 2 5 2 0 11 10 -go - -engine > player2: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 2 80 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 18 -F 1 50 2 0 11 5 -F 1 25 2 1 22 16 -F 1 12 2 0 11 6 -F 1 6 2 1 22 17 -F 1 5 2 0 11 7 -F 1 5 2 0 11 8 -F 1 5 2 0 11 9 -F 1 5 2 0 11 10 -go - -player1 > engine: go -player2 > engine: comparing 2 and 0, gives 1 0 0.11028813087720954 -player2 > engine: 2 0 5 -player2 > engine: comparing 2 and 1, gives 0 0 0.09190677065479348 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 1 85 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 17 -F 2 50 2 0 11 4 -F 2 25 2 1 22 15 -F 2 12 2 0 11 5 -F 2 6 2 1 22 16 -F 2 5 2 0 11 6 -F 2 5 2 0 11 7 -F 2 5 2 0 11 8 -F 2 5 2 0 11 9 -F 2 5 2 0 11 10 -go - -engine > player2: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 2 85 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 17 -F 1 50 2 0 11 4 -F 1 25 2 1 22 15 -F 1 12 2 0 11 5 -F 1 6 2 1 22 16 -F 1 5 2 0 11 6 -F 1 5 2 0 11 7 -F 1 5 2 0 11 8 -F 1 5 2 0 11 9 -F 1 5 2 0 11 10 -go - -player1 > engine: go -player2 > engine: comparing 2 and 0, gives 1 0 0.11028813087720954 -player2 > engine: 2 0 5 -player2 > engine: comparing 2 and 1, gives 0 0 0.09190677065479348 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 1 90 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 16 -F 2 50 2 0 11 3 -F 2 25 2 1 22 14 -F 2 12 2 0 11 4 -F 2 6 2 1 22 15 -F 2 5 2 0 11 5 -F 2 5 2 0 11 6 -F 2 5 2 0 11 7 -F 2 5 2 0 11 8 -F 2 5 2 0 11 9 -F 2 5 2 0 11 10 -go - -engine > player2: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 2 90 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 16 -F 1 50 2 0 11 3 -F 1 25 2 1 22 14 -F 1 12 2 0 11 4 -F 1 6 2 1 22 15 -F 1 5 2 0 11 5 -F 1 5 2 0 11 6 -F 1 5 2 0 11 7 -F 1 5 2 0 11 8 -F 1 5 2 0 11 9 -F 1 5 2 0 11 10 -go - -player1 > engine: go -player2 > engine: comparing 2 and 0, gives 1 0 0.11028813087720954 -player2 > engine: 2 0 5 -player2 > engine: comparing 2 and 1, gives 0 0 0.09190677065479348 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 1 95 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 15 -F 2 50 2 0 11 2 -F 2 25 2 1 22 13 -F 2 12 2 0 11 3 -F 2 6 2 1 22 14 -F 2 5 2 0 11 4 -F 2 5 2 0 11 5 -F 2 5 2 0 11 6 -F 2 5 2 0 11 7 -F 2 5 2 0 11 8 -F 2 5 2 0 11 9 -F 2 5 2 0 11 10 -go - -engine > player2: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 2 95 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 15 -F 1 50 2 0 11 2 -F 1 25 2 1 22 13 -F 1 12 2 0 11 3 -F 1 6 2 1 22 14 -F 1 5 2 0 11 4 -F 1 5 2 0 11 5 -F 1 5 2 0 11 6 -F 1 5 2 0 11 7 -F 1 5 2 0 11 8 -F 1 5 2 0 11 9 -F 1 5 2 0 11 10 -go - -player1 > engine: go -player2 > engine: comparing 2 and 0, gives 1 0 0.11028813087720954 -player2 > engine: 2 0 5 -player2 > engine: comparing 2 and 1, gives 0 0 0.09190677065479348 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 1 100 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 14 -F 2 50 2 0 11 1 -F 2 25 2 1 22 12 -F 2 12 2 0 11 2 -F 2 6 2 1 22 13 -F 2 5 2 0 11 3 -F 2 5 2 0 11 4 -F 2 5 2 0 11 5 -F 2 5 2 0 11 6 -F 2 5 2 0 11 7 -F 2 5 2 0 11 8 -F 2 5 2 0 11 9 -F 2 5 2 0 11 10 -go - -engine > player2: P 11.803996 11.215721 0 37 3 -P 9.319567 21.808874 2 100 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 14 -F 1 50 2 0 11 1 -F 1 25 2 1 22 12 -F 1 12 2 0 11 2 -F 1 6 2 1 22 13 -F 1 5 2 0 11 3 -F 1 5 2 0 11 4 -F 1 5 2 0 11 5 -F 1 5 2 0 11 6 -F 1 5 2 0 11 7 -F 1 5 2 0 11 8 -F 1 5 2 0 11 9 -F 1 5 2 0 11 10 -go - -player2 > engine: comparing 2 and 0, gives 1 0 0.11028813087720954 -player2 > engine: 2 0 5 -player2 > engine: comparing 2 and 1, gives 0 0 0.09190677065479348 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -player1 > engine: go -engine > player1: P 11.803996 11.215721 2 13 3 -P 9.319567 21.808874 1 105 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 13 -F 2 25 2 1 22 11 -F 2 12 2 0 11 1 -F 2 6 2 1 22 12 -F 2 5 2 0 11 2 -F 2 5 2 0 11 3 -F 2 5 2 0 11 4 -F 2 5 2 0 11 5 -F 2 5 2 0 11 6 -F 2 5 2 0 11 7 -F 2 5 2 0 11 8 -F 2 5 2 0 11 9 -F 2 5 2 0 11 10 -go - -engine > player2: P 11.803996 11.215721 1 13 3 -P 9.319567 21.808874 2 105 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 13 -F 1 25 2 1 22 11 -F 1 12 2 0 11 1 -F 1 6 2 1 22 12 -F 1 5 2 0 11 2 -F 1 5 2 0 11 3 -F 1 5 2 0 11 4 -F 1 5 2 0 11 5 -F 1 5 2 0 11 6 -F 1 5 2 0 11 7 -F 1 5 2 0 11 8 -F 1 5 2 0 11 9 -F 1 5 2 0 11 10 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 6 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 3 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 1.0130580427630802 -player2 > engine: 0 11 2 -player2 > engine: comparing 0 and 12, gives 0 0 1.0130581793859565 -player2 > engine: 0 12 1 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 5 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 16 3 -P 9.319567 21.808874 1 110 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 12 -F 2 25 2 1 22 10 -F 2 6 2 1 22 11 -F 2 5 2 0 11 1 -F 2 5 2 0 11 2 -F 2 5 2 0 11 3 -F 2 5 2 0 11 4 -F 2 5 2 0 11 5 -F 2 5 2 0 11 6 -F 2 5 2 0 11 7 -F 2 5 2 0 11 8 -F 2 5 2 0 11 9 -F 2 6 0 1 11 10 -F 2 3 0 2 11 10 -F 2 2 0 11 4 3 -F 2 1 0 12 4 3 -F 2 5 2 1 22 21 -go - -engine > player2: P 11.803996 11.215721 1 16 3 -P 9.319567 21.808874 2 110 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 12 -F 1 25 2 1 22 10 -F 1 6 2 1 22 11 -F 1 5 2 0 11 1 -F 1 5 2 0 11 2 -F 1 5 2 0 11 3 -F 1 5 2 0 11 4 -F 1 5 2 0 11 5 -F 1 5 2 0 11 6 -F 1 5 2 0 11 7 -F 1 5 2 0 11 8 -F 1 5 2 0 11 9 -F 1 6 0 1 11 10 -F 1 3 0 2 11 10 -F 1 2 0 11 4 3 -F 1 1 0 12 4 3 -F 1 5 2 1 22 21 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 8 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 4 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 1.0130580427630802 -player2 > engine: 0 11 2 -player2 > engine: comparing 0 and 12, gives 0 0 1.0130581793859565 -player2 > engine: 0 12 1 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 5 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 9 3 -P 9.319567 21.808874 1 115 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 11 -F 2 25 2 1 22 9 -F 2 6 2 1 22 10 -F 2 5 2 0 11 1 -F 2 5 2 0 11 2 -F 2 5 2 0 11 3 -F 2 5 2 0 11 4 -F 2 5 2 0 11 5 -F 2 5 2 0 11 6 -F 2 5 2 0 11 7 -F 2 5 2 0 11 8 -F 2 6 0 1 11 9 -F 2 3 0 2 11 9 -F 2 2 0 11 4 2 -F 2 1 0 12 4 2 -F 2 5 2 1 22 20 -F 2 8 0 1 11 10 -F 2 4 0 2 11 10 -F 2 2 0 11 4 3 -F 2 1 0 12 4 3 -F 2 5 2 1 22 21 -go - -engine > player2: P 11.803996 11.215721 1 9 3 -P 9.319567 21.808874 2 115 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 11 -F 1 25 2 1 22 9 -F 1 6 2 1 22 10 -F 1 5 2 0 11 1 -F 1 5 2 0 11 2 -F 1 5 2 0 11 3 -F 1 5 2 0 11 4 -F 1 5 2 0 11 5 -F 1 5 2 0 11 6 -F 1 5 2 0 11 7 -F 1 5 2 0 11 8 -F 1 6 0 1 11 9 -F 1 3 0 2 11 9 -F 1 2 0 11 4 2 -F 1 1 0 12 4 2 -F 1 5 2 1 22 20 -F 1 8 0 1 11 10 -F 1 4 0 2 11 10 -F 1 2 0 11 4 3 -F 1 1 0 12 4 3 -F 1 5 2 1 22 21 -go - -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0.30635588526193164 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 4 -player1 > engine: go -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 1.0130580427630802 -player2 > engine: 0 11 2 -player2 > engine: comparing 0 and 12, gives 0 0 1.0130581793859565 -player2 > engine: 0 12 1 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 5 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 10 3 -P 9.319567 21.808874 1 120 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 10 -F 2 25 2 1 22 8 -F 2 6 2 1 22 9 -F 2 5 2 0 11 1 -F 2 5 2 0 11 2 -F 2 5 2 0 11 3 -F 2 5 2 0 11 4 -F 2 5 2 0 11 5 -F 2 5 2 0 11 6 -F 2 5 2 0 11 7 -F 2 6 0 1 11 8 -F 2 3 0 2 11 8 -F 2 2 0 11 4 1 -F 2 1 0 12 4 1 -F 2 5 2 1 22 19 -F 2 8 0 1 11 9 -F 2 4 0 2 11 9 -F 2 2 0 11 4 2 -F 2 1 0 12 4 2 -F 2 5 2 1 22 20 -F 2 4 0 2 11 10 -F 2 2 0 11 4 3 -F 2 1 0 12 4 3 -F 2 5 2 1 22 21 -go - -engine > player2: P 11.803996 11.215721 1 10 3 -P 9.319567 21.808874 2 120 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 12 5 -P 14.743177 12.694819 0 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 10 -F 1 25 2 1 22 8 -F 1 6 2 1 22 9 -F 1 5 2 0 11 1 -F 1 5 2 0 11 2 -F 1 5 2 0 11 3 -F 1 5 2 0 11 4 -F 1 5 2 0 11 5 -F 1 5 2 0 11 6 -F 1 5 2 0 11 7 -F 1 6 0 1 11 8 -F 1 3 0 2 11 8 -F 1 2 0 11 4 1 -F 1 1 0 12 4 1 -F 1 5 2 1 22 19 -F 1 8 0 1 11 9 -F 1 4 0 2 11 9 -F 1 2 0 11 4 2 -F 1 1 0 12 4 2 -F 1 5 2 1 22 20 -F 1 4 0 2 11 10 -F 1 2 0 11 4 3 -F 1 1 0 12 4 3 -F 1 5 2 1 22 21 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0.30635588526193164 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 5 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 1.0130580427630802 -player2 > engine: 0 11 2 -player2 > engine: comparing 0 and 12, gives 0 0 1.0130581793859565 -player2 > engine: 0 12 1 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 5 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 10 3 -P 9.319567 21.808874 1 125 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 10 5 -P 14.743177 12.694819 0 11 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 9 -F 2 25 2 1 22 7 -F 2 6 2 1 22 8 -F 2 5 2 0 11 1 -F 2 5 2 0 11 2 -F 2 5 2 0 11 3 -F 2 5 2 0 11 4 -F 2 5 2 0 11 5 -F 2 5 2 0 11 6 -F 2 6 0 1 11 7 -F 2 3 0 2 11 7 -F 2 5 2 1 22 18 -F 2 8 0 1 11 8 -F 2 4 0 2 11 8 -F 2 2 0 11 4 1 -F 2 1 0 12 4 1 -F 2 5 2 1 22 19 -F 2 4 0 2 11 9 -F 2 2 0 11 4 2 -F 2 1 0 12 4 2 -F 2 5 2 1 22 20 -F 2 5 0 2 11 10 -F 2 2 0 11 4 3 -F 2 1 0 12 4 3 -F 2 5 2 1 22 21 -go - -engine > player2: P 11.803996 11.215721 1 10 3 -P 9.319567 21.808874 2 125 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 10 5 -P 14.743177 12.694819 0 11 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 9 -F 1 25 2 1 22 7 -F 1 6 2 1 22 8 -F 1 5 2 0 11 1 -F 1 5 2 0 11 2 -F 1 5 2 0 11 3 -F 1 5 2 0 11 4 -F 1 5 2 0 11 5 -F 1 5 2 0 11 6 -F 1 6 0 1 11 7 -F 1 3 0 2 11 7 -F 1 5 2 1 22 18 -F 1 8 0 1 11 8 -F 1 4 0 2 11 8 -F 1 2 0 11 4 1 -F 1 1 0 12 4 1 -F 1 5 2 1 22 19 -F 1 4 0 2 11 9 -F 1 2 0 11 4 2 -F 1 1 0 12 4 2 -F 1 5 2 1 22 20 -F 1 5 0 2 11 10 -F 1 2 0 11 4 3 -F 1 1 0 12 4 3 -F 1 5 2 1 22 21 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0.30635588526193164 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 5 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 1.0130580427630802 -player2 > engine: 0 11 2 -player2 > engine: comparing 0 and 12, gives 0 0 1.0130581793859565 -player2 > engine: 0 12 1 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 5 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 10 3 -P 9.319567 21.808874 1 130 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 8 5 -P 14.743177 12.694819 0 10 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 8 -F 2 25 2 1 22 6 -F 2 6 2 1 22 7 -F 2 5 2 0 11 1 -F 2 5 2 0 11 2 -F 2 5 2 0 11 3 -F 2 5 2 0 11 4 -F 2 5 2 0 11 5 -F 2 6 0 1 11 6 -F 2 3 0 2 11 6 -F 2 5 2 1 22 17 -F 2 8 0 1 11 7 -F 2 4 0 2 11 7 -F 2 5 2 1 22 18 -F 2 4 0 2 11 8 -F 2 2 0 11 4 1 -F 2 1 0 12 4 1 -F 2 5 2 1 22 19 -F 2 5 0 2 11 9 -F 2 2 0 11 4 2 -F 2 1 0 12 4 2 -F 2 5 2 1 22 20 -F 2 5 0 2 11 10 -F 2 2 0 11 4 3 -F 2 1 0 12 4 3 -F 2 5 2 1 22 21 -go - -engine > player2: P 11.803996 11.215721 1 10 3 -P 9.319567 21.808874 2 130 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 8 5 -P 14.743177 12.694819 0 10 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 8 -F 1 25 2 1 22 6 -F 1 6 2 1 22 7 -F 1 5 2 0 11 1 -F 1 5 2 0 11 2 -F 1 5 2 0 11 3 -F 1 5 2 0 11 4 -F 1 5 2 0 11 5 -F 1 6 0 1 11 6 -F 1 3 0 2 11 6 -F 1 5 2 1 22 17 -F 1 8 0 1 11 7 -F 1 4 0 2 11 7 -F 1 5 2 1 22 18 -F 1 4 0 2 11 8 -F 1 2 0 11 4 1 -F 1 1 0 12 4 1 -F 1 5 2 1 22 19 -F 1 5 0 2 11 9 -F 1 2 0 11 4 2 -F 1 1 0 12 4 2 -F 1 5 2 1 22 20 -F 1 5 0 2 11 10 -F 1 2 0 11 4 3 -F 1 1 0 12 4 3 -F 1 5 2 1 22 21 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0.30635588526193164 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 5 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 1.0130580427630802 -player2 > engine: 0 11 2 -player2 > engine: comparing 0 and 12, gives 0 0 1.0130581793859565 -player2 > engine: 0 12 1 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 5 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 10 3 -P 9.319567 21.808874 1 135 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 6 5 -P 14.743177 12.694819 0 9 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 7 -F 2 25 2 1 22 5 -F 2 6 2 1 22 6 -F 2 5 2 0 11 1 -F 2 5 2 0 11 2 -F 2 5 2 0 11 3 -F 2 5 2 0 11 4 -F 2 6 0 1 11 5 -F 2 3 0 2 11 5 -F 2 5 2 1 22 16 -F 2 8 0 1 11 6 -F 2 4 0 2 11 6 -F 2 5 2 1 22 17 -F 2 4 0 2 11 7 -F 2 5 2 1 22 18 -F 2 5 0 2 11 8 -F 2 2 0 11 4 1 -F 2 1 0 12 4 1 -F 2 5 2 1 22 19 -F 2 5 0 2 11 9 -F 2 2 0 11 4 2 -F 2 1 0 12 4 2 -F 2 5 2 1 22 20 -F 2 5 0 2 11 10 -F 2 2 0 11 4 3 -F 2 1 0 12 4 3 -F 2 5 2 1 22 21 -go - -engine > player2: P 11.803996 11.215721 1 10 3 -P 9.319567 21.808874 2 135 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 6 5 -P 14.743177 12.694819 0 9 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 7 -F 1 25 2 1 22 5 -F 1 6 2 1 22 6 -F 1 5 2 0 11 1 -F 1 5 2 0 11 2 -F 1 5 2 0 11 3 -F 1 5 2 0 11 4 -F 1 6 0 1 11 5 -F 1 3 0 2 11 5 -F 1 5 2 1 22 16 -F 1 8 0 1 11 6 -F 1 4 0 2 11 6 -F 1 5 2 1 22 17 -F 1 4 0 2 11 7 -F 1 5 2 1 22 18 -F 1 5 0 2 11 8 -F 1 2 0 11 4 1 -F 1 1 0 12 4 1 -F 1 5 2 1 22 19 -F 1 5 0 2 11 9 -F 1 2 0 11 4 2 -F 1 1 0 12 4 2 -F 1 5 2 1 22 20 -F 1 5 0 2 11 10 -F 1 2 0 11 4 3 -F 1 1 0 12 4 3 -F 1 5 2 1 22 21 -go - -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0.30635588526193164 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 5 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 1.0130580427630802 -player2 > engine: 0 11 2 -player2 > engine: comparing 0 and 12, gives 0 0 1.0130581793859565 -player2 > engine: 0 12 1 -player1 > engine: go -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 5 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 10 3 -P 9.319567 21.808874 1 140 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 4 5 -P 14.743177 12.694819 0 8 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 6 -F 2 25 2 1 22 4 -F 2 6 2 1 22 5 -F 2 5 2 0 11 1 -F 2 5 2 0 11 2 -F 2 5 2 0 11 3 -F 2 6 0 1 11 4 -F 2 3 0 2 11 4 -F 2 5 2 1 22 15 -F 2 8 0 1 11 5 -F 2 4 0 2 11 5 -F 2 5 2 1 22 16 -F 2 4 0 2 11 6 -F 2 5 2 1 22 17 -F 2 5 0 2 11 7 -F 2 5 2 1 22 18 -F 2 5 0 2 11 8 -F 2 2 0 11 4 1 -F 2 1 0 12 4 1 -F 2 5 2 1 22 19 -F 2 5 0 2 11 9 -F 2 2 0 11 4 2 -F 2 1 0 12 4 2 -F 2 5 2 1 22 20 -F 2 5 0 2 11 10 -F 2 2 0 11 4 3 -F 2 1 0 12 4 3 -F 2 5 2 1 22 21 -go - -engine > player2: P 11.803996 11.215721 1 10 3 -P 9.319567 21.808874 2 140 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 4 5 -P 14.743177 12.694819 0 8 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 6 -F 1 25 2 1 22 4 -F 1 6 2 1 22 5 -F 1 5 2 0 11 1 -F 1 5 2 0 11 2 -F 1 5 2 0 11 3 -F 1 6 0 1 11 4 -F 1 3 0 2 11 4 -F 1 5 2 1 22 15 -F 1 8 0 1 11 5 -F 1 4 0 2 11 5 -F 1 5 2 1 22 16 -F 1 4 0 2 11 6 -F 1 5 2 1 22 17 -F 1 5 0 2 11 7 -F 1 5 2 1 22 18 -F 1 5 0 2 11 8 -F 1 2 0 11 4 1 -F 1 1 0 12 4 1 -F 1 5 2 1 22 19 -F 1 5 0 2 11 9 -F 1 2 0 11 4 2 -F 1 1 0 12 4 2 -F 1 5 2 1 22 20 -F 1 5 0 2 11 10 -F 1 2 0 11 4 3 -F 1 1 0 12 4 3 -F 1 5 2 1 22 21 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0.30635588526193164 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 5 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 1.0130580427630802 -player2 > engine: 0 11 2 -player2 > engine: comparing 0 and 12, gives 0 0 1.0130581793859565 -player2 > engine: 0 12 1 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 5 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 10 3 -P 9.319567 21.808874 1 145 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 2 5 -P 14.743177 12.694819 0 7 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 5 -F 2 25 2 1 22 3 -F 2 6 2 1 22 4 -F 2 5 2 0 11 1 -F 2 5 2 0 11 2 -F 2 6 0 1 11 3 -F 2 3 0 2 11 3 -F 2 5 2 1 22 14 -F 2 8 0 1 11 4 -F 2 4 0 2 11 4 -F 2 5 2 1 22 15 -F 2 4 0 2 11 5 -F 2 5 2 1 22 16 -F 2 5 0 2 11 6 -F 2 5 2 1 22 17 -F 2 5 0 2 11 7 -F 2 5 2 1 22 18 -F 2 5 0 2 11 8 -F 2 2 0 11 4 1 -F 2 1 0 12 4 1 -F 2 5 2 1 22 19 -F 2 5 0 2 11 9 -F 2 2 0 11 4 2 -F 2 1 0 12 4 2 -F 2 5 2 1 22 20 -F 2 5 0 2 11 10 -F 2 2 0 11 4 3 -F 2 1 0 12 4 3 -F 2 5 2 1 22 21 -go - -engine > player2: P 11.803996 11.215721 1 10 3 -P 9.319567 21.808874 2 145 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 2 5 -P 14.743177 12.694819 0 7 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 5 -F 1 25 2 1 22 3 -F 1 6 2 1 22 4 -F 1 5 2 0 11 1 -F 1 5 2 0 11 2 -F 1 6 0 1 11 3 -F 1 3 0 2 11 3 -F 1 5 2 1 22 14 -F 1 8 0 1 11 4 -F 1 4 0 2 11 4 -F 1 5 2 1 22 15 -F 1 4 0 2 11 5 -F 1 5 2 1 22 16 -F 1 5 0 2 11 6 -F 1 5 2 1 22 17 -F 1 5 0 2 11 7 -F 1 5 2 1 22 18 -F 1 5 0 2 11 8 -F 1 2 0 11 4 1 -F 1 1 0 12 4 1 -F 1 5 2 1 22 19 -F 1 5 0 2 11 9 -F 1 2 0 11 4 2 -F 1 1 0 12 4 2 -F 1 5 2 1 22 20 -F 1 5 0 2 11 10 -F 1 2 0 11 4 3 -F 1 1 0 12 4 3 -F 1 5 2 1 22 21 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0.30635588526193164 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 1.0130580427630802 -player2 > engine: 0 11 5 -player2 > engine: comparing 0 and 12, gives 0 0 1.0130581793859565 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 5 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 11 3 -P 9.319567 21.808874 1 150 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 0 5 -P 14.743177 12.694819 0 6 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 4 -F 2 25 2 1 22 2 -F 2 6 2 1 22 3 -F 2 5 2 0 11 1 -F 2 6 0 1 11 2 -F 2 3 0 2 11 2 -F 2 5 2 1 22 13 -F 2 8 0 1 11 3 -F 2 4 0 2 11 3 -F 2 5 2 1 22 14 -F 2 4 0 2 11 4 -F 2 5 2 1 22 15 -F 2 5 0 2 11 5 -F 2 5 2 1 22 16 -F 2 5 0 2 11 6 -F 2 5 2 1 22 17 -F 2 5 0 2 11 7 -F 2 5 2 1 22 18 -F 2 5 0 2 11 8 -F 2 2 0 11 4 1 -F 2 1 0 12 4 1 -F 2 5 2 1 22 19 -F 2 5 0 2 11 9 -F 2 2 0 11 4 2 -F 2 1 0 12 4 2 -F 2 5 2 1 22 20 -F 2 5 0 11 4 3 -F 2 2 0 12 4 3 -F 2 5 2 1 22 21 -go - -engine > player2: P 11.803996 11.215721 1 11 3 -P 9.319567 21.808874 2 150 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 0 0 5 -P 14.743177 12.694819 0 6 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 4 -F 1 25 2 1 22 2 -F 1 6 2 1 22 3 -F 1 5 2 0 11 1 -F 1 6 0 1 11 2 -F 1 3 0 2 11 2 -F 1 5 2 1 22 13 -F 1 8 0 1 11 3 -F 1 4 0 2 11 3 -F 1 5 2 1 22 14 -F 1 4 0 2 11 4 -F 1 5 2 1 22 15 -F 1 5 0 2 11 5 -F 1 5 2 1 22 16 -F 1 5 0 2 11 6 -F 1 5 2 1 22 17 -F 1 5 0 2 11 7 -F 1 5 2 1 22 18 -F 1 5 0 2 11 8 -F 1 2 0 11 4 1 -F 1 1 0 12 4 1 -F 1 5 2 1 22 19 -F 1 5 0 2 11 9 -F 1 2 0 11 4 2 -F 1 1 0 12 4 2 -F 1 5 2 1 22 20 -F 1 5 0 11 4 3 -F 1 2 0 12 4 3 -F 1 5 2 1 22 21 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 5 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 1.0130580427630802 -player2 > engine: 0 11 3 -player2 > engine: comparing 0 and 12, gives 0 0 1.0130581793859565 -player2 > engine: 0 12 1 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 5 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0.18857727733719298 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 10 3 -P 9.319567 21.808874 1 155 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 2 5 -P 14.743177 12.694819 0 5 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 3 -F 2 25 2 1 22 1 -F 2 6 2 1 22 2 -F 2 6 0 1 11 1 -F 2 3 0 2 11 1 -F 2 5 2 1 22 12 -F 2 8 0 1 11 2 -F 2 4 0 2 11 2 -F 2 5 2 1 22 13 -F 2 4 0 2 11 3 -F 2 5 2 1 22 14 -F 2 5 0 2 11 4 -F 2 5 2 1 22 15 -F 2 5 0 2 11 5 -F 2 5 2 1 22 16 -F 2 5 0 2 11 6 -F 2 5 2 1 22 17 -F 2 5 0 2 11 7 -F 2 5 2 1 22 18 -F 2 5 0 2 11 8 -F 2 2 0 11 4 1 -F 2 1 0 12 4 1 -F 2 5 2 1 22 19 -F 2 5 0 11 4 2 -F 2 2 0 12 4 2 -F 2 5 2 1 22 20 -F 2 5 0 1 11 10 -F 2 3 0 11 4 3 -F 2 1 0 12 4 3 -F 2 5 2 1 22 21 -go - -engine > player2: P 11.803996 11.215721 1 10 3 -P 9.319567 21.808874 2 155 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 2 5 -P 14.743177 12.694819 0 5 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 3 -F 1 25 2 1 22 1 -F 1 6 2 1 22 2 -F 1 6 0 1 11 1 -F 1 3 0 2 11 1 -F 1 5 2 1 22 12 -F 1 8 0 1 11 2 -F 1 4 0 2 11 2 -F 1 5 2 1 22 13 -F 1 4 0 2 11 3 -F 1 5 2 1 22 14 -F 1 5 0 2 11 4 -F 1 5 2 1 22 15 -F 1 5 0 2 11 5 -F 1 5 2 1 22 16 -F 1 5 0 2 11 6 -F 1 5 2 1 22 17 -F 1 5 0 2 11 7 -F 1 5 2 1 22 18 -F 1 5 0 2 11 8 -F 1 2 0 11 4 1 -F 1 1 0 12 4 1 -F 1 5 2 1 22 19 -F 1 5 0 11 4 2 -F 1 2 0 12 4 2 -F 1 5 2 1 22 20 -F 1 5 0 1 11 10 -F 1 3 0 11 4 3 -F 1 1 0 12 4 3 -F 1 5 2 1 22 21 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 5 -player2 > engine: comparing 0 and 1, gives 0 0 0.30635588526193164 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 1.0130581793859565 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 2 0 -player2 > engine: 2 0 5 -player2 > engine: comparing 2 and 1, gives 0 0 0.09190677065479348 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 1 -player2 > engine: comparing 11 and 1, gives 0 0 0.16555178475119808 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0.3039174333223605 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 11 3 -P 9.319567 21.808874 1 129 5 -P 14.288424 0.622569 2 14 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 8 5 -P 14.743177 12.694819 0 4 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 2 -F 2 6 2 1 22 1 -F 2 5 2 1 22 11 -F 2 8 0 1 11 1 -F 2 4 0 2 11 1 -F 2 5 2 1 22 12 -F 2 4 0 2 11 2 -F 2 5 2 1 22 13 -F 2 5 0 2 11 3 -F 2 5 2 1 22 14 -F 2 5 0 2 11 4 -F 2 5 2 1 22 15 -F 2 5 0 2 11 5 -F 2 5 2 1 22 16 -F 2 5 0 2 11 6 -F 2 5 2 1 22 17 -F 2 5 0 2 11 7 -F 2 5 2 1 22 18 -F 2 5 0 11 4 1 -F 2 2 0 12 4 1 -F 2 5 2 1 22 19 -F 2 5 0 1 11 9 -F 2 3 0 11 4 2 -F 2 1 0 12 4 2 -F 2 5 2 1 22 20 -F 2 2 0 12 4 3 -F 2 5 2 0 11 10 -F 2 1 11 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 11 3 -P 9.319567 21.808874 2 129 5 -P 14.288424 0.622569 1 14 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 8 5 -P 14.743177 12.694819 0 4 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 2 -F 1 6 2 1 22 1 -F 1 5 2 1 22 11 -F 1 8 0 1 11 1 -F 1 4 0 2 11 1 -F 1 5 2 1 22 12 -F 1 4 0 2 11 2 -F 1 5 2 1 22 13 -F 1 5 0 2 11 3 -F 1 5 2 1 22 14 -F 1 5 0 2 11 4 -F 1 5 2 1 22 15 -F 1 5 0 2 11 5 -F 1 5 2 1 22 16 -F 1 5 0 2 11 6 -F 1 5 2 1 22 17 -F 1 5 0 2 11 7 -F 1 5 2 1 22 18 -F 1 5 0 11 4 1 -F 1 2 0 12 4 1 -F 1 5 2 1 22 19 -F 1 5 0 1 11 9 -F 1 3 0 11 4 2 -F 1 1 0 12 4 2 -F 1 5 2 1 22 20 -F 1 2 0 12 4 3 -F 1 5 2 0 11 10 -F 1 1 11 0 4 3 -go - -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 5 -player2 > engine: comparing 0 and 1, gives 0 0 0.30635588526193164 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 1.0130581793859565 -player2 > engine: 0 12 3 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 2 0 -player2 > engine: 2 0 7 -player1 > engine: go -player2 > engine: comparing 2 and 1, gives 0 0 0.09190677065479348 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 4 -player2 > engine: comparing 11 and 1, gives 0 0 0.16555178475119808 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0.3039174333223605 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 11 3 -P 9.319567 21.808874 1 120 5 -P 14.288424 0.622569 2 16 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 14 5 -P 14.743177 12.694819 0 2 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 50 1 9 24 1 -F 2 5 2 1 22 10 -F 2 5 2 1 22 11 -F 2 4 0 2 11 1 -F 2 5 2 1 22 12 -F 2 5 0 2 11 2 -F 2 5 2 1 22 13 -F 2 5 0 2 11 3 -F 2 5 2 1 22 14 -F 2 5 0 2 11 4 -F 2 5 2 1 22 15 -F 2 5 0 2 11 5 -F 2 5 2 1 22 16 -F 2 5 0 2 11 6 -F 2 5 2 1 22 17 -F 2 5 2 1 22 18 -F 2 5 0 1 11 8 -F 2 3 0 11 4 1 -F 2 1 0 12 4 1 -F 2 5 2 1 22 19 -F 2 2 0 12 4 2 -F 2 5 2 0 11 9 -F 2 1 11 0 4 2 -F 2 3 0 12 4 3 -F 2 7 2 0 11 10 -F 2 4 11 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 11 3 -P 9.319567 21.808874 2 120 5 -P 14.288424 0.622569 1 16 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 84 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 14 5 -P 14.743177 12.694819 0 2 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 50 1 9 24 1 -F 1 5 2 1 22 10 -F 1 5 2 1 22 11 -F 1 4 0 2 11 1 -F 1 5 2 1 22 12 -F 1 5 0 2 11 2 -F 1 5 2 1 22 13 -F 1 5 0 2 11 3 -F 1 5 2 1 22 14 -F 1 5 0 2 11 4 -F 1 5 2 1 22 15 -F 1 5 0 2 11 5 -F 1 5 2 1 22 16 -F 1 5 0 2 11 6 -F 1 5 2 1 22 17 -F 1 5 2 1 22 18 -F 1 5 0 1 11 8 -F 1 3 0 11 4 1 -F 1 1 0 12 4 1 -F 1 5 2 1 22 19 -F 1 2 0 12 4 2 -F 1 5 2 0 11 9 -F 1 1 11 0 4 2 -F 1 3 0 12 4 3 -F 1 7 2 0 11 10 -F 1 4 11 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 5 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 1.0130581793859565 -player2 > engine: 0 12 3 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 2 0 -player2 > engine: 2 0 8 -player2 > engine: comparing 2 and 1, gives 0 0 0.09190677065479348 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 2 0 -player2 > engine: 2 11 4 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 7 -player2 > engine: comparing 11 and 1, gives 0 0 0.16555178475119808 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0.3039174333223605 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 6 3 -P 9.319567 21.808874 1 125 5 -P 14.288424 0.622569 2 13 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 15 5 -P 14.743177 12.694819 0 1 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 9 -F 2 5 2 1 22 10 -F 2 5 2 1 22 11 -F 2 5 0 2 11 1 -F 2 5 2 1 22 12 -F 2 5 0 2 11 2 -F 2 5 2 1 22 13 -F 2 5 0 2 11 3 -F 2 5 2 1 22 14 -F 2 5 0 2 11 4 -F 2 5 2 1 22 15 -F 2 5 0 2 11 5 -F 2 5 2 1 22 16 -F 2 5 2 1 22 17 -F 2 5 0 1 11 7 -F 2 5 2 1 22 18 -F 2 2 0 12 4 1 -F 2 5 2 0 11 8 -F 2 1 11 0 4 1 -F 2 3 0 12 4 2 -F 2 7 2 0 11 9 -F 2 4 11 0 4 2 -F 2 5 0 1 11 10 -F 2 3 0 12 4 3 -F 2 8 2 0 11 10 -F 2 4 2 11 11 10 -F 2 7 11 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 6 3 -P 9.319567 21.808874 2 125 5 -P 14.288424 0.622569 1 13 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 15 5 -P 14.743177 12.694819 0 1 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 9 -F 1 5 2 1 22 10 -F 1 5 2 1 22 11 -F 1 5 0 2 11 1 -F 1 5 2 1 22 12 -F 1 5 0 2 11 2 -F 1 5 2 1 22 13 -F 1 5 0 2 11 3 -F 1 5 2 1 22 14 -F 1 5 0 2 11 4 -F 1 5 2 1 22 15 -F 1 5 0 2 11 5 -F 1 5 2 1 22 16 -F 1 5 2 1 22 17 -F 1 5 0 1 11 7 -F 1 5 2 1 22 18 -F 1 2 0 12 4 1 -F 1 5 2 0 11 8 -F 1 1 11 0 4 1 -F 1 3 0 12 4 2 -F 1 7 2 0 11 9 -F 1 4 11 0 4 2 -F 1 5 0 1 11 10 -F 1 3 0 12 4 3 -F 1 8 2 0 11 10 -F 1 4 2 11 11 10 -F 1 7 11 0 4 3 -go - -player1 > engine: 1 15 62 -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0.30635588526193164 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 3 -player2 > engine: comparing 0 and 12, gives 0 0 1.0130581793859565 -player2 > engine: 0 12 1 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 6 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 2 0 -player2 > engine: 2 11 3 -player2 > engine: comparing 2 and 12, gives 0 0 0.16555178475119806 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 7 -player2 > engine: comparing 11 and 1, gives 0 0 0.16555178475119808 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 2 0 -player2 > engine: 11 11 4 -player2 > engine: comparing 11 and 12, gives 0 0 0.3039174333223605 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 6 3 -P 9.319567 21.808874 1 68 5 -P 14.288424 0.622569 2 14 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 13 5 -P 14.743177 12.694819 2 1 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 8 -F 2 5 2 1 22 9 -F 2 5 2 1 22 10 -F 2 5 2 1 22 11 -F 2 5 0 2 11 1 -F 2 5 2 1 22 12 -F 2 5 0 2 11 2 -F 2 5 2 1 22 13 -F 2 5 0 2 11 3 -F 2 5 2 1 22 14 -F 2 5 0 2 11 4 -F 2 5 2 1 22 15 -F 2 5 2 1 22 16 -F 2 5 0 1 11 6 -F 2 5 2 1 22 17 -F 2 5 2 0 11 7 -F 2 3 0 12 4 1 -F 2 7 2 0 11 8 -F 2 4 11 0 4 1 -F 2 5 0 1 11 9 -F 2 3 0 12 4 2 -F 2 8 2 0 11 9 -F 2 4 2 11 11 9 -F 2 7 11 0 4 2 -F 1 62 1 15 13 12 -F 2 3 0 11 4 3 -F 2 1 0 12 4 3 -F 2 6 2 1 22 21 -F 2 3 2 11 11 10 -F 2 7 11 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 6 3 -P 9.319567 21.808874 2 68 5 -P 14.288424 0.622569 1 14 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 13 5 -P 14.743177 12.694819 1 1 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 8 -F 1 5 2 1 22 9 -F 1 5 2 1 22 10 -F 1 5 2 1 22 11 -F 1 5 0 2 11 1 -F 1 5 2 1 22 12 -F 1 5 0 2 11 2 -F 1 5 2 1 22 13 -F 1 5 0 2 11 3 -F 1 5 2 1 22 14 -F 1 5 0 2 11 4 -F 1 5 2 1 22 15 -F 1 5 2 1 22 16 -F 1 5 0 1 11 6 -F 1 5 2 1 22 17 -F 1 5 2 0 11 7 -F 1 3 0 12 4 1 -F 1 7 2 0 11 8 -F 1 4 11 0 4 1 -F 1 5 0 1 11 9 -F 1 3 0 12 4 2 -F 1 8 2 0 11 9 -F 1 4 2 11 11 9 -F 1 7 11 0 4 2 -F 2 62 1 15 13 12 -F 1 3 0 11 4 3 -F 1 1 0 12 4 3 -F 1 6 2 1 22 21 -F 1 3 2 11 11 10 -F 1 7 11 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0.30635588526193164 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 3 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 7 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 6 -player2 > engine: comparing 11 and 1, gives 0 0 0.16555178475119808 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0.18857727733719298 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 10 3 -P 9.319567 21.808874 1 73 5 -P 14.288424 0.622569 2 17 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 12 5 -P 14.743177 12.694819 2 9 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 7 -F 2 5 2 1 22 8 -F 2 5 2 1 22 9 -F 2 5 2 1 22 10 -F 2 5 2 1 22 11 -F 2 5 0 2 11 1 -F 2 5 2 1 22 12 -F 2 5 0 2 11 2 -F 2 5 2 1 22 13 -F 2 5 0 2 11 3 -F 2 5 2 1 22 14 -F 2 5 2 1 22 15 -F 2 5 0 1 11 5 -F 2 5 2 1 22 16 -F 2 5 2 0 11 6 -F 2 7 2 0 11 7 -F 2 5 0 1 11 8 -F 2 3 0 12 4 1 -F 2 8 2 0 11 8 -F 2 4 2 11 11 8 -F 2 7 11 0 4 1 -F 1 62 1 15 13 11 -F 2 3 0 11 4 2 -F 2 1 0 12 4 2 -F 2 6 2 1 22 20 -F 2 3 2 11 11 9 -F 2 7 11 0 4 2 -F 2 3 0 11 4 3 -F 2 7 2 1 22 21 -F 2 6 11 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 10 3 -P 9.319567 21.808874 2 73 5 -P 14.288424 0.622569 1 17 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 12 5 -P 14.743177 12.694819 1 9 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 7 -F 1 5 2 1 22 8 -F 1 5 2 1 22 9 -F 1 5 2 1 22 10 -F 1 5 2 1 22 11 -F 1 5 0 2 11 1 -F 1 5 2 1 22 12 -F 1 5 0 2 11 2 -F 1 5 2 1 22 13 -F 1 5 0 2 11 3 -F 1 5 2 1 22 14 -F 1 5 2 1 22 15 -F 1 5 0 1 11 5 -F 1 5 2 1 22 16 -F 1 5 2 0 11 6 -F 1 7 2 0 11 7 -F 1 5 0 1 11 8 -F 1 3 0 12 4 1 -F 1 8 2 0 11 8 -F 1 4 2 11 11 8 -F 1 7 11 0 4 1 -F 2 62 1 15 13 11 -F 1 3 0 11 4 2 -F 1 1 0 12 4 2 -F 1 6 2 1 22 20 -F 1 3 2 11 11 9 -F 1 7 11 0 4 2 -F 1 3 0 11 4 3 -F 1 7 2 1 22 21 -F 1 6 11 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0.30635588526193164 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 5 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 8 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 1 0 0.16555178475119808 -player2 > engine: 11 1 6 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0.18857727733719298 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 15 3 -P 9.319567 21.808874 1 78 5 -P 14.288424 0.622569 2 19 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 11 5 -P 14.743177 12.694819 2 17 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 6 -F 2 5 2 1 22 7 -F 2 5 2 1 22 8 -F 2 5 2 1 22 9 -F 2 5 2 1 22 10 -F 2 5 2 1 22 11 -F 2 5 0 2 11 1 -F 2 5 2 1 22 12 -F 2 5 0 2 11 2 -F 2 5 2 1 22 13 -F 2 5 2 1 22 14 -F 2 5 0 1 11 4 -F 2 5 2 1 22 15 -F 2 5 2 0 11 5 -F 2 7 2 0 11 6 -F 2 5 0 1 11 7 -F 2 8 2 0 11 7 -F 2 4 2 11 11 7 -F 1 62 1 15 13 10 -F 2 3 0 11 4 1 -F 2 1 0 12 4 1 -F 2 6 2 1 22 19 -F 2 3 2 11 11 8 -F 2 7 11 0 4 1 -F 2 3 0 11 4 2 -F 2 7 2 1 22 20 -F 2 6 11 0 4 2 -F 2 5 0 11 4 3 -F 2 8 2 1 22 21 -F 2 6 11 1 13 12 -go - -engine > player2: P 11.803996 11.215721 1 15 3 -P 9.319567 21.808874 2 78 5 -P 14.288424 0.622569 1 19 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 11 5 -P 14.743177 12.694819 1 17 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 6 -F 1 5 2 1 22 7 -F 1 5 2 1 22 8 -F 1 5 2 1 22 9 -F 1 5 2 1 22 10 -F 1 5 2 1 22 11 -F 1 5 0 2 11 1 -F 1 5 2 1 22 12 -F 1 5 0 2 11 2 -F 1 5 2 1 22 13 -F 1 5 2 1 22 14 -F 1 5 0 1 11 4 -F 1 5 2 1 22 15 -F 1 5 2 0 11 5 -F 1 7 2 0 11 6 -F 1 5 0 1 11 7 -F 1 8 2 0 11 7 -F 1 4 2 11 11 7 -F 2 62 1 15 13 10 -F 1 3 0 11 4 1 -F 1 1 0 12 4 1 -F 1 6 2 1 22 19 -F 1 3 2 11 11 8 -F 1 7 11 0 4 1 -F 1 3 0 11 4 2 -F 1 7 2 1 22 20 -F 1 6 11 0 4 2 -F 1 5 0 11 4 3 -F 1 8 2 1 22 21 -F 1 6 11 1 13 12 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 7 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 4 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 9 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 2 0 -player2 > engine: 2 12 5 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 1 0 0.16555178475119808 -player2 > engine: 11 1 5 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 2 0 -player2 > engine: 11 12 3 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 8 -player2 > engine: comparing 12 and 1, gives 0 0 0.18857727733719298 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 4 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 12 3 -P 9.319567 21.808874 1 83 5 -P 14.288424 0.622569 2 15 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 11 5 -P 14.743177 12.694819 2 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 5 -F 2 5 2 1 22 6 -F 2 5 2 1 22 7 -F 2 5 2 1 22 8 -F 2 5 2 1 22 9 -F 2 5 2 1 22 10 -F 2 5 2 1 22 11 -F 2 5 0 2 11 1 -F 2 5 2 1 22 12 -F 2 5 2 1 22 13 -F 2 5 0 1 11 3 -F 2 5 2 1 22 14 -F 2 5 2 0 11 4 -F 2 7 2 0 11 5 -F 2 5 0 1 11 6 -F 2 8 2 0 11 6 -F 2 4 2 11 11 6 -F 1 62 1 15 13 9 -F 2 6 2 1 22 18 -F 2 3 2 11 11 7 -F 2 3 0 11 4 1 -F 2 7 2 1 22 19 -F 2 6 11 0 4 1 -F 2 5 0 11 4 2 -F 2 8 2 1 22 20 -F 2 6 11 1 13 11 -F 2 7 0 1 11 10 -F 2 4 0 11 4 3 -F 2 2 0 12 4 3 -F 2 9 2 1 22 21 -F 2 5 2 12 13 12 -F 2 5 11 1 13 12 -F 2 3 11 12 7 6 -F 2 8 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 12 3 -P 9.319567 21.808874 2 83 5 -P 14.288424 0.622569 1 15 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 11 5 -P 14.743177 12.694819 1 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 5 -F 1 5 2 1 22 6 -F 1 5 2 1 22 7 -F 1 5 2 1 22 8 -F 1 5 2 1 22 9 -F 1 5 2 1 22 10 -F 1 5 2 1 22 11 -F 1 5 0 2 11 1 -F 1 5 2 1 22 12 -F 1 5 2 1 22 13 -F 1 5 0 1 11 3 -F 1 5 2 1 22 14 -F 1 5 2 0 11 4 -F 1 7 2 0 11 5 -F 1 5 0 1 11 6 -F 1 8 2 0 11 6 -F 1 4 2 11 11 6 -F 2 62 1 15 13 9 -F 1 6 2 1 22 18 -F 1 3 2 11 11 7 -F 1 3 0 11 4 1 -F 1 7 2 1 22 19 -F 1 6 11 0 4 1 -F 1 5 0 11 4 2 -F 1 8 2 1 22 20 -F 1 6 11 1 13 11 -F 1 7 0 1 11 10 -F 1 4 0 11 4 3 -F 1 2 0 12 4 3 -F 1 9 2 1 22 21 -F 1 5 2 12 13 12 -F 1 5 11 1 13 12 -F 1 3 11 12 7 6 -F 1 8 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 6 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 3 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 7 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 2 0 -player2 > engine: 2 12 4 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 1 0 0.16555178475119808 -player2 > engine: 11 1 5 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 2 0 -player2 > engine: 11 12 3 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 7 -player2 > engine: comparing 12 and 1, gives 0 0 0.18857727733719298 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 4 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 12 3 -P 9.319567 21.808874 1 88 5 -P 14.288424 0.622569 2 14 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 11 5 -P 14.743177 12.694819 2 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 4 -F 2 5 2 1 22 5 -F 2 5 2 1 22 6 -F 2 5 2 1 22 7 -F 2 5 2 1 22 8 -F 2 5 2 1 22 9 -F 2 5 2 1 22 10 -F 2 5 2 1 22 11 -F 2 5 2 1 22 12 -F 2 5 0 1 11 2 -F 2 5 2 1 22 13 -F 2 5 2 0 11 3 -F 2 7 2 0 11 4 -F 2 5 0 1 11 5 -F 2 8 2 0 11 5 -F 2 4 2 11 11 5 -F 1 62 1 15 13 8 -F 2 6 2 1 22 17 -F 2 3 2 11 11 6 -F 2 7 2 1 22 18 -F 2 5 0 11 4 1 -F 2 8 2 1 22 19 -F 2 6 11 1 13 10 -F 2 7 0 1 11 9 -F 2 4 0 11 4 2 -F 2 2 0 12 4 2 -F 2 9 2 1 22 20 -F 2 5 2 12 13 11 -F 2 5 11 1 13 11 -F 2 3 11 12 7 5 -F 2 8 12 0 4 2 -F 2 6 0 1 11 10 -F 2 3 0 12 4 3 -F 2 7 2 1 22 21 -F 2 4 2 12 13 12 -F 2 5 11 1 13 12 -F 2 3 11 12 7 6 -F 2 7 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 12 3 -P 9.319567 21.808874 2 88 5 -P 14.288424 0.622569 1 14 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 11 5 -P 14.743177 12.694819 1 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 4 -F 1 5 2 1 22 5 -F 1 5 2 1 22 6 -F 1 5 2 1 22 7 -F 1 5 2 1 22 8 -F 1 5 2 1 22 9 -F 1 5 2 1 22 10 -F 1 5 2 1 22 11 -F 1 5 2 1 22 12 -F 1 5 0 1 11 2 -F 1 5 2 1 22 13 -F 1 5 2 0 11 3 -F 1 7 2 0 11 4 -F 1 5 0 1 11 5 -F 1 8 2 0 11 5 -F 1 4 2 11 11 5 -F 2 62 1 15 13 8 -F 1 6 2 1 22 17 -F 1 3 2 11 11 6 -F 1 7 2 1 22 18 -F 1 5 0 11 4 1 -F 1 8 2 1 22 19 -F 1 6 11 1 13 10 -F 1 7 0 1 11 9 -F 1 4 0 11 4 2 -F 1 2 0 12 4 2 -F 1 9 2 1 22 20 -F 1 5 2 12 13 11 -F 1 5 11 1 13 11 -F 1 3 11 12 7 5 -F 1 8 12 0 4 2 -F 1 6 0 1 11 10 -F 1 3 0 12 4 3 -F 1 7 2 1 22 21 -F 1 4 2 12 13 12 -F 1 5 11 1 13 12 -F 1 3 11 12 7 6 -F 1 7 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 6 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 3 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 1 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 7 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 5 -player2 > engine: comparing 11 and 1, gives 0 0 0.16555178475119808 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 3 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 6 -player2 > engine: comparing 12 and 1, gives 0 0 0.18857727733719298 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 3 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 5 3 -P 9.319567 21.808874 1 93 5 -P 14.288424 0.622569 2 12 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 13 5 -P 14.743177 12.694819 2 9 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 3 -F 2 5 2 1 22 4 -F 2 5 2 1 22 5 -F 2 5 2 1 22 6 -F 2 5 2 1 22 7 -F 2 5 2 1 22 8 -F 2 5 2 1 22 9 -F 2 5 2 1 22 10 -F 2 5 2 1 22 11 -F 2 5 0 1 11 1 -F 2 5 2 1 22 12 -F 2 5 2 0 11 2 -F 2 7 2 0 11 3 -F 2 5 0 1 11 4 -F 2 8 2 0 11 4 -F 2 4 2 11 11 4 -F 1 62 1 15 13 7 -F 2 6 2 1 22 16 -F 2 3 2 11 11 5 -F 2 7 2 1 22 17 -F 2 8 2 1 22 18 -F 2 6 11 1 13 9 -F 2 7 0 1 11 8 -F 2 4 0 11 4 1 -F 2 2 0 12 4 1 -F 2 9 2 1 22 19 -F 2 5 2 12 13 10 -F 2 5 11 1 13 10 -F 2 3 11 12 7 4 -F 2 8 12 0 4 1 -F 2 6 0 1 11 9 -F 2 3 0 12 4 2 -F 2 7 2 1 22 20 -F 2 4 2 12 13 11 -F 2 5 11 1 13 11 -F 2 3 11 12 7 5 -F 2 7 12 0 4 2 -F 2 6 0 1 11 10 -F 2 3 0 2 11 10 -F 2 1 0 12 4 3 -F 2 7 2 1 22 21 -F 2 5 11 0 4 3 -F 2 3 11 2 11 10 -F 2 6 12 0 4 3 -F 2 3 12 2 13 12 -go - -engine > player2: P 11.803996 11.215721 1 5 3 -P 9.319567 21.808874 2 93 5 -P 14.288424 0.622569 1 12 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 13 5 -P 14.743177 12.694819 1 9 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 3 -F 1 5 2 1 22 4 -F 1 5 2 1 22 5 -F 1 5 2 1 22 6 -F 1 5 2 1 22 7 -F 1 5 2 1 22 8 -F 1 5 2 1 22 9 -F 1 5 2 1 22 10 -F 1 5 2 1 22 11 -F 1 5 0 1 11 1 -F 1 5 2 1 22 12 -F 1 5 2 0 11 2 -F 1 7 2 0 11 3 -F 1 5 0 1 11 4 -F 1 8 2 0 11 4 -F 1 4 2 11 11 4 -F 2 62 1 15 13 7 -F 1 6 2 1 22 16 -F 1 3 2 11 11 5 -F 1 7 2 1 22 17 -F 1 8 2 1 22 18 -F 1 6 11 1 13 9 -F 1 7 0 1 11 8 -F 1 4 0 11 4 1 -F 1 2 0 12 4 1 -F 1 9 2 1 22 19 -F 1 5 2 12 13 10 -F 1 5 11 1 13 10 -F 1 3 11 12 7 4 -F 1 8 12 0 4 1 -F 1 6 0 1 11 9 -F 1 3 0 12 4 2 -F 1 7 2 1 22 20 -F 1 4 2 12 13 11 -F 1 5 11 1 13 11 -F 1 3 11 12 7 5 -F 1 7 12 0 4 2 -F 1 6 0 1 11 10 -F 1 3 0 2 11 10 -F 1 1 0 12 4 3 -F 1 7 2 1 22 21 -F 1 5 11 0 4 3 -F 1 3 11 2 11 10 -F 1 6 12 0 4 3 -F 1 3 12 2 13 12 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0.30635588526193164 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 2 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 6 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 1 0 0.16555178475119808 -player2 > engine: 11 1 6 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 3 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0.18857727733719298 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 4 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 14 3 -P 9.319567 21.808874 1 93 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 13 5 -P 14.743177 12.694819 2 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 2 -F 2 5 2 1 22 3 -F 2 5 2 1 22 4 -F 2 5 2 1 22 5 -F 2 5 2 1 22 6 -F 2 5 2 1 22 7 -F 2 5 2 1 22 8 -F 2 5 2 1 22 9 -F 2 5 2 1 22 10 -F 2 5 2 1 22 11 -F 2 5 2 0 11 1 -F 2 7 2 0 11 2 -F 2 5 0 1 11 3 -F 2 8 2 0 11 3 -F 2 4 2 11 11 3 -F 1 62 1 15 13 6 -F 2 6 2 1 22 15 -F 2 3 2 11 11 4 -F 2 7 2 1 22 16 -F 2 8 2 1 22 17 -F 2 6 11 1 13 8 -F 2 7 0 1 11 7 -F 2 9 2 1 22 18 -F 2 5 2 12 13 9 -F 2 5 11 1 13 9 -F 2 3 11 12 7 3 -F 2 6 0 1 11 8 -F 2 3 0 12 4 1 -F 2 7 2 1 22 19 -F 2 4 2 12 13 10 -F 2 5 11 1 13 10 -F 2 3 11 12 7 4 -F 2 7 12 0 4 1 -F 2 6 0 1 11 9 -F 2 3 0 2 11 9 -F 2 1 0 12 4 2 -F 2 7 2 1 22 20 -F 2 5 11 0 4 2 -F 2 3 11 2 11 9 -F 2 6 12 0 4 2 -F 2 3 12 2 13 11 -F 2 2 0 2 11 10 -F 2 6 2 1 22 21 -F 2 6 11 1 13 12 -F 2 3 11 2 11 10 -F 2 4 12 2 13 12 -go - -engine > player2: P 11.803996 11.215721 1 14 3 -P 9.319567 21.808874 2 93 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 13 5 -P 14.743177 12.694819 1 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 2 -F 1 5 2 1 22 3 -F 1 5 2 1 22 4 -F 1 5 2 1 22 5 -F 1 5 2 1 22 6 -F 1 5 2 1 22 7 -F 1 5 2 1 22 8 -F 1 5 2 1 22 9 -F 1 5 2 1 22 10 -F 1 5 2 1 22 11 -F 1 5 2 0 11 1 -F 1 7 2 0 11 2 -F 1 5 0 1 11 3 -F 1 8 2 0 11 3 -F 1 4 2 11 11 3 -F 2 62 1 15 13 6 -F 1 6 2 1 22 15 -F 1 3 2 11 11 4 -F 1 7 2 1 22 16 -F 1 8 2 1 22 17 -F 1 6 11 1 13 8 -F 1 7 0 1 11 7 -F 1 9 2 1 22 18 -F 1 5 2 12 13 9 -F 1 5 11 1 13 9 -F 1 3 11 12 7 3 -F 1 6 0 1 11 8 -F 1 3 0 12 4 1 -F 1 7 2 1 22 19 -F 1 4 2 12 13 10 -F 1 5 11 1 13 10 -F 1 3 11 12 7 4 -F 1 7 12 0 4 1 -F 1 6 0 1 11 9 -F 1 3 0 2 11 9 -F 1 1 0 12 4 2 -F 1 7 2 1 22 20 -F 1 5 11 0 4 2 -F 1 3 11 2 11 9 -F 1 6 12 0 4 2 -F 1 3 12 2 13 11 -F 1 2 0 2 11 10 -F 1 6 2 1 22 21 -F 1 6 11 1 13 12 -F 1 3 11 2 11 10 -F 1 4 12 2 13 12 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 7 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 3 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 2 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 5 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 1 0 0.16555178475119808 -player2 > engine: 11 1 6 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 3 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 1 0 0.18857727733719298 -player2 > engine: 12 1 6 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 3 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 17 3 -P 9.319567 21.808874 1 98 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 9 5 -P 14.743177 12.694819 2 11 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 1 -F 2 5 2 1 22 2 -F 2 5 2 1 22 3 -F 2 5 2 1 22 4 -F 2 5 2 1 22 5 -F 2 5 2 1 22 6 -F 2 5 2 1 22 7 -F 2 5 2 1 22 8 -F 2 5 2 1 22 9 -F 2 5 2 1 22 10 -F 2 7 2 0 11 1 -F 2 5 0 1 11 2 -F 2 8 2 0 11 2 -F 2 4 2 11 11 2 -F 1 62 1 15 13 5 -F 2 6 2 1 22 14 -F 2 3 2 11 11 3 -F 2 7 2 1 22 15 -F 2 8 2 1 22 16 -F 2 6 11 1 13 7 -F 2 7 0 1 11 6 -F 2 9 2 1 22 17 -F 2 5 2 12 13 8 -F 2 5 11 1 13 8 -F 2 3 11 12 7 2 -F 2 6 0 1 11 7 -F 2 7 2 1 22 18 -F 2 4 2 12 13 9 -F 2 5 11 1 13 9 -F 2 3 11 12 7 3 -F 2 6 0 1 11 8 -F 2 3 0 2 11 8 -F 2 1 0 12 4 1 -F 2 7 2 1 22 19 -F 2 5 11 0 4 1 -F 2 3 11 2 11 8 -F 2 6 12 0 4 1 -F 2 3 12 2 13 10 -F 2 2 0 2 11 9 -F 2 6 2 1 22 20 -F 2 6 11 1 13 11 -F 2 3 11 2 11 9 -F 2 4 12 2 13 11 -F 2 7 0 1 11 10 -F 2 3 0 2 11 10 -F 2 2 0 11 4 3 -F 2 5 2 1 22 21 -F 2 6 11 1 13 12 -F 2 3 11 2 11 10 -F 2 6 12 1 11 10 -F 2 3 12 2 13 12 -go - -engine > player2: P 11.803996 11.215721 1 17 3 -P 9.319567 21.808874 2 98 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 9 5 -P 14.743177 12.694819 1 11 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 1 -F 1 5 2 1 22 2 -F 1 5 2 1 22 3 -F 1 5 2 1 22 4 -F 1 5 2 1 22 5 -F 1 5 2 1 22 6 -F 1 5 2 1 22 7 -F 1 5 2 1 22 8 -F 1 5 2 1 22 9 -F 1 5 2 1 22 10 -F 1 7 2 0 11 1 -F 1 5 0 1 11 2 -F 1 8 2 0 11 2 -F 1 4 2 11 11 2 -F 2 62 1 15 13 5 -F 1 6 2 1 22 14 -F 1 3 2 11 11 3 -F 1 7 2 1 22 15 -F 1 8 2 1 22 16 -F 1 6 11 1 13 7 -F 1 7 0 1 11 6 -F 1 9 2 1 22 17 -F 1 5 2 12 13 8 -F 1 5 11 1 13 8 -F 1 3 11 12 7 2 -F 1 6 0 1 11 7 -F 1 7 2 1 22 18 -F 1 4 2 12 13 9 -F 1 5 11 1 13 9 -F 1 3 11 12 7 3 -F 1 6 0 1 11 8 -F 1 3 0 2 11 8 -F 1 1 0 12 4 1 -F 1 7 2 1 22 19 -F 1 5 11 0 4 1 -F 1 3 11 2 11 8 -F 1 6 12 0 4 1 -F 1 3 12 2 13 10 -F 1 2 0 2 11 9 -F 1 6 2 1 22 20 -F 1 6 11 1 13 11 -F 1 3 11 2 11 9 -F 1 4 12 2 13 11 -F 1 7 0 1 11 10 -F 1 3 0 2 11 10 -F 1 2 0 11 4 3 -F 1 5 2 1 22 21 -F 1 6 11 1 13 12 -F 1 3 11 2 11 10 -F 1 6 12 1 11 10 -F 1 3 12 2 13 12 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 8 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 4 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 2 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 5 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0.16555178475119808 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 4 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 1 0 0.18857727733719298 -player2 > engine: 12 1 5 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 3 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 24 3 -P 9.319567 21.808874 1 98 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 10 5 -P 14.743177 12.694819 2 9 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 1 -F 2 5 2 1 22 2 -F 2 5 2 1 22 3 -F 2 5 2 1 22 4 -F 2 5 2 1 22 5 -F 2 5 2 1 22 6 -F 2 5 2 1 22 7 -F 2 5 2 1 22 8 -F 2 5 2 1 22 9 -F 2 5 0 1 11 1 -F 2 8 2 0 11 1 -F 2 4 2 11 11 1 -F 1 62 1 15 13 4 -F 2 6 2 1 22 13 -F 2 3 2 11 11 2 -F 2 7 2 1 22 14 -F 2 8 2 1 22 15 -F 2 6 11 1 13 6 -F 2 7 0 1 11 5 -F 2 9 2 1 22 16 -F 2 5 2 12 13 7 -F 2 5 11 1 13 7 -F 2 3 11 12 7 1 -F 2 6 0 1 11 6 -F 2 7 2 1 22 17 -F 2 4 2 12 13 8 -F 2 5 11 1 13 8 -F 2 3 11 12 7 2 -F 2 6 0 1 11 7 -F 2 3 0 2 11 7 -F 2 7 2 1 22 18 -F 2 3 11 2 11 7 -F 2 3 12 2 13 9 -F 2 2 0 2 11 8 -F 2 6 2 1 22 19 -F 2 6 11 1 13 10 -F 2 3 11 2 11 8 -F 2 4 12 2 13 10 -F 2 7 0 1 11 9 -F 2 3 0 2 11 9 -F 2 2 0 11 4 2 -F 2 5 2 1 22 20 -F 2 6 11 1 13 11 -F 2 3 11 2 11 9 -F 2 6 12 1 11 9 -F 2 3 12 2 13 11 -F 2 8 0 1 11 10 -F 2 4 0 2 11 10 -F 2 2 0 11 4 3 -F 2 5 2 1 22 21 -F 2 4 11 2 11 10 -F 2 5 12 1 11 10 -F 2 3 12 2 13 12 -go - -engine > player2: P 11.803996 11.215721 1 24 3 -P 9.319567 21.808874 2 98 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 10 5 -P 14.743177 12.694819 1 9 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 1 -F 1 5 2 1 22 2 -F 1 5 2 1 22 3 -F 1 5 2 1 22 4 -F 1 5 2 1 22 5 -F 1 5 2 1 22 6 -F 1 5 2 1 22 7 -F 1 5 2 1 22 8 -F 1 5 2 1 22 9 -F 1 5 0 1 11 1 -F 1 8 2 0 11 1 -F 1 4 2 11 11 1 -F 2 62 1 15 13 4 -F 1 6 2 1 22 13 -F 1 3 2 11 11 2 -F 1 7 2 1 22 14 -F 1 8 2 1 22 15 -F 1 6 11 1 13 6 -F 1 7 0 1 11 5 -F 1 9 2 1 22 16 -F 1 5 2 12 13 7 -F 1 5 11 1 13 7 -F 1 3 11 12 7 1 -F 1 6 0 1 11 6 -F 1 7 2 1 22 17 -F 1 4 2 12 13 8 -F 1 5 11 1 13 8 -F 1 3 11 12 7 2 -F 1 6 0 1 11 7 -F 1 3 0 2 11 7 -F 1 7 2 1 22 18 -F 1 3 11 2 11 7 -F 1 3 12 2 13 9 -F 1 2 0 2 11 8 -F 1 6 2 1 22 19 -F 1 6 11 1 13 10 -F 1 3 11 2 11 8 -F 1 4 12 2 13 10 -F 1 7 0 1 11 9 -F 1 3 0 2 11 9 -F 1 2 0 11 4 2 -F 1 5 2 1 22 20 -F 1 6 11 1 13 11 -F 1 3 11 2 11 9 -F 1 6 12 1 11 9 -F 1 3 12 2 13 11 -F 1 8 0 1 11 10 -F 1 4 0 2 11 10 -F 1 2 0 11 4 3 -F 1 5 2 1 22 21 -F 1 4 11 2 11 10 -F 1 5 12 1 11 10 -F 1 3 12 2 13 12 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 12 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 6 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 3 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 5 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0.16555178475119808 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 5 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0.18857727733719298 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 4 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 26 3 -P 9.319567 21.808874 1 93 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 14 5 -P 14.743177 12.694819 2 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 1 -F 2 5 2 1 22 2 -F 2 5 2 1 22 3 -F 2 5 2 1 22 4 -F 2 5 2 1 22 5 -F 2 5 2 1 22 6 -F 2 5 2 1 22 7 -F 2 5 2 1 22 8 -F 1 62 1 15 13 3 -F 2 6 2 1 22 12 -F 2 3 2 11 11 1 -F 2 7 2 1 22 13 -F 2 8 2 1 22 14 -F 2 6 11 1 13 5 -F 2 7 0 1 11 4 -F 2 9 2 1 22 15 -F 2 5 2 12 13 6 -F 2 5 11 1 13 6 -F 2 6 0 1 11 5 -F 2 7 2 1 22 16 -F 2 4 2 12 13 7 -F 2 5 11 1 13 7 -F 2 3 11 12 7 1 -F 2 6 0 1 11 6 -F 2 3 0 2 11 6 -F 2 7 2 1 22 17 -F 2 3 11 2 11 6 -F 2 3 12 2 13 8 -F 2 2 0 2 11 7 -F 2 6 2 1 22 18 -F 2 6 11 1 13 9 -F 2 3 11 2 11 7 -F 2 4 12 2 13 9 -F 2 7 0 1 11 8 -F 2 3 0 2 11 8 -F 2 2 0 11 4 1 -F 2 5 2 1 22 19 -F 2 6 11 1 13 10 -F 2 3 11 2 11 8 -F 2 6 12 1 11 8 -F 2 3 12 2 13 10 -F 2 8 0 1 11 9 -F 2 4 0 2 11 9 -F 2 2 0 11 4 2 -F 2 5 2 1 22 20 -F 2 4 11 2 11 9 -F 2 5 12 1 11 9 -F 2 3 12 2 13 11 -F 2 6 0 1 11 10 -F 2 3 0 2 11 10 -F 2 5 2 1 22 21 -F 2 5 11 2 11 10 -F 2 4 12 2 13 12 -go - -engine > player2: P 11.803996 11.215721 1 26 3 -P 9.319567 21.808874 2 93 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 14 5 -P 14.743177 12.694819 1 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 1 -F 1 5 2 1 22 2 -F 1 5 2 1 22 3 -F 1 5 2 1 22 4 -F 1 5 2 1 22 5 -F 1 5 2 1 22 6 -F 1 5 2 1 22 7 -F 1 5 2 1 22 8 -F 2 62 1 15 13 3 -F 1 6 2 1 22 12 -F 1 3 2 11 11 1 -F 1 7 2 1 22 13 -F 1 8 2 1 22 14 -F 1 6 11 1 13 5 -F 1 7 0 1 11 4 -F 1 9 2 1 22 15 -F 1 5 2 12 13 6 -F 1 5 11 1 13 6 -F 1 6 0 1 11 5 -F 1 7 2 1 22 16 -F 1 4 2 12 13 7 -F 1 5 11 1 13 7 -F 1 3 11 12 7 1 -F 1 6 0 1 11 6 -F 1 3 0 2 11 6 -F 1 7 2 1 22 17 -F 1 3 11 2 11 6 -F 1 3 12 2 13 8 -F 1 2 0 2 11 7 -F 1 6 2 1 22 18 -F 1 6 11 1 13 9 -F 1 3 11 2 11 7 -F 1 4 12 2 13 9 -F 1 7 0 1 11 8 -F 1 3 0 2 11 8 -F 1 2 0 11 4 1 -F 1 5 2 1 22 19 -F 1 6 11 1 13 10 -F 1 3 11 2 11 8 -F 1 6 12 1 11 8 -F 1 3 12 2 13 10 -F 1 8 0 1 11 9 -F 1 4 0 2 11 9 -F 1 2 0 11 4 2 -F 1 5 2 1 22 20 -F 1 4 11 2 11 9 -F 1 5 12 1 11 9 -F 1 3 12 2 13 11 -F 1 6 0 1 11 10 -F 1 3 0 2 11 10 -F 1 5 2 1 22 21 -F 1 5 11 2 11 10 -F 1 4 12 2 13 12 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 13 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 6 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 3 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 2 0 -player2 > engine: 2 0 5 -player2 > engine: comparing 2 and 1, gives 0 0 0.09190677065479348 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 7 -player2 > engine: comparing 11 and 1, gives 0 0 0.16555178475119808 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 3 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 6 -player2 > engine: comparing 12 and 1, gives 0 0 0.18857727733719298 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 3 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 20 3 -P 9.319567 21.808874 1 93 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 14 5 -P 14.743177 12.694819 2 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 1 -F 2 5 2 1 22 2 -F 2 5 2 1 22 3 -F 2 5 2 1 22 4 -F 2 5 2 1 22 5 -F 2 5 2 1 22 6 -F 2 5 2 1 22 7 -F 1 62 1 15 13 2 -F 2 6 2 1 22 11 -F 2 7 2 1 22 12 -F 2 8 2 1 22 13 -F 2 6 11 1 13 4 -F 2 7 0 1 11 3 -F 2 9 2 1 22 14 -F 2 5 2 12 13 5 -F 2 5 11 1 13 5 -F 2 6 0 1 11 4 -F 2 7 2 1 22 15 -F 2 4 2 12 13 6 -F 2 5 11 1 13 6 -F 2 6 0 1 11 5 -F 2 3 0 2 11 5 -F 2 7 2 1 22 16 -F 2 3 11 2 11 5 -F 2 3 12 2 13 7 -F 2 2 0 2 11 6 -F 2 6 2 1 22 17 -F 2 6 11 1 13 8 -F 2 3 11 2 11 6 -F 2 4 12 2 13 8 -F 2 7 0 1 11 7 -F 2 3 0 2 11 7 -F 2 5 2 1 22 18 -F 2 6 11 1 13 9 -F 2 3 11 2 11 7 -F 2 6 12 1 11 7 -F 2 3 12 2 13 9 -F 2 8 0 1 11 8 -F 2 4 0 2 11 8 -F 2 2 0 11 4 1 -F 2 5 2 1 22 19 -F 2 4 11 2 11 8 -F 2 5 12 1 11 8 -F 2 3 12 2 13 10 -F 2 6 0 1 11 9 -F 2 3 0 2 11 9 -F 2 5 2 1 22 20 -F 2 5 11 2 11 9 -F 2 4 12 2 13 11 -F 2 6 0 1 11 10 -F 2 3 0 2 11 10 -F 2 5 2 0 11 10 -F 2 7 11 0 4 3 -F 2 3 11 2 11 10 -F 2 6 12 0 4 3 -F 2 3 12 2 13 12 -go - -engine > player2: P 11.803996 11.215721 1 20 3 -P 9.319567 21.808874 2 93 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 14 5 -P 14.743177 12.694819 1 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 1 -F 1 5 2 1 22 2 -F 1 5 2 1 22 3 -F 1 5 2 1 22 4 -F 1 5 2 1 22 5 -F 1 5 2 1 22 6 -F 1 5 2 1 22 7 -F 2 62 1 15 13 2 -F 1 6 2 1 22 11 -F 1 7 2 1 22 12 -F 1 8 2 1 22 13 -F 1 6 11 1 13 4 -F 1 7 0 1 11 3 -F 1 9 2 1 22 14 -F 1 5 2 12 13 5 -F 1 5 11 1 13 5 -F 1 6 0 1 11 4 -F 1 7 2 1 22 15 -F 1 4 2 12 13 6 -F 1 5 11 1 13 6 -F 1 6 0 1 11 5 -F 1 3 0 2 11 5 -F 1 7 2 1 22 16 -F 1 3 11 2 11 5 -F 1 3 12 2 13 7 -F 1 2 0 2 11 6 -F 1 6 2 1 22 17 -F 1 6 11 1 13 8 -F 1 3 11 2 11 6 -F 1 4 12 2 13 8 -F 1 7 0 1 11 7 -F 1 3 0 2 11 7 -F 1 5 2 1 22 18 -F 1 6 11 1 13 9 -F 1 3 11 2 11 7 -F 1 6 12 1 11 7 -F 1 3 12 2 13 9 -F 1 8 0 1 11 8 -F 1 4 0 2 11 8 -F 1 2 0 11 4 1 -F 1 5 2 1 22 19 -F 1 4 11 2 11 8 -F 1 5 12 1 11 8 -F 1 3 12 2 13 10 -F 1 6 0 1 11 9 -F 1 3 0 2 11 9 -F 1 5 2 1 22 20 -F 1 5 11 2 11 9 -F 1 4 12 2 13 11 -F 1 6 0 1 11 10 -F 1 3 0 2 11 10 -F 1 5 2 0 11 10 -F 1 7 11 0 4 3 -F 1 3 11 2 11 10 -F 1 6 12 0 4 3 -F 1 3 12 2 13 12 -go - -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 10 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 5 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 5 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player1 > engine: go -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 2 0 -player2 > engine: 2 12 1 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 7 -player2 > engine: comparing 11 and 1, gives 0 0 0.16555178475119808 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 3 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 2 0 -player2 > engine: 11 12 2 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 6 -player2 > engine: comparing 12 and 1, gives 0 0 0.18857727733719298 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 3 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 1 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 6 3 -P 9.319567 21.808874 1 93 5 -P 14.288424 0.622569 2 10 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 9 5 -P 14.743177 12.694819 2 8 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 1 -F 2 5 2 1 22 2 -F 2 5 2 1 22 3 -F 2 5 2 1 22 4 -F 2 5 2 1 22 5 -F 2 5 2 1 22 6 -F 1 62 1 15 13 1 -F 2 6 2 1 22 10 -F 2 7 2 1 22 11 -F 2 8 2 1 22 12 -F 2 6 11 1 13 3 -F 2 7 0 1 11 2 -F 2 9 2 1 22 13 -F 2 5 2 12 13 4 -F 2 5 11 1 13 4 -F 2 6 0 1 11 3 -F 2 7 2 1 22 14 -F 2 4 2 12 13 5 -F 2 5 11 1 13 5 -F 2 6 0 1 11 4 -F 2 3 0 2 11 4 -F 2 7 2 1 22 15 -F 2 3 11 2 11 4 -F 2 3 12 2 13 6 -F 2 2 0 2 11 5 -F 2 6 2 1 22 16 -F 2 6 11 1 13 7 -F 2 3 11 2 11 5 -F 2 4 12 2 13 7 -F 2 7 0 1 11 6 -F 2 3 0 2 11 6 -F 2 5 2 1 22 17 -F 2 6 11 1 13 8 -F 2 3 11 2 11 6 -F 2 6 12 1 11 6 -F 2 3 12 2 13 8 -F 2 8 0 1 11 7 -F 2 4 0 2 11 7 -F 2 5 2 1 22 18 -F 2 4 11 2 11 7 -F 2 5 12 1 11 7 -F 2 3 12 2 13 9 -F 2 6 0 1 11 8 -F 2 3 0 2 11 8 -F 2 5 2 1 22 19 -F 2 5 11 2 11 8 -F 2 4 12 2 13 10 -F 2 6 0 1 11 9 -F 2 3 0 2 11 9 -F 2 5 2 0 11 9 -F 2 7 11 0 4 2 -F 2 3 11 2 11 9 -F 2 6 12 0 4 2 -F 2 3 12 2 13 11 -F 2 10 0 1 11 10 -F 2 5 0 2 11 10 -F 2 2 0 12 4 3 -F 2 5 2 1 22 21 -F 2 1 2 12 13 12 -F 2 7 11 0 4 3 -F 2 3 11 2 11 10 -F 2 2 11 12 7 6 -F 2 6 12 0 4 3 -F 2 3 12 2 13 12 -go - -engine > player2: P 11.803996 11.215721 1 6 3 -P 9.319567 21.808874 2 93 5 -P 14.288424 0.622569 1 10 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 9 5 -P 14.743177 12.694819 1 8 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 0 59 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 1 -F 1 5 2 1 22 2 -F 1 5 2 1 22 3 -F 1 5 2 1 22 4 -F 1 5 2 1 22 5 -F 1 5 2 1 22 6 -F 2 62 1 15 13 1 -F 1 6 2 1 22 10 -F 1 7 2 1 22 11 -F 1 8 2 1 22 12 -F 1 6 11 1 13 3 -F 1 7 0 1 11 2 -F 1 9 2 1 22 13 -F 1 5 2 12 13 4 -F 1 5 11 1 13 4 -F 1 6 0 1 11 3 -F 1 7 2 1 22 14 -F 1 4 2 12 13 5 -F 1 5 11 1 13 5 -F 1 6 0 1 11 4 -F 1 3 0 2 11 4 -F 1 7 2 1 22 15 -F 1 3 11 2 11 4 -F 1 3 12 2 13 6 -F 1 2 0 2 11 5 -F 1 6 2 1 22 16 -F 1 6 11 1 13 7 -F 1 3 11 2 11 5 -F 1 4 12 2 13 7 -F 1 7 0 1 11 6 -F 1 3 0 2 11 6 -F 1 5 2 1 22 17 -F 1 6 11 1 13 8 -F 1 3 11 2 11 6 -F 1 6 12 1 11 6 -F 1 3 12 2 13 8 -F 1 8 0 1 11 7 -F 1 4 0 2 11 7 -F 1 5 2 1 22 18 -F 1 4 11 2 11 7 -F 1 5 12 1 11 7 -F 1 3 12 2 13 9 -F 1 6 0 1 11 8 -F 1 3 0 2 11 8 -F 1 5 2 1 22 19 -F 1 5 11 2 11 8 -F 1 4 12 2 13 10 -F 1 6 0 1 11 9 -F 1 3 0 2 11 9 -F 1 5 2 0 11 9 -F 1 7 11 0 4 2 -F 1 3 11 2 11 9 -F 1 6 12 0 4 2 -F 1 3 12 2 13 11 -F 1 10 0 1 11 10 -F 1 5 0 2 11 10 -F 1 2 0 12 4 3 -F 1 5 2 1 22 21 -F 1 1 2 12 13 12 -F 1 7 11 0 4 3 -F 1 3 11 2 11 10 -F 1 2 11 12 7 6 -F 1 6 12 0 4 3 -F 1 3 12 2 13 12 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0.30635588526193164 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 3 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 1 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0.09190677065479348 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 5 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 2 0 -player2 > engine: 2 11 2 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 4 -player2 > engine: comparing 11 and 1, gives 0 0 0.16555178475119808 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 2 0 -player2 > engine: 11 11 2 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 4 -player2 > engine: comparing 12 and 1, gives 0 0 0.18857727733719298 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 2 0 -player2 > engine: 12 11 2 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 5 3 -P 9.319567 21.808874 1 93 5 -P 14.288424 0.622569 2 13 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 10 5 -P 14.743177 12.694819 2 7 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 3 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 1 -F 2 5 2 1 22 2 -F 2 5 2 1 22 3 -F 2 5 2 1 22 4 -F 2 5 2 1 22 5 -F 2 6 2 1 22 9 -F 2 7 2 1 22 10 -F 2 8 2 1 22 11 -F 2 6 11 1 13 2 -F 2 7 0 1 11 1 -F 2 9 2 1 22 12 -F 2 5 2 12 13 3 -F 2 5 11 1 13 3 -F 2 6 0 1 11 2 -F 2 7 2 1 22 13 -F 2 4 2 12 13 4 -F 2 5 11 1 13 4 -F 2 6 0 1 11 3 -F 2 3 0 2 11 3 -F 2 7 2 1 22 14 -F 2 3 11 2 11 3 -F 2 3 12 2 13 5 -F 2 2 0 2 11 4 -F 2 6 2 1 22 15 -F 2 6 11 1 13 6 -F 2 3 11 2 11 4 -F 2 4 12 2 13 6 -F 2 7 0 1 11 5 -F 2 3 0 2 11 5 -F 2 5 2 1 22 16 -F 2 6 11 1 13 7 -F 2 3 11 2 11 5 -F 2 6 12 1 11 5 -F 2 3 12 2 13 7 -F 2 8 0 1 11 6 -F 2 4 0 2 11 6 -F 2 5 2 1 22 17 -F 2 4 11 2 11 6 -F 2 5 12 1 11 6 -F 2 3 12 2 13 8 -F 2 6 0 1 11 7 -F 2 3 0 2 11 7 -F 2 5 2 1 22 18 -F 2 5 11 2 11 7 -F 2 4 12 2 13 9 -F 2 6 0 1 11 8 -F 2 3 0 2 11 8 -F 2 5 2 0 11 8 -F 2 7 11 0 4 1 -F 2 3 11 2 11 8 -F 2 6 12 0 4 1 -F 2 3 12 2 13 10 -F 2 10 0 1 11 9 -F 2 5 0 2 11 9 -F 2 2 0 12 4 2 -F 2 5 2 1 22 20 -F 2 1 2 12 13 11 -F 2 7 11 0 4 2 -F 2 3 11 2 11 9 -F 2 2 11 12 7 5 -F 2 6 12 0 4 2 -F 2 3 12 2 13 11 -F 2 3 0 11 4 3 -F 2 1 0 12 4 3 -F 2 2 2 11 11 10 -F 2 4 11 0 4 3 -F 2 4 12 0 4 3 -F 2 2 12 11 7 6 -go - -engine > player2: P 11.803996 11.215721 1 5 3 -P 9.319567 21.808874 2 93 5 -P 14.288424 0.622569 1 13 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 10 5 -P 14.743177 12.694819 1 7 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 3 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 1 -F 1 5 2 1 22 2 -F 1 5 2 1 22 3 -F 1 5 2 1 22 4 -F 1 5 2 1 22 5 -F 1 6 2 1 22 9 -F 1 7 2 1 22 10 -F 1 8 2 1 22 11 -F 1 6 11 1 13 2 -F 1 7 0 1 11 1 -F 1 9 2 1 22 12 -F 1 5 2 12 13 3 -F 1 5 11 1 13 3 -F 1 6 0 1 11 2 -F 1 7 2 1 22 13 -F 1 4 2 12 13 4 -F 1 5 11 1 13 4 -F 1 6 0 1 11 3 -F 1 3 0 2 11 3 -F 1 7 2 1 22 14 -F 1 3 11 2 11 3 -F 1 3 12 2 13 5 -F 1 2 0 2 11 4 -F 1 6 2 1 22 15 -F 1 6 11 1 13 6 -F 1 3 11 2 11 4 -F 1 4 12 2 13 6 -F 1 7 0 1 11 5 -F 1 3 0 2 11 5 -F 1 5 2 1 22 16 -F 1 6 11 1 13 7 -F 1 3 11 2 11 5 -F 1 6 12 1 11 5 -F 1 3 12 2 13 7 -F 1 8 0 1 11 6 -F 1 4 0 2 11 6 -F 1 5 2 1 22 17 -F 1 4 11 2 11 6 -F 1 5 12 1 11 6 -F 1 3 12 2 13 8 -F 1 6 0 1 11 7 -F 1 3 0 2 11 7 -F 1 5 2 1 22 18 -F 1 5 11 2 11 7 -F 1 4 12 2 13 9 -F 1 6 0 1 11 8 -F 1 3 0 2 11 8 -F 1 5 2 0 11 8 -F 1 7 11 0 4 1 -F 1 3 11 2 11 8 -F 1 6 12 0 4 1 -F 1 3 12 2 13 10 -F 1 10 0 1 11 9 -F 1 5 0 2 11 9 -F 1 2 0 12 4 2 -F 1 5 2 1 22 20 -F 1 1 2 12 13 11 -F 1 7 11 0 4 2 -F 1 3 11 2 11 9 -F 1 2 11 12 7 5 -F 1 6 12 0 4 2 -F 1 3 12 2 13 11 -F 1 3 0 11 4 3 -F 1 1 0 12 4 3 -F 1 2 2 11 11 10 -F 1 4 11 0 4 3 -F 1 4 12 0 4 3 -F 1 2 12 11 7 6 -go - -player1 > engine: 15 18 1 -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0.30635588526193164 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 2 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 1 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 6 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0.16555178475119808 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 2 0 -player2 > engine: 11 11 5 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0.18857727733719298 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 18 3 -P 9.319567 21.808874 1 86 5 -P 14.288424 0.622569 2 12 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 15 5 -P 14.743177 12.694819 2 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 5 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 1 -F 2 5 2 1 22 2 -F 2 5 2 1 22 3 -F 2 5 2 1 22 4 -F 2 6 2 1 22 8 -F 2 7 2 1 22 9 -F 2 8 2 1 22 10 -F 2 6 11 1 13 1 -F 2 9 2 1 22 11 -F 2 5 2 12 13 2 -F 2 5 11 1 13 2 -F 2 6 0 1 11 1 -F 2 7 2 1 22 12 -F 2 4 2 12 13 3 -F 2 5 11 1 13 3 -F 2 6 0 1 11 2 -F 2 3 0 2 11 2 -F 2 7 2 1 22 13 -F 2 3 11 2 11 2 -F 2 3 12 2 13 4 -F 2 2 0 2 11 3 -F 2 6 2 1 22 14 -F 2 6 11 1 13 5 -F 2 3 11 2 11 3 -F 2 4 12 2 13 5 -F 2 7 0 1 11 4 -F 2 3 0 2 11 4 -F 2 5 2 1 22 15 -F 2 6 11 1 13 6 -F 2 3 11 2 11 4 -F 2 6 12 1 11 4 -F 2 3 12 2 13 6 -F 2 8 0 1 11 5 -F 2 4 0 2 11 5 -F 2 5 2 1 22 16 -F 2 4 11 2 11 5 -F 2 5 12 1 11 5 -F 2 3 12 2 13 7 -F 2 6 0 1 11 6 -F 2 3 0 2 11 6 -F 2 5 2 1 22 17 -F 2 5 11 2 11 6 -F 2 4 12 2 13 8 -F 2 6 0 1 11 7 -F 2 3 0 2 11 7 -F 2 5 2 0 11 7 -F 2 3 11 2 11 7 -F 2 3 12 2 13 9 -F 2 10 0 1 11 8 -F 2 5 0 2 11 8 -F 2 2 0 12 4 1 -F 2 5 2 1 22 19 -F 2 1 2 12 13 10 -F 2 7 11 0 4 1 -F 2 3 11 2 11 8 -F 2 2 11 12 7 4 -F 2 6 12 0 4 1 -F 2 3 12 2 13 10 -F 2 3 0 11 4 2 -F 2 1 0 12 4 2 -F 2 2 2 11 11 9 -F 2 4 11 0 4 2 -F 2 4 12 0 4 2 -F 2 2 12 11 7 5 -F 1 1 15 18 14 13 -F 2 2 0 11 4 3 -F 2 1 0 12 4 3 -F 2 6 2 1 22 21 -go - -engine > player2: P 11.803996 11.215721 1 18 3 -P 9.319567 21.808874 2 86 5 -P 14.288424 0.622569 1 12 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 15 5 -P 14.743177 12.694819 1 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 5 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 1 -F 1 5 2 1 22 2 -F 1 5 2 1 22 3 -F 1 5 2 1 22 4 -F 1 6 2 1 22 8 -F 1 7 2 1 22 9 -F 1 8 2 1 22 10 -F 1 6 11 1 13 1 -F 1 9 2 1 22 11 -F 1 5 2 12 13 2 -F 1 5 11 1 13 2 -F 1 6 0 1 11 1 -F 1 7 2 1 22 12 -F 1 4 2 12 13 3 -F 1 5 11 1 13 3 -F 1 6 0 1 11 2 -F 1 3 0 2 11 2 -F 1 7 2 1 22 13 -F 1 3 11 2 11 2 -F 1 3 12 2 13 4 -F 1 2 0 2 11 3 -F 1 6 2 1 22 14 -F 1 6 11 1 13 5 -F 1 3 11 2 11 3 -F 1 4 12 2 13 5 -F 1 7 0 1 11 4 -F 1 3 0 2 11 4 -F 1 5 2 1 22 15 -F 1 6 11 1 13 6 -F 1 3 11 2 11 4 -F 1 6 12 1 11 4 -F 1 3 12 2 13 6 -F 1 8 0 1 11 5 -F 1 4 0 2 11 5 -F 1 5 2 1 22 16 -F 1 4 11 2 11 5 -F 1 5 12 1 11 5 -F 1 3 12 2 13 7 -F 1 6 0 1 11 6 -F 1 3 0 2 11 6 -F 1 5 2 1 22 17 -F 1 5 11 2 11 6 -F 1 4 12 2 13 8 -F 1 6 0 1 11 7 -F 1 3 0 2 11 7 -F 1 5 2 0 11 7 -F 1 3 11 2 11 7 -F 1 3 12 2 13 9 -F 1 10 0 1 11 8 -F 1 5 0 2 11 8 -F 1 2 0 12 4 1 -F 1 5 2 1 22 19 -F 1 1 2 12 13 10 -F 1 7 11 0 4 1 -F 1 3 11 2 11 8 -F 1 2 11 12 7 4 -F 1 6 12 0 4 1 -F 1 3 12 2 13 10 -F 1 3 0 11 4 2 -F 1 1 0 12 4 2 -F 1 2 2 11 11 9 -F 1 4 11 0 4 2 -F 1 4 12 0 4 2 -F 1 2 12 11 7 5 -F 2 1 15 18 14 13 -F 1 2 0 11 4 3 -F 1 1 0 12 4 3 -F 1 6 2 1 22 21 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 9 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 4 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 6 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 1 0 0.16555178475119808 -player2 > engine: 11 1 7 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 1 0 0.18857727733719298 -player2 > engine: 12 1 6 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 21 3 -P 9.319567 21.808874 1 74 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 13 5 -P 14.743177 12.694819 2 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 8 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 1 -F 2 5 2 1 22 2 -F 2 5 2 1 22 3 -F 2 6 2 1 22 7 -F 2 7 2 1 22 8 -F 2 8 2 1 22 9 -F 2 9 2 1 22 10 -F 2 5 2 12 13 1 -F 2 5 11 1 13 1 -F 2 7 2 1 22 11 -F 2 4 2 12 13 2 -F 2 5 11 1 13 2 -F 2 6 0 1 11 1 -F 2 3 0 2 11 1 -F 2 7 2 1 22 12 -F 2 3 11 2 11 1 -F 2 3 12 2 13 3 -F 2 2 0 2 11 2 -F 2 6 2 1 22 13 -F 2 6 11 1 13 4 -F 2 3 11 2 11 2 -F 2 4 12 2 13 4 -F 2 7 0 1 11 3 -F 2 3 0 2 11 3 -F 2 5 2 1 22 14 -F 2 6 11 1 13 5 -F 2 3 11 2 11 3 -F 2 6 12 1 11 3 -F 2 3 12 2 13 5 -F 2 8 0 1 11 4 -F 2 4 0 2 11 4 -F 2 5 2 1 22 15 -F 2 4 11 2 11 4 -F 2 5 12 1 11 4 -F 2 3 12 2 13 6 -F 2 6 0 1 11 5 -F 2 3 0 2 11 5 -F 2 5 2 1 22 16 -F 2 5 11 2 11 5 -F 2 4 12 2 13 7 -F 2 6 0 1 11 6 -F 2 3 0 2 11 6 -F 2 5 2 0 11 6 -F 2 3 11 2 11 6 -F 2 3 12 2 13 8 -F 2 10 0 1 11 7 -F 2 5 0 2 11 7 -F 2 5 2 1 22 18 -F 2 1 2 12 13 9 -F 2 3 11 2 11 7 -F 2 2 11 12 7 3 -F 2 3 12 2 13 9 -F 2 3 0 11 4 1 -F 2 1 0 12 4 1 -F 2 2 2 11 11 8 -F 2 4 11 0 4 1 -F 2 4 12 0 4 1 -F 2 2 12 11 7 4 -F 1 1 15 18 14 12 -F 2 2 0 11 4 2 -F 2 1 0 12 4 2 -F 2 6 2 1 22 20 -F 2 9 0 1 11 10 -F 2 4 0 11 4 3 -F 2 6 2 1 22 21 -F 2 7 11 1 13 12 -F 2 6 12 1 11 10 -go - -engine > player2: P 11.803996 11.215721 1 21 3 -P 9.319567 21.808874 2 74 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 13 5 -P 14.743177 12.694819 1 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 8 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 1 -F 1 5 2 1 22 2 -F 1 5 2 1 22 3 -F 1 6 2 1 22 7 -F 1 7 2 1 22 8 -F 1 8 2 1 22 9 -F 1 9 2 1 22 10 -F 1 5 2 12 13 1 -F 1 5 11 1 13 1 -F 1 7 2 1 22 11 -F 1 4 2 12 13 2 -F 1 5 11 1 13 2 -F 1 6 0 1 11 1 -F 1 3 0 2 11 1 -F 1 7 2 1 22 12 -F 1 3 11 2 11 1 -F 1 3 12 2 13 3 -F 1 2 0 2 11 2 -F 1 6 2 1 22 13 -F 1 6 11 1 13 4 -F 1 3 11 2 11 2 -F 1 4 12 2 13 4 -F 1 7 0 1 11 3 -F 1 3 0 2 11 3 -F 1 5 2 1 22 14 -F 1 6 11 1 13 5 -F 1 3 11 2 11 3 -F 1 6 12 1 11 3 -F 1 3 12 2 13 5 -F 1 8 0 1 11 4 -F 1 4 0 2 11 4 -F 1 5 2 1 22 15 -F 1 4 11 2 11 4 -F 1 5 12 1 11 4 -F 1 3 12 2 13 6 -F 1 6 0 1 11 5 -F 1 3 0 2 11 5 -F 1 5 2 1 22 16 -F 1 5 11 2 11 5 -F 1 4 12 2 13 7 -F 1 6 0 1 11 6 -F 1 3 0 2 11 6 -F 1 5 2 0 11 6 -F 1 3 11 2 11 6 -F 1 3 12 2 13 8 -F 1 10 0 1 11 7 -F 1 5 0 2 11 7 -F 1 5 2 1 22 18 -F 1 1 2 12 13 9 -F 1 3 11 2 11 7 -F 1 2 11 12 7 3 -F 1 3 12 2 13 9 -F 1 3 0 11 4 1 -F 1 1 0 12 4 1 -F 1 2 2 11 11 8 -F 1 4 11 0 4 1 -F 1 4 12 0 4 1 -F 1 2 12 11 7 4 -F 2 1 15 18 14 12 -F 1 2 0 11 4 2 -F 1 1 0 12 4 2 -F 1 6 2 1 22 20 -F 1 9 0 1 11 10 -F 1 4 0 11 4 3 -F 1 6 2 1 22 21 -F 1 7 11 1 13 12 -F 1 6 12 1 11 10 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 10 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 5 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 5 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 1 0 0.16555178475119808 -player2 > engine: 11 1 6 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 1 0 0.18857727733719298 -player2 > engine: 12 1 6 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 27 3 -P 9.319567 21.808874 1 63 5 -P 14.288424 0.622569 2 17 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 15 5 -P 14.743177 12.694819 2 18 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 11 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 1 -F 2 5 2 1 22 2 -F 2 6 2 1 22 6 -F 2 7 2 1 22 7 -F 2 8 2 1 22 8 -F 2 9 2 1 22 9 -F 2 7 2 1 22 10 -F 2 4 2 12 13 1 -F 2 5 11 1 13 1 -F 2 7 2 1 22 11 -F 2 3 12 2 13 2 -F 2 2 0 2 11 1 -F 2 6 2 1 22 12 -F 2 6 11 1 13 3 -F 2 3 11 2 11 1 -F 2 4 12 2 13 3 -F 2 7 0 1 11 2 -F 2 3 0 2 11 2 -F 2 5 2 1 22 13 -F 2 6 11 1 13 4 -F 2 3 11 2 11 2 -F 2 6 12 1 11 2 -F 2 3 12 2 13 4 -F 2 8 0 1 11 3 -F 2 4 0 2 11 3 -F 2 5 2 1 22 14 -F 2 4 11 2 11 3 -F 2 5 12 1 11 3 -F 2 3 12 2 13 5 -F 2 6 0 1 11 4 -F 2 3 0 2 11 4 -F 2 5 2 1 22 15 -F 2 5 11 2 11 4 -F 2 4 12 2 13 6 -F 2 6 0 1 11 5 -F 2 3 0 2 11 5 -F 2 5 2 0 11 5 -F 2 3 11 2 11 5 -F 2 3 12 2 13 7 -F 2 10 0 1 11 6 -F 2 5 0 2 11 6 -F 2 5 2 1 22 17 -F 2 1 2 12 13 8 -F 2 3 11 2 11 6 -F 2 2 11 12 7 2 -F 2 3 12 2 13 8 -F 2 2 2 11 11 7 -F 2 2 12 11 7 3 -F 1 1 15 18 14 11 -F 2 2 0 11 4 1 -F 2 1 0 12 4 1 -F 2 6 2 1 22 19 -F 2 9 0 1 11 9 -F 2 4 0 11 4 2 -F 2 6 2 1 22 20 -F 2 7 11 1 13 11 -F 2 6 12 1 11 9 -F 2 5 0 1 11 10 -F 2 5 2 1 22 21 -F 2 6 11 1 13 12 -F 2 6 12 1 11 10 -go - -engine > player2: P 11.803996 11.215721 1 27 3 -P 9.319567 21.808874 2 63 5 -P 14.288424 0.622569 1 17 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 15 5 -P 14.743177 12.694819 1 18 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 11 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 1 -F 1 5 2 1 22 2 -F 1 6 2 1 22 6 -F 1 7 2 1 22 7 -F 1 8 2 1 22 8 -F 1 9 2 1 22 9 -F 1 7 2 1 22 10 -F 1 4 2 12 13 1 -F 1 5 11 1 13 1 -F 1 7 2 1 22 11 -F 1 3 12 2 13 2 -F 1 2 0 2 11 1 -F 1 6 2 1 22 12 -F 1 6 11 1 13 3 -F 1 3 11 2 11 1 -F 1 4 12 2 13 3 -F 1 7 0 1 11 2 -F 1 3 0 2 11 2 -F 1 5 2 1 22 13 -F 1 6 11 1 13 4 -F 1 3 11 2 11 2 -F 1 6 12 1 11 2 -F 1 3 12 2 13 4 -F 1 8 0 1 11 3 -F 1 4 0 2 11 3 -F 1 5 2 1 22 14 -F 1 4 11 2 11 3 -F 1 5 12 1 11 3 -F 1 3 12 2 13 5 -F 1 6 0 1 11 4 -F 1 3 0 2 11 4 -F 1 5 2 1 22 15 -F 1 5 11 2 11 4 -F 1 4 12 2 13 6 -F 1 6 0 1 11 5 -F 1 3 0 2 11 5 -F 1 5 2 0 11 5 -F 1 3 11 2 11 5 -F 1 3 12 2 13 7 -F 1 10 0 1 11 6 -F 1 5 0 2 11 6 -F 1 5 2 1 22 17 -F 1 1 2 12 13 8 -F 1 3 11 2 11 6 -F 1 2 11 12 7 2 -F 1 3 12 2 13 8 -F 1 2 2 11 11 7 -F 1 2 12 11 7 3 -F 2 1 15 18 14 11 -F 1 2 0 11 4 1 -F 1 1 0 12 4 1 -F 1 6 2 1 22 19 -F 1 9 0 1 11 9 -F 1 4 0 11 4 2 -F 1 6 2 1 22 20 -F 1 7 11 1 13 11 -F 1 6 12 1 11 9 -F 1 5 0 1 11 10 -F 1 5 2 1 22 21 -F 1 6 11 1 13 12 -F 1 6 12 1 11 10 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 13 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 7 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 3 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 2 0 -player2 > engine: 2 0 8 -player2 > engine: comparing 2 and 1, gives 0 0 0.09190677065479348 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 7 -player2 > engine: comparing 11 and 1, gives 0 0 0.16555178475119808 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 9 -player2 > engine: comparing 12 and 1, gives 0 0 0.18857727733719298 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 20 3 -P 9.319567 21.808874 1 58 5 -P 14.288424 0.622569 2 19 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 15 5 -P 14.743177 12.694819 2 19 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 14 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 1 -F 2 6 2 1 22 5 -F 2 7 2 1 22 6 -F 2 8 2 1 22 7 -F 2 9 2 1 22 8 -F 2 7 2 1 22 9 -F 2 7 2 1 22 10 -F 2 3 12 2 13 1 -F 2 6 2 1 22 11 -F 2 6 11 1 13 2 -F 2 4 12 2 13 2 -F 2 7 0 1 11 1 -F 2 3 0 2 11 1 -F 2 5 2 1 22 12 -F 2 6 11 1 13 3 -F 2 3 11 2 11 1 -F 2 6 12 1 11 1 -F 2 3 12 2 13 3 -F 2 8 0 1 11 2 -F 2 4 0 2 11 2 -F 2 5 2 1 22 13 -F 2 4 11 2 11 2 -F 2 5 12 1 11 2 -F 2 3 12 2 13 4 -F 2 6 0 1 11 3 -F 2 3 0 2 11 3 -F 2 5 2 1 22 14 -F 2 5 11 2 11 3 -F 2 4 12 2 13 5 -F 2 6 0 1 11 4 -F 2 3 0 2 11 4 -F 2 5 2 0 11 4 -F 2 3 11 2 11 4 -F 2 3 12 2 13 6 -F 2 10 0 1 11 5 -F 2 5 0 2 11 5 -F 2 5 2 1 22 16 -F 2 1 2 12 13 7 -F 2 3 11 2 11 5 -F 2 2 11 12 7 1 -F 2 3 12 2 13 7 -F 2 2 2 11 11 6 -F 2 2 12 11 7 2 -F 1 1 15 18 14 10 -F 2 6 2 1 22 18 -F 2 9 0 1 11 8 -F 2 4 0 11 4 1 -F 2 6 2 1 22 19 -F 2 7 11 1 13 10 -F 2 6 12 1 11 8 -F 2 5 0 1 11 9 -F 2 5 2 1 22 20 -F 2 6 11 1 13 11 -F 2 6 12 1 11 9 -F 2 7 0 1 11 10 -F 2 3 0 11 4 3 -F 2 8 2 0 11 10 -F 2 7 11 0 4 3 -F 2 9 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 20 3 -P 9.319567 21.808874 2 58 5 -P 14.288424 0.622569 1 19 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 15 5 -P 14.743177 12.694819 1 19 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 14 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 1 -F 1 6 2 1 22 5 -F 1 7 2 1 22 6 -F 1 8 2 1 22 7 -F 1 9 2 1 22 8 -F 1 7 2 1 22 9 -F 1 7 2 1 22 10 -F 1 3 12 2 13 1 -F 1 6 2 1 22 11 -F 1 6 11 1 13 2 -F 1 4 12 2 13 2 -F 1 7 0 1 11 1 -F 1 3 0 2 11 1 -F 1 5 2 1 22 12 -F 1 6 11 1 13 3 -F 1 3 11 2 11 1 -F 1 6 12 1 11 1 -F 1 3 12 2 13 3 -F 1 8 0 1 11 2 -F 1 4 0 2 11 2 -F 1 5 2 1 22 13 -F 1 4 11 2 11 2 -F 1 5 12 1 11 2 -F 1 3 12 2 13 4 -F 1 6 0 1 11 3 -F 1 3 0 2 11 3 -F 1 5 2 1 22 14 -F 1 5 11 2 11 3 -F 1 4 12 2 13 5 -F 1 6 0 1 11 4 -F 1 3 0 2 11 4 -F 1 5 2 0 11 4 -F 1 3 11 2 11 4 -F 1 3 12 2 13 6 -F 1 10 0 1 11 5 -F 1 5 0 2 11 5 -F 1 5 2 1 22 16 -F 1 1 2 12 13 7 -F 1 3 11 2 11 5 -F 1 2 11 12 7 1 -F 1 3 12 2 13 7 -F 1 2 2 11 11 6 -F 1 2 12 11 7 2 -F 2 1 15 18 14 10 -F 1 6 2 1 22 18 -F 1 9 0 1 11 8 -F 1 4 0 11 4 1 -F 1 6 2 1 22 19 -F 1 7 11 1 13 10 -F 1 6 12 1 11 8 -F 1 5 0 1 11 9 -F 1 5 2 1 22 20 -F 1 6 11 1 13 11 -F 1 6 12 1 11 9 -F 1 7 0 1 11 10 -F 1 3 0 11 4 3 -F 1 8 2 0 11 10 -F 1 7 11 0 4 3 -F 1 9 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 10 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 5 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 9 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 2 0 -player2 > engine: 2 12 5 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 7 -player2 > engine: comparing 11 and 1, gives 0 0 0.16555178475119808 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 2 0 -player2 > engine: 11 12 4 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 9 -player2 > engine: comparing 12 and 1, gives 0 0 0.18857727733719298 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 5 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 8 3 -P 9.319567 21.808874 1 45 5 -P 14.288424 0.622569 2 19 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 13 5 -P 14.743177 12.694819 2 17 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 17 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 2 1 22 4 -F 2 7 2 1 22 5 -F 2 8 2 1 22 6 -F 2 9 2 1 22 7 -F 2 7 2 1 22 8 -F 2 7 2 1 22 9 -F 2 6 2 1 22 10 -F 2 6 11 1 13 1 -F 2 4 12 2 13 1 -F 2 5 2 1 22 11 -F 2 6 11 1 13 2 -F 2 3 12 2 13 2 -F 2 8 0 1 11 1 -F 2 4 0 2 11 1 -F 2 5 2 1 22 12 -F 2 4 11 2 11 1 -F 2 5 12 1 11 1 -F 2 3 12 2 13 3 -F 2 6 0 1 11 2 -F 2 3 0 2 11 2 -F 2 5 2 1 22 13 -F 2 5 11 2 11 2 -F 2 4 12 2 13 4 -F 2 6 0 1 11 3 -F 2 3 0 2 11 3 -F 2 5 2 0 11 3 -F 2 3 11 2 11 3 -F 2 3 12 2 13 5 -F 2 10 0 1 11 4 -F 2 5 0 2 11 4 -F 2 5 2 1 22 15 -F 2 1 2 12 13 6 -F 2 3 11 2 11 4 -F 2 3 12 2 13 6 -F 2 2 2 11 11 5 -F 2 2 12 11 7 1 -F 1 1 15 18 14 9 -F 2 6 2 1 22 17 -F 2 9 0 1 11 7 -F 2 6 2 1 22 18 -F 2 7 11 1 13 9 -F 2 6 12 1 11 7 -F 2 5 0 1 11 8 -F 2 5 2 1 22 19 -F 2 6 11 1 13 10 -F 2 6 12 1 11 8 -F 2 7 0 1 11 9 -F 2 3 0 11 4 2 -F 2 8 2 0 11 9 -F 2 7 11 0 4 2 -F 2 9 12 0 4 2 -F 2 10 0 1 11 10 -F 2 5 0 11 4 3 -F 2 9 2 1 22 21 -F 2 5 2 12 13 12 -F 2 7 11 0 4 3 -F 2 4 11 12 7 6 -F 2 9 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 8 3 -P 9.319567 21.808874 2 45 5 -P 14.288424 0.622569 1 19 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 13 5 -P 14.743177 12.694819 1 17 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 17 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 2 1 22 4 -F 1 7 2 1 22 5 -F 1 8 2 1 22 6 -F 1 9 2 1 22 7 -F 1 7 2 1 22 8 -F 1 7 2 1 22 9 -F 1 6 2 1 22 10 -F 1 6 11 1 13 1 -F 1 4 12 2 13 1 -F 1 5 2 1 22 11 -F 1 6 11 1 13 2 -F 1 3 12 2 13 2 -F 1 8 0 1 11 1 -F 1 4 0 2 11 1 -F 1 5 2 1 22 12 -F 1 4 11 2 11 1 -F 1 5 12 1 11 1 -F 1 3 12 2 13 3 -F 1 6 0 1 11 2 -F 1 3 0 2 11 2 -F 1 5 2 1 22 13 -F 1 5 11 2 11 2 -F 1 4 12 2 13 4 -F 1 6 0 1 11 3 -F 1 3 0 2 11 3 -F 1 5 2 0 11 3 -F 1 3 11 2 11 3 -F 1 3 12 2 13 5 -F 1 10 0 1 11 4 -F 1 5 0 2 11 4 -F 1 5 2 1 22 15 -F 1 1 2 12 13 6 -F 1 3 11 2 11 4 -F 1 3 12 2 13 6 -F 1 2 2 11 11 5 -F 1 2 12 11 7 1 -F 2 1 15 18 14 9 -F 1 6 2 1 22 17 -F 1 9 0 1 11 7 -F 1 6 2 1 22 18 -F 1 7 11 1 13 9 -F 1 6 12 1 11 7 -F 1 5 0 1 11 8 -F 1 5 2 1 22 19 -F 1 6 11 1 13 10 -F 1 6 12 1 11 8 -F 1 7 0 1 11 9 -F 1 3 0 11 4 2 -F 1 8 2 0 11 9 -F 1 7 11 0 4 2 -F 1 9 12 0 4 2 -F 1 10 0 1 11 10 -F 1 5 0 11 4 3 -F 1 9 2 1 22 21 -F 1 5 2 12 13 12 -F 1 7 11 0 4 3 -F 1 4 11 12 7 6 -F 1 9 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0.30635588526193164 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 4 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 9 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 2 0 -player2 > engine: 2 12 5 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 6 -player2 > engine: comparing 11 and 1, gives 0 0 0.16555178475119808 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 2 0 -player2 > engine: 11 12 3 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 8 -player2 > engine: comparing 12 and 1, gives 0 0 0.18857727733719298 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 4 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 5 3 -P 9.319567 21.808874 1 31 5 -P 14.288424 0.622569 2 22 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 11 5 -P 14.743177 12.694819 2 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 20 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 2 1 22 3 -F 2 7 2 1 22 4 -F 2 8 2 1 22 5 -F 2 9 2 1 22 6 -F 2 7 2 1 22 7 -F 2 7 2 1 22 8 -F 2 6 2 1 22 9 -F 2 5 2 1 22 10 -F 2 6 11 1 13 1 -F 2 3 12 2 13 1 -F 2 5 2 1 22 11 -F 2 3 12 2 13 2 -F 2 6 0 1 11 1 -F 2 3 0 2 11 1 -F 2 5 2 1 22 12 -F 2 5 11 2 11 1 -F 2 4 12 2 13 3 -F 2 6 0 1 11 2 -F 2 3 0 2 11 2 -F 2 5 2 0 11 2 -F 2 3 11 2 11 2 -F 2 3 12 2 13 4 -F 2 10 0 1 11 3 -F 2 5 0 2 11 3 -F 2 5 2 1 22 14 -F 2 1 2 12 13 5 -F 2 3 11 2 11 3 -F 2 3 12 2 13 5 -F 2 2 2 11 11 4 -F 1 1 15 18 14 8 -F 2 6 2 1 22 16 -F 2 9 0 1 11 6 -F 2 6 2 1 22 17 -F 2 7 11 1 13 8 -F 2 6 12 1 11 6 -F 2 5 0 1 11 7 -F 2 5 2 1 22 18 -F 2 6 11 1 13 9 -F 2 6 12 1 11 7 -F 2 7 0 1 11 8 -F 2 3 0 11 4 1 -F 2 8 2 0 11 8 -F 2 7 11 0 4 1 -F 2 9 12 0 4 1 -F 2 10 0 1 11 9 -F 2 5 0 11 4 2 -F 2 9 2 1 22 20 -F 2 5 2 12 13 11 -F 2 7 11 0 4 2 -F 2 4 11 12 7 5 -F 2 9 12 0 4 2 -F 2 4 0 11 4 3 -F 2 2 0 12 4 3 -F 2 9 2 1 22 21 -F 2 5 2 12 13 12 -F 2 6 11 0 4 3 -F 2 3 11 12 7 6 -F 2 8 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 5 3 -P 9.319567 21.808874 2 31 5 -P 14.288424 0.622569 1 22 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 11 5 -P 14.743177 12.694819 1 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 20 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 2 1 22 3 -F 1 7 2 1 22 4 -F 1 8 2 1 22 5 -F 1 9 2 1 22 6 -F 1 7 2 1 22 7 -F 1 7 2 1 22 8 -F 1 6 2 1 22 9 -F 1 5 2 1 22 10 -F 1 6 11 1 13 1 -F 1 3 12 2 13 1 -F 1 5 2 1 22 11 -F 1 3 12 2 13 2 -F 1 6 0 1 11 1 -F 1 3 0 2 11 1 -F 1 5 2 1 22 12 -F 1 5 11 2 11 1 -F 1 4 12 2 13 3 -F 1 6 0 1 11 2 -F 1 3 0 2 11 2 -F 1 5 2 0 11 2 -F 1 3 11 2 11 2 -F 1 3 12 2 13 4 -F 1 10 0 1 11 3 -F 1 5 0 2 11 3 -F 1 5 2 1 22 14 -F 1 1 2 12 13 5 -F 1 3 11 2 11 3 -F 1 3 12 2 13 5 -F 1 2 2 11 11 4 -F 2 1 15 18 14 8 -F 1 6 2 1 22 16 -F 1 9 0 1 11 6 -F 1 6 2 1 22 17 -F 1 7 11 1 13 8 -F 1 6 12 1 11 6 -F 1 5 0 1 11 7 -F 1 5 2 1 22 18 -F 1 6 11 1 13 9 -F 1 6 12 1 11 7 -F 1 7 0 1 11 8 -F 1 3 0 11 4 1 -F 1 8 2 0 11 8 -F 1 7 11 0 4 1 -F 1 9 12 0 4 1 -F 1 10 0 1 11 9 -F 1 5 0 11 4 2 -F 1 9 2 1 22 20 -F 1 5 2 12 13 11 -F 1 7 11 0 4 2 -F 1 4 11 12 7 5 -F 1 9 12 0 4 2 -F 1 4 0 11 4 3 -F 1 2 0 12 4 3 -F 1 9 2 1 22 21 -F 1 5 2 12 13 12 -F 1 6 11 0 4 3 -F 1 3 11 12 7 6 -F 1 8 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0.30635588526193164 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 11 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 1 0 0.22881269671267385 -player2 > engine: 2 3 5 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 2 0 -player2 > engine: 2 12 3 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 1 0 0.16555178475119808 -player2 > engine: 11 1 5 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 2 0 -player2 > engine: 11 12 3 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 1 0 0.18857727733719298 -player2 > engine: 12 1 7 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 3 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 22 3 -P 9.319567 21.808874 1 24 5 -P 14.288424 0.622569 2 19 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 11 5 -P 14.743177 12.694819 2 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 23 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 2 1 22 2 -F 2 7 2 1 22 3 -F 2 8 2 1 22 4 -F 2 9 2 1 22 5 -F 2 7 2 1 22 6 -F 2 7 2 1 22 7 -F 2 6 2 1 22 8 -F 2 5 2 1 22 9 -F 2 5 2 1 22 10 -F 2 3 12 2 13 1 -F 2 5 2 1 22 11 -F 2 4 12 2 13 2 -F 2 6 0 1 11 1 -F 2 3 0 2 11 1 -F 2 5 2 0 11 1 -F 2 3 11 2 11 1 -F 2 3 12 2 13 3 -F 2 10 0 1 11 2 -F 2 5 0 2 11 2 -F 2 5 2 1 22 13 -F 2 1 2 12 13 4 -F 2 3 11 2 11 2 -F 2 3 12 2 13 4 -F 2 2 2 11 11 3 -F 1 1 15 18 14 7 -F 2 6 2 1 22 15 -F 2 9 0 1 11 5 -F 2 6 2 1 22 16 -F 2 7 11 1 13 7 -F 2 6 12 1 11 5 -F 2 5 0 1 11 6 -F 2 5 2 1 22 17 -F 2 6 11 1 13 8 -F 2 6 12 1 11 6 -F 2 7 0 1 11 7 -F 2 8 2 0 11 7 -F 2 10 0 1 11 8 -F 2 5 0 11 4 1 -F 2 9 2 1 22 19 -F 2 5 2 12 13 10 -F 2 7 11 0 4 1 -F 2 4 11 12 7 4 -F 2 9 12 0 4 1 -F 2 4 0 11 4 2 -F 2 2 0 12 4 2 -F 2 9 2 1 22 20 -F 2 5 2 12 13 11 -F 2 6 11 0 4 2 -F 2 3 11 12 7 5 -F 2 8 12 0 4 2 -F 2 2 0 12 4 3 -F 2 11 2 1 22 21 -F 2 5 2 3 6 5 -F 2 3 2 12 13 12 -F 2 5 11 1 13 12 -F 2 3 11 12 7 6 -F 2 7 12 1 11 10 -go - -engine > player2: P 11.803996 11.215721 1 22 3 -P 9.319567 21.808874 2 24 5 -P 14.288424 0.622569 1 19 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 11 5 -P 14.743177 12.694819 1 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 23 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 2 1 22 2 -F 1 7 2 1 22 3 -F 1 8 2 1 22 4 -F 1 9 2 1 22 5 -F 1 7 2 1 22 6 -F 1 7 2 1 22 7 -F 1 6 2 1 22 8 -F 1 5 2 1 22 9 -F 1 5 2 1 22 10 -F 1 3 12 2 13 1 -F 1 5 2 1 22 11 -F 1 4 12 2 13 2 -F 1 6 0 1 11 1 -F 1 3 0 2 11 1 -F 1 5 2 0 11 1 -F 1 3 11 2 11 1 -F 1 3 12 2 13 3 -F 1 10 0 1 11 2 -F 1 5 0 2 11 2 -F 1 5 2 1 22 13 -F 1 1 2 12 13 4 -F 1 3 11 2 11 2 -F 1 3 12 2 13 4 -F 1 2 2 11 11 3 -F 2 1 15 18 14 7 -F 1 6 2 1 22 15 -F 1 9 0 1 11 5 -F 1 6 2 1 22 16 -F 1 7 11 1 13 7 -F 1 6 12 1 11 5 -F 1 5 0 1 11 6 -F 1 5 2 1 22 17 -F 1 6 11 1 13 8 -F 1 6 12 1 11 6 -F 1 7 0 1 11 7 -F 1 8 2 0 11 7 -F 1 10 0 1 11 8 -F 1 5 0 11 4 1 -F 1 9 2 1 22 19 -F 1 5 2 12 13 10 -F 1 7 11 0 4 1 -F 1 4 11 12 7 4 -F 1 9 12 0 4 1 -F 1 4 0 11 4 2 -F 1 2 0 12 4 2 -F 1 9 2 1 22 20 -F 1 5 2 12 13 11 -F 1 6 11 0 4 2 -F 1 3 11 12 7 5 -F 1 8 12 0 4 2 -F 1 2 0 12 4 3 -F 1 11 2 1 22 21 -F 1 5 2 3 6 5 -F 1 3 2 12 13 12 -F 1 5 11 1 13 12 -F 1 3 11 12 7 6 -F 1 7 12 1 11 10 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 11 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 1 0 0.336572607514253 -player2 > engine: 0 3 5 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 3 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 9 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 1 0 0.16555178475119808 -player2 > engine: 11 1 5 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 1 0 0.18857727733719298 -player2 > engine: 12 1 6 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 27 3 -P 9.319567 21.808874 1 23 5 -P 14.288424 0.622569 2 24 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 16 5 -P 14.743177 12.694819 2 11 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 26 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 2 1 22 1 -F 2 7 2 1 22 2 -F 2 8 2 1 22 3 -F 2 9 2 1 22 4 -F 2 7 2 1 22 5 -F 2 7 2 1 22 6 -F 2 6 2 1 22 7 -F 2 5 2 1 22 8 -F 2 5 2 1 22 9 -F 2 5 2 1 22 10 -F 2 4 12 2 13 1 -F 2 3 12 2 13 2 -F 2 10 0 1 11 1 -F 2 5 0 2 11 1 -F 2 5 2 1 22 12 -F 2 1 2 12 13 3 -F 2 3 11 2 11 1 -F 2 3 12 2 13 3 -F 2 2 2 11 11 2 -F 1 1 15 18 14 6 -F 2 6 2 1 22 14 -F 2 9 0 1 11 4 -F 2 6 2 1 22 15 -F 2 7 11 1 13 6 -F 2 6 12 1 11 4 -F 2 5 0 1 11 5 -F 2 5 2 1 22 16 -F 2 6 11 1 13 7 -F 2 6 12 1 11 5 -F 2 7 0 1 11 6 -F 2 8 2 0 11 6 -F 2 10 0 1 11 7 -F 2 9 2 1 22 18 -F 2 5 2 12 13 9 -F 2 4 11 12 7 3 -F 2 4 0 11 4 1 -F 2 2 0 12 4 1 -F 2 9 2 1 22 19 -F 2 5 2 12 13 10 -F 2 6 11 0 4 1 -F 2 3 11 12 7 4 -F 2 8 12 0 4 1 -F 2 2 0 12 4 2 -F 2 11 2 1 22 20 -F 2 5 2 3 6 4 -F 2 3 2 12 13 11 -F 2 5 11 1 13 11 -F 2 3 11 12 7 5 -F 2 7 12 1 11 9 -F 2 11 0 1 11 10 -F 2 5 0 3 6 5 -F 2 3 0 12 4 3 -F 2 9 2 1 22 21 -F 2 5 11 1 13 12 -F 2 6 12 1 11 10 -go - -engine > player2: P 11.803996 11.215721 1 27 3 -P 9.319567 21.808874 2 23 5 -P 14.288424 0.622569 1 24 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 16 5 -P 14.743177 12.694819 1 11 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 26 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 2 1 22 1 -F 1 7 2 1 22 2 -F 1 8 2 1 22 3 -F 1 9 2 1 22 4 -F 1 7 2 1 22 5 -F 1 7 2 1 22 6 -F 1 6 2 1 22 7 -F 1 5 2 1 22 8 -F 1 5 2 1 22 9 -F 1 5 2 1 22 10 -F 1 4 12 2 13 1 -F 1 3 12 2 13 2 -F 1 10 0 1 11 1 -F 1 5 0 2 11 1 -F 1 5 2 1 22 12 -F 1 1 2 12 13 3 -F 1 3 11 2 11 1 -F 1 3 12 2 13 3 -F 1 2 2 11 11 2 -F 2 1 15 18 14 6 -F 1 6 2 1 22 14 -F 1 9 0 1 11 4 -F 1 6 2 1 22 15 -F 1 7 11 1 13 6 -F 1 6 12 1 11 4 -F 1 5 0 1 11 5 -F 1 5 2 1 22 16 -F 1 6 11 1 13 7 -F 1 6 12 1 11 5 -F 1 7 0 1 11 6 -F 1 8 2 0 11 6 -F 1 10 0 1 11 7 -F 1 9 2 1 22 18 -F 1 5 2 12 13 9 -F 1 4 11 12 7 3 -F 1 4 0 11 4 1 -F 1 2 0 12 4 1 -F 1 9 2 1 22 19 -F 1 5 2 12 13 10 -F 1 6 11 0 4 1 -F 1 3 11 12 7 4 -F 1 8 12 0 4 1 -F 1 2 0 12 4 2 -F 1 11 2 1 22 20 -F 1 5 2 3 6 4 -F 1 3 2 12 13 11 -F 1 5 11 1 13 11 -F 1 3 11 12 7 5 -F 1 7 12 1 11 9 -F 1 11 0 1 11 10 -F 1 5 0 3 6 5 -F 1 3 0 12 4 3 -F 1 9 2 1 22 21 -F 1 5 11 1 13 12 -F 1 6 12 1 11 10 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 13 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 1 0 0.336572607514253 -player2 > engine: 0 3 7 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 3 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 12 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 1 0 0.22881269671267385 -player2 > engine: 2 3 6 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 1 0 0.16555178475119808 -player2 > engine: 11 1 8 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 1 0 0.18857727733719298 -player2 > engine: 12 1 5 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 21 3 -P 9.319567 21.808874 1 12 5 -P 14.288424 0.622569 2 23 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 17 5 -P 14.743177 12.694819 2 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 29 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 7 2 1 22 1 -F 2 8 2 1 22 2 -F 2 9 2 1 22 3 -F 2 7 2 1 22 4 -F 2 7 2 1 22 5 -F 2 6 2 1 22 6 -F 2 5 2 1 22 7 -F 2 5 2 1 22 8 -F 2 5 2 1 22 9 -F 2 3 12 2 13 1 -F 2 5 2 1 22 11 -F 2 1 2 12 13 2 -F 2 3 12 2 13 2 -F 2 2 2 11 11 1 -F 1 1 15 18 14 5 -F 2 6 2 1 22 13 -F 2 9 0 1 11 3 -F 2 6 2 1 22 14 -F 2 7 11 1 13 5 -F 2 6 12 1 11 3 -F 2 5 0 1 11 4 -F 2 5 2 1 22 15 -F 2 6 11 1 13 6 -F 2 6 12 1 11 4 -F 2 7 0 1 11 5 -F 2 8 2 0 11 5 -F 2 10 0 1 11 6 -F 2 9 2 1 22 17 -F 2 5 2 12 13 8 -F 2 4 11 12 7 2 -F 2 9 2 1 22 18 -F 2 5 2 12 13 9 -F 2 3 11 12 7 3 -F 2 2 0 12 4 1 -F 2 11 2 1 22 19 -F 2 5 2 3 6 3 -F 2 3 2 12 13 10 -F 2 5 11 1 13 10 -F 2 3 11 12 7 4 -F 2 7 12 1 11 8 -F 2 11 0 1 11 9 -F 2 5 0 3 6 4 -F 2 3 0 12 4 2 -F 2 9 2 1 22 20 -F 2 5 11 1 13 11 -F 2 6 12 1 11 9 -F 2 13 0 1 11 10 -F 2 7 0 3 6 5 -F 2 3 0 12 4 3 -F 2 12 2 1 22 21 -F 2 6 2 3 6 5 -F 2 8 11 1 13 12 -F 2 5 12 1 11 10 -go - -engine > player2: P 11.803996 11.215721 1 21 3 -P 9.319567 21.808874 2 12 5 -P 14.288424 0.622569 1 23 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 17 5 -P 14.743177 12.694819 1 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 29 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 7 2 1 22 1 -F 1 8 2 1 22 2 -F 1 9 2 1 22 3 -F 1 7 2 1 22 4 -F 1 7 2 1 22 5 -F 1 6 2 1 22 6 -F 1 5 2 1 22 7 -F 1 5 2 1 22 8 -F 1 5 2 1 22 9 -F 1 3 12 2 13 1 -F 1 5 2 1 22 11 -F 1 1 2 12 13 2 -F 1 3 12 2 13 2 -F 1 2 2 11 11 1 -F 2 1 15 18 14 5 -F 1 6 2 1 22 13 -F 1 9 0 1 11 3 -F 1 6 2 1 22 14 -F 1 7 11 1 13 5 -F 1 6 12 1 11 3 -F 1 5 0 1 11 4 -F 1 5 2 1 22 15 -F 1 6 11 1 13 6 -F 1 6 12 1 11 4 -F 1 7 0 1 11 5 -F 1 8 2 0 11 5 -F 1 10 0 1 11 6 -F 1 9 2 1 22 17 -F 1 5 2 12 13 8 -F 1 4 11 12 7 2 -F 1 9 2 1 22 18 -F 1 5 2 12 13 9 -F 1 3 11 12 7 3 -F 1 2 0 12 4 1 -F 1 11 2 1 22 19 -F 1 5 2 3 6 3 -F 1 3 2 12 13 10 -F 1 5 11 1 13 10 -F 1 3 11 12 7 4 -F 1 7 12 1 11 8 -F 1 11 0 1 11 9 -F 1 5 0 3 6 4 -F 1 3 0 12 4 2 -F 1 9 2 1 22 20 -F 1 5 11 1 13 11 -F 1 6 12 1 11 9 -F 1 13 0 1 11 10 -F 1 7 0 3 6 5 -F 1 3 0 12 4 3 -F 1 12 2 1 22 21 -F 1 6 2 3 6 5 -F 1 8 11 1 13 12 -F 1 5 12 1 11 10 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 10 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 5 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 3 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 2 0 -player2 > engine: 2 0 11 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 6 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 2 0 -player2 > engine: 2 11 3 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 8 -player2 > engine: comparing 11 and 1, gives 0 0 0.16555178475119808 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 2 0 -player2 > engine: 11 11 4 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 6 -player2 > engine: comparing 12 and 1, gives 0 0 0.18857727733719298 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 2 0 -player2 > engine: 12 11 3 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 16 3 -P 9.319567 21.808874 1 10 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 16 5 -P 14.743177 12.694819 2 11 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 32 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 8 2 1 22 1 -F 2 9 2 1 22 2 -F 2 7 2 1 22 3 -F 2 7 2 1 22 4 -F 2 6 2 1 22 5 -F 2 5 2 1 22 6 -F 2 5 2 1 22 7 -F 2 5 2 1 22 8 -F 2 5 2 1 22 10 -F 2 1 2 12 13 1 -F 2 3 12 2 13 1 -F 1 1 15 18 14 4 -F 2 6 2 1 22 12 -F 2 9 0 1 11 2 -F 2 6 2 1 22 13 -F 2 7 11 1 13 4 -F 2 6 12 1 11 2 -F 2 5 0 1 11 3 -F 2 5 2 1 22 14 -F 2 6 11 1 13 5 -F 2 6 12 1 11 3 -F 2 7 0 1 11 4 -F 2 8 2 0 11 4 -F 2 10 0 1 11 5 -F 2 9 2 1 22 16 -F 2 5 2 12 13 7 -F 2 4 11 12 7 1 -F 2 9 2 1 22 17 -F 2 5 2 12 13 8 -F 2 3 11 12 7 2 -F 2 11 2 1 22 18 -F 2 5 2 3 6 2 -F 2 3 2 12 13 9 -F 2 5 11 1 13 9 -F 2 3 11 12 7 3 -F 2 7 12 1 11 7 -F 2 11 0 1 11 8 -F 2 5 0 3 6 3 -F 2 3 0 12 4 1 -F 2 9 2 1 22 19 -F 2 5 11 1 13 10 -F 2 6 12 1 11 8 -F 2 13 0 1 11 9 -F 2 7 0 3 6 4 -F 2 3 0 12 4 2 -F 2 12 2 1 22 20 -F 2 6 2 3 6 4 -F 2 8 11 1 13 11 -F 2 5 12 1 11 9 -F 2 5 0 1 11 10 -F 2 3 0 11 4 3 -F 2 11 2 0 11 10 -F 2 6 2 1 22 21 -F 2 3 2 11 11 10 -F 2 8 11 0 4 3 -F 2 6 12 0 4 3 -F 2 3 12 11 7 6 -go - -engine > player2: P 11.803996 11.215721 1 16 3 -P 9.319567 21.808874 2 10 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 16 5 -P 14.743177 12.694819 1 11 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 32 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 8 2 1 22 1 -F 1 9 2 1 22 2 -F 1 7 2 1 22 3 -F 1 7 2 1 22 4 -F 1 6 2 1 22 5 -F 1 5 2 1 22 6 -F 1 5 2 1 22 7 -F 1 5 2 1 22 8 -F 1 5 2 1 22 10 -F 1 1 2 12 13 1 -F 1 3 12 2 13 1 -F 2 1 15 18 14 4 -F 1 6 2 1 22 12 -F 1 9 0 1 11 2 -F 1 6 2 1 22 13 -F 1 7 11 1 13 4 -F 1 6 12 1 11 2 -F 1 5 0 1 11 3 -F 1 5 2 1 22 14 -F 1 6 11 1 13 5 -F 1 6 12 1 11 3 -F 1 7 0 1 11 4 -F 1 8 2 0 11 4 -F 1 10 0 1 11 5 -F 1 9 2 1 22 16 -F 1 5 2 12 13 7 -F 1 4 11 12 7 1 -F 1 9 2 1 22 17 -F 1 5 2 12 13 8 -F 1 3 11 12 7 2 -F 1 11 2 1 22 18 -F 1 5 2 3 6 2 -F 1 3 2 12 13 9 -F 1 5 11 1 13 9 -F 1 3 11 12 7 3 -F 1 7 12 1 11 7 -F 1 11 0 1 11 8 -F 1 5 0 3 6 3 -F 1 3 0 12 4 1 -F 1 9 2 1 22 19 -F 1 5 11 1 13 10 -F 1 6 12 1 11 8 -F 1 13 0 1 11 9 -F 1 7 0 3 6 4 -F 1 3 0 12 4 2 -F 1 12 2 1 22 20 -F 1 6 2 3 6 4 -F 1 8 11 1 13 11 -F 1 5 12 1 11 9 -F 1 5 0 1 11 10 -F 1 3 0 11 4 3 -F 1 11 2 0 11 10 -F 1 6 2 1 22 21 -F 1 3 2 11 11 10 -F 1 8 11 0 4 3 -F 1 6 12 0 4 3 -F 1 3 12 11 7 6 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 8 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 4 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 2 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 5 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 8 -player2 > engine: comparing 11 and 1, gives 0 0 0.16555178475119808 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 4 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 5 -player2 > engine: comparing 12 and 1, gives 0 0 0.18857727733719298 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 5 3 -P 9.319567 21.808874 1 7 5 -P 14.288424 0.622569 2 14 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 9 5 -P 14.743177 12.694819 2 19 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 35 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 9 2 1 22 1 -F 2 7 2 1 22 2 -F 2 7 2 1 22 3 -F 2 6 2 1 22 4 -F 2 5 2 1 22 5 -F 2 5 2 1 22 6 -F 2 5 2 1 22 7 -F 2 5 2 1 22 9 -F 1 1 15 18 14 3 -F 2 6 2 1 22 11 -F 2 9 0 1 11 1 -F 2 6 2 1 22 12 -F 2 7 11 1 13 3 -F 2 6 12 1 11 1 -F 2 5 0 1 11 2 -F 2 5 2 1 22 13 -F 2 6 11 1 13 4 -F 2 6 12 1 11 2 -F 2 7 0 1 11 3 -F 2 8 2 0 11 3 -F 2 10 0 1 11 4 -F 2 9 2 1 22 15 -F 2 5 2 12 13 6 -F 2 9 2 1 22 16 -F 2 5 2 12 13 7 -F 2 3 11 12 7 1 -F 2 11 2 1 22 17 -F 2 5 2 3 6 1 -F 2 3 2 12 13 8 -F 2 5 11 1 13 8 -F 2 3 11 12 7 2 -F 2 7 12 1 11 6 -F 2 11 0 1 11 7 -F 2 5 0 3 6 2 -F 2 9 2 1 22 18 -F 2 5 11 1 13 9 -F 2 6 12 1 11 7 -F 2 13 0 1 11 8 -F 2 7 0 3 6 3 -F 2 3 0 12 4 1 -F 2 12 2 1 22 19 -F 2 6 2 3 6 3 -F 2 8 11 1 13 10 -F 2 5 12 1 11 8 -F 2 5 0 1 11 9 -F 2 3 0 11 4 2 -F 2 11 2 0 11 9 -F 2 6 2 1 22 20 -F 2 3 2 11 11 9 -F 2 8 11 0 4 2 -F 2 6 12 0 4 2 -F 2 3 12 11 7 5 -F 2 8 0 1 11 10 -F 2 4 0 2 11 10 -F 2 2 0 11 4 3 -F 2 5 2 1 22 21 -F 2 8 11 0 4 3 -F 2 4 11 2 11 10 -F 2 5 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 5 3 -P 9.319567 21.808874 2 7 5 -P 14.288424 0.622569 1 14 5 -P 11.865493 5.273785 0 75 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 9 5 -P 14.743177 12.694819 1 19 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 35 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 9 2 1 22 1 -F 1 7 2 1 22 2 -F 1 7 2 1 22 3 -F 1 6 2 1 22 4 -F 1 5 2 1 22 5 -F 1 5 2 1 22 6 -F 1 5 2 1 22 7 -F 1 5 2 1 22 9 -F 2 1 15 18 14 3 -F 1 6 2 1 22 11 -F 1 9 0 1 11 1 -F 1 6 2 1 22 12 -F 1 7 11 1 13 3 -F 1 6 12 1 11 1 -F 1 5 0 1 11 2 -F 1 5 2 1 22 13 -F 1 6 11 1 13 4 -F 1 6 12 1 11 2 -F 1 7 0 1 11 3 -F 1 8 2 0 11 3 -F 1 10 0 1 11 4 -F 1 9 2 1 22 15 -F 1 5 2 12 13 6 -F 1 9 2 1 22 16 -F 1 5 2 12 13 7 -F 1 3 11 12 7 1 -F 1 11 2 1 22 17 -F 1 5 2 3 6 1 -F 1 3 2 12 13 8 -F 1 5 11 1 13 8 -F 1 3 11 12 7 2 -F 1 7 12 1 11 6 -F 1 11 0 1 11 7 -F 1 5 0 3 6 2 -F 1 9 2 1 22 18 -F 1 5 11 1 13 9 -F 1 6 12 1 11 7 -F 1 13 0 1 11 8 -F 1 7 0 3 6 3 -F 1 3 0 12 4 1 -F 1 12 2 1 22 19 -F 1 6 2 3 6 3 -F 1 8 11 1 13 10 -F 1 5 12 1 11 8 -F 1 5 0 1 11 9 -F 1 3 0 11 4 2 -F 1 11 2 0 11 9 -F 1 6 2 1 22 20 -F 1 3 2 11 11 9 -F 1 8 11 0 4 2 -F 1 6 12 0 4 2 -F 1 3 12 11 7 5 -F 1 8 0 1 11 10 -F 1 4 0 2 11 10 -F 1 2 0 11 4 3 -F 1 5 2 1 22 21 -F 1 8 11 0 4 3 -F 1 4 11 2 11 10 -F 1 5 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0.30635588526193164 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 2 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 1 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 7 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 3 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 4 -player2 > engine: comparing 11 and 1, gives 0 0 0.16555178475119808 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 2 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 9 -player2 > engine: comparing 12 and 1, gives 0 0 0.18857727733719298 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 5 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 5 3 -P 9.319567 21.808874 2 12 5 -P 14.288424 0.622569 2 12 5 -P 11.865493 5.273785 0 70 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 8 5 -P 14.743177 12.694819 2 16 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 38 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 7 2 1 22 1 -F 2 7 2 1 22 2 -F 2 6 2 1 22 3 -F 2 5 2 1 22 4 -F 2 5 2 1 22 5 -F 2 5 2 1 22 6 -F 2 5 2 1 22 8 -F 1 1 15 18 14 2 -F 2 6 2 1 22 10 -F 2 6 2 1 22 11 -F 2 7 11 1 13 2 -F 2 5 0 1 11 1 -F 2 5 2 1 22 12 -F 2 6 11 1 13 3 -F 2 6 12 1 11 1 -F 2 7 0 1 11 2 -F 2 8 2 0 11 2 -F 2 10 0 1 11 3 -F 2 9 2 1 22 14 -F 2 5 2 12 13 5 -F 2 9 2 1 22 15 -F 2 5 2 12 13 6 -F 2 11 2 1 22 16 -F 2 3 2 12 13 7 -F 2 5 11 1 13 7 -F 2 3 11 12 7 1 -F 2 7 12 1 11 5 -F 2 11 0 1 11 6 -F 2 5 0 3 6 1 -F 2 9 2 1 22 17 -F 2 5 11 1 13 8 -F 2 6 12 1 11 6 -F 2 13 0 1 11 7 -F 2 7 0 3 6 2 -F 2 12 2 1 22 18 -F 2 6 2 3 6 2 -F 2 8 11 1 13 9 -F 2 5 12 1 11 7 -F 2 5 0 1 11 8 -F 2 3 0 11 4 1 -F 2 11 2 0 11 8 -F 2 6 2 1 22 19 -F 2 3 2 11 11 8 -F 2 8 11 0 4 1 -F 2 6 12 0 4 1 -F 2 3 12 11 7 4 -F 2 8 0 1 11 9 -F 2 4 0 2 11 9 -F 2 2 0 11 4 2 -F 2 5 2 1 22 20 -F 2 8 11 0 4 2 -F 2 4 11 2 11 9 -F 2 5 12 0 4 2 -F 2 2 0 2 11 10 -F 2 1 0 11 4 3 -F 2 7 2 1 22 21 -F 2 4 11 0 4 3 -F 2 2 11 2 11 10 -F 2 9 12 0 4 3 -F 2 5 12 2 13 12 -go - -engine > player2: P 11.803996 11.215721 1 5 3 -P 9.319567 21.808874 1 12 5 -P 14.288424 0.622569 1 12 5 -P 11.865493 5.273785 0 70 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 8 5 -P 14.743177 12.694819 1 16 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 38 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 7 2 1 22 1 -F 1 7 2 1 22 2 -F 1 6 2 1 22 3 -F 1 5 2 1 22 4 -F 1 5 2 1 22 5 -F 1 5 2 1 22 6 -F 1 5 2 1 22 8 -F 2 1 15 18 14 2 -F 1 6 2 1 22 10 -F 1 6 2 1 22 11 -F 1 7 11 1 13 2 -F 1 5 0 1 11 1 -F 1 5 2 1 22 12 -F 1 6 11 1 13 3 -F 1 6 12 1 11 1 -F 1 7 0 1 11 2 -F 1 8 2 0 11 2 -F 1 10 0 1 11 3 -F 1 9 2 1 22 14 -F 1 5 2 12 13 5 -F 1 9 2 1 22 15 -F 1 5 2 12 13 6 -F 1 11 2 1 22 16 -F 1 3 2 12 13 7 -F 1 5 11 1 13 7 -F 1 3 11 12 7 1 -F 1 7 12 1 11 5 -F 1 11 0 1 11 6 -F 1 5 0 3 6 1 -F 1 9 2 1 22 17 -F 1 5 11 1 13 8 -F 1 6 12 1 11 6 -F 1 13 0 1 11 7 -F 1 7 0 3 6 2 -F 1 12 2 1 22 18 -F 1 6 2 3 6 2 -F 1 8 11 1 13 9 -F 1 5 12 1 11 7 -F 1 5 0 1 11 8 -F 1 3 0 11 4 1 -F 1 11 2 0 11 8 -F 1 6 2 1 22 19 -F 1 3 2 11 11 8 -F 1 8 11 0 4 1 -F 1 6 12 0 4 1 -F 1 3 12 11 7 4 -F 1 8 0 1 11 9 -F 1 4 0 2 11 9 -F 1 2 0 11 4 2 -F 1 5 2 1 22 20 -F 1 8 11 0 4 2 -F 1 4 11 2 11 9 -F 1 5 12 0 4 2 -F 1 2 0 2 11 10 -F 1 1 0 11 4 3 -F 1 7 2 1 22 21 -F 1 4 11 0 4 3 -F 1 2 11 2 11 10 -F 1 9 12 0 4 3 -F 1 5 12 2 13 12 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 2 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 2 0 -player2 > engine: 1 2 6 -player2 > engine: comparing 1 and 3, gives 0 0 0.07172769106024596 -player2 > engine: comparing 1 and 4, gives 0 0 0.22881269671267385 -player2 > engine: comparing 1 and 5, gives 0 0 0.017865583220045826 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 6 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 4 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 8 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 4 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 20 3 -P 9.319567 21.808874 2 29 5 -P 14.288424 0.622569 2 17 5 -P 11.865493 5.273785 0 65 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 12 5 -P 14.743177 12.694819 2 16 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 41 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 7 2 1 22 1 -F 2 6 2 1 22 2 -F 2 5 2 1 22 3 -F 2 5 2 1 22 4 -F 2 5 2 1 22 5 -F 2 5 2 1 22 7 -F 1 1 15 18 14 1 -F 2 6 2 1 22 9 -F 2 6 2 1 22 10 -F 2 7 11 1 13 1 -F 2 5 2 1 22 11 -F 2 6 11 1 13 2 -F 2 7 0 1 11 1 -F 2 8 2 0 11 1 -F 2 10 0 1 11 2 -F 2 9 2 1 22 13 -F 2 5 2 12 13 4 -F 2 9 2 1 22 14 -F 2 5 2 12 13 5 -F 2 11 2 1 22 15 -F 2 3 2 12 13 6 -F 2 5 11 1 13 6 -F 2 7 12 1 11 4 -F 2 11 0 1 11 5 -F 2 9 2 1 22 16 -F 2 5 11 1 13 7 -F 2 6 12 1 11 5 -F 2 13 0 1 11 6 -F 2 7 0 3 6 1 -F 2 12 2 1 22 17 -F 2 6 2 3 6 1 -F 2 8 11 1 13 8 -F 2 5 12 1 11 6 -F 2 5 0 1 11 7 -F 2 11 2 0 11 7 -F 2 6 2 1 22 18 -F 2 3 2 11 11 7 -F 2 3 12 11 7 3 -F 2 8 0 1 11 8 -F 2 4 0 2 11 8 -F 2 2 0 11 4 1 -F 2 5 2 1 22 19 -F 2 8 11 0 4 1 -F 2 4 11 2 11 8 -F 2 5 12 0 4 1 -F 2 2 0 2 11 9 -F 2 1 0 11 4 2 -F 2 7 2 1 22 20 -F 2 4 11 0 4 2 -F 2 2 11 2 11 9 -F 2 9 12 0 4 2 -F 2 5 12 2 13 11 -F 2 2 0 2 11 10 -F 2 6 1 2 22 21 -F 2 4 11 2 11 10 -F 2 8 12 2 13 12 -go - -engine > player2: P 11.803996 11.215721 1 20 3 -P 9.319567 21.808874 1 29 5 -P 14.288424 0.622569 1 17 5 -P 11.865493 5.273785 0 65 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 12 5 -P 14.743177 12.694819 1 16 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 41 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 4 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 7 2 1 22 1 -F 1 6 2 1 22 2 -F 1 5 2 1 22 3 -F 1 5 2 1 22 4 -F 1 5 2 1 22 5 -F 1 5 2 1 22 7 -F 2 1 15 18 14 1 -F 1 6 2 1 22 9 -F 1 6 2 1 22 10 -F 1 7 11 1 13 1 -F 1 5 2 1 22 11 -F 1 6 11 1 13 2 -F 1 7 0 1 11 1 -F 1 8 2 0 11 1 -F 1 10 0 1 11 2 -F 1 9 2 1 22 13 -F 1 5 2 12 13 4 -F 1 9 2 1 22 14 -F 1 5 2 12 13 5 -F 1 11 2 1 22 15 -F 1 3 2 12 13 6 -F 1 5 11 1 13 6 -F 1 7 12 1 11 4 -F 1 11 0 1 11 5 -F 1 9 2 1 22 16 -F 1 5 11 1 13 7 -F 1 6 12 1 11 5 -F 1 13 0 1 11 6 -F 1 7 0 3 6 1 -F 1 12 2 1 22 17 -F 1 6 2 3 6 1 -F 1 8 11 1 13 8 -F 1 5 12 1 11 6 -F 1 5 0 1 11 7 -F 1 11 2 0 11 7 -F 1 6 2 1 22 18 -F 1 3 2 11 11 7 -F 1 3 12 11 7 3 -F 1 8 0 1 11 8 -F 1 4 0 2 11 8 -F 1 2 0 11 4 1 -F 1 5 2 1 22 19 -F 1 8 11 0 4 1 -F 1 4 11 2 11 8 -F 1 5 12 0 4 1 -F 1 2 0 2 11 9 -F 1 1 0 11 4 2 -F 1 7 2 1 22 20 -F 1 4 11 0 4 2 -F 1 2 11 2 11 9 -F 1 9 12 0 4 2 -F 1 5 12 2 13 11 -F 1 2 0 2 11 10 -F 1 6 1 2 22 21 -F 1 4 11 2 11 10 -F 1 8 12 2 13 12 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 10 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 5 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 2 0 -player2 > engine: 1 2 14 -player2 > engine: comparing 1 and 3, gives 1 0 0.07172769106024596 -player2 > engine: 1 3 7 -player2 > engine: comparing 1 and 4, gives 0 0 0.22881269671267385 -player2 > engine: comparing 1 and 5, gives 0 0 0.017865583220045826 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 8 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 6 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 8 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 4 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 27 3 -P 9.319567 21.808874 2 34 5 -P 14.288424 0.622569 2 22 5 -P 11.865493 5.273785 0 52 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 13 5 -P 14.743177 12.694819 2 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 44 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 2 1 22 1 -F 2 5 2 1 22 2 -F 2 5 2 1 22 3 -F 2 5 2 1 22 4 -F 2 5 2 1 22 6 -F 2 6 2 1 22 8 -F 2 6 2 1 22 9 -F 2 5 2 1 22 10 -F 2 6 11 1 13 1 -F 2 10 0 1 11 1 -F 2 9 2 1 22 12 -F 2 5 2 12 13 3 -F 2 9 2 1 22 13 -F 2 5 2 12 13 4 -F 2 11 2 1 22 14 -F 2 3 2 12 13 5 -F 2 5 11 1 13 5 -F 2 7 12 1 11 3 -F 2 11 0 1 11 4 -F 2 9 2 1 22 15 -F 2 5 11 1 13 6 -F 2 6 12 1 11 4 -F 2 13 0 1 11 5 -F 2 12 2 1 22 16 -F 2 8 11 1 13 7 -F 2 5 12 1 11 5 -F 2 5 0 1 11 6 -F 2 11 2 0 11 6 -F 2 6 2 1 22 17 -F 2 3 2 11 11 6 -F 2 3 12 11 7 2 -F 2 8 0 1 11 7 -F 2 4 0 2 11 7 -F 2 5 2 1 22 18 -F 2 4 11 2 11 7 -F 2 2 0 2 11 8 -F 2 1 0 11 4 1 -F 2 7 2 1 22 19 -F 2 4 11 0 4 1 -F 2 2 11 2 11 8 -F 2 9 12 0 4 1 -F 2 5 12 2 13 10 -F 2 2 0 2 11 9 -F 2 6 1 2 22 20 -F 2 4 11 2 11 9 -F 2 8 12 2 13 11 -F 2 10 0 2 11 10 -F 2 5 0 11 4 3 -F 2 2 0 12 4 3 -F 2 14 1 2 22 21 -F 2 7 1 3 17 16 -F 2 6 11 2 11 10 -F 2 8 12 2 13 12 -go - -engine > player2: P 11.803996 11.215721 1 27 3 -P 9.319567 21.808874 1 34 5 -P 14.288424 0.622569 1 22 5 -P 11.865493 5.273785 0 52 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 13 5 -P 14.743177 12.694819 1 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 44 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 2 1 22 1 -F 1 5 2 1 22 2 -F 1 5 2 1 22 3 -F 1 5 2 1 22 4 -F 1 5 2 1 22 6 -F 1 6 2 1 22 8 -F 1 6 2 1 22 9 -F 1 5 2 1 22 10 -F 1 6 11 1 13 1 -F 1 10 0 1 11 1 -F 1 9 2 1 22 12 -F 1 5 2 12 13 3 -F 1 9 2 1 22 13 -F 1 5 2 12 13 4 -F 1 11 2 1 22 14 -F 1 3 2 12 13 5 -F 1 5 11 1 13 5 -F 1 7 12 1 11 3 -F 1 11 0 1 11 4 -F 1 9 2 1 22 15 -F 1 5 11 1 13 6 -F 1 6 12 1 11 4 -F 1 13 0 1 11 5 -F 1 12 2 1 22 16 -F 1 8 11 1 13 7 -F 1 5 12 1 11 5 -F 1 5 0 1 11 6 -F 1 11 2 0 11 6 -F 1 6 2 1 22 17 -F 1 3 2 11 11 6 -F 1 3 12 11 7 2 -F 1 8 0 1 11 7 -F 1 4 0 2 11 7 -F 1 5 2 1 22 18 -F 1 4 11 2 11 7 -F 1 2 0 2 11 8 -F 1 1 0 11 4 1 -F 1 7 2 1 22 19 -F 1 4 11 0 4 1 -F 1 2 11 2 11 8 -F 1 9 12 0 4 1 -F 1 5 12 2 13 10 -F 1 2 0 2 11 9 -F 1 6 1 2 22 20 -F 1 4 11 2 11 9 -F 1 8 12 2 13 11 -F 1 10 0 2 11 10 -F 1 5 0 11 4 3 -F 1 2 0 12 4 3 -F 1 14 1 2 22 21 -F 1 7 1 3 17 16 -F 1 6 11 2 11 10 -F 1 8 12 2 13 12 -go - -player1 > engine: 15 1 22 -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 13 -player2 > engine: comparing 0 and 3, gives 1 0 0.336572607514253 -player2 > engine: 0 3 7 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 3 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 2 0 -player2 > engine: 1 0 17 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 2 0 -player2 > engine: 1 2 8 -player2 > engine: comparing 1 and 3, gives 0 0 0.07172769106024596 -player2 > engine: comparing 1 and 4, gives 0 0 0.22881269671267385 -player2 > engine: comparing 1 and 5, gives 0 0 0.017865583220045826 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 11 -player2 > engine: comparing 2 and 3, gives 1 0 0.22881269671267385 -player2 > engine: 2 3 5 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 6 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 6 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 18 3 -P 9.319567 21.808874 2 36 5 -P 14.288424 0.622569 2 22 5 -P 11.865493 5.273785 0 52 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 13 5 -P 14.743177 12.694819 2 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 25 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 1 -F 2 5 2 1 22 2 -F 2 5 2 1 22 3 -F 2 5 2 1 22 5 -F 2 6 2 1 22 7 -F 2 6 2 1 22 8 -F 2 5 2 1 22 9 -F 2 9 2 1 22 11 -F 2 5 2 12 13 2 -F 2 9 2 1 22 12 -F 2 5 2 12 13 3 -F 2 11 2 1 22 13 -F 2 3 2 12 13 4 -F 2 5 11 1 13 4 -F 2 7 12 1 11 2 -F 2 11 0 1 11 3 -F 2 9 2 1 22 14 -F 2 5 11 1 13 5 -F 2 6 12 1 11 3 -F 2 13 0 1 11 4 -F 2 12 2 1 22 15 -F 2 8 11 1 13 6 -F 2 5 12 1 11 4 -F 2 5 0 1 11 5 -F 2 11 2 0 11 5 -F 2 6 2 1 22 16 -F 2 3 2 11 11 5 -F 2 3 12 11 7 1 -F 2 8 0 1 11 6 -F 2 4 0 2 11 6 -F 2 5 2 1 22 17 -F 2 4 11 2 11 6 -F 2 2 0 2 11 7 -F 2 7 2 1 22 18 -F 2 2 11 2 11 7 -F 2 5 12 2 13 9 -F 2 2 0 2 11 8 -F 2 6 1 2 22 19 -F 2 4 11 2 11 8 -F 2 8 12 2 13 10 -F 2 10 0 2 11 9 -F 2 5 0 11 4 2 -F 2 2 0 12 4 2 -F 2 14 1 2 22 20 -F 2 7 1 3 17 15 -F 2 6 11 2 11 9 -F 2 8 12 2 13 11 -F 1 22 15 1 13 12 -F 2 13 0 2 11 10 -F 2 7 0 3 6 5 -F 2 3 0 11 4 3 -F 2 2 0 12 4 3 -F 2 17 1 0 11 10 -F 2 8 1 2 22 21 -F 2 5 2 3 6 5 -F 2 6 11 2 11 10 -F 2 6 12 2 13 12 -go - -engine > player2: P 11.803996 11.215721 1 18 3 -P 9.319567 21.808874 1 36 5 -P 14.288424 0.622569 1 22 5 -P 11.865493 5.273785 0 52 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 13 5 -P 14.743177 12.694819 1 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 25 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 1 -F 1 5 2 1 22 2 -F 1 5 2 1 22 3 -F 1 5 2 1 22 5 -F 1 6 2 1 22 7 -F 1 6 2 1 22 8 -F 1 5 2 1 22 9 -F 1 9 2 1 22 11 -F 1 5 2 12 13 2 -F 1 9 2 1 22 12 -F 1 5 2 12 13 3 -F 1 11 2 1 22 13 -F 1 3 2 12 13 4 -F 1 5 11 1 13 4 -F 1 7 12 1 11 2 -F 1 11 0 1 11 3 -F 1 9 2 1 22 14 -F 1 5 11 1 13 5 -F 1 6 12 1 11 3 -F 1 13 0 1 11 4 -F 1 12 2 1 22 15 -F 1 8 11 1 13 6 -F 1 5 12 1 11 4 -F 1 5 0 1 11 5 -F 1 11 2 0 11 5 -F 1 6 2 1 22 16 -F 1 3 2 11 11 5 -F 1 3 12 11 7 1 -F 1 8 0 1 11 6 -F 1 4 0 2 11 6 -F 1 5 2 1 22 17 -F 1 4 11 2 11 6 -F 1 2 0 2 11 7 -F 1 7 2 1 22 18 -F 1 2 11 2 11 7 -F 1 5 12 2 13 9 -F 1 2 0 2 11 8 -F 1 6 1 2 22 19 -F 1 4 11 2 11 8 -F 1 8 12 2 13 10 -F 1 10 0 2 11 9 -F 1 5 0 11 4 2 -F 1 2 0 12 4 2 -F 1 14 1 2 22 20 -F 1 7 1 3 17 15 -F 1 6 11 2 11 9 -F 1 8 12 2 13 11 -F 2 22 15 1 13 12 -F 1 13 0 2 11 10 -F 1 7 0 3 6 5 -F 1 3 0 11 4 3 -F 1 2 0 12 4 3 -F 1 17 1 0 11 10 -F 1 8 1 2 22 21 -F 1 5 2 3 6 5 -F 1 6 11 2 11 10 -F 1 6 12 2 13 12 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 9 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 4 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 2 0 -player2 > engine: 1 0 18 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 2 0 -player2 > engine: 1 2 9 -player2 > engine: comparing 1 and 3, gives 0 0 0.07172769106024596 -player2 > engine: comparing 1 and 4, gives 0 0 0.22881269671267385 -player2 > engine: comparing 1 and 5, gives 0 0 0.017865583220045826 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 2 0 -player2 > engine: 2 0 11 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 5 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 6 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 3 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 6 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 3 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 15 3 -P 9.319567 21.808874 2 19 5 -P 14.288424 0.622569 2 16 5 -P 11.865493 5.273785 0 52 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 12 5 -P 14.743177 12.694819 2 8 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 28 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 1 -F 2 5 2 1 22 2 -F 2 5 2 1 22 4 -F 2 6 2 1 22 6 -F 2 6 2 1 22 7 -F 2 5 2 1 22 8 -F 2 9 2 1 22 10 -F 2 5 2 12 13 1 -F 2 9 2 1 22 11 -F 2 5 2 12 13 2 -F 2 11 2 1 22 12 -F 2 3 2 12 13 3 -F 2 5 11 1 13 3 -F 2 7 12 1 11 1 -F 2 11 0 1 11 2 -F 2 9 2 1 22 13 -F 2 5 11 1 13 4 -F 2 6 12 1 11 2 -F 2 13 0 1 11 3 -F 2 12 2 1 22 14 -F 2 8 11 1 13 5 -F 2 5 12 1 11 3 -F 2 5 0 1 11 4 -F 2 11 2 0 11 4 -F 2 6 2 1 22 15 -F 2 3 2 11 11 4 -F 2 8 0 1 11 5 -F 2 4 0 2 11 5 -F 2 5 2 1 22 16 -F 2 4 11 2 11 5 -F 2 2 0 2 11 6 -F 2 7 2 1 22 17 -F 2 2 11 2 11 6 -F 2 5 12 2 13 8 -F 2 2 0 2 11 7 -F 2 6 1 2 22 18 -F 2 4 11 2 11 7 -F 2 8 12 2 13 9 -F 2 10 0 2 11 8 -F 2 5 0 11 4 1 -F 2 2 0 12 4 1 -F 2 14 1 2 22 19 -F 2 7 1 3 17 14 -F 2 6 11 2 11 8 -F 2 8 12 2 13 10 -F 1 22 15 1 13 11 -F 2 13 0 2 11 9 -F 2 7 0 3 6 4 -F 2 3 0 11 4 2 -F 2 2 0 12 4 2 -F 2 17 1 0 11 9 -F 2 8 1 2 22 20 -F 2 5 2 3 6 4 -F 2 6 11 2 11 9 -F 2 6 12 2 13 11 -F 2 4 0 2 11 10 -F 2 2 0 12 4 3 -F 2 18 1 0 11 10 -F 2 9 1 2 22 21 -F 2 11 2 0 11 10 -F 2 6 11 0 4 3 -F 2 3 11 2 11 10 -F 2 6 12 0 4 3 -F 2 3 12 2 13 12 -go - -engine > player2: P 11.803996 11.215721 1 15 3 -P 9.319567 21.808874 1 19 5 -P 14.288424 0.622569 1 16 5 -P 11.865493 5.273785 0 52 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 12 5 -P 14.743177 12.694819 1 8 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 28 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 1 -F 1 5 2 1 22 2 -F 1 5 2 1 22 4 -F 1 6 2 1 22 6 -F 1 6 2 1 22 7 -F 1 5 2 1 22 8 -F 1 9 2 1 22 10 -F 1 5 2 12 13 1 -F 1 9 2 1 22 11 -F 1 5 2 12 13 2 -F 1 11 2 1 22 12 -F 1 3 2 12 13 3 -F 1 5 11 1 13 3 -F 1 7 12 1 11 1 -F 1 11 0 1 11 2 -F 1 9 2 1 22 13 -F 1 5 11 1 13 4 -F 1 6 12 1 11 2 -F 1 13 0 1 11 3 -F 1 12 2 1 22 14 -F 1 8 11 1 13 5 -F 1 5 12 1 11 3 -F 1 5 0 1 11 4 -F 1 11 2 0 11 4 -F 1 6 2 1 22 15 -F 1 3 2 11 11 4 -F 1 8 0 1 11 5 -F 1 4 0 2 11 5 -F 1 5 2 1 22 16 -F 1 4 11 2 11 5 -F 1 2 0 2 11 6 -F 1 7 2 1 22 17 -F 1 2 11 2 11 6 -F 1 5 12 2 13 8 -F 1 2 0 2 11 7 -F 1 6 1 2 22 18 -F 1 4 11 2 11 7 -F 1 8 12 2 13 9 -F 1 10 0 2 11 8 -F 1 5 0 11 4 1 -F 1 2 0 12 4 1 -F 1 14 1 2 22 19 -F 1 7 1 3 17 14 -F 1 6 11 2 11 8 -F 1 8 12 2 13 10 -F 2 22 15 1 13 11 -F 1 13 0 2 11 9 -F 1 7 0 3 6 4 -F 1 3 0 11 4 2 -F 1 2 0 12 4 2 -F 1 17 1 0 11 9 -F 1 8 1 2 22 20 -F 1 5 2 3 6 4 -F 1 6 11 2 11 9 -F 1 6 12 2 13 11 -F 1 4 0 2 11 10 -F 1 2 0 12 4 3 -F 1 18 1 0 11 10 -F 1 9 1 2 22 21 -F 1 11 2 0 11 10 -F 1 6 11 0 4 3 -F 1 3 11 2 11 10 -F 1 6 12 0 4 3 -F 1 3 12 2 13 12 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 7 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 2 0 -player2 > engine: 1 2 9 -player2 > engine: comparing 1 and 3, gives 0 0 0.07172769106024596 -player2 > engine: comparing 1 and 4, gives 0 0 0.22881269671267385 -player2 > engine: comparing 1 and 5, gives 0 0 0.017865583220045826 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 8 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 6 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 3 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 4 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 2 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 11 3 -P 9.319567 21.808874 2 27 5 -P 14.288424 0.622569 2 21 5 -P 11.865493 5.273785 0 52 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 13 5 -P 14.743177 12.694819 2 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 31 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 1 -F 2 5 2 1 22 3 -F 2 6 2 1 22 5 -F 2 6 2 1 22 6 -F 2 5 2 1 22 7 -F 2 9 2 1 22 9 -F 2 9 2 1 22 10 -F 2 5 2 12 13 1 -F 2 11 2 1 22 11 -F 2 3 2 12 13 2 -F 2 5 11 1 13 2 -F 2 11 0 1 11 1 -F 2 9 2 1 22 12 -F 2 5 11 1 13 3 -F 2 6 12 1 11 1 -F 2 13 0 1 11 2 -F 2 12 2 1 22 13 -F 2 8 11 1 13 4 -F 2 5 12 1 11 2 -F 2 5 0 1 11 3 -F 2 11 2 0 11 3 -F 2 6 2 1 22 14 -F 2 3 2 11 11 3 -F 2 8 0 1 11 4 -F 2 4 0 2 11 4 -F 2 5 2 1 22 15 -F 2 4 11 2 11 4 -F 2 2 0 2 11 5 -F 2 7 2 1 22 16 -F 2 2 11 2 11 5 -F 2 5 12 2 13 7 -F 2 2 0 2 11 6 -F 2 6 1 2 22 17 -F 2 4 11 2 11 6 -F 2 8 12 2 13 8 -F 2 10 0 2 11 7 -F 2 14 1 2 22 18 -F 2 7 1 3 17 13 -F 2 6 11 2 11 7 -F 2 8 12 2 13 9 -F 1 22 15 1 13 10 -F 2 13 0 2 11 8 -F 2 7 0 3 6 3 -F 2 3 0 11 4 1 -F 2 2 0 12 4 1 -F 2 17 1 0 11 8 -F 2 8 1 2 22 19 -F 2 5 2 3 6 3 -F 2 6 11 2 11 8 -F 2 6 12 2 13 10 -F 2 4 0 2 11 9 -F 2 2 0 12 4 2 -F 2 18 1 0 11 9 -F 2 9 1 2 22 20 -F 2 11 2 0 11 9 -F 2 6 11 0 4 2 -F 2 3 11 2 11 9 -F 2 6 12 0 4 2 -F 2 3 12 2 13 11 -F 2 7 0 2 11 10 -F 2 9 1 2 22 21 -F 2 6 11 0 4 3 -F 2 3 11 2 11 10 -F 2 4 12 0 4 3 -F 2 2 12 2 13 12 -go - -engine > player2: P 11.803996 11.215721 1 11 3 -P 9.319567 21.808874 1 27 5 -P 14.288424 0.622569 1 21 5 -P 11.865493 5.273785 0 52 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 13 5 -P 14.743177 12.694819 1 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 31 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 1 -F 1 5 2 1 22 3 -F 1 6 2 1 22 5 -F 1 6 2 1 22 6 -F 1 5 2 1 22 7 -F 1 9 2 1 22 9 -F 1 9 2 1 22 10 -F 1 5 2 12 13 1 -F 1 11 2 1 22 11 -F 1 3 2 12 13 2 -F 1 5 11 1 13 2 -F 1 11 0 1 11 1 -F 1 9 2 1 22 12 -F 1 5 11 1 13 3 -F 1 6 12 1 11 1 -F 1 13 0 1 11 2 -F 1 12 2 1 22 13 -F 1 8 11 1 13 4 -F 1 5 12 1 11 2 -F 1 5 0 1 11 3 -F 1 11 2 0 11 3 -F 1 6 2 1 22 14 -F 1 3 2 11 11 3 -F 1 8 0 1 11 4 -F 1 4 0 2 11 4 -F 1 5 2 1 22 15 -F 1 4 11 2 11 4 -F 1 2 0 2 11 5 -F 1 7 2 1 22 16 -F 1 2 11 2 11 5 -F 1 5 12 2 13 7 -F 1 2 0 2 11 6 -F 1 6 1 2 22 17 -F 1 4 11 2 11 6 -F 1 8 12 2 13 8 -F 1 10 0 2 11 7 -F 1 14 1 2 22 18 -F 1 7 1 3 17 13 -F 1 6 11 2 11 7 -F 1 8 12 2 13 9 -F 2 22 15 1 13 10 -F 1 13 0 2 11 8 -F 1 7 0 3 6 3 -F 1 3 0 11 4 1 -F 1 2 0 12 4 1 -F 1 17 1 0 11 8 -F 1 8 1 2 22 19 -F 1 5 2 3 6 3 -F 1 6 11 2 11 8 -F 1 6 12 2 13 10 -F 1 4 0 2 11 9 -F 1 2 0 12 4 2 -F 1 18 1 0 11 9 -F 1 9 1 2 22 20 -F 1 11 2 0 11 9 -F 1 6 11 0 4 2 -F 1 3 11 2 11 9 -F 1 6 12 0 4 2 -F 1 3 12 2 13 11 -F 1 7 0 2 11 10 -F 1 9 1 2 22 21 -F 1 6 11 0 4 3 -F 1 3 11 2 11 10 -F 1 4 12 0 4 3 -F 1 2 12 2 13 12 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 1 0 0.336572607514253 -player2 > engine: 0 3 5 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 2 0 -player2 > engine: 1 2 13 -player2 > engine: comparing 1 and 3, gives 1 0 0.07172769106024596 -player2 > engine: 1 3 7 -player2 > engine: comparing 1 and 4, gives 0 0 0.22881269671267385 -player2 > engine: comparing 1 and 5, gives 0 0 0.017865583220045826 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 10 -player2 > engine: comparing 2 and 3, gives 1 0 0.22881269671267385 -player2 > engine: 2 3 5 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 6 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 7 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 9 3 -P 9.319567 21.808874 2 34 5 -P 14.288424 0.622569 2 21 5 -P 11.865493 5.273785 0 52 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 15 5 -P 14.743177 12.694819 2 19 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 34 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 2 -F 2 6 2 1 22 4 -F 2 6 2 1 22 5 -F 2 5 2 1 22 6 -F 2 9 2 1 22 8 -F 2 9 2 1 22 9 -F 2 11 2 1 22 10 -F 2 3 2 12 13 1 -F 2 5 11 1 13 1 -F 2 9 2 1 22 11 -F 2 5 11 1 13 2 -F 2 13 0 1 11 1 -F 2 12 2 1 22 12 -F 2 8 11 1 13 3 -F 2 5 12 1 11 1 -F 2 5 0 1 11 2 -F 2 11 2 0 11 2 -F 2 6 2 1 22 13 -F 2 3 2 11 11 2 -F 2 8 0 1 11 3 -F 2 4 0 2 11 3 -F 2 5 2 1 22 14 -F 2 4 11 2 11 3 -F 2 2 0 2 11 4 -F 2 7 2 1 22 15 -F 2 2 11 2 11 4 -F 2 5 12 2 13 6 -F 2 2 0 2 11 5 -F 2 6 1 2 22 16 -F 2 4 11 2 11 5 -F 2 8 12 2 13 7 -F 2 10 0 2 11 6 -F 2 14 1 2 22 17 -F 2 7 1 3 17 12 -F 2 6 11 2 11 6 -F 2 8 12 2 13 8 -F 1 22 15 1 13 9 -F 2 13 0 2 11 7 -F 2 7 0 3 6 2 -F 2 17 1 0 11 7 -F 2 8 1 2 22 18 -F 2 5 2 3 6 2 -F 2 6 11 2 11 7 -F 2 6 12 2 13 9 -F 2 4 0 2 11 8 -F 2 2 0 12 4 1 -F 2 18 1 0 11 8 -F 2 9 1 2 22 19 -F 2 11 2 0 11 8 -F 2 6 11 0 4 1 -F 2 3 11 2 11 8 -F 2 6 12 0 4 1 -F 2 3 12 2 13 10 -F 2 7 0 2 11 9 -F 2 9 1 2 22 20 -F 2 6 11 0 4 2 -F 2 3 11 2 11 9 -F 2 4 12 0 4 2 -F 2 2 12 2 13 11 -F 2 5 0 3 6 5 -F 2 13 1 2 22 21 -F 2 7 1 3 17 16 -F 2 5 2 3 6 5 -F 2 6 11 0 4 3 -F 2 7 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 9 3 -P 9.319567 21.808874 1 34 5 -P 14.288424 0.622569 1 21 5 -P 11.865493 5.273785 0 52 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 15 5 -P 14.743177 12.694819 1 19 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 34 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 2 -F 1 6 2 1 22 4 -F 1 6 2 1 22 5 -F 1 5 2 1 22 6 -F 1 9 2 1 22 8 -F 1 9 2 1 22 9 -F 1 11 2 1 22 10 -F 1 3 2 12 13 1 -F 1 5 11 1 13 1 -F 1 9 2 1 22 11 -F 1 5 11 1 13 2 -F 1 13 0 1 11 1 -F 1 12 2 1 22 12 -F 1 8 11 1 13 3 -F 1 5 12 1 11 1 -F 1 5 0 1 11 2 -F 1 11 2 0 11 2 -F 1 6 2 1 22 13 -F 1 3 2 11 11 2 -F 1 8 0 1 11 3 -F 1 4 0 2 11 3 -F 1 5 2 1 22 14 -F 1 4 11 2 11 3 -F 1 2 0 2 11 4 -F 1 7 2 1 22 15 -F 1 2 11 2 11 4 -F 1 5 12 2 13 6 -F 1 2 0 2 11 5 -F 1 6 1 2 22 16 -F 1 4 11 2 11 5 -F 1 8 12 2 13 7 -F 1 10 0 2 11 6 -F 1 14 1 2 22 17 -F 1 7 1 3 17 12 -F 1 6 11 2 11 6 -F 1 8 12 2 13 8 -F 2 22 15 1 13 9 -F 1 13 0 2 11 7 -F 1 7 0 3 6 2 -F 1 17 1 0 11 7 -F 1 8 1 2 22 18 -F 1 5 2 3 6 2 -F 1 6 11 2 11 7 -F 1 6 12 2 13 9 -F 1 4 0 2 11 8 -F 1 2 0 12 4 1 -F 1 18 1 0 11 8 -F 1 9 1 2 22 19 -F 1 11 2 0 11 8 -F 1 6 11 0 4 1 -F 1 3 11 2 11 8 -F 1 6 12 0 4 1 -F 1 3 12 2 13 10 -F 1 7 0 2 11 9 -F 1 9 1 2 22 20 -F 1 6 11 0 4 2 -F 1 3 11 2 11 9 -F 1 4 12 0 4 2 -F 1 2 12 2 13 11 -F 1 5 0 3 6 5 -F 1 13 1 2 22 21 -F 1 7 1 3 17 16 -F 1 5 2 3 6 5 -F 1 6 11 0 4 3 -F 1 7 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 4 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 2 0 -player2 > engine: 1 2 17 -player2 > engine: comparing 1 and 3, gives 1 0 0.07172769106024596 -player2 > engine: 1 3 8 -player2 > engine: comparing 1 and 4, gives 0 0 0.22881269671267385 -player2 > engine: comparing 1 and 5, gives 0 0 0.017865583220045826 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 2 0 -player2 > engine: 1 11 4 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 10 -player2 > engine: comparing 2 and 3, gives 1 0 0.22881269671267385 -player2 > engine: 2 3 5 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 1 0 0.22313851847325064 -player2 > engine: 11 3 7 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 2 0 -player2 > engine: 11 11 4 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 1 0 0.1507642257922135 -player2 > engine: 12 3 9 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 2 0 -player2 > engine: 12 11 5 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 20 3 -P 9.319567 21.808874 2 33 5 -P 14.288424 0.622569 2 21 5 -P 11.865493 5.273785 0 52 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 13 5 -P 14.743177 12.694819 2 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 37 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 1 -F 2 6 2 1 22 3 -F 2 6 2 1 22 4 -F 2 5 2 1 22 5 -F 2 9 2 1 22 7 -F 2 9 2 1 22 8 -F 2 11 2 1 22 9 -F 2 9 2 1 22 10 -F 2 5 11 1 13 1 -F 2 12 2 1 22 11 -F 2 8 11 1 13 2 -F 2 5 0 1 11 1 -F 2 11 2 0 11 1 -F 2 6 2 1 22 12 -F 2 3 2 11 11 1 -F 2 8 0 1 11 2 -F 2 4 0 2 11 2 -F 2 5 2 1 22 13 -F 2 4 11 2 11 2 -F 2 2 0 2 11 3 -F 2 7 2 1 22 14 -F 2 2 11 2 11 3 -F 2 5 12 2 13 5 -F 2 2 0 2 11 4 -F 2 6 1 2 22 15 -F 2 4 11 2 11 4 -F 2 8 12 2 13 6 -F 2 10 0 2 11 5 -F 2 14 1 2 22 16 -F 2 7 1 3 17 11 -F 2 6 11 2 11 5 -F 2 8 12 2 13 7 -F 1 22 15 1 13 8 -F 2 13 0 2 11 6 -F 2 7 0 3 6 1 -F 2 17 1 0 11 6 -F 2 8 1 2 22 17 -F 2 5 2 3 6 1 -F 2 6 11 2 11 6 -F 2 6 12 2 13 8 -F 2 4 0 2 11 7 -F 2 18 1 0 11 7 -F 2 9 1 2 22 18 -F 2 11 2 0 11 7 -F 2 3 11 2 11 7 -F 2 3 12 2 13 9 -F 2 7 0 2 11 8 -F 2 9 1 2 22 19 -F 2 6 11 0 4 1 -F 2 3 11 2 11 8 -F 2 4 12 0 4 1 -F 2 2 12 2 13 10 -F 2 5 0 3 6 4 -F 2 13 1 2 22 20 -F 2 7 1 3 17 15 -F 2 5 2 3 6 4 -F 2 6 11 0 4 2 -F 2 7 12 0 4 2 -F 2 4 0 11 4 3 -F 2 17 1 2 22 21 -F 2 8 1 3 17 16 -F 2 4 1 11 13 12 -F 2 5 2 3 6 5 -F 2 7 11 3 6 5 -F 2 9 12 3 8 7 -F 2 5 12 11 7 6 -go - -engine > player2: P 11.803996 11.215721 1 20 3 -P 9.319567 21.808874 1 33 5 -P 14.288424 0.622569 1 21 5 -P 11.865493 5.273785 0 52 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 13 5 -P 14.743177 12.694819 1 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 37 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 1 -F 1 6 2 1 22 3 -F 1 6 2 1 22 4 -F 1 5 2 1 22 5 -F 1 9 2 1 22 7 -F 1 9 2 1 22 8 -F 1 11 2 1 22 9 -F 1 9 2 1 22 10 -F 1 5 11 1 13 1 -F 1 12 2 1 22 11 -F 1 8 11 1 13 2 -F 1 5 0 1 11 1 -F 1 11 2 0 11 1 -F 1 6 2 1 22 12 -F 1 3 2 11 11 1 -F 1 8 0 1 11 2 -F 1 4 0 2 11 2 -F 1 5 2 1 22 13 -F 1 4 11 2 11 2 -F 1 2 0 2 11 3 -F 1 7 2 1 22 14 -F 1 2 11 2 11 3 -F 1 5 12 2 13 5 -F 1 2 0 2 11 4 -F 1 6 1 2 22 15 -F 1 4 11 2 11 4 -F 1 8 12 2 13 6 -F 1 10 0 2 11 5 -F 1 14 1 2 22 16 -F 1 7 1 3 17 11 -F 1 6 11 2 11 5 -F 1 8 12 2 13 7 -F 2 22 15 1 13 8 -F 1 13 0 2 11 6 -F 1 7 0 3 6 1 -F 1 17 1 0 11 6 -F 1 8 1 2 22 17 -F 1 5 2 3 6 1 -F 1 6 11 2 11 6 -F 1 6 12 2 13 8 -F 1 4 0 2 11 7 -F 1 18 1 0 11 7 -F 1 9 1 2 22 18 -F 1 11 2 0 11 7 -F 1 3 11 2 11 7 -F 1 3 12 2 13 9 -F 1 7 0 2 11 8 -F 1 9 1 2 22 19 -F 1 6 11 0 4 1 -F 1 3 11 2 11 8 -F 1 4 12 0 4 1 -F 1 2 12 2 13 10 -F 1 5 0 3 6 4 -F 1 13 1 2 22 20 -F 1 7 1 3 17 15 -F 1 5 2 3 6 4 -F 1 6 11 0 4 2 -F 1 7 12 0 4 2 -F 1 4 0 11 4 3 -F 1 17 1 2 22 21 -F 1 8 1 3 17 16 -F 1 4 1 11 13 12 -F 1 5 2 3 6 5 -F 1 7 11 3 6 5 -F 1 9 12 3 8 7 -F 1 5 12 11 7 6 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 1 0 0.336572607514253 -player2 > engine: 0 3 10 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 5 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 1 0 0.07172769106024596 -player2 > engine: 1 3 16 -player2 > engine: comparing 1 and 4, gives 1 0 0.22881269671267385 -player2 > engine: 1 4 8 -player2 > engine: comparing 1 and 5, gives 0 0 0.017865583220045826 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 2 0 -player2 > engine: 1 12 4 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 1 0 0.22881269671267385 -player2 > engine: 2 3 10 -player2 > engine: comparing 2 and 4, gives 1 0 0.07172769106024594 -player2 > engine: 2 4 5 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 2 0 -player2 > engine: 2 12 3 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 1 0 0.22313851847325064 -player2 > engine: 11 3 6 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 2 0 -player2 > engine: 11 12 3 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 1 0 0.1507642257922135 -player2 > engine: 12 3 7 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 4 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 27 3 -P 9.319567 21.808874 2 25 5 -P 14.288424 0.622569 2 8 5 -P 11.865493 5.273785 0 40 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 12 5 -P 14.743177 12.694819 2 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 40 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 2 1 22 2 -F 2 6 2 1 22 3 -F 2 5 2 1 22 4 -F 2 9 2 1 22 6 -F 2 9 2 1 22 7 -F 2 11 2 1 22 8 -F 2 9 2 1 22 9 -F 2 12 2 1 22 10 -F 2 8 11 1 13 1 -F 2 6 2 1 22 11 -F 2 8 0 1 11 1 -F 2 4 0 2 11 1 -F 2 5 2 1 22 12 -F 2 4 11 2 11 1 -F 2 2 0 2 11 2 -F 2 7 2 1 22 13 -F 2 2 11 2 11 2 -F 2 5 12 2 13 4 -F 2 2 0 2 11 3 -F 2 6 1 2 22 14 -F 2 4 11 2 11 3 -F 2 8 12 2 13 5 -F 2 10 0 2 11 4 -F 2 14 1 2 22 15 -F 2 7 1 3 17 10 -F 2 6 11 2 11 4 -F 2 8 12 2 13 6 -F 1 22 15 1 13 7 -F 2 13 0 2 11 5 -F 2 17 1 0 11 5 -F 2 8 1 2 22 16 -F 2 6 11 2 11 5 -F 2 6 12 2 13 7 -F 2 4 0 2 11 6 -F 2 18 1 0 11 6 -F 2 9 1 2 22 17 -F 2 11 2 0 11 6 -F 2 3 11 2 11 6 -F 2 3 12 2 13 8 -F 2 7 0 2 11 7 -F 2 9 1 2 22 18 -F 2 3 11 2 11 7 -F 2 2 12 2 13 9 -F 2 5 0 3 6 3 -F 2 13 1 2 22 19 -F 2 7 1 3 17 14 -F 2 5 2 3 6 3 -F 2 6 11 0 4 1 -F 2 7 12 0 4 1 -F 2 4 0 11 4 2 -F 2 17 1 2 22 20 -F 2 8 1 3 17 15 -F 2 4 1 11 13 11 -F 2 5 2 3 6 4 -F 2 7 11 3 6 4 -F 2 9 12 3 8 6 -F 2 5 12 11 7 5 -F 2 10 0 3 6 5 -F 2 5 0 11 4 3 -F 2 2 0 12 4 3 -F 2 16 1 3 17 16 -F 2 8 1 4 6 5 -F 2 4 1 12 11 10 -F 2 10 2 3 6 5 -F 2 5 2 4 17 16 -F 2 3 2 12 13 12 -F 2 6 11 3 6 5 -F 2 3 11 12 7 6 -F 2 7 12 3 8 7 -go - -engine > player2: P 11.803996 11.215721 1 27 3 -P 9.319567 21.808874 1 25 5 -P 14.288424 0.622569 1 8 5 -P 11.865493 5.273785 0 40 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 12 5 -P 14.743177 12.694819 1 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 40 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 2 1 22 2 -F 1 6 2 1 22 3 -F 1 5 2 1 22 4 -F 1 9 2 1 22 6 -F 1 9 2 1 22 7 -F 1 11 2 1 22 8 -F 1 9 2 1 22 9 -F 1 12 2 1 22 10 -F 1 8 11 1 13 1 -F 1 6 2 1 22 11 -F 1 8 0 1 11 1 -F 1 4 0 2 11 1 -F 1 5 2 1 22 12 -F 1 4 11 2 11 1 -F 1 2 0 2 11 2 -F 1 7 2 1 22 13 -F 1 2 11 2 11 2 -F 1 5 12 2 13 4 -F 1 2 0 2 11 3 -F 1 6 1 2 22 14 -F 1 4 11 2 11 3 -F 1 8 12 2 13 5 -F 1 10 0 2 11 4 -F 1 14 1 2 22 15 -F 1 7 1 3 17 10 -F 1 6 11 2 11 4 -F 1 8 12 2 13 6 -F 2 22 15 1 13 7 -F 1 13 0 2 11 5 -F 1 17 1 0 11 5 -F 1 8 1 2 22 16 -F 1 6 11 2 11 5 -F 1 6 12 2 13 7 -F 1 4 0 2 11 6 -F 1 18 1 0 11 6 -F 1 9 1 2 22 17 -F 1 11 2 0 11 6 -F 1 3 11 2 11 6 -F 1 3 12 2 13 8 -F 1 7 0 2 11 7 -F 1 9 1 2 22 18 -F 1 3 11 2 11 7 -F 1 2 12 2 13 9 -F 1 5 0 3 6 3 -F 1 13 1 2 22 19 -F 1 7 1 3 17 14 -F 1 5 2 3 6 3 -F 1 6 11 0 4 1 -F 1 7 12 0 4 1 -F 1 4 0 11 4 2 -F 1 17 1 2 22 20 -F 1 8 1 3 17 15 -F 1 4 1 11 13 11 -F 1 5 2 3 6 4 -F 1 7 11 3 6 4 -F 1 9 12 3 8 6 -F 1 5 12 11 7 5 -F 1 10 0 3 6 5 -F 1 5 0 11 4 3 -F 1 2 0 12 4 3 -F 1 16 1 3 17 16 -F 1 8 1 4 6 5 -F 1 4 1 12 11 10 -F 1 10 2 3 6 5 -F 1 5 2 4 17 16 -F 1 3 2 12 13 12 -F 1 6 11 3 6 5 -F 1 3 11 12 7 6 -F 1 7 12 3 8 7 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 1 0 0.336572607514253 -player2 > engine: 0 3 13 -player2 > engine: comparing 0 and 4, gives 1 0 0.33657255029055216 -player2 > engine: 0 4 7 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 3 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 1 0 0.07172769106024596 -player2 > engine: 1 3 12 -player2 > engine: comparing 1 and 4, gives 1 0 0.22881269671267385 -player2 > engine: 1 4 6 -player2 > engine: comparing 1 and 5, gives 0 0 0.017865583220045826 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 2 0 -player2 > engine: 1 12 3 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 2 0 -player2 > engine: 2 12 4 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 1 0 0.22313851847325064 -player2 > engine: 11 3 6 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 2 0 -player2 > engine: 11 12 3 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 1 0 0.1507642257922135 -player2 > engine: 12 3 6 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 3 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 18 3 -P 9.319567 21.808874 2 25 5 -P 14.288424 0.622569 2 17 5 -P 11.865493 5.273785 0 40 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 8 5 -P 14.743177 12.694819 2 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 43 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 2 1 22 1 -F 2 6 2 1 22 2 -F 2 5 2 1 22 3 -F 2 9 2 1 22 5 -F 2 9 2 1 22 6 -F 2 11 2 1 22 7 -F 2 9 2 1 22 8 -F 2 12 2 1 22 9 -F 2 6 2 1 22 10 -F 2 5 2 1 22 11 -F 2 2 0 2 11 1 -F 2 7 2 1 22 12 -F 2 2 11 2 11 1 -F 2 5 12 2 13 3 -F 2 2 0 2 11 2 -F 2 6 1 2 22 13 -F 2 4 11 2 11 2 -F 2 8 12 2 13 4 -F 2 10 0 2 11 3 -F 2 14 1 2 22 14 -F 2 7 1 3 17 9 -F 2 6 11 2 11 3 -F 2 8 12 2 13 5 -F 1 22 15 1 13 6 -F 2 13 0 2 11 4 -F 2 17 1 0 11 4 -F 2 8 1 2 22 15 -F 2 6 11 2 11 4 -F 2 6 12 2 13 6 -F 2 4 0 2 11 5 -F 2 18 1 0 11 5 -F 2 9 1 2 22 16 -F 2 11 2 0 11 5 -F 2 3 11 2 11 5 -F 2 3 12 2 13 7 -F 2 7 0 2 11 6 -F 2 9 1 2 22 17 -F 2 3 11 2 11 6 -F 2 2 12 2 13 8 -F 2 5 0 3 6 2 -F 2 13 1 2 22 18 -F 2 7 1 3 17 13 -F 2 5 2 3 6 2 -F 2 4 0 11 4 1 -F 2 17 1 2 22 19 -F 2 8 1 3 17 14 -F 2 4 1 11 13 10 -F 2 5 2 3 6 3 -F 2 7 11 3 6 3 -F 2 9 12 3 8 5 -F 2 5 12 11 7 4 -F 2 10 0 3 6 4 -F 2 5 0 11 4 2 -F 2 2 0 12 4 2 -F 2 16 1 3 17 15 -F 2 8 1 4 6 4 -F 2 4 1 12 11 9 -F 2 10 2 3 6 4 -F 2 5 2 4 17 15 -F 2 3 2 12 13 11 -F 2 6 11 3 6 4 -F 2 3 11 12 7 5 -F 2 7 12 3 8 6 -F 2 13 0 3 6 5 -F 2 7 0 4 6 5 -F 2 3 0 11 4 3 -F 2 2 0 12 4 3 -F 2 12 1 3 17 16 -F 2 6 1 4 6 5 -F 2 3 1 12 11 10 -F 2 4 2 12 13 12 -F 2 6 11 3 6 5 -F 2 3 11 12 7 6 -F 2 6 12 3 8 7 -go - -engine > player2: P 11.803996 11.215721 1 18 3 -P 9.319567 21.808874 1 25 5 -P 14.288424 0.622569 1 17 5 -P 11.865493 5.273785 0 40 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 8 5 -P 14.743177 12.694819 1 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 43 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 2 1 22 1 -F 1 6 2 1 22 2 -F 1 5 2 1 22 3 -F 1 9 2 1 22 5 -F 1 9 2 1 22 6 -F 1 11 2 1 22 7 -F 1 9 2 1 22 8 -F 1 12 2 1 22 9 -F 1 6 2 1 22 10 -F 1 5 2 1 22 11 -F 1 2 0 2 11 1 -F 1 7 2 1 22 12 -F 1 2 11 2 11 1 -F 1 5 12 2 13 3 -F 1 2 0 2 11 2 -F 1 6 1 2 22 13 -F 1 4 11 2 11 2 -F 1 8 12 2 13 4 -F 1 10 0 2 11 3 -F 1 14 1 2 22 14 -F 1 7 1 3 17 9 -F 1 6 11 2 11 3 -F 1 8 12 2 13 5 -F 2 22 15 1 13 6 -F 1 13 0 2 11 4 -F 1 17 1 0 11 4 -F 1 8 1 2 22 15 -F 1 6 11 2 11 4 -F 1 6 12 2 13 6 -F 1 4 0 2 11 5 -F 1 18 1 0 11 5 -F 1 9 1 2 22 16 -F 1 11 2 0 11 5 -F 1 3 11 2 11 5 -F 1 3 12 2 13 7 -F 1 7 0 2 11 6 -F 1 9 1 2 22 17 -F 1 3 11 2 11 6 -F 1 2 12 2 13 8 -F 1 5 0 3 6 2 -F 1 13 1 2 22 18 -F 1 7 1 3 17 13 -F 1 5 2 3 6 2 -F 1 4 0 11 4 1 -F 1 17 1 2 22 19 -F 1 8 1 3 17 14 -F 1 4 1 11 13 10 -F 1 5 2 3 6 3 -F 1 7 11 3 6 3 -F 1 9 12 3 8 5 -F 1 5 12 11 7 4 -F 1 10 0 3 6 4 -F 1 5 0 11 4 2 -F 1 2 0 12 4 2 -F 1 16 1 3 17 15 -F 1 8 1 4 6 4 -F 1 4 1 12 11 9 -F 1 10 2 3 6 4 -F 1 5 2 4 17 15 -F 1 3 2 12 13 11 -F 1 6 11 3 6 4 -F 1 3 11 12 7 5 -F 1 7 12 3 8 6 -F 1 13 0 3 6 5 -F 1 7 0 4 6 5 -F 1 3 0 11 4 3 -F 1 2 0 12 4 3 -F 1 12 1 3 17 16 -F 1 6 1 4 6 5 -F 1 3 1 12 11 10 -F 1 4 2 12 13 12 -F 1 6 11 3 6 5 -F 1 3 11 12 7 6 -F 1 6 12 3 8 7 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 9 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 4 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 1 0 0.07172769106024596 -player2 > engine: 1 3 12 -player2 > engine: comparing 1 and 4, gives 1 0 0.22881269671267385 -player2 > engine: 1 4 6 -player2 > engine: comparing 1 and 5, gives 0 0 0.017865583220045826 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 1 0 0.22881269671267385 -player2 > engine: 2 3 8 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 4 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 6 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 17 3 -P 9.319567 21.808874 2 18 5 -P 14.288424 0.622569 2 18 5 -P 11.865493 5.273785 0 40 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 13 5 -P 14.743177 12.694819 2 11 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 46 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 2 1 22 1 -F 2 5 2 1 22 2 -F 2 9 2 1 22 4 -F 2 9 2 1 22 5 -F 2 11 2 1 22 6 -F 2 9 2 1 22 7 -F 2 12 2 1 22 8 -F 2 6 2 1 22 9 -F 2 5 2 1 22 10 -F 2 7 2 1 22 11 -F 2 5 12 2 13 2 -F 2 2 0 2 11 1 -F 2 6 1 2 22 12 -F 2 4 11 2 11 1 -F 2 8 12 2 13 3 -F 2 10 0 2 11 2 -F 2 14 1 2 22 13 -F 2 7 1 3 17 8 -F 2 6 11 2 11 2 -F 2 8 12 2 13 4 -F 1 22 15 1 13 5 -F 2 13 0 2 11 3 -F 2 17 1 0 11 3 -F 2 8 1 2 22 14 -F 2 6 11 2 11 3 -F 2 6 12 2 13 5 -F 2 4 0 2 11 4 -F 2 18 1 0 11 4 -F 2 9 1 2 22 15 -F 2 11 2 0 11 4 -F 2 3 11 2 11 4 -F 2 3 12 2 13 6 -F 2 7 0 2 11 5 -F 2 9 1 2 22 16 -F 2 3 11 2 11 5 -F 2 2 12 2 13 7 -F 2 5 0 3 6 1 -F 2 13 1 2 22 17 -F 2 7 1 3 17 12 -F 2 5 2 3 6 1 -F 2 17 1 2 22 18 -F 2 8 1 3 17 13 -F 2 4 1 11 13 9 -F 2 5 2 3 6 2 -F 2 7 11 3 6 2 -F 2 9 12 3 8 4 -F 2 5 12 11 7 3 -F 2 10 0 3 6 3 -F 2 5 0 11 4 1 -F 2 2 0 12 4 1 -F 2 16 1 3 17 14 -F 2 8 1 4 6 3 -F 2 4 1 12 11 8 -F 2 10 2 3 6 3 -F 2 5 2 4 17 14 -F 2 3 2 12 13 10 -F 2 6 11 3 6 3 -F 2 3 11 12 7 4 -F 2 7 12 3 8 5 -F 2 13 0 3 6 4 -F 2 7 0 4 6 4 -F 2 3 0 11 4 2 -F 2 2 0 12 4 2 -F 2 12 1 3 17 15 -F 2 6 1 4 6 4 -F 2 3 1 12 11 9 -F 2 4 2 12 13 11 -F 2 6 11 3 6 4 -F 2 3 11 12 7 5 -F 2 6 12 3 8 6 -F 2 4 0 12 4 3 -F 2 12 1 3 17 16 -F 2 6 1 4 6 5 -F 2 8 2 3 6 5 -F 2 4 11 0 4 3 -F 2 6 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 17 3 -P 9.319567 21.808874 1 18 5 -P 14.288424 0.622569 1 18 5 -P 11.865493 5.273785 0 40 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 13 5 -P 14.743177 12.694819 1 11 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 46 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 2 1 22 1 -F 1 5 2 1 22 2 -F 1 9 2 1 22 4 -F 1 9 2 1 22 5 -F 1 11 2 1 22 6 -F 1 9 2 1 22 7 -F 1 12 2 1 22 8 -F 1 6 2 1 22 9 -F 1 5 2 1 22 10 -F 1 7 2 1 22 11 -F 1 5 12 2 13 2 -F 1 2 0 2 11 1 -F 1 6 1 2 22 12 -F 1 4 11 2 11 1 -F 1 8 12 2 13 3 -F 1 10 0 2 11 2 -F 1 14 1 2 22 13 -F 1 7 1 3 17 8 -F 1 6 11 2 11 2 -F 1 8 12 2 13 4 -F 2 22 15 1 13 5 -F 1 13 0 2 11 3 -F 1 17 1 0 11 3 -F 1 8 1 2 22 14 -F 1 6 11 2 11 3 -F 1 6 12 2 13 5 -F 1 4 0 2 11 4 -F 1 18 1 0 11 4 -F 1 9 1 2 22 15 -F 1 11 2 0 11 4 -F 1 3 11 2 11 4 -F 1 3 12 2 13 6 -F 1 7 0 2 11 5 -F 1 9 1 2 22 16 -F 1 3 11 2 11 5 -F 1 2 12 2 13 7 -F 1 5 0 3 6 1 -F 1 13 1 2 22 17 -F 1 7 1 3 17 12 -F 1 5 2 3 6 1 -F 1 17 1 2 22 18 -F 1 8 1 3 17 13 -F 1 4 1 11 13 9 -F 1 5 2 3 6 2 -F 1 7 11 3 6 2 -F 1 9 12 3 8 4 -F 1 5 12 11 7 3 -F 1 10 0 3 6 3 -F 1 5 0 11 4 1 -F 1 2 0 12 4 1 -F 1 16 1 3 17 14 -F 1 8 1 4 6 3 -F 1 4 1 12 11 8 -F 1 10 2 3 6 3 -F 1 5 2 4 17 14 -F 1 3 2 12 13 10 -F 1 6 11 3 6 3 -F 1 3 11 12 7 4 -F 1 7 12 3 8 5 -F 1 13 0 3 6 4 -F 1 7 0 4 6 4 -F 1 3 0 11 4 2 -F 1 2 0 12 4 2 -F 1 12 1 3 17 15 -F 1 6 1 4 6 4 -F 1 3 1 12 11 9 -F 1 4 2 12 13 11 -F 1 6 11 3 6 4 -F 1 3 11 12 7 5 -F 1 6 12 3 8 6 -F 1 4 0 12 4 3 -F 1 12 1 3 17 16 -F 1 6 1 4 6 5 -F 1 8 2 3 6 5 -F 1 4 11 0 4 3 -F 1 6 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 1 0 0.336572607514253 -player2 > engine: 0 3 8 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 4 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 1 0 0.07172769106024596 -player2 > engine: 1 3 9 -player2 > engine: comparing 1 and 4, gives 0 0 0.22881269671267385 -player2 > engine: comparing 1 and 5, gives 0 0 0.017865583220045826 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 1 0 0.22881269671267385 -player2 > engine: 2 3 9 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 6 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 5 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 8 3 -P 9.319567 21.808874 2 20 5 -P 14.288424 0.622569 2 20 5 -P 11.865493 5.273785 0 30 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 17 5 -P 14.743177 12.694819 2 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 49 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 1 -F 2 9 2 1 22 3 -F 2 9 2 1 22 4 -F 2 11 2 1 22 5 -F 2 9 2 1 22 6 -F 2 12 2 1 22 7 -F 2 6 2 1 22 8 -F 2 5 2 1 22 9 -F 2 7 2 1 22 10 -F 2 5 12 2 13 1 -F 2 6 1 2 22 11 -F 2 8 12 2 13 2 -F 2 10 0 2 11 1 -F 2 14 1 2 22 12 -F 2 7 1 3 17 7 -F 2 6 11 2 11 1 -F 2 8 12 2 13 3 -F 1 22 15 1 13 4 -F 2 13 0 2 11 2 -F 2 17 1 0 11 2 -F 2 8 1 2 22 13 -F 2 6 11 2 11 2 -F 2 6 12 2 13 4 -F 2 4 0 2 11 3 -F 2 18 1 0 11 3 -F 2 9 1 2 22 14 -F 2 11 2 0 11 3 -F 2 3 11 2 11 3 -F 2 3 12 2 13 5 -F 2 7 0 2 11 4 -F 2 9 1 2 22 15 -F 2 3 11 2 11 4 -F 2 2 12 2 13 6 -F 2 13 1 2 22 16 -F 2 7 1 3 17 11 -F 2 17 1 2 22 17 -F 2 8 1 3 17 12 -F 2 4 1 11 13 8 -F 2 5 2 3 6 1 -F 2 7 11 3 6 1 -F 2 9 12 3 8 3 -F 2 5 12 11 7 2 -F 2 10 0 3 6 2 -F 2 16 1 3 17 13 -F 2 8 1 4 6 2 -F 2 4 1 12 11 7 -F 2 10 2 3 6 2 -F 2 5 2 4 17 13 -F 2 3 2 12 13 9 -F 2 6 11 3 6 2 -F 2 3 11 12 7 3 -F 2 7 12 3 8 4 -F 2 13 0 3 6 3 -F 2 7 0 4 6 3 -F 2 3 0 11 4 1 -F 2 2 0 12 4 1 -F 2 12 1 3 17 14 -F 2 6 1 4 6 3 -F 2 3 1 12 11 8 -F 2 4 2 12 13 10 -F 2 6 11 3 6 3 -F 2 3 11 12 7 4 -F 2 6 12 3 8 5 -F 2 4 0 12 4 2 -F 2 12 1 3 17 15 -F 2 6 1 4 6 4 -F 2 8 2 3 6 4 -F 2 4 11 0 4 2 -F 2 6 12 0 4 2 -F 2 8 0 3 6 5 -F 2 4 0 12 4 3 -F 2 9 1 3 17 16 -F 2 9 2 3 6 5 -F 2 6 11 0 4 3 -F 2 5 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 8 3 -P 9.319567 21.808874 1 20 5 -P 14.288424 0.622569 1 20 5 -P 11.865493 5.273785 0 30 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 17 5 -P 14.743177 12.694819 1 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 49 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 1 -F 1 9 2 1 22 3 -F 1 9 2 1 22 4 -F 1 11 2 1 22 5 -F 1 9 2 1 22 6 -F 1 12 2 1 22 7 -F 1 6 2 1 22 8 -F 1 5 2 1 22 9 -F 1 7 2 1 22 10 -F 1 5 12 2 13 1 -F 1 6 1 2 22 11 -F 1 8 12 2 13 2 -F 1 10 0 2 11 1 -F 1 14 1 2 22 12 -F 1 7 1 3 17 7 -F 1 6 11 2 11 1 -F 1 8 12 2 13 3 -F 2 22 15 1 13 4 -F 1 13 0 2 11 2 -F 1 17 1 0 11 2 -F 1 8 1 2 22 13 -F 1 6 11 2 11 2 -F 1 6 12 2 13 4 -F 1 4 0 2 11 3 -F 1 18 1 0 11 3 -F 1 9 1 2 22 14 -F 1 11 2 0 11 3 -F 1 3 11 2 11 3 -F 1 3 12 2 13 5 -F 1 7 0 2 11 4 -F 1 9 1 2 22 15 -F 1 3 11 2 11 4 -F 1 2 12 2 13 6 -F 1 13 1 2 22 16 -F 1 7 1 3 17 11 -F 1 17 1 2 22 17 -F 1 8 1 3 17 12 -F 1 4 1 11 13 8 -F 1 5 2 3 6 1 -F 1 7 11 3 6 1 -F 1 9 12 3 8 3 -F 1 5 12 11 7 2 -F 1 10 0 3 6 2 -F 1 16 1 3 17 13 -F 1 8 1 4 6 2 -F 1 4 1 12 11 7 -F 1 10 2 3 6 2 -F 1 5 2 4 17 13 -F 1 3 2 12 13 9 -F 1 6 11 3 6 2 -F 1 3 11 12 7 3 -F 1 7 12 3 8 4 -F 1 13 0 3 6 3 -F 1 7 0 4 6 3 -F 1 3 0 11 4 1 -F 1 2 0 12 4 1 -F 1 12 1 3 17 14 -F 1 6 1 4 6 3 -F 1 3 1 12 11 8 -F 1 4 2 12 13 10 -F 1 6 11 3 6 3 -F 1 3 11 12 7 4 -F 1 6 12 3 8 5 -F 1 4 0 12 4 2 -F 1 12 1 3 17 15 -F 1 6 1 4 6 4 -F 1 8 2 3 6 4 -F 1 4 11 0 4 2 -F 1 6 12 0 4 2 -F 1 8 0 3 6 5 -F 1 4 0 12 4 3 -F 1 9 1 3 17 16 -F 1 9 2 3 6 5 -F 1 6 11 0 4 3 -F 1 5 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 4 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 1 0 0.07172769106024596 -player2 > engine: 1 3 10 -player2 > engine: comparing 1 and 4, gives 0 0 0.22881269671267385 -player2 > engine: comparing 1 and 5, gives 0 0 0.017865583220045826 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 1 0 0.22881269671267385 -player2 > engine: 2 3 10 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 8 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 6 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 7 3 -P 9.319567 21.808874 2 20 5 -P 14.288424 0.622569 2 36 5 -P 11.865493 5.273785 0 18 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 17 5 -P 14.743177 12.694819 2 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 52 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 9 2 1 22 2 -F 2 9 2 1 22 3 -F 2 11 2 1 22 4 -F 2 9 2 1 22 5 -F 2 12 2 1 22 6 -F 2 6 2 1 22 7 -F 2 5 2 1 22 8 -F 2 7 2 1 22 9 -F 2 6 1 2 22 10 -F 2 8 12 2 13 1 -F 2 14 1 2 22 11 -F 2 7 1 3 17 6 -F 2 8 12 2 13 2 -F 1 22 15 1 13 3 -F 2 13 0 2 11 1 -F 2 17 1 0 11 1 -F 2 8 1 2 22 12 -F 2 6 11 2 11 1 -F 2 6 12 2 13 3 -F 2 4 0 2 11 2 -F 2 18 1 0 11 2 -F 2 9 1 2 22 13 -F 2 11 2 0 11 2 -F 2 3 11 2 11 2 -F 2 3 12 2 13 4 -F 2 7 0 2 11 3 -F 2 9 1 2 22 14 -F 2 3 11 2 11 3 -F 2 2 12 2 13 5 -F 2 13 1 2 22 15 -F 2 7 1 3 17 10 -F 2 17 1 2 22 16 -F 2 8 1 3 17 11 -F 2 4 1 11 13 7 -F 2 9 12 3 8 2 -F 2 5 12 11 7 1 -F 2 10 0 3 6 1 -F 2 16 1 3 17 12 -F 2 8 1 4 6 1 -F 2 4 1 12 11 6 -F 2 10 2 3 6 1 -F 2 5 2 4 17 12 -F 2 3 2 12 13 8 -F 2 6 11 3 6 1 -F 2 3 11 12 7 2 -F 2 7 12 3 8 3 -F 2 13 0 3 6 2 -F 2 7 0 4 6 2 -F 2 12 1 3 17 13 -F 2 6 1 4 6 2 -F 2 3 1 12 11 7 -F 2 4 2 12 13 9 -F 2 6 11 3 6 2 -F 2 3 11 12 7 3 -F 2 6 12 3 8 4 -F 2 4 0 12 4 1 -F 2 12 1 3 17 14 -F 2 6 1 4 6 3 -F 2 8 2 3 6 3 -F 2 4 11 0 4 1 -F 2 6 12 0 4 1 -F 2 8 0 3 6 4 -F 2 4 0 12 4 2 -F 2 9 1 3 17 15 -F 2 9 2 3 6 4 -F 2 6 11 0 4 2 -F 2 5 12 0 4 2 -F 2 4 0 11 4 3 -F 2 10 1 3 17 16 -F 2 10 2 3 6 5 -F 2 8 11 0 4 3 -F 2 6 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 7 3 -P 9.319567 21.808874 1 20 5 -P 14.288424 0.622569 1 36 5 -P 11.865493 5.273785 0 18 3 -P 11.742498 17.157658 0 81 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 17 5 -P 14.743177 12.694819 1 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 52 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 9 2 1 22 2 -F 1 9 2 1 22 3 -F 1 11 2 1 22 4 -F 1 9 2 1 22 5 -F 1 12 2 1 22 6 -F 1 6 2 1 22 7 -F 1 5 2 1 22 8 -F 1 7 2 1 22 9 -F 1 6 1 2 22 10 -F 1 8 12 2 13 1 -F 1 14 1 2 22 11 -F 1 7 1 3 17 6 -F 1 8 12 2 13 2 -F 2 22 15 1 13 3 -F 1 13 0 2 11 1 -F 1 17 1 0 11 1 -F 1 8 1 2 22 12 -F 1 6 11 2 11 1 -F 1 6 12 2 13 3 -F 1 4 0 2 11 2 -F 1 18 1 0 11 2 -F 1 9 1 2 22 13 -F 1 11 2 0 11 2 -F 1 3 11 2 11 2 -F 1 3 12 2 13 4 -F 1 7 0 2 11 3 -F 1 9 1 2 22 14 -F 1 3 11 2 11 3 -F 1 2 12 2 13 5 -F 1 13 1 2 22 15 -F 1 7 1 3 17 10 -F 1 17 1 2 22 16 -F 1 8 1 3 17 11 -F 1 4 1 11 13 7 -F 1 9 12 3 8 2 -F 1 5 12 11 7 1 -F 1 10 0 3 6 1 -F 1 16 1 3 17 12 -F 1 8 1 4 6 1 -F 1 4 1 12 11 6 -F 1 10 2 3 6 1 -F 1 5 2 4 17 12 -F 1 3 2 12 13 8 -F 1 6 11 3 6 1 -F 1 3 11 12 7 2 -F 1 7 12 3 8 3 -F 1 13 0 3 6 2 -F 1 7 0 4 6 2 -F 1 12 1 3 17 13 -F 1 6 1 4 6 2 -F 1 3 1 12 11 7 -F 1 4 2 12 13 9 -F 1 6 11 3 6 2 -F 1 3 11 12 7 3 -F 1 6 12 3 8 4 -F 1 4 0 12 4 1 -F 1 12 1 3 17 14 -F 1 6 1 4 6 3 -F 1 8 2 3 6 3 -F 1 4 11 0 4 1 -F 1 6 12 0 4 1 -F 1 8 0 3 6 4 -F 1 4 0 12 4 2 -F 1 9 1 3 17 15 -F 1 9 2 3 6 4 -F 1 6 11 0 4 2 -F 1 5 12 0 4 2 -F 1 4 0 11 4 3 -F 1 10 1 3 17 16 -F 1 10 2 3 6 5 -F 1 8 11 0 4 3 -F 1 6 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 1 0 0.07172769106024596 -player2 > engine: 1 3 10 -player2 > engine: comparing 1 and 4, gives 0 0 0.22881269671267385 -player2 > engine: comparing 1 and 5, gives 0 0 0.017865583220045826 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 1 0 0.22881269671267385 -player2 > engine: 2 3 18 -player2 > engine: comparing 2 and 4, gives 1 0 0.07172769106024594 -player2 > engine: 2 4 9 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 1 0 0.22313851847325064 -player2 > engine: 11 3 8 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 1 0 0.1507642257922135 -player2 > engine: 12 3 7 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 37 3 -P 9.319567 21.808874 2 15 5 -P 14.288424 0.622569 2 41 5 -P 11.865493 5.273785 2 8 3 -P 11.742498 17.157658 0 73 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 19 5 -P 14.743177 12.694819 2 16 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 55 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 9 2 1 22 1 -F 2 9 2 1 22 2 -F 2 11 2 1 22 3 -F 2 9 2 1 22 4 -F 2 12 2 1 22 5 -F 2 6 2 1 22 6 -F 2 5 2 1 22 7 -F 2 7 2 1 22 8 -F 2 6 1 2 22 9 -F 2 14 1 2 22 10 -F 2 7 1 3 17 5 -F 2 8 12 2 13 1 -F 1 22 15 1 13 2 -F 2 8 1 2 22 11 -F 2 6 12 2 13 2 -F 2 4 0 2 11 1 -F 2 18 1 0 11 1 -F 2 9 1 2 22 12 -F 2 11 2 0 11 1 -F 2 3 11 2 11 1 -F 2 3 12 2 13 3 -F 2 7 0 2 11 2 -F 2 9 1 2 22 13 -F 2 3 11 2 11 2 -F 2 2 12 2 13 4 -F 2 13 1 2 22 14 -F 2 7 1 3 17 9 -F 2 17 1 2 22 15 -F 2 8 1 3 17 10 -F 2 4 1 11 13 6 -F 2 9 12 3 8 1 -F 2 16 1 3 17 11 -F 2 4 1 12 11 5 -F 2 5 2 4 17 11 -F 2 3 2 12 13 7 -F 2 3 11 12 7 1 -F 2 7 12 3 8 2 -F 2 13 0 3 6 1 -F 2 7 0 4 6 1 -F 2 12 1 3 17 12 -F 2 6 1 4 6 1 -F 2 3 1 12 11 6 -F 2 4 2 12 13 8 -F 2 6 11 3 6 1 -F 2 3 11 12 7 2 -F 2 6 12 3 8 3 -F 2 12 1 3 17 13 -F 2 6 1 4 6 2 -F 2 8 2 3 6 2 -F 2 8 0 3 6 3 -F 2 4 0 12 4 1 -F 2 9 1 3 17 14 -F 2 9 2 3 6 3 -F 2 6 11 0 4 1 -F 2 5 12 0 4 1 -F 2 4 0 11 4 2 -F 2 10 1 3 17 15 -F 2 10 2 3 6 4 -F 2 8 11 0 4 2 -F 2 6 12 0 4 2 -F 2 10 1 3 17 16 -F 2 18 2 3 6 5 -F 2 9 2 4 17 16 -F 2 8 11 3 6 5 -F 2 7 12 3 8 7 -go - -engine > player2: P 11.803996 11.215721 1 37 3 -P 9.319567 21.808874 1 15 5 -P 14.288424 0.622569 1 41 5 -P 11.865493 5.273785 1 8 3 -P 11.742498 17.157658 0 73 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 19 5 -P 14.743177 12.694819 1 16 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 55 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 9 2 1 22 1 -F 1 9 2 1 22 2 -F 1 11 2 1 22 3 -F 1 9 2 1 22 4 -F 1 12 2 1 22 5 -F 1 6 2 1 22 6 -F 1 5 2 1 22 7 -F 1 7 2 1 22 8 -F 1 6 1 2 22 9 -F 1 14 1 2 22 10 -F 1 7 1 3 17 5 -F 1 8 12 2 13 1 -F 2 22 15 1 13 2 -F 1 8 1 2 22 11 -F 1 6 12 2 13 2 -F 1 4 0 2 11 1 -F 1 18 1 0 11 1 -F 1 9 1 2 22 12 -F 1 11 2 0 11 1 -F 1 3 11 2 11 1 -F 1 3 12 2 13 3 -F 1 7 0 2 11 2 -F 1 9 1 2 22 13 -F 1 3 11 2 11 2 -F 1 2 12 2 13 4 -F 1 13 1 2 22 14 -F 1 7 1 3 17 9 -F 1 17 1 2 22 15 -F 1 8 1 3 17 10 -F 1 4 1 11 13 6 -F 1 9 12 3 8 1 -F 1 16 1 3 17 11 -F 1 4 1 12 11 5 -F 1 5 2 4 17 11 -F 1 3 2 12 13 7 -F 1 3 11 12 7 1 -F 1 7 12 3 8 2 -F 1 13 0 3 6 1 -F 1 7 0 4 6 1 -F 1 12 1 3 17 12 -F 1 6 1 4 6 1 -F 1 3 1 12 11 6 -F 1 4 2 12 13 8 -F 1 6 11 3 6 1 -F 1 3 11 12 7 2 -F 1 6 12 3 8 3 -F 1 12 1 3 17 13 -F 1 6 1 4 6 2 -F 1 8 2 3 6 2 -F 1 8 0 3 6 3 -F 1 4 0 12 4 1 -F 1 9 1 3 17 14 -F 1 9 2 3 6 3 -F 1 6 11 0 4 1 -F 1 5 12 0 4 1 -F 1 4 0 11 4 2 -F 1 10 1 3 17 15 -F 1 10 2 3 6 4 -F 1 8 11 0 4 2 -F 1 6 12 0 4 2 -F 1 10 1 3 17 16 -F 1 18 2 3 6 5 -F 1 9 2 4 17 16 -F 1 8 11 3 6 5 -F 1 7 12 3 8 7 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 1 0 0.33657255029055216 -player2 > engine: 0 4 18 -player2 > engine: comparing 0 and 5, gives 1 0 0.04930925562626634 -player2 > engine: 0 5 9 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 5 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 1 0 0.22881269671267385 -player2 > engine: 1 4 7 -player2 > engine: comparing 1 and 5, gives 0 0 0.017865583220045826 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 1 0 0.07172769106024594 -player2 > engine: 2 4 20 -player2 > engine: comparing 2 and 5, gives 1 0 0.03978664114174723 -player2 > engine: 2 5 10 -player2 > engine: comparing 2 and 6, gives 1 0 0.017865583039514844 -player2 > engine: 2 6 5 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0.16828628945120064 -player2 > engine: comparing 3 and 5, gives 0 0 0.07199482055767296 -player2 > engine: comparing 3 and 6, gives 0 0 0.035611364342123364 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 1 0 0.1507642257922135 -player2 > engine: 11 4 9 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 2 0 -player2 > engine: 11 11 5 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 1 0 0.22313851847325064 -player2 > engine: 12 4 8 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 48 3 -P 9.319567 21.808874 2 22 5 -P 14.288424 0.622569 2 26 5 -P 11.865493 5.273785 2 39 3 -P 11.742498 17.157658 0 60 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 15 5 -P 14.743177 12.694819 2 20 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 58 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 9 2 1 22 1 -F 2 11 2 1 22 2 -F 2 9 2 1 22 3 -F 2 12 2 1 22 4 -F 2 6 2 1 22 5 -F 2 5 2 1 22 6 -F 2 7 2 1 22 7 -F 2 6 1 2 22 8 -F 2 14 1 2 22 9 -F 2 7 1 3 17 4 -F 1 22 15 1 13 1 -F 2 8 1 2 22 10 -F 2 6 12 2 13 1 -F 2 9 1 2 22 11 -F 2 3 12 2 13 2 -F 2 7 0 2 11 1 -F 2 9 1 2 22 12 -F 2 3 11 2 11 1 -F 2 2 12 2 13 3 -F 2 13 1 2 22 13 -F 2 7 1 3 17 8 -F 2 17 1 2 22 14 -F 2 8 1 3 17 9 -F 2 4 1 11 13 5 -F 2 16 1 3 17 10 -F 2 4 1 12 11 4 -F 2 5 2 4 17 10 -F 2 3 2 12 13 6 -F 2 7 12 3 8 1 -F 2 12 1 3 17 11 -F 2 3 1 12 11 5 -F 2 4 2 12 13 7 -F 2 3 11 12 7 1 -F 2 6 12 3 8 2 -F 2 12 1 3 17 12 -F 2 6 1 4 6 1 -F 2 8 2 3 6 1 -F 2 8 0 3 6 2 -F 2 9 1 3 17 13 -F 2 9 2 3 6 2 -F 2 4 0 11 4 1 -F 2 10 1 3 17 14 -F 2 10 2 3 6 3 -F 2 8 11 0 4 1 -F 2 6 12 0 4 1 -F 2 10 1 3 17 15 -F 2 18 2 3 6 4 -F 2 9 2 4 17 15 -F 2 8 11 3 6 4 -F 2 7 12 3 8 6 -F 2 18 0 4 6 5 -F 2 9 0 5 14 13 -F 2 5 0 11 4 3 -F 2 7 1 4 6 5 -F 2 20 2 4 17 16 -F 2 10 2 5 11 10 -F 2 5 2 6 23 22 -F 2 9 11 4 8 7 -F 2 8 12 4 6 5 -go - -engine > player2: P 11.803996 11.215721 1 48 3 -P 9.319567 21.808874 1 22 5 -P 14.288424 0.622569 1 26 5 -P 11.865493 5.273785 1 39 3 -P 11.742498 17.157658 0 60 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 15 5 -P 14.743177 12.694819 1 20 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 58 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 9 2 1 22 1 -F 1 11 2 1 22 2 -F 1 9 2 1 22 3 -F 1 12 2 1 22 4 -F 1 6 2 1 22 5 -F 1 5 2 1 22 6 -F 1 7 2 1 22 7 -F 1 6 1 2 22 8 -F 1 14 1 2 22 9 -F 1 7 1 3 17 4 -F 2 22 15 1 13 1 -F 1 8 1 2 22 10 -F 1 6 12 2 13 1 -F 1 9 1 2 22 11 -F 1 3 12 2 13 2 -F 1 7 0 2 11 1 -F 1 9 1 2 22 12 -F 1 3 11 2 11 1 -F 1 2 12 2 13 3 -F 1 13 1 2 22 13 -F 1 7 1 3 17 8 -F 1 17 1 2 22 14 -F 1 8 1 3 17 9 -F 1 4 1 11 13 5 -F 1 16 1 3 17 10 -F 1 4 1 12 11 4 -F 1 5 2 4 17 10 -F 1 3 2 12 13 6 -F 1 7 12 3 8 1 -F 1 12 1 3 17 11 -F 1 3 1 12 11 5 -F 1 4 2 12 13 7 -F 1 3 11 12 7 1 -F 1 6 12 3 8 2 -F 1 12 1 3 17 12 -F 1 6 1 4 6 1 -F 1 8 2 3 6 1 -F 1 8 0 3 6 2 -F 1 9 1 3 17 13 -F 1 9 2 3 6 2 -F 1 4 0 11 4 1 -F 1 10 1 3 17 14 -F 1 10 2 3 6 3 -F 1 8 11 0 4 1 -F 1 6 12 0 4 1 -F 1 10 1 3 17 15 -F 1 18 2 3 6 4 -F 1 9 2 4 17 15 -F 1 8 11 3 6 4 -F 1 7 12 3 8 6 -F 1 18 0 4 6 5 -F 1 9 0 5 14 13 -F 1 5 0 11 4 3 -F 1 7 1 4 6 5 -F 1 20 2 4 17 16 -F 1 10 2 5 11 10 -F 1 5 2 6 23 22 -F 1 9 11 4 8 7 -F 1 8 12 4 6 5 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 24 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 1 0 0.33657255029055216 -player2 > engine: 0 4 12 -player2 > engine: comparing 0 and 5, gives 1 0 0.04930925562626634 -player2 > engine: 0 5 6 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 1 0 0.22881269671267385 -player2 > engine: 1 4 11 -player2 > engine: comparing 1 and 5, gives 1 0 0.017865583220045826 -player2 > engine: 1 5 5 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 1 0 0.07172769106024594 -player2 > engine: 2 4 13 -player2 > engine: comparing 2 and 5, gives 1 0 0.03978664114174723 -player2 > engine: 2 5 6 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 2 0 -player2 > engine: 3 0 19 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 1 0 0.16828628945120064 -player2 > engine: 3 4 10 -player2 > engine: comparing 3 and 5, gives 0 0 0.07199482055767296 -player2 > engine: comparing 3 and 6, gives 0 0 0.035611364342123364 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 1 0 0.1507642257922135 -player2 > engine: 11 4 7 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 1 0 0.22313851847325064 -player2 > engine: 12 4 10 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 5 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 47 3 -P 9.319567 21.808874 1 2 5 -P 14.288424 0.622569 2 28 5 -P 11.865493 5.273785 2 28 3 -P 11.742498 17.157658 0 54 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 17 5 -P 14.743177 12.694819 2 18 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 61 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 11 2 1 22 1 -F 2 9 2 1 22 2 -F 2 12 2 1 22 3 -F 2 6 2 1 22 4 -F 2 5 2 1 22 5 -F 2 7 2 1 22 6 -F 2 6 1 2 22 7 -F 2 14 1 2 22 8 -F 2 7 1 3 17 3 -F 2 8 1 2 22 9 -F 2 9 1 2 22 10 -F 2 3 12 2 13 1 -F 2 9 1 2 22 11 -F 2 2 12 2 13 2 -F 2 13 1 2 22 12 -F 2 7 1 3 17 7 -F 2 17 1 2 22 13 -F 2 8 1 3 17 8 -F 2 4 1 11 13 4 -F 2 16 1 3 17 9 -F 2 4 1 12 11 3 -F 2 5 2 4 17 9 -F 2 3 2 12 13 5 -F 2 12 1 3 17 10 -F 2 3 1 12 11 4 -F 2 4 2 12 13 6 -F 2 6 12 3 8 1 -F 2 12 1 3 17 11 -F 2 8 0 3 6 1 -F 2 9 1 3 17 12 -F 2 9 2 3 6 1 -F 2 10 1 3 17 13 -F 2 10 2 3 6 2 -F 2 10 1 3 17 14 -F 2 18 2 3 6 3 -F 2 9 2 4 17 14 -F 2 8 11 3 6 3 -F 2 7 12 3 8 5 -F 2 18 0 4 6 4 -F 2 9 0 5 14 12 -F 2 5 0 11 4 2 -F 2 7 1 4 6 4 -F 2 20 2 4 17 15 -F 2 10 2 5 11 9 -F 2 5 2 6 23 21 -F 2 9 11 4 8 6 -F 2 8 12 4 6 4 -F 2 12 0 4 6 5 -F 2 6 0 5 14 13 -F 2 11 1 4 6 5 -F 2 5 1 5 23 22 -F 2 13 2 4 17 16 -F 2 6 2 5 11 10 -F 2 19 3 0 6 5 -F 2 10 3 4 12 11 -F 2 7 11 4 8 7 -F 2 10 12 4 6 5 -go - -engine > player2: P 11.803996 11.215721 1 47 3 -P 9.319567 21.808874 2 2 5 -P 14.288424 0.622569 1 28 5 -P 11.865493 5.273785 1 28 3 -P 11.742498 17.157658 0 54 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 17 5 -P 14.743177 12.694819 1 18 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 61 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 11 2 1 22 1 -F 1 9 2 1 22 2 -F 1 12 2 1 22 3 -F 1 6 2 1 22 4 -F 1 5 2 1 22 5 -F 1 7 2 1 22 6 -F 1 6 1 2 22 7 -F 1 14 1 2 22 8 -F 1 7 1 3 17 3 -F 1 8 1 2 22 9 -F 1 9 1 2 22 10 -F 1 3 12 2 13 1 -F 1 9 1 2 22 11 -F 1 2 12 2 13 2 -F 1 13 1 2 22 12 -F 1 7 1 3 17 7 -F 1 17 1 2 22 13 -F 1 8 1 3 17 8 -F 1 4 1 11 13 4 -F 1 16 1 3 17 9 -F 1 4 1 12 11 3 -F 1 5 2 4 17 9 -F 1 3 2 12 13 5 -F 1 12 1 3 17 10 -F 1 3 1 12 11 4 -F 1 4 2 12 13 6 -F 1 6 12 3 8 1 -F 1 12 1 3 17 11 -F 1 8 0 3 6 1 -F 1 9 1 3 17 12 -F 1 9 2 3 6 1 -F 1 10 1 3 17 13 -F 1 10 2 3 6 2 -F 1 10 1 3 17 14 -F 1 18 2 3 6 3 -F 1 9 2 4 17 14 -F 1 8 11 3 6 3 -F 1 7 12 3 8 5 -F 1 18 0 4 6 4 -F 1 9 0 5 14 12 -F 1 5 0 11 4 2 -F 1 7 1 4 6 4 -F 1 20 2 4 17 15 -F 1 10 2 5 11 9 -F 1 5 2 6 23 21 -F 1 9 11 4 8 6 -F 1 8 12 4 6 4 -F 1 12 0 4 6 5 -F 1 6 0 5 14 13 -F 1 11 1 4 6 5 -F 1 5 1 5 23 22 -F 1 13 2 4 17 16 -F 1 6 2 5 11 10 -F 1 19 3 0 6 5 -F 1 10 3 4 12 11 -F 1 7 11 4 8 7 -F 1 10 12 4 6 5 -go - -player1 > engine: 15 6 30 -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 23 -player2 > engine: comparing 0 and 1, gives 1 0 0.30635588526193164 -player2 > engine: 0 1 12 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 6 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 3 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 1 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 2 and 0, gives 0 2 0 -player2 > engine: 2 0 14 -player2 > engine: comparing 2 and 1, gives 1 0 0.09190677065479348 -player2 > engine: 2 1 7 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 2 0 -player2 > engine: 3 0 14 -player2 > engine: comparing 3 and 1, gives 1 0 0.19924358627846095 -player2 > engine: 3 1 7 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0.16828628945120064 -player2 > engine: comparing 3 and 5, gives 0 0 0.07199482055767296 -player2 > engine: comparing 3 and 6, gives 0 0 0.035611364342123364 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 8 -player2 > engine: comparing 11 and 1, gives 0 0 0.16555178475119808 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 9 -player2 > engine: comparing 12 and 1, gives 0 0 0.18857727733719298 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 28 3 -P 9.319567 21.808874 2 4 5 -P 14.288424 0.622569 2 15 5 -P 11.865493 5.273785 2 33 3 -P 11.742498 17.157658 0 54 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 14 5 -P 14.743177 12.694819 2 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 34 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 9 2 1 22 1 -F 2 12 2 1 22 2 -F 2 6 2 1 22 3 -F 2 5 2 1 22 4 -F 2 7 2 1 22 5 -F 2 6 1 2 22 6 -F 2 14 1 2 22 7 -F 2 7 1 3 17 2 -F 2 8 1 2 22 8 -F 2 9 1 2 22 9 -F 2 9 1 2 22 10 -F 2 2 12 2 13 1 -F 2 13 1 2 22 11 -F 2 7 1 3 17 6 -F 2 17 1 2 22 12 -F 2 8 1 3 17 7 -F 2 4 1 11 13 3 -F 2 16 1 3 17 8 -F 2 4 1 12 11 2 -F 2 5 2 4 17 8 -F 2 3 2 12 13 4 -F 2 12 1 3 17 9 -F 2 3 1 12 11 3 -F 2 4 2 12 13 5 -F 2 12 1 3 17 10 -F 2 9 1 3 17 11 -F 2 10 1 3 17 12 -F 2 10 2 3 6 1 -F 2 10 1 3 17 13 -F 2 18 2 3 6 2 -F 2 9 2 4 17 13 -F 2 8 11 3 6 2 -F 2 7 12 3 8 4 -F 2 18 0 4 6 3 -F 2 9 0 5 14 11 -F 2 5 0 11 4 1 -F 2 7 1 4 6 3 -F 2 20 2 4 17 14 -F 2 10 2 5 11 8 -F 2 5 2 6 23 20 -F 2 9 11 4 8 5 -F 2 8 12 4 6 3 -F 2 12 0 4 6 4 -F 2 6 0 5 14 12 -F 2 11 1 4 6 4 -F 2 5 1 5 23 21 -F 2 13 2 4 17 15 -F 2 6 2 5 11 9 -F 2 19 3 0 6 4 -F 2 10 3 4 12 10 -F 2 7 11 4 8 6 -F 2 10 12 4 6 4 -F 1 30 15 6 7 6 -F 2 12 0 1 11 10 -F 2 6 0 2 11 10 -F 2 3 0 11 4 3 -F 2 1 0 12 4 3 -F 2 14 2 0 11 10 -F 2 7 2 1 22 21 -F 2 14 3 0 6 5 -F 2 7 3 1 17 16 -F 2 8 11 0 4 3 -F 2 9 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 28 3 -P 9.319567 21.808874 1 4 5 -P 14.288424 0.622569 1 15 5 -P 11.865493 5.273785 1 33 3 -P 11.742498 17.157658 0 54 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 14 5 -P 14.743177 12.694819 1 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 34 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 9 2 1 22 1 -F 1 12 2 1 22 2 -F 1 6 2 1 22 3 -F 1 5 2 1 22 4 -F 1 7 2 1 22 5 -F 1 6 1 2 22 6 -F 1 14 1 2 22 7 -F 1 7 1 3 17 2 -F 1 8 1 2 22 8 -F 1 9 1 2 22 9 -F 1 9 1 2 22 10 -F 1 2 12 2 13 1 -F 1 13 1 2 22 11 -F 1 7 1 3 17 6 -F 1 17 1 2 22 12 -F 1 8 1 3 17 7 -F 1 4 1 11 13 3 -F 1 16 1 3 17 8 -F 1 4 1 12 11 2 -F 1 5 2 4 17 8 -F 1 3 2 12 13 4 -F 1 12 1 3 17 9 -F 1 3 1 12 11 3 -F 1 4 2 12 13 5 -F 1 12 1 3 17 10 -F 1 9 1 3 17 11 -F 1 10 1 3 17 12 -F 1 10 2 3 6 1 -F 1 10 1 3 17 13 -F 1 18 2 3 6 2 -F 1 9 2 4 17 13 -F 1 8 11 3 6 2 -F 1 7 12 3 8 4 -F 1 18 0 4 6 3 -F 1 9 0 5 14 11 -F 1 5 0 11 4 1 -F 1 7 1 4 6 3 -F 1 20 2 4 17 14 -F 1 10 2 5 11 8 -F 1 5 2 6 23 20 -F 1 9 11 4 8 5 -F 1 8 12 4 6 3 -F 1 12 0 4 6 4 -F 1 6 0 5 14 12 -F 1 11 1 4 6 4 -F 1 5 1 5 23 21 -F 1 13 2 4 17 15 -F 1 6 2 5 11 9 -F 1 19 3 0 6 4 -F 1 10 3 4 12 10 -F 1 7 11 4 8 6 -F 1 10 12 4 6 4 -F 2 30 15 6 7 6 -F 1 12 0 1 11 10 -F 1 6 0 2 11 10 -F 1 3 0 11 4 3 -F 1 1 0 12 4 3 -F 1 14 2 0 11 10 -F 1 7 2 1 22 21 -F 1 14 3 0 6 5 -F 1 7 3 1 17 16 -F 1 8 11 0 4 3 -F 1 9 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 14 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 1 0 0.33657255029055216 -player2 > engine: 0 4 7 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 3 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0.22881269671267385 -player2 > engine: comparing 1 and 5, gives 0 0 0.017865583220045826 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 7 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0.07172769106024594 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 2 0 -player2 > engine: 3 2 16 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 1 0 0.16828628945120064 -player2 > engine: 3 4 8 -player2 > engine: comparing 3 and 5, gives 0 0 0.07199482055767296 -player2 > engine: comparing 3 and 6, gives 0 0 0.035611364342123364 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 7 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 3 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 7 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 3 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 7 3 -P 9.319567 21.808874 2 18 5 -P 14.288424 0.622569 2 22 5 -P 11.865493 5.273785 2 22 3 -P 11.742498 17.157658 0 54 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 14 5 -P 14.743177 12.694819 2 9 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 37 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 12 2 1 22 1 -F 2 6 2 1 22 2 -F 2 5 2 1 22 3 -F 2 7 2 1 22 4 -F 2 6 1 2 22 5 -F 2 14 1 2 22 6 -F 2 7 1 3 17 1 -F 2 8 1 2 22 7 -F 2 9 1 2 22 8 -F 2 9 1 2 22 9 -F 2 13 1 2 22 10 -F 2 7 1 3 17 5 -F 2 17 1 2 22 11 -F 2 8 1 3 17 6 -F 2 4 1 11 13 2 -F 2 16 1 3 17 7 -F 2 4 1 12 11 1 -F 2 5 2 4 17 7 -F 2 3 2 12 13 3 -F 2 12 1 3 17 8 -F 2 3 1 12 11 2 -F 2 4 2 12 13 4 -F 2 12 1 3 17 9 -F 2 9 1 3 17 10 -F 2 10 1 3 17 11 -F 2 10 1 3 17 12 -F 2 18 2 3 6 1 -F 2 9 2 4 17 12 -F 2 8 11 3 6 1 -F 2 7 12 3 8 3 -F 2 18 0 4 6 2 -F 2 9 0 5 14 10 -F 2 7 1 4 6 2 -F 2 20 2 4 17 13 -F 2 10 2 5 11 7 -F 2 5 2 6 23 19 -F 2 9 11 4 8 4 -F 2 8 12 4 6 2 -F 2 12 0 4 6 3 -F 2 6 0 5 14 11 -F 2 11 1 4 6 3 -F 2 5 1 5 23 20 -F 2 13 2 4 17 14 -F 2 6 2 5 11 8 -F 2 19 3 0 6 3 -F 2 10 3 4 12 9 -F 2 7 11 4 8 5 -F 2 10 12 4 6 3 -F 1 30 15 6 7 5 -F 2 12 0 1 11 9 -F 2 6 0 2 11 9 -F 2 3 0 11 4 2 -F 2 1 0 12 4 2 -F 2 14 2 0 11 9 -F 2 7 2 1 22 20 -F 2 14 3 0 6 4 -F 2 7 3 1 17 15 -F 2 8 11 0 4 2 -F 2 9 12 0 4 2 -F 2 14 0 2 11 10 -F 2 7 0 4 6 5 -F 2 3 0 12 4 3 -F 2 16 3 2 6 5 -F 2 8 3 4 12 11 -F 2 7 11 0 4 3 -F 2 3 11 2 11 10 -F 2 7 12 0 4 3 -F 2 3 12 2 13 12 -go - -engine > player2: P 11.803996 11.215721 1 7 3 -P 9.319567 21.808874 1 18 5 -P 14.288424 0.622569 1 22 5 -P 11.865493 5.273785 1 22 3 -P 11.742498 17.157658 0 54 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 14 5 -P 14.743177 12.694819 1 9 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 37 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 12 2 1 22 1 -F 1 6 2 1 22 2 -F 1 5 2 1 22 3 -F 1 7 2 1 22 4 -F 1 6 1 2 22 5 -F 1 14 1 2 22 6 -F 1 7 1 3 17 1 -F 1 8 1 2 22 7 -F 1 9 1 2 22 8 -F 1 9 1 2 22 9 -F 1 13 1 2 22 10 -F 1 7 1 3 17 5 -F 1 17 1 2 22 11 -F 1 8 1 3 17 6 -F 1 4 1 11 13 2 -F 1 16 1 3 17 7 -F 1 4 1 12 11 1 -F 1 5 2 4 17 7 -F 1 3 2 12 13 3 -F 1 12 1 3 17 8 -F 1 3 1 12 11 2 -F 1 4 2 12 13 4 -F 1 12 1 3 17 9 -F 1 9 1 3 17 10 -F 1 10 1 3 17 11 -F 1 10 1 3 17 12 -F 1 18 2 3 6 1 -F 1 9 2 4 17 12 -F 1 8 11 3 6 1 -F 1 7 12 3 8 3 -F 1 18 0 4 6 2 -F 1 9 0 5 14 10 -F 1 7 1 4 6 2 -F 1 20 2 4 17 13 -F 1 10 2 5 11 7 -F 1 5 2 6 23 19 -F 1 9 11 4 8 4 -F 1 8 12 4 6 2 -F 1 12 0 4 6 3 -F 1 6 0 5 14 11 -F 1 11 1 4 6 3 -F 1 5 1 5 23 20 -F 1 13 2 4 17 14 -F 1 6 2 5 11 8 -F 1 19 3 0 6 3 -F 1 10 3 4 12 9 -F 1 7 11 4 8 5 -F 1 10 12 4 6 3 -F 2 30 15 6 7 5 -F 1 12 0 1 11 9 -F 1 6 0 2 11 9 -F 1 3 0 11 4 2 -F 1 1 0 12 4 2 -F 1 14 2 0 11 9 -F 1 7 2 1 22 20 -F 1 14 3 0 6 4 -F 1 7 3 1 17 15 -F 1 8 11 0 4 2 -F 1 9 12 0 4 2 -F 1 14 0 2 11 10 -F 1 7 0 4 6 5 -F 1 3 0 12 4 3 -F 1 16 3 2 6 5 -F 1 8 3 4 12 11 -F 1 7 11 0 4 3 -F 1 3 11 2 11 10 -F 1 7 12 0 4 3 -F 1 3 12 2 13 12 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 3 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 2 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 2 0 -player2 > engine: 1 2 9 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0.22881269671267385 -player2 > engine: comparing 1 and 5, gives 0 0 0.017865583220045826 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 11 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 1 0 0.07172769106024594 -player2 > engine: 2 4 5 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 2 0 -player2 > engine: 3 2 11 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 1 0 0.16828628945120064 -player2 > engine: 3 4 5 -player2 > engine: comparing 3 and 5, gives 0 0 0.07199482055767296 -player2 > engine: comparing 3 and 6, gives 0 0 0.035611364342123364 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 7 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 3 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 4 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 2 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 5 3 -P 9.319567 21.808874 2 26 5 -P 14.288424 0.622569 2 22 5 -P 11.865493 5.273785 2 42 3 -P 11.742498 17.157658 0 54 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 9 5 -P 14.743177 12.694819 2 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 40 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 2 1 22 1 -F 2 5 2 1 22 2 -F 2 7 2 1 22 3 -F 2 6 1 2 22 4 -F 2 14 1 2 22 5 -F 2 8 1 2 22 6 -F 2 9 1 2 22 7 -F 2 9 1 2 22 8 -F 2 13 1 2 22 9 -F 2 7 1 3 17 4 -F 2 17 1 2 22 10 -F 2 8 1 3 17 5 -F 2 4 1 11 13 1 -F 2 16 1 3 17 6 -F 2 5 2 4 17 6 -F 2 3 2 12 13 2 -F 2 12 1 3 17 7 -F 2 3 1 12 11 1 -F 2 4 2 12 13 3 -F 2 12 1 3 17 8 -F 2 9 1 3 17 9 -F 2 10 1 3 17 10 -F 2 10 1 3 17 11 -F 2 9 2 4 17 11 -F 2 7 12 3 8 2 -F 2 18 0 4 6 1 -F 2 9 0 5 14 9 -F 2 7 1 4 6 1 -F 2 20 2 4 17 12 -F 2 10 2 5 11 6 -F 2 5 2 6 23 18 -F 2 9 11 4 8 3 -F 2 8 12 4 6 1 -F 2 12 0 4 6 2 -F 2 6 0 5 14 10 -F 2 11 1 4 6 2 -F 2 5 1 5 23 19 -F 2 13 2 4 17 13 -F 2 6 2 5 11 7 -F 2 19 3 0 6 2 -F 2 10 3 4 12 8 -F 2 7 11 4 8 4 -F 2 10 12 4 6 2 -F 1 30 15 6 7 4 -F 2 12 0 1 11 8 -F 2 6 0 2 11 8 -F 2 3 0 11 4 1 -F 2 1 0 12 4 1 -F 2 14 2 0 11 8 -F 2 7 2 1 22 19 -F 2 14 3 0 6 3 -F 2 7 3 1 17 14 -F 2 8 11 0 4 1 -F 2 9 12 0 4 1 -F 2 14 0 2 11 9 -F 2 7 0 4 6 4 -F 2 3 0 12 4 2 -F 2 16 3 2 6 4 -F 2 8 3 4 12 10 -F 2 7 11 0 4 2 -F 2 3 11 2 11 9 -F 2 7 12 0 4 2 -F 2 3 12 2 13 11 -F 2 3 0 2 11 10 -F 2 2 0 11 4 3 -F 2 9 1 2 22 21 -F 2 5 2 4 17 16 -F 2 11 3 2 6 5 -F 2 5 3 4 12 11 -F 2 7 11 0 4 3 -F 2 3 11 2 11 10 -F 2 4 12 0 4 3 -F 2 2 12 2 13 12 -go - -engine > player2: P 11.803996 11.215721 1 5 3 -P 9.319567 21.808874 1 26 5 -P 14.288424 0.622569 1 22 5 -P 11.865493 5.273785 1 42 3 -P 11.742498 17.157658 0 54 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 9 5 -P 14.743177 12.694819 1 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 40 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 2 1 22 1 -F 1 5 2 1 22 2 -F 1 7 2 1 22 3 -F 1 6 1 2 22 4 -F 1 14 1 2 22 5 -F 1 8 1 2 22 6 -F 1 9 1 2 22 7 -F 1 9 1 2 22 8 -F 1 13 1 2 22 9 -F 1 7 1 3 17 4 -F 1 17 1 2 22 10 -F 1 8 1 3 17 5 -F 1 4 1 11 13 1 -F 1 16 1 3 17 6 -F 1 5 2 4 17 6 -F 1 3 2 12 13 2 -F 1 12 1 3 17 7 -F 1 3 1 12 11 1 -F 1 4 2 12 13 3 -F 1 12 1 3 17 8 -F 1 9 1 3 17 9 -F 1 10 1 3 17 10 -F 1 10 1 3 17 11 -F 1 9 2 4 17 11 -F 1 7 12 3 8 2 -F 1 18 0 4 6 1 -F 1 9 0 5 14 9 -F 1 7 1 4 6 1 -F 1 20 2 4 17 12 -F 1 10 2 5 11 6 -F 1 5 2 6 23 18 -F 1 9 11 4 8 3 -F 1 8 12 4 6 1 -F 1 12 0 4 6 2 -F 1 6 0 5 14 10 -F 1 11 1 4 6 2 -F 1 5 1 5 23 19 -F 1 13 2 4 17 13 -F 1 6 2 5 11 7 -F 1 19 3 0 6 2 -F 1 10 3 4 12 8 -F 1 7 11 4 8 4 -F 1 10 12 4 6 2 -F 2 30 15 6 7 4 -F 1 12 0 1 11 8 -F 1 6 0 2 11 8 -F 1 3 0 11 4 1 -F 1 1 0 12 4 1 -F 1 14 2 0 11 8 -F 1 7 2 1 22 19 -F 1 14 3 0 6 3 -F 1 7 3 1 17 14 -F 1 8 11 0 4 1 -F 1 9 12 0 4 1 -F 1 14 0 2 11 9 -F 1 7 0 4 6 4 -F 1 3 0 12 4 2 -F 1 16 3 2 6 4 -F 1 8 3 4 12 10 -F 1 7 11 0 4 2 -F 1 3 11 2 11 9 -F 1 7 12 0 4 2 -F 1 3 12 2 13 11 -F 1 3 0 2 11 10 -F 1 2 0 11 4 3 -F 1 9 1 2 22 21 -F 1 5 2 4 17 16 -F 1 11 3 2 6 5 -F 1 5 3 4 12 11 -F 1 7 11 0 4 3 -F 1 3 11 2 11 10 -F 1 4 12 0 4 3 -F 1 2 12 2 13 12 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0.33657255029055216 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 1 0 0.22881269671267385 -player2 > engine: 1 4 13 -player2 > engine: comparing 1 and 5, gives 1 0 0.017865583220045826 -player2 > engine: 1 5 6 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 11 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 1 0 0.07172769106024594 -player2 > engine: 2 4 5 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 2 0 -player2 > engine: 3 1 21 -player2 > engine: comparing 3 and 2, gives 0 2 0 -player2 > engine: 3 2 10 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 1 0 0.16828628945120064 -player2 > engine: 3 4 5 -player2 > engine: comparing 3 and 5, gives 0 0 0.07199482055767296 -player2 > engine: comparing 3 and 6, gives 0 0 0.035611364342123364 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 1 0 0.22313851847325064 -player2 > engine: 12 4 6 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 25 3 -P 9.319567 21.808874 2 18 5 -P 14.288424 0.622569 2 22 5 -P 11.865493 5.273785 2 9 3 -P 11.742498 17.157658 0 21 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 21 5 -P 14.743177 12.694819 2 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 43 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 1 22 1 -F 2 7 2 1 22 2 -F 2 6 1 2 22 3 -F 2 14 1 2 22 4 -F 2 8 1 2 22 5 -F 2 9 1 2 22 6 -F 2 9 1 2 22 7 -F 2 13 1 2 22 8 -F 2 7 1 3 17 3 -F 2 17 1 2 22 9 -F 2 8 1 3 17 4 -F 2 16 1 3 17 5 -F 2 5 2 4 17 5 -F 2 3 2 12 13 1 -F 2 12 1 3 17 6 -F 2 4 2 12 13 2 -F 2 12 1 3 17 7 -F 2 9 1 3 17 8 -F 2 10 1 3 17 9 -F 2 10 1 3 17 10 -F 2 9 2 4 17 10 -F 2 7 12 3 8 1 -F 2 9 0 5 14 8 -F 2 20 2 4 17 11 -F 2 10 2 5 11 5 -F 2 5 2 6 23 17 -F 2 9 11 4 8 2 -F 2 12 0 4 6 1 -F 2 6 0 5 14 9 -F 2 11 1 4 6 1 -F 2 5 1 5 23 18 -F 2 13 2 4 17 12 -F 2 6 2 5 11 6 -F 2 19 3 0 6 1 -F 2 10 3 4 12 7 -F 2 7 11 4 8 3 -F 2 10 12 4 6 1 -F 1 30 15 6 7 3 -F 2 12 0 1 11 7 -F 2 6 0 2 11 7 -F 2 14 2 0 11 7 -F 2 7 2 1 22 18 -F 2 14 3 0 6 2 -F 2 7 3 1 17 13 -F 2 14 0 2 11 8 -F 2 7 0 4 6 3 -F 2 3 0 12 4 1 -F 2 16 3 2 6 3 -F 2 8 3 4 12 9 -F 2 7 11 0 4 1 -F 2 3 11 2 11 8 -F 2 7 12 0 4 1 -F 2 3 12 2 13 10 -F 2 3 0 2 11 9 -F 2 2 0 11 4 2 -F 2 9 1 2 22 20 -F 2 5 2 4 17 15 -F 2 11 3 2 6 4 -F 2 5 3 4 12 10 -F 2 7 11 0 4 2 -F 2 3 11 2 11 9 -F 2 4 12 0 4 2 -F 2 2 12 2 13 11 -F 2 13 1 4 6 5 -F 2 6 1 5 23 22 -F 2 5 2 4 17 16 -F 2 21 3 1 17 16 -F 2 10 3 2 6 5 -F 2 5 3 4 12 11 -F 2 6 12 4 6 5 -go - -engine > player2: P 11.803996 11.215721 1 25 3 -P 9.319567 21.808874 1 18 5 -P 14.288424 0.622569 1 22 5 -P 11.865493 5.273785 1 9 3 -P 11.742498 17.157658 0 21 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 21 5 -P 14.743177 12.694819 1 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 43 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 1 22 1 -F 1 7 2 1 22 2 -F 1 6 1 2 22 3 -F 1 14 1 2 22 4 -F 1 8 1 2 22 5 -F 1 9 1 2 22 6 -F 1 9 1 2 22 7 -F 1 13 1 2 22 8 -F 1 7 1 3 17 3 -F 1 17 1 2 22 9 -F 1 8 1 3 17 4 -F 1 16 1 3 17 5 -F 1 5 2 4 17 5 -F 1 3 2 12 13 1 -F 1 12 1 3 17 6 -F 1 4 2 12 13 2 -F 1 12 1 3 17 7 -F 1 9 1 3 17 8 -F 1 10 1 3 17 9 -F 1 10 1 3 17 10 -F 1 9 2 4 17 10 -F 1 7 12 3 8 1 -F 1 9 0 5 14 8 -F 1 20 2 4 17 11 -F 1 10 2 5 11 5 -F 1 5 2 6 23 17 -F 1 9 11 4 8 2 -F 1 12 0 4 6 1 -F 1 6 0 5 14 9 -F 1 11 1 4 6 1 -F 1 5 1 5 23 18 -F 1 13 2 4 17 12 -F 1 6 2 5 11 6 -F 1 19 3 0 6 1 -F 1 10 3 4 12 7 -F 1 7 11 4 8 3 -F 1 10 12 4 6 1 -F 2 30 15 6 7 3 -F 1 12 0 1 11 7 -F 1 6 0 2 11 7 -F 1 14 2 0 11 7 -F 1 7 2 1 22 18 -F 1 14 3 0 6 2 -F 1 7 3 1 17 13 -F 1 14 0 2 11 8 -F 1 7 0 4 6 3 -F 1 3 0 12 4 1 -F 1 16 3 2 6 3 -F 1 8 3 4 12 9 -F 1 7 11 0 4 1 -F 1 3 11 2 11 8 -F 1 7 12 0 4 1 -F 1 3 12 2 13 10 -F 1 3 0 2 11 9 -F 1 2 0 11 4 2 -F 1 9 1 2 22 20 -F 1 5 2 4 17 15 -F 1 11 3 2 6 4 -F 1 5 3 4 12 10 -F 1 7 11 0 4 2 -F 1 3 11 2 11 9 -F 1 4 12 0 4 2 -F 1 2 12 2 13 11 -F 1 13 1 4 6 5 -F 1 6 1 5 23 22 -F 1 5 2 4 17 16 -F 1 21 3 1 17 16 -F 1 10 3 2 6 5 -F 1 5 3 4 12 11 -F 1 6 12 4 6 5 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 1 0 0.33657255029055216 -player2 > engine: 0 4 12 -player2 > engine: comparing 0 and 5, gives 1 0 0.04930925562626634 -player2 > engine: 0 5 6 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 3 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 1 0 0.22881269671267385 -player2 > engine: 1 4 9 -player2 > engine: comparing 1 and 5, gives 0 0 0.017865583220045826 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 2 0 -player2 > engine: 1 11 4 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 1 0 0.07172769106024594 -player2 > engine: 2 4 11 -player2 > engine: comparing 2 and 5, gives 1 0 0.03978664114174723 -player2 > engine: 2 5 5 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 2 0 -player2 > engine: 2 11 3 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0.16828628945120064 -player2 > engine: comparing 3 and 5, gives 0 0 0.07199482055767296 -player2 > engine: comparing 3 and 6, gives 0 0 0.035611364342123364 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 2 0 -player2 > engine: 3 11 4 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 1 0 0.1507642257922135 -player2 > engine: 11 4 10 -player2 > engine: comparing 11 and 5, gives 1 0 0.03712937124473499 -player2 > engine: 11 5 5 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 2 0 -player2 > engine: 11 11 3 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 1 0 0.22313851847325064 -player2 > engine: 12 4 7 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 2 0 -player2 > engine: 12 11 4 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 40 3 -P 9.319567 21.808874 2 15 5 -P 14.288424 0.622569 2 8 5 -P 11.865493 5.273785 2 15 3 -P 11.742498 17.157658 2 12 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 11 5 -P 14.743177 12.694819 2 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 46 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 7 2 1 22 1 -F 2 6 1 2 22 2 -F 2 14 1 2 22 3 -F 2 8 1 2 22 4 -F 2 9 1 2 22 5 -F 2 9 1 2 22 6 -F 2 13 1 2 22 7 -F 2 7 1 3 17 2 -F 2 17 1 2 22 8 -F 2 8 1 3 17 3 -F 2 16 1 3 17 4 -F 2 5 2 4 17 4 -F 2 12 1 3 17 5 -F 2 4 2 12 13 1 -F 2 12 1 3 17 6 -F 2 9 1 3 17 7 -F 2 10 1 3 17 8 -F 2 10 1 3 17 9 -F 2 9 2 4 17 9 -F 2 9 0 5 14 7 -F 2 20 2 4 17 10 -F 2 10 2 5 11 4 -F 2 5 2 6 23 16 -F 2 9 11 4 8 1 -F 2 6 0 5 14 8 -F 2 5 1 5 23 17 -F 2 13 2 4 17 11 -F 2 6 2 5 11 5 -F 2 10 3 4 12 6 -F 2 7 11 4 8 2 -F 1 30 15 6 7 2 -F 2 12 0 1 11 6 -F 2 6 0 2 11 6 -F 2 14 2 0 11 6 -F 2 7 2 1 22 17 -F 2 14 3 0 6 1 -F 2 7 3 1 17 12 -F 2 14 0 2 11 7 -F 2 7 0 4 6 2 -F 2 16 3 2 6 2 -F 2 8 3 4 12 8 -F 2 3 11 2 11 7 -F 2 3 12 2 13 9 -F 2 3 0 2 11 8 -F 2 2 0 11 4 1 -F 2 9 1 2 22 19 -F 2 5 2 4 17 14 -F 2 11 3 2 6 3 -F 2 5 3 4 12 9 -F 2 7 11 0 4 1 -F 2 3 11 2 11 8 -F 2 4 12 0 4 1 -F 2 2 12 2 13 10 -F 2 13 1 4 6 4 -F 2 6 1 5 23 21 -F 2 5 2 4 17 15 -F 2 21 3 1 17 15 -F 2 10 3 2 6 4 -F 2 5 3 4 12 10 -F 2 6 12 4 6 4 -F 2 12 0 4 6 5 -F 2 6 0 5 14 13 -F 2 3 0 11 4 3 -F 2 9 1 4 6 5 -F 2 4 1 11 13 12 -F 2 11 2 4 17 16 -F 2 5 2 5 11 10 -F 2 3 2 11 11 10 -F 2 4 3 11 6 5 -F 2 10 11 4 8 7 -F 2 5 11 5 11 10 -F 2 7 12 4 6 5 -F 2 4 12 11 7 6 -go - -engine > player2: P 11.803996 11.215721 1 40 3 -P 9.319567 21.808874 1 15 5 -P 14.288424 0.622569 1 8 5 -P 11.865493 5.273785 1 15 3 -P 11.742498 17.157658 1 12 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 11 5 -P 14.743177 12.694819 1 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 46 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 7 2 1 22 1 -F 1 6 1 2 22 2 -F 1 14 1 2 22 3 -F 1 8 1 2 22 4 -F 1 9 1 2 22 5 -F 1 9 1 2 22 6 -F 1 13 1 2 22 7 -F 1 7 1 3 17 2 -F 1 17 1 2 22 8 -F 1 8 1 3 17 3 -F 1 16 1 3 17 4 -F 1 5 2 4 17 4 -F 1 12 1 3 17 5 -F 1 4 2 12 13 1 -F 1 12 1 3 17 6 -F 1 9 1 3 17 7 -F 1 10 1 3 17 8 -F 1 10 1 3 17 9 -F 1 9 2 4 17 9 -F 1 9 0 5 14 7 -F 1 20 2 4 17 10 -F 1 10 2 5 11 4 -F 1 5 2 6 23 16 -F 1 9 11 4 8 1 -F 1 6 0 5 14 8 -F 1 5 1 5 23 17 -F 1 13 2 4 17 11 -F 1 6 2 5 11 5 -F 1 10 3 4 12 6 -F 1 7 11 4 8 2 -F 2 30 15 6 7 2 -F 1 12 0 1 11 6 -F 1 6 0 2 11 6 -F 1 14 2 0 11 6 -F 1 7 2 1 22 17 -F 1 14 3 0 6 1 -F 1 7 3 1 17 12 -F 1 14 0 2 11 7 -F 1 7 0 4 6 2 -F 1 16 3 2 6 2 -F 1 8 3 4 12 8 -F 1 3 11 2 11 7 -F 1 3 12 2 13 9 -F 1 3 0 2 11 8 -F 1 2 0 11 4 1 -F 1 9 1 2 22 19 -F 1 5 2 4 17 14 -F 1 11 3 2 6 3 -F 1 5 3 4 12 9 -F 1 7 11 0 4 1 -F 1 3 11 2 11 8 -F 1 4 12 0 4 1 -F 1 2 12 2 13 10 -F 1 13 1 4 6 4 -F 1 6 1 5 23 21 -F 1 5 2 4 17 15 -F 1 21 3 1 17 15 -F 1 10 3 2 6 4 -F 1 5 3 4 12 10 -F 1 6 12 4 6 4 -F 1 12 0 4 6 5 -F 1 6 0 5 14 13 -F 1 3 0 11 4 3 -F 1 9 1 4 6 5 -F 1 4 1 11 13 12 -F 1 11 2 4 17 16 -F 1 5 2 5 11 10 -F 1 3 2 11 11 10 -F 1 4 3 11 6 5 -F 1 10 11 4 8 7 -F 1 5 11 5 11 10 -F 1 7 12 4 6 5 -F 1 4 12 11 7 6 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 2 0 -player2 > engine: 0 1 20 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 1 0 0.04930925562626634 -player2 > engine: 0 5 10 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 5 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 1 0 0.017865583220045826 -player2 > engine: 1 5 7 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 1 0 0.07199482055767296 -player2 > engine: 3 5 7 -player2 > engine: comparing 3 and 6, gives 0 0 0.035611364342123364 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 1 0 0.03561136510304112 -player2 > engine: 4 5 6 -player2 > engine: comparing 4 and 6, gives 0 0 0.07199481416693816 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 1 0 0.03712937124473499 -player2 > engine: 11 5 5 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 1 0 0.024290234836829135 -player2 > engine: 12 5 7 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 33 3 -P 9.319567 21.808874 2 20 5 -P 14.288424 0.622569 2 13 5 -P 11.865493 5.273785 2 11 3 -P 11.742498 17.157658 2 18 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 13 5 -P 14.743177 12.694819 2 17 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 49 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 1 2 22 1 -F 2 14 1 2 22 2 -F 2 8 1 2 22 3 -F 2 9 1 2 22 4 -F 2 9 1 2 22 5 -F 2 13 1 2 22 6 -F 2 7 1 3 17 1 -F 2 17 1 2 22 7 -F 2 8 1 3 17 2 -F 2 16 1 3 17 3 -F 2 5 2 4 17 3 -F 2 12 1 3 17 4 -F 2 12 1 3 17 5 -F 2 9 1 3 17 6 -F 2 10 1 3 17 7 -F 2 10 1 3 17 8 -F 2 9 2 4 17 8 -F 2 9 0 5 14 6 -F 2 20 2 4 17 9 -F 2 10 2 5 11 3 -F 2 5 2 6 23 15 -F 2 6 0 5 14 7 -F 2 5 1 5 23 16 -F 2 13 2 4 17 10 -F 2 6 2 5 11 4 -F 2 10 3 4 12 5 -F 2 7 11 4 8 1 -F 1 30 15 6 7 1 -F 2 12 0 1 11 5 -F 2 6 0 2 11 5 -F 2 14 2 0 11 5 -F 2 7 2 1 22 16 -F 2 7 3 1 17 11 -F 2 14 0 2 11 6 -F 2 7 0 4 6 1 -F 2 16 3 2 6 1 -F 2 8 3 4 12 7 -F 2 3 11 2 11 6 -F 2 3 12 2 13 8 -F 2 3 0 2 11 7 -F 2 9 1 2 22 18 -F 2 5 2 4 17 13 -F 2 11 3 2 6 2 -F 2 5 3 4 12 8 -F 2 3 11 2 11 7 -F 2 2 12 2 13 9 -F 2 13 1 4 6 3 -F 2 6 1 5 23 20 -F 2 5 2 4 17 14 -F 2 21 3 1 17 14 -F 2 10 3 2 6 3 -F 2 5 3 4 12 9 -F 2 6 12 4 6 3 -F 2 12 0 4 6 4 -F 2 6 0 5 14 12 -F 2 3 0 11 4 2 -F 2 9 1 4 6 4 -F 2 4 1 11 13 11 -F 2 11 2 4 17 15 -F 2 5 2 5 11 9 -F 2 3 2 11 11 9 -F 2 4 3 11 6 4 -F 2 10 11 4 8 6 -F 2 5 11 5 11 9 -F 2 7 12 4 6 4 -F 2 4 12 11 7 5 -F 2 20 0 1 11 10 -F 2 10 0 5 14 13 -F 2 5 0 11 4 3 -F 2 7 1 5 23 22 -F 2 7 3 5 10 9 -F 2 6 4 5 19 18 -F 2 5 11 5 11 10 -F 2 7 12 5 17 16 -go - -engine > player2: P 11.803996 11.215721 1 33 3 -P 9.319567 21.808874 1 20 5 -P 14.288424 0.622569 1 13 5 -P 11.865493 5.273785 1 11 3 -P 11.742498 17.157658 1 18 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 0 22 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 13 5 -P 14.743177 12.694819 1 17 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 49 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 1 2 22 1 -F 1 14 1 2 22 2 -F 1 8 1 2 22 3 -F 1 9 1 2 22 4 -F 1 9 1 2 22 5 -F 1 13 1 2 22 6 -F 1 7 1 3 17 1 -F 1 17 1 2 22 7 -F 1 8 1 3 17 2 -F 1 16 1 3 17 3 -F 1 5 2 4 17 3 -F 1 12 1 3 17 4 -F 1 12 1 3 17 5 -F 1 9 1 3 17 6 -F 1 10 1 3 17 7 -F 1 10 1 3 17 8 -F 1 9 2 4 17 8 -F 1 9 0 5 14 6 -F 1 20 2 4 17 9 -F 1 10 2 5 11 3 -F 1 5 2 6 23 15 -F 1 6 0 5 14 7 -F 1 5 1 5 23 16 -F 1 13 2 4 17 10 -F 1 6 2 5 11 4 -F 1 10 3 4 12 5 -F 1 7 11 4 8 1 -F 2 30 15 6 7 1 -F 1 12 0 1 11 5 -F 1 6 0 2 11 5 -F 1 14 2 0 11 5 -F 1 7 2 1 22 16 -F 1 7 3 1 17 11 -F 1 14 0 2 11 6 -F 1 7 0 4 6 1 -F 1 16 3 2 6 1 -F 1 8 3 4 12 7 -F 1 3 11 2 11 6 -F 1 3 12 2 13 8 -F 1 3 0 2 11 7 -F 1 9 1 2 22 18 -F 1 5 2 4 17 13 -F 1 11 3 2 6 2 -F 1 5 3 4 12 8 -F 1 3 11 2 11 7 -F 1 2 12 2 13 9 -F 1 13 1 4 6 3 -F 1 6 1 5 23 20 -F 1 5 2 4 17 14 -F 1 21 3 1 17 14 -F 1 10 3 2 6 3 -F 1 5 3 4 12 9 -F 1 6 12 4 6 3 -F 1 12 0 4 6 4 -F 1 6 0 5 14 12 -F 1 3 0 11 4 2 -F 1 9 1 4 6 4 -F 1 4 1 11 13 11 -F 1 11 2 4 17 15 -F 1 5 2 5 11 9 -F 1 3 2 11 11 9 -F 1 4 3 11 6 4 -F 1 10 11 4 8 6 -F 1 5 11 5 11 9 -F 1 7 12 4 6 4 -F 1 4 12 11 7 5 -F 1 20 0 1 11 10 -F 1 10 0 5 14 13 -F 1 5 0 11 4 3 -F 1 7 1 5 23 22 -F 1 7 3 5 10 9 -F 1 6 4 5 19 18 -F 1 5 11 5 11 10 -F 1 7 12 5 17 16 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 16 -player2 > engine: comparing 0 and 1, gives 0 2 0 -player2 > engine: 0 1 8 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 4 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 2 0 -player2 > engine: 1 0 10 -player2 > engine: comparing 1 and 1, gives 0 2 0 -player2 > engine: 1 1 5 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0.017865583220045826 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 2 0 -player2 > engine: 1 12 2 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 2 0 -player2 > engine: 2 0 6 -player2 > engine: comparing 2 and 1, gives 0 2 0 -player2 > engine: 2 1 3 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0.03978664114174723 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 2 0 -player2 > engine: 2 12 2 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 2 0 -player2 > engine: 3 0 5 -player2 > engine: comparing 3 and 1, gives 0 2 0 -player2 > engine: 3 1 3 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0.07199482055767296 -player2 > engine: comparing 3 and 6, gives 0 0 0.035611364342123364 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 2 0 -player2 > engine: 3 12 1 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 2 0 -player2 > engine: 4 0 9 -player2 > engine: comparing 4 and 1, gives 0 2 0 -player2 > engine: 4 1 4 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0.03561136510304112 -player2 > engine: comparing 4 and 6, gives 0 0 0.07199481416693816 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 2 0 -player2 > engine: 4 12 2 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 6 -player2 > engine: comparing 11 and 1, gives 0 2 0 -player2 > engine: 11 1 3 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 2 0 -player2 > engine: 11 12 2 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 8 -player2 > engine: comparing 12 and 1, gives 0 2 0 -player2 > engine: 12 1 4 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 2 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 22 3 -P 9.319567 21.808874 2 13 5 -P 14.288424 0.622569 2 29 5 -P 11.865493 5.273785 2 12 3 -P 11.742498 17.157658 2 20 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 1 8 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 7 5 -P 14.743177 12.694819 2 10 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 52 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 14 1 2 22 1 -F 2 8 1 2 22 2 -F 2 9 1 2 22 3 -F 2 9 1 2 22 4 -F 2 13 1 2 22 5 -F 2 17 1 2 22 6 -F 2 8 1 3 17 1 -F 2 16 1 3 17 2 -F 2 5 2 4 17 2 -F 2 12 1 3 17 3 -F 2 12 1 3 17 4 -F 2 9 1 3 17 5 -F 2 10 1 3 17 6 -F 2 10 1 3 17 7 -F 2 9 2 4 17 7 -F 2 9 0 5 14 5 -F 2 20 2 4 17 8 -F 2 10 2 5 11 2 -F 2 5 2 6 23 14 -F 2 6 0 5 14 6 -F 2 5 1 5 23 15 -F 2 13 2 4 17 9 -F 2 6 2 5 11 3 -F 2 10 3 4 12 4 -F 2 12 0 1 11 4 -F 2 6 0 2 11 4 -F 2 14 2 0 11 4 -F 2 7 2 1 22 15 -F 2 7 3 1 17 10 -F 2 14 0 2 11 5 -F 2 8 3 4 12 6 -F 2 3 11 2 11 5 -F 2 3 12 2 13 7 -F 2 3 0 2 11 6 -F 2 9 1 2 22 17 -F 2 5 2 4 17 12 -F 2 11 3 2 6 1 -F 2 5 3 4 12 7 -F 2 3 11 2 11 6 -F 2 2 12 2 13 8 -F 2 13 1 4 6 2 -F 2 6 1 5 23 19 -F 2 5 2 4 17 13 -F 2 21 3 1 17 13 -F 2 10 3 2 6 2 -F 2 5 3 4 12 8 -F 2 6 12 4 6 2 -F 2 12 0 4 6 3 -F 2 6 0 5 14 11 -F 2 3 0 11 4 1 -F 2 9 1 4 6 3 -F 2 4 1 11 13 10 -F 2 11 2 4 17 14 -F 2 5 2 5 11 8 -F 2 3 2 11 11 8 -F 2 4 3 11 6 3 -F 2 10 11 4 8 5 -F 2 5 11 5 11 8 -F 2 7 12 4 6 3 -F 2 4 12 11 7 4 -F 2 20 0 1 11 9 -F 2 10 0 5 14 12 -F 2 5 0 11 4 2 -F 2 7 1 5 23 21 -F 2 7 3 5 10 8 -F 2 6 4 5 19 17 -F 2 5 11 5 11 9 -F 2 7 12 5 17 15 -F 2 8 0 1 11 10 -F 2 4 0 11 4 3 -F 2 2 0 12 4 3 -F 2 10 1 0 11 10 -F 2 2 1 12 11 10 -F 2 6 2 0 11 10 -F 2 3 2 1 22 21 -F 2 2 2 12 13 12 -F 2 5 3 0 6 5 -F 2 3 3 1 17 16 -F 2 1 3 12 8 7 -F 2 9 4 0 6 5 -F 2 4 4 1 6 5 -F 2 2 4 12 6 5 -F 2 6 11 0 4 3 -F 2 3 11 1 13 12 -F 2 2 11 12 7 6 -F 2 8 12 0 4 3 -F 2 4 12 1 11 10 -go - -engine > player2: P 11.803996 11.215721 1 22 3 -P 9.319567 21.808874 1 13 5 -P 14.288424 0.622569 1 29 5 -P 11.865493 5.273785 1 12 3 -P 11.742498 17.157658 1 20 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 2 8 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 7 5 -P 14.743177 12.694819 1 10 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 52 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 14 1 2 22 1 -F 1 8 1 2 22 2 -F 1 9 1 2 22 3 -F 1 9 1 2 22 4 -F 1 13 1 2 22 5 -F 1 17 1 2 22 6 -F 1 8 1 3 17 1 -F 1 16 1 3 17 2 -F 1 5 2 4 17 2 -F 1 12 1 3 17 3 -F 1 12 1 3 17 4 -F 1 9 1 3 17 5 -F 1 10 1 3 17 6 -F 1 10 1 3 17 7 -F 1 9 2 4 17 7 -F 1 9 0 5 14 5 -F 1 20 2 4 17 8 -F 1 10 2 5 11 2 -F 1 5 2 6 23 14 -F 1 6 0 5 14 6 -F 1 5 1 5 23 15 -F 1 13 2 4 17 9 -F 1 6 2 5 11 3 -F 1 10 3 4 12 4 -F 1 12 0 1 11 4 -F 1 6 0 2 11 4 -F 1 14 2 0 11 4 -F 1 7 2 1 22 15 -F 1 7 3 1 17 10 -F 1 14 0 2 11 5 -F 1 8 3 4 12 6 -F 1 3 11 2 11 5 -F 1 3 12 2 13 7 -F 1 3 0 2 11 6 -F 1 9 1 2 22 17 -F 1 5 2 4 17 12 -F 1 11 3 2 6 1 -F 1 5 3 4 12 7 -F 1 3 11 2 11 6 -F 1 2 12 2 13 8 -F 1 13 1 4 6 2 -F 1 6 1 5 23 19 -F 1 5 2 4 17 13 -F 1 21 3 1 17 13 -F 1 10 3 2 6 2 -F 1 5 3 4 12 8 -F 1 6 12 4 6 2 -F 1 12 0 4 6 3 -F 1 6 0 5 14 11 -F 1 3 0 11 4 1 -F 1 9 1 4 6 3 -F 1 4 1 11 13 10 -F 1 11 2 4 17 14 -F 1 5 2 5 11 8 -F 1 3 2 11 11 8 -F 1 4 3 11 6 3 -F 1 10 11 4 8 5 -F 1 5 11 5 11 8 -F 1 7 12 4 6 3 -F 1 4 12 11 7 4 -F 1 20 0 1 11 9 -F 1 10 0 5 14 12 -F 1 5 0 11 4 2 -F 1 7 1 5 23 21 -F 1 7 3 5 10 8 -F 1 6 4 5 19 17 -F 1 5 11 5 11 9 -F 1 7 12 5 17 15 -F 1 8 0 1 11 10 -F 1 4 0 11 4 3 -F 1 2 0 12 4 3 -F 1 10 1 0 11 10 -F 1 2 1 12 11 10 -F 1 6 2 0 11 10 -F 1 3 2 1 22 21 -F 1 2 2 12 13 12 -F 1 5 3 0 6 5 -F 1 3 3 1 17 16 -F 1 1 3 12 8 7 -F 1 9 4 0 6 5 -F 1 4 4 1 6 5 -F 1 2 4 12 6 5 -F 1 6 11 0 4 3 -F 1 3 11 1 13 12 -F 1 2 11 12 7 6 -F 1 8 12 0 4 3 -F 1 4 12 1 11 10 -go - -player1 > engine: 6 8 4 -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 1 0 0.04930925562626634 -player2 > engine: 0 5 11 -player2 > engine: comparing 0 and 6, gives 1 0 0.04930925260078114 -player2 > engine: 0 6 5 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 3 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 2 0 -player2 > engine: 1 1 6 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0.017865583220045826 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 2 0 -player2 > engine: 1 12 3 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 2 0 -player2 > engine: 2 1 14 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 1 0 0.03978664114174723 -player2 > engine: 2 5 7 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 2 0 -player2 > engine: 2 12 4 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 1 0 0.07199482055767296 -player2 > engine: 3 5 6 -player2 > engine: comparing 3 and 6, gives 0 0 0.035611364342123364 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 2 0 -player2 > engine: 3 12 3 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 2 0 -player2 > engine: 4 1 10 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0.03561136510304112 -player2 > engine: comparing 4 and 6, gives 0 0 0.07199481416693816 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 2 0 -player2 > engine: 4 12 5 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 3 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 5 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 6 3 -P 9.319567 21.808874 2 15 5 -P 14.288424 0.622569 2 34 5 -P 11.865493 5.273785 2 14 3 -P 11.742498 17.157658 2 8 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 1 5 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 12 5 -P 14.743177 12.694819 2 10 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 55 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 8 1 2 22 1 -F 2 9 1 2 22 2 -F 2 9 1 2 22 3 -F 2 13 1 2 22 4 -F 2 17 1 2 22 5 -F 2 16 1 3 17 1 -F 2 5 2 4 17 1 -F 2 12 1 3 17 2 -F 2 12 1 3 17 3 -F 2 9 1 3 17 4 -F 2 10 1 3 17 5 -F 2 10 1 3 17 6 -F 2 9 2 4 17 6 -F 2 9 0 5 14 4 -F 2 20 2 4 17 7 -F 2 10 2 5 11 1 -F 2 5 2 6 23 13 -F 2 6 0 5 14 5 -F 2 5 1 5 23 14 -F 2 13 2 4 17 8 -F 2 6 2 5 11 2 -F 2 10 3 4 12 3 -F 2 12 0 1 11 3 -F 2 6 0 2 11 3 -F 2 14 2 0 11 3 -F 2 7 2 1 22 14 -F 2 7 3 1 17 9 -F 2 14 0 2 11 4 -F 2 8 3 4 12 5 -F 2 3 11 2 11 4 -F 2 3 12 2 13 6 -F 2 3 0 2 11 5 -F 2 9 1 2 22 16 -F 2 5 2 4 17 11 -F 2 5 3 4 12 6 -F 2 3 11 2 11 5 -F 2 2 12 2 13 7 -F 2 13 1 4 6 1 -F 2 6 1 5 23 18 -F 2 5 2 4 17 12 -F 2 21 3 1 17 12 -F 2 10 3 2 6 1 -F 2 5 3 4 12 7 -F 2 6 12 4 6 1 -F 2 12 0 4 6 2 -F 2 6 0 5 14 10 -F 2 9 1 4 6 2 -F 2 4 1 11 13 9 -F 2 11 2 4 17 13 -F 2 5 2 5 11 7 -F 2 3 2 11 11 7 -F 2 4 3 11 6 2 -F 2 10 11 4 8 4 -F 2 5 11 5 11 7 -F 2 7 12 4 6 2 -F 2 4 12 11 7 3 -F 2 20 0 1 11 8 -F 2 10 0 5 14 11 -F 2 5 0 11 4 1 -F 2 7 1 5 23 20 -F 2 7 3 5 10 7 -F 2 6 4 5 19 16 -F 2 5 11 5 11 8 -F 2 7 12 5 17 14 -F 2 8 0 1 11 9 -F 2 4 0 11 4 2 -F 2 2 0 12 4 2 -F 2 10 1 0 11 9 -F 2 2 1 12 11 9 -F 2 6 2 0 11 9 -F 2 3 2 1 22 20 -F 2 2 2 12 13 11 -F 2 5 3 0 6 4 -F 2 3 3 1 17 15 -F 2 1 3 12 8 6 -F 2 9 4 0 6 4 -F 2 4 4 1 6 4 -F 2 2 4 12 6 4 -F 2 6 11 0 4 2 -F 2 3 11 1 13 11 -F 2 2 11 12 7 5 -F 2 8 12 0 4 2 -F 2 4 12 1 11 9 -F 1 4 6 8 25 24 -F 2 11 0 5 14 13 -F 2 5 0 6 14 13 -F 2 3 0 12 4 3 -F 2 3 1 12 11 10 -F 2 14 2 1 22 21 -F 2 7 2 5 11 10 -F 2 4 2 12 13 12 -F 2 6 3 5 10 9 -F 2 3 3 12 8 7 -F 2 10 4 1 6 5 -F 2 5 4 12 6 5 -F 2 3 11 0 4 3 -F 2 5 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 6 3 -P 9.319567 21.808874 1 15 5 -P 14.288424 0.622569 1 34 5 -P 11.865493 5.273785 1 14 3 -P 11.742498 17.157658 1 8 3 -P 4.254093 0.000000 0 22 1 -P 19.353899 22.431443 2 5 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 12 5 -P 14.743177 12.694819 1 10 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 55 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 8 1 2 22 1 -F 1 9 1 2 22 2 -F 1 9 1 2 22 3 -F 1 13 1 2 22 4 -F 1 17 1 2 22 5 -F 1 16 1 3 17 1 -F 1 5 2 4 17 1 -F 1 12 1 3 17 2 -F 1 12 1 3 17 3 -F 1 9 1 3 17 4 -F 1 10 1 3 17 5 -F 1 10 1 3 17 6 -F 1 9 2 4 17 6 -F 1 9 0 5 14 4 -F 1 20 2 4 17 7 -F 1 10 2 5 11 1 -F 1 5 2 6 23 13 -F 1 6 0 5 14 5 -F 1 5 1 5 23 14 -F 1 13 2 4 17 8 -F 1 6 2 5 11 2 -F 1 10 3 4 12 3 -F 1 12 0 1 11 3 -F 1 6 0 2 11 3 -F 1 14 2 0 11 3 -F 1 7 2 1 22 14 -F 1 7 3 1 17 9 -F 1 14 0 2 11 4 -F 1 8 3 4 12 5 -F 1 3 11 2 11 4 -F 1 3 12 2 13 6 -F 1 3 0 2 11 5 -F 1 9 1 2 22 16 -F 1 5 2 4 17 11 -F 1 5 3 4 12 6 -F 1 3 11 2 11 5 -F 1 2 12 2 13 7 -F 1 13 1 4 6 1 -F 1 6 1 5 23 18 -F 1 5 2 4 17 12 -F 1 21 3 1 17 12 -F 1 10 3 2 6 1 -F 1 5 3 4 12 7 -F 1 6 12 4 6 1 -F 1 12 0 4 6 2 -F 1 6 0 5 14 10 -F 1 9 1 4 6 2 -F 1 4 1 11 13 9 -F 1 11 2 4 17 13 -F 1 5 2 5 11 7 -F 1 3 2 11 11 7 -F 1 4 3 11 6 2 -F 1 10 11 4 8 4 -F 1 5 11 5 11 7 -F 1 7 12 4 6 2 -F 1 4 12 11 7 3 -F 1 20 0 1 11 8 -F 1 10 0 5 14 11 -F 1 5 0 11 4 1 -F 1 7 1 5 23 20 -F 1 7 3 5 10 7 -F 1 6 4 5 19 16 -F 1 5 11 5 11 8 -F 1 7 12 5 17 14 -F 1 8 0 1 11 9 -F 1 4 0 11 4 2 -F 1 2 0 12 4 2 -F 1 10 1 0 11 9 -F 1 2 1 12 11 9 -F 1 6 2 0 11 9 -F 1 3 2 1 22 20 -F 1 2 2 12 13 11 -F 1 5 3 0 6 4 -F 1 3 3 1 17 15 -F 1 1 3 12 8 6 -F 1 9 4 0 6 4 -F 1 4 4 1 6 4 -F 1 2 4 12 6 4 -F 1 6 11 0 4 2 -F 1 3 11 1 13 11 -F 1 2 11 12 7 5 -F 1 8 12 0 4 2 -F 1 4 12 1 11 9 -F 2 4 6 8 25 24 -F 1 11 0 5 14 13 -F 1 5 0 6 14 13 -F 1 3 0 12 4 3 -F 1 3 1 12 11 10 -F 1 14 2 1 22 21 -F 1 7 2 5 11 10 -F 1 4 2 12 13 12 -F 1 6 3 5 10 9 -F 1 3 3 12 8 7 -F 1 10 4 1 6 5 -F 1 5 4 12 6 5 -F 1 3 11 0 4 3 -F 1 5 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 3 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 1 0 0.017865583220045826 -player2 > engine: 1 5 7 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 2 0 -player2 > engine: 2 1 17 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 1 0 0.03978664114174723 -player2 > engine: 2 5 8 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 1 0 0.07199482055767296 -player2 > engine: 3 5 7 -player2 > engine: comparing 3 and 6, gives 0 0 0.035611364342123364 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0.03561136510304112 -player2 > engine: comparing 4 and 6, gives 0 0 0.07199481416693816 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 6 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0.03712937124473499 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 5 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 6 3 -P 9.319567 21.808874 2 13 5 -P 14.288424 0.622569 2 32 5 -P 11.865493 5.273785 2 26 3 -P 11.742498 17.157658 2 35 3 -P 4.254093 0.000000 0 12 1 -P 19.353899 22.431443 1 6 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 16 5 -P 14.743177 12.694819 2 10 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 58 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 9 1 2 22 1 -F 2 9 1 2 22 2 -F 2 13 1 2 22 3 -F 2 17 1 2 22 4 -F 2 12 1 3 17 1 -F 2 12 1 3 17 2 -F 2 9 1 3 17 3 -F 2 10 1 3 17 4 -F 2 10 1 3 17 5 -F 2 9 2 4 17 5 -F 2 9 0 5 14 3 -F 2 20 2 4 17 6 -F 2 5 2 6 23 12 -F 2 6 0 5 14 4 -F 2 5 1 5 23 13 -F 2 13 2 4 17 7 -F 2 6 2 5 11 1 -F 2 10 3 4 12 2 -F 2 12 0 1 11 2 -F 2 6 0 2 11 2 -F 2 14 2 0 11 2 -F 2 7 2 1 22 13 -F 2 7 3 1 17 8 -F 2 14 0 2 11 3 -F 2 8 3 4 12 4 -F 2 3 11 2 11 3 -F 2 3 12 2 13 5 -F 2 3 0 2 11 4 -F 2 9 1 2 22 15 -F 2 5 2 4 17 10 -F 2 5 3 4 12 5 -F 2 3 11 2 11 4 -F 2 2 12 2 13 6 -F 2 6 1 5 23 17 -F 2 5 2 4 17 11 -F 2 21 3 1 17 11 -F 2 5 3 4 12 6 -F 2 12 0 4 6 1 -F 2 6 0 5 14 9 -F 2 9 1 4 6 1 -F 2 4 1 11 13 8 -F 2 11 2 4 17 12 -F 2 5 2 5 11 6 -F 2 3 2 11 11 6 -F 2 4 3 11 6 1 -F 2 10 11 4 8 3 -F 2 5 11 5 11 6 -F 2 7 12 4 6 1 -F 2 4 12 11 7 2 -F 2 20 0 1 11 7 -F 2 10 0 5 14 10 -F 2 7 1 5 23 19 -F 2 7 3 5 10 6 -F 2 6 4 5 19 15 -F 2 5 11 5 11 7 -F 2 7 12 5 17 13 -F 2 8 0 1 11 8 -F 2 4 0 11 4 1 -F 2 2 0 12 4 1 -F 2 10 1 0 11 8 -F 2 2 1 12 11 8 -F 2 6 2 0 11 8 -F 2 3 2 1 22 19 -F 2 2 2 12 13 10 -F 2 5 3 0 6 3 -F 2 3 3 1 17 14 -F 2 1 3 12 8 5 -F 2 9 4 0 6 3 -F 2 4 4 1 6 3 -F 2 2 4 12 6 3 -F 2 6 11 0 4 1 -F 2 3 11 1 13 10 -F 2 2 11 12 7 4 -F 2 8 12 0 4 1 -F 2 4 12 1 11 8 -F 1 4 6 8 25 23 -F 2 11 0 5 14 12 -F 2 5 0 6 14 12 -F 2 3 0 12 4 2 -F 2 3 1 12 11 9 -F 2 14 2 1 22 20 -F 2 7 2 5 11 9 -F 2 4 2 12 13 11 -F 2 6 3 5 10 8 -F 2 3 3 12 8 6 -F 2 10 4 1 6 4 -F 2 5 4 12 6 4 -F 2 3 11 0 4 2 -F 2 5 12 0 4 2 -F 2 3 0 12 4 3 -F 2 7 1 5 23 22 -F 2 17 2 1 22 21 -F 2 8 2 5 11 10 -F 2 7 3 5 10 9 -F 2 6 11 0 4 3 -F 2 5 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 6 3 -P 9.319567 21.808874 1 13 5 -P 14.288424 0.622569 1 32 5 -P 11.865493 5.273785 1 26 3 -P 11.742498 17.157658 1 35 3 -P 4.254093 0.000000 0 12 1 -P 19.353899 22.431443 2 6 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 16 5 -P 14.743177 12.694819 1 10 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 58 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 9 1 2 22 1 -F 1 9 1 2 22 2 -F 1 13 1 2 22 3 -F 1 17 1 2 22 4 -F 1 12 1 3 17 1 -F 1 12 1 3 17 2 -F 1 9 1 3 17 3 -F 1 10 1 3 17 4 -F 1 10 1 3 17 5 -F 1 9 2 4 17 5 -F 1 9 0 5 14 3 -F 1 20 2 4 17 6 -F 1 5 2 6 23 12 -F 1 6 0 5 14 4 -F 1 5 1 5 23 13 -F 1 13 2 4 17 7 -F 1 6 2 5 11 1 -F 1 10 3 4 12 2 -F 1 12 0 1 11 2 -F 1 6 0 2 11 2 -F 1 14 2 0 11 2 -F 1 7 2 1 22 13 -F 1 7 3 1 17 8 -F 1 14 0 2 11 3 -F 1 8 3 4 12 4 -F 1 3 11 2 11 3 -F 1 3 12 2 13 5 -F 1 3 0 2 11 4 -F 1 9 1 2 22 15 -F 1 5 2 4 17 10 -F 1 5 3 4 12 5 -F 1 3 11 2 11 4 -F 1 2 12 2 13 6 -F 1 6 1 5 23 17 -F 1 5 2 4 17 11 -F 1 21 3 1 17 11 -F 1 5 3 4 12 6 -F 1 12 0 4 6 1 -F 1 6 0 5 14 9 -F 1 9 1 4 6 1 -F 1 4 1 11 13 8 -F 1 11 2 4 17 12 -F 1 5 2 5 11 6 -F 1 3 2 11 11 6 -F 1 4 3 11 6 1 -F 1 10 11 4 8 3 -F 1 5 11 5 11 6 -F 1 7 12 4 6 1 -F 1 4 12 11 7 2 -F 1 20 0 1 11 7 -F 1 10 0 5 14 10 -F 1 7 1 5 23 19 -F 1 7 3 5 10 6 -F 1 6 4 5 19 15 -F 1 5 11 5 11 7 -F 1 7 12 5 17 13 -F 1 8 0 1 11 8 -F 1 4 0 11 4 1 -F 1 2 0 12 4 1 -F 1 10 1 0 11 8 -F 1 2 1 12 11 8 -F 1 6 2 0 11 8 -F 1 3 2 1 22 19 -F 1 2 2 12 13 10 -F 1 5 3 0 6 3 -F 1 3 3 1 17 14 -F 1 1 3 12 8 5 -F 1 9 4 0 6 3 -F 1 4 4 1 6 3 -F 1 2 4 12 6 3 -F 1 6 11 0 4 1 -F 1 3 11 1 13 10 -F 1 2 11 12 7 4 -F 1 8 12 0 4 1 -F 1 4 12 1 11 8 -F 2 4 6 8 25 23 -F 1 11 0 5 14 12 -F 1 5 0 6 14 12 -F 1 3 0 12 4 2 -F 1 3 1 12 11 9 -F 1 14 2 1 22 20 -F 1 7 2 5 11 9 -F 1 4 2 12 13 11 -F 1 6 3 5 10 8 -F 1 3 3 12 8 6 -F 1 10 4 1 6 4 -F 1 5 4 12 6 4 -F 1 3 11 0 4 2 -F 1 5 12 0 4 2 -F 1 3 0 12 4 3 -F 1 7 1 5 23 22 -F 1 17 2 1 22 21 -F 1 8 2 5 11 10 -F 1 7 3 5 10 9 -F 1 6 11 0 4 3 -F 1 5 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0.04930925562626634 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 3 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 1 0 0.017865583220045826 -player2 > engine: 1 5 6 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 1 0 0.03978664114174723 -player2 > engine: 2 5 16 -player2 > engine: comparing 2 and 6, gives 1 0 0.017865583039514844 -player2 > engine: 2 6 8 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 1 0 0.07199482055767296 -player2 > engine: 3 5 13 -player2 > engine: comparing 3 and 6, gives 1 0 0.035611364342123364 -player2 > engine: 3 6 6 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 2 0 -player2 > engine: 4 1 17 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 1 0 0.03561136510304112 -player2 > engine: 4 5 9 -player2 > engine: comparing 4 and 6, gives 0 0 0.07199481416693816 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 1 0 0.03712937124473499 -player2 > engine: 11 5 8 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0.024290234836829135 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 20 3 -P 9.319567 21.808874 2 12 5 -P 14.288424 0.622569 2 22 5 -P 11.865493 5.273785 2 22 3 -P 11.742498 17.157658 2 40 3 -P 4.254093 0.000000 0 6 1 -P 19.353899 22.431443 1 7 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 21 5 -P 14.743177 12.694819 2 17 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 61 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 9 1 2 22 1 -F 2 13 1 2 22 2 -F 2 17 1 2 22 3 -F 2 12 1 3 17 1 -F 2 9 1 3 17 2 -F 2 10 1 3 17 3 -F 2 10 1 3 17 4 -F 2 9 2 4 17 4 -F 2 9 0 5 14 2 -F 2 20 2 4 17 5 -F 2 5 2 6 23 11 -F 2 6 0 5 14 3 -F 2 5 1 5 23 12 -F 2 13 2 4 17 6 -F 2 10 3 4 12 1 -F 2 12 0 1 11 1 -F 2 6 0 2 11 1 -F 2 14 2 0 11 1 -F 2 7 2 1 22 12 -F 2 7 3 1 17 7 -F 2 14 0 2 11 2 -F 2 8 3 4 12 3 -F 2 3 11 2 11 2 -F 2 3 12 2 13 4 -F 2 3 0 2 11 3 -F 2 9 1 2 22 14 -F 2 5 2 4 17 9 -F 2 5 3 4 12 4 -F 2 3 11 2 11 3 -F 2 2 12 2 13 5 -F 2 6 1 5 23 16 -F 2 5 2 4 17 10 -F 2 21 3 1 17 10 -F 2 5 3 4 12 5 -F 2 6 0 5 14 8 -F 2 4 1 11 13 7 -F 2 11 2 4 17 11 -F 2 5 2 5 11 5 -F 2 3 2 11 11 5 -F 2 10 11 4 8 2 -F 2 5 11 5 11 5 -F 2 4 12 11 7 1 -F 2 20 0 1 11 6 -F 2 10 0 5 14 9 -F 2 7 1 5 23 18 -F 2 7 3 5 10 5 -F 2 6 4 5 19 14 -F 2 5 11 5 11 6 -F 2 7 12 5 17 12 -F 2 8 0 1 11 7 -F 2 10 1 0 11 7 -F 2 2 1 12 11 7 -F 2 6 2 0 11 7 -F 2 3 2 1 22 18 -F 2 2 2 12 13 9 -F 2 5 3 0 6 2 -F 2 3 3 1 17 13 -F 2 1 3 12 8 4 -F 2 9 4 0 6 2 -F 2 4 4 1 6 2 -F 2 2 4 12 6 2 -F 2 3 11 1 13 9 -F 2 2 11 12 7 3 -F 2 4 12 1 11 7 -F 1 4 6 8 25 22 -F 2 11 0 5 14 11 -F 2 5 0 6 14 11 -F 2 3 0 12 4 1 -F 2 3 1 12 11 8 -F 2 14 2 1 22 19 -F 2 7 2 5 11 8 -F 2 4 2 12 13 10 -F 2 6 3 5 10 7 -F 2 3 3 12 8 5 -F 2 10 4 1 6 3 -F 2 5 4 12 6 3 -F 2 3 11 0 4 1 -F 2 5 12 0 4 1 -F 2 3 0 12 4 2 -F 2 7 1 5 23 21 -F 2 17 2 1 22 20 -F 2 8 2 5 11 9 -F 2 7 3 5 10 8 -F 2 6 11 0 4 2 -F 2 5 12 0 4 2 -F 2 3 0 12 4 3 -F 2 6 1 5 23 22 -F 2 16 2 5 11 10 -F 2 8 2 6 23 22 -F 2 13 3 5 10 9 -F 2 6 3 6 19 18 -F 2 17 4 1 6 5 -F 2 9 4 5 19 18 -F 2 8 11 5 11 10 -go - -engine > player2: P 11.803996 11.215721 1 20 3 -P 9.319567 21.808874 1 12 5 -P 14.288424 0.622569 1 22 5 -P 11.865493 5.273785 1 22 3 -P 11.742498 17.157658 1 40 3 -P 4.254093 0.000000 0 6 1 -P 19.353899 22.431443 2 7 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 21 5 -P 14.743177 12.694819 1 17 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 61 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 9 1 2 22 1 -F 1 13 1 2 22 2 -F 1 17 1 2 22 3 -F 1 12 1 3 17 1 -F 1 9 1 3 17 2 -F 1 10 1 3 17 3 -F 1 10 1 3 17 4 -F 1 9 2 4 17 4 -F 1 9 0 5 14 2 -F 1 20 2 4 17 5 -F 1 5 2 6 23 11 -F 1 6 0 5 14 3 -F 1 5 1 5 23 12 -F 1 13 2 4 17 6 -F 1 10 3 4 12 1 -F 1 12 0 1 11 1 -F 1 6 0 2 11 1 -F 1 14 2 0 11 1 -F 1 7 2 1 22 12 -F 1 7 3 1 17 7 -F 1 14 0 2 11 2 -F 1 8 3 4 12 3 -F 1 3 11 2 11 2 -F 1 3 12 2 13 4 -F 1 3 0 2 11 3 -F 1 9 1 2 22 14 -F 1 5 2 4 17 9 -F 1 5 3 4 12 4 -F 1 3 11 2 11 3 -F 1 2 12 2 13 5 -F 1 6 1 5 23 16 -F 1 5 2 4 17 10 -F 1 21 3 1 17 10 -F 1 5 3 4 12 5 -F 1 6 0 5 14 8 -F 1 4 1 11 13 7 -F 1 11 2 4 17 11 -F 1 5 2 5 11 5 -F 1 3 2 11 11 5 -F 1 10 11 4 8 2 -F 1 5 11 5 11 5 -F 1 4 12 11 7 1 -F 1 20 0 1 11 6 -F 1 10 0 5 14 9 -F 1 7 1 5 23 18 -F 1 7 3 5 10 5 -F 1 6 4 5 19 14 -F 1 5 11 5 11 6 -F 1 7 12 5 17 12 -F 1 8 0 1 11 7 -F 1 10 1 0 11 7 -F 1 2 1 12 11 7 -F 1 6 2 0 11 7 -F 1 3 2 1 22 18 -F 1 2 2 12 13 9 -F 1 5 3 0 6 2 -F 1 3 3 1 17 13 -F 1 1 3 12 8 4 -F 1 9 4 0 6 2 -F 1 4 4 1 6 2 -F 1 2 4 12 6 2 -F 1 3 11 1 13 9 -F 1 2 11 12 7 3 -F 1 4 12 1 11 7 -F 2 4 6 8 25 22 -F 1 11 0 5 14 11 -F 1 5 0 6 14 11 -F 1 3 0 12 4 1 -F 1 3 1 12 11 8 -F 1 14 2 1 22 19 -F 1 7 2 5 11 8 -F 1 4 2 12 13 10 -F 1 6 3 5 10 7 -F 1 3 3 12 8 5 -F 1 10 4 1 6 3 -F 1 5 4 12 6 3 -F 1 3 11 0 4 1 -F 1 5 12 0 4 1 -F 1 3 0 12 4 2 -F 1 7 1 5 23 21 -F 1 17 2 1 22 20 -F 1 8 2 5 11 9 -F 1 7 3 5 10 8 -F 1 6 11 0 4 2 -F 1 5 12 0 4 2 -F 1 3 0 12 4 3 -F 1 6 1 5 23 22 -F 1 16 2 5 11 10 -F 1 8 2 6 23 22 -F 1 13 3 5 10 9 -F 1 6 3 6 19 18 -F 1 17 4 1 6 5 -F 1 9 4 5 19 18 -F 1 8 11 5 11 10 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 1 0 0.04930925562626634 -player2 > engine: 0 5 10 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 5 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 1 0 0.017865583220045826 -player2 > engine: 1 5 6 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 1 0 0.03978664114174723 -player2 > engine: 2 5 11 -player2 > engine: comparing 2 and 6, gives 1 0 0.017865583039514844 -player2 > engine: 2 6 5 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 1 0 0.07199482055767296 -player2 > engine: 3 5 11 -player2 > engine: comparing 3 and 6, gives 1 0 0.035611364342123364 -player2 > engine: 3 6 5 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 1 0 0.03561136510304112 -player2 > engine: 4 5 20 -player2 > engine: comparing 4 and 6, gives 1 0 0.07199481416693816 -player2 > engine: 4 6 10 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 2 0 -player2 > engine: 4 11 5 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 1 0 0.03712937124473499 -player2 > engine: 11 5 10 -player2 > engine: comparing 11 and 6, gives 1 0 0.02429023389729467 -player2 > engine: 11 6 5 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 1 0 0.024290234836829135 -player2 > engine: 12 5 8 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 30 3 -P 9.319567 21.808874 2 23 5 -P 14.288424 0.622569 2 26 5 -P 11.865493 5.273785 2 21 3 -P 11.742498 17.157658 2 18 3 -P 4.254093 0.000000 0 6 1 -P 19.353899 22.431443 1 8 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 15 5 -P 14.743177 12.694819 2 17 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 64 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 13 1 2 22 1 -F 2 17 1 2 22 2 -F 2 9 1 3 17 1 -F 2 10 1 3 17 2 -F 2 10 1 3 17 3 -F 2 9 2 4 17 3 -F 2 9 0 5 14 1 -F 2 20 2 4 17 4 -F 2 5 2 6 23 10 -F 2 6 0 5 14 2 -F 2 5 1 5 23 11 -F 2 13 2 4 17 5 -F 2 7 2 1 22 11 -F 2 7 3 1 17 6 -F 2 14 0 2 11 1 -F 2 8 3 4 12 2 -F 2 3 11 2 11 1 -F 2 3 12 2 13 3 -F 2 3 0 2 11 2 -F 2 9 1 2 22 13 -F 2 5 2 4 17 8 -F 2 5 3 4 12 3 -F 2 3 11 2 11 2 -F 2 2 12 2 13 4 -F 2 6 1 5 23 15 -F 2 5 2 4 17 9 -F 2 21 3 1 17 9 -F 2 5 3 4 12 4 -F 2 6 0 5 14 7 -F 2 4 1 11 13 6 -F 2 11 2 4 17 10 -F 2 5 2 5 11 4 -F 2 3 2 11 11 4 -F 2 10 11 4 8 1 -F 2 5 11 5 11 4 -F 2 20 0 1 11 5 -F 2 10 0 5 14 8 -F 2 7 1 5 23 17 -F 2 7 3 5 10 4 -F 2 6 4 5 19 13 -F 2 5 11 5 11 5 -F 2 7 12 5 17 11 -F 2 8 0 1 11 6 -F 2 10 1 0 11 6 -F 2 2 1 12 11 6 -F 2 6 2 0 11 6 -F 2 3 2 1 22 17 -F 2 2 2 12 13 8 -F 2 5 3 0 6 1 -F 2 3 3 1 17 12 -F 2 1 3 12 8 3 -F 2 9 4 0 6 1 -F 2 4 4 1 6 1 -F 2 2 4 12 6 1 -F 2 3 11 1 13 8 -F 2 2 11 12 7 2 -F 2 4 12 1 11 6 -F 1 4 6 8 25 21 -F 2 11 0 5 14 10 -F 2 5 0 6 14 10 -F 2 3 1 12 11 7 -F 2 14 2 1 22 18 -F 2 7 2 5 11 7 -F 2 4 2 12 13 9 -F 2 6 3 5 10 6 -F 2 3 3 12 8 4 -F 2 10 4 1 6 2 -F 2 5 4 12 6 2 -F 2 3 0 12 4 1 -F 2 7 1 5 23 20 -F 2 17 2 1 22 19 -F 2 8 2 5 11 8 -F 2 7 3 5 10 7 -F 2 6 11 0 4 1 -F 2 5 12 0 4 1 -F 2 3 0 12 4 2 -F 2 6 1 5 23 21 -F 2 16 2 5 11 9 -F 2 8 2 6 23 21 -F 2 13 3 5 10 8 -F 2 6 3 6 19 17 -F 2 17 4 1 6 4 -F 2 9 4 5 19 17 -F 2 8 11 5 11 9 -F 2 10 0 5 14 13 -F 2 5 0 11 4 3 -F 2 6 1 5 23 22 -F 2 11 2 5 11 10 -F 2 5 2 6 23 22 -F 2 11 3 5 10 9 -F 2 5 3 6 19 18 -F 2 20 4 5 19 18 -F 2 10 4 6 10 9 -F 2 5 4 11 8 7 -F 2 10 11 5 11 10 -F 2 5 11 6 17 16 -F 2 8 12 5 17 16 -go - -engine > player2: P 11.803996 11.215721 1 30 3 -P 9.319567 21.808874 1 23 5 -P 14.288424 0.622569 1 26 5 -P 11.865493 5.273785 1 21 3 -P 11.742498 17.157658 1 18 3 -P 4.254093 0.000000 0 6 1 -P 19.353899 22.431443 2 8 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 15 5 -P 14.743177 12.694819 1 17 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 64 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 13 1 2 22 1 -F 1 17 1 2 22 2 -F 1 9 1 3 17 1 -F 1 10 1 3 17 2 -F 1 10 1 3 17 3 -F 1 9 2 4 17 3 -F 1 9 0 5 14 1 -F 1 20 2 4 17 4 -F 1 5 2 6 23 10 -F 1 6 0 5 14 2 -F 1 5 1 5 23 11 -F 1 13 2 4 17 5 -F 1 7 2 1 22 11 -F 1 7 3 1 17 6 -F 1 14 0 2 11 1 -F 1 8 3 4 12 2 -F 1 3 11 2 11 1 -F 1 3 12 2 13 3 -F 1 3 0 2 11 2 -F 1 9 1 2 22 13 -F 1 5 2 4 17 8 -F 1 5 3 4 12 3 -F 1 3 11 2 11 2 -F 1 2 12 2 13 4 -F 1 6 1 5 23 15 -F 1 5 2 4 17 9 -F 1 21 3 1 17 9 -F 1 5 3 4 12 4 -F 1 6 0 5 14 7 -F 1 4 1 11 13 6 -F 1 11 2 4 17 10 -F 1 5 2 5 11 4 -F 1 3 2 11 11 4 -F 1 10 11 4 8 1 -F 1 5 11 5 11 4 -F 1 20 0 1 11 5 -F 1 10 0 5 14 8 -F 1 7 1 5 23 17 -F 1 7 3 5 10 4 -F 1 6 4 5 19 13 -F 1 5 11 5 11 5 -F 1 7 12 5 17 11 -F 1 8 0 1 11 6 -F 1 10 1 0 11 6 -F 1 2 1 12 11 6 -F 1 6 2 0 11 6 -F 1 3 2 1 22 17 -F 1 2 2 12 13 8 -F 1 5 3 0 6 1 -F 1 3 3 1 17 12 -F 1 1 3 12 8 3 -F 1 9 4 0 6 1 -F 1 4 4 1 6 1 -F 1 2 4 12 6 1 -F 1 3 11 1 13 8 -F 1 2 11 12 7 2 -F 1 4 12 1 11 6 -F 2 4 6 8 25 21 -F 1 11 0 5 14 10 -F 1 5 0 6 14 10 -F 1 3 1 12 11 7 -F 1 14 2 1 22 18 -F 1 7 2 5 11 7 -F 1 4 2 12 13 9 -F 1 6 3 5 10 6 -F 1 3 3 12 8 4 -F 1 10 4 1 6 2 -F 1 5 4 12 6 2 -F 1 3 0 12 4 1 -F 1 7 1 5 23 20 -F 1 17 2 1 22 19 -F 1 8 2 5 11 8 -F 1 7 3 5 10 7 -F 1 6 11 0 4 1 -F 1 5 12 0 4 1 -F 1 3 0 12 4 2 -F 1 6 1 5 23 21 -F 1 16 2 5 11 9 -F 1 8 2 6 23 21 -F 1 13 3 5 10 8 -F 1 6 3 6 19 17 -F 1 17 4 1 6 4 -F 1 9 4 5 19 17 -F 1 8 11 5 11 9 -F 1 10 0 5 14 13 -F 1 5 0 11 4 3 -F 1 6 1 5 23 22 -F 1 11 2 5 11 10 -F 1 5 2 6 23 22 -F 1 11 3 5 10 9 -F 1 5 3 6 19 18 -F 1 20 4 5 19 18 -F 1 10 4 6 10 9 -F 1 5 4 11 8 7 -F 1 10 11 5 11 10 -F 1 5 11 6 17 16 -F 1 8 12 5 17 16 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 1 0 0.04930925562626634 -player2 > engine: 0 5 15 -player2 > engine: comparing 0 and 6, gives 1 0 0.04930925260078114 -player2 > engine: 0 6 7 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 4 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 1 0 0.017865583220045826 -player2 > engine: 1 5 11 -player2 > engine: comparing 1 and 6, gives 1 0 0.03978663719190064 -player2 > engine: 1 6 6 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 1 0 0.03978664114174723 -player2 > engine: 2 5 13 -player2 > engine: comparing 2 and 6, gives 1 0 0.017865583039514844 -player2 > engine: 2 6 6 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 1 0 0.07199482055767296 -player2 > engine: 3 5 10 -player2 > engine: comparing 3 and 6, gives 1 0 0.035611364342123364 -player2 > engine: 3 6 5 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 1 0 0.03561136510304112 -player2 > engine: 4 5 9 -player2 > engine: comparing 4 and 6, gives 0 0 0.07199481416693816 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 1 0 0.03712937124473499 -player2 > engine: 11 5 7 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 1 0 0.024290234836829135 -player2 > engine: 12 5 8 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 32 3 -P 9.319567 21.808874 2 15 5 -P 14.288424 0.622569 2 42 5 -P 11.865493 5.273785 2 18 3 -P 11.742498 17.157658 2 22 3 -P 4.254093 0.000000 2 3 1 -P 19.353899 22.431443 1 9 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 13 5 -P 14.743177 12.694819 2 19 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 67 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 17 1 2 22 1 -F 2 10 1 3 17 1 -F 2 10 1 3 17 2 -F 2 9 2 4 17 2 -F 2 20 2 4 17 3 -F 2 5 2 6 23 9 -F 2 6 0 5 14 1 -F 2 5 1 5 23 10 -F 2 13 2 4 17 4 -F 2 7 2 1 22 10 -F 2 7 3 1 17 5 -F 2 8 3 4 12 1 -F 2 3 12 2 13 2 -F 2 3 0 2 11 1 -F 2 9 1 2 22 12 -F 2 5 2 4 17 7 -F 2 5 3 4 12 2 -F 2 3 11 2 11 1 -F 2 2 12 2 13 3 -F 2 6 1 5 23 14 -F 2 5 2 4 17 8 -F 2 21 3 1 17 8 -F 2 5 3 4 12 3 -F 2 6 0 5 14 6 -F 2 4 1 11 13 5 -F 2 11 2 4 17 9 -F 2 5 2 5 11 3 -F 2 3 2 11 11 3 -F 2 5 11 5 11 3 -F 2 20 0 1 11 4 -F 2 10 0 5 14 7 -F 2 7 1 5 23 16 -F 2 7 3 5 10 3 -F 2 6 4 5 19 12 -F 2 5 11 5 11 4 -F 2 7 12 5 17 10 -F 2 8 0 1 11 5 -F 2 10 1 0 11 5 -F 2 2 1 12 11 5 -F 2 6 2 0 11 5 -F 2 3 2 1 22 16 -F 2 2 2 12 13 7 -F 2 3 3 1 17 11 -F 2 1 3 12 8 2 -F 2 3 11 1 13 7 -F 2 2 11 12 7 1 -F 2 4 12 1 11 5 -F 1 4 6 8 25 20 -F 2 11 0 5 14 9 -F 2 5 0 6 14 9 -F 2 3 1 12 11 6 -F 2 14 2 1 22 17 -F 2 7 2 5 11 6 -F 2 4 2 12 13 8 -F 2 6 3 5 10 5 -F 2 3 3 12 8 3 -F 2 10 4 1 6 1 -F 2 5 4 12 6 1 -F 2 7 1 5 23 19 -F 2 17 2 1 22 18 -F 2 8 2 5 11 7 -F 2 7 3 5 10 6 -F 2 3 0 12 4 1 -F 2 6 1 5 23 20 -F 2 16 2 5 11 8 -F 2 8 2 6 23 20 -F 2 13 3 5 10 7 -F 2 6 3 6 19 16 -F 2 17 4 1 6 3 -F 2 9 4 5 19 16 -F 2 8 11 5 11 8 -F 2 10 0 5 14 12 -F 2 5 0 11 4 2 -F 2 6 1 5 23 21 -F 2 11 2 5 11 9 -F 2 5 2 6 23 21 -F 2 11 3 5 10 8 -F 2 5 3 6 19 17 -F 2 20 4 5 19 17 -F 2 10 4 6 10 8 -F 2 5 4 11 8 6 -F 2 10 11 5 11 9 -F 2 5 11 6 17 15 -F 2 8 12 5 17 15 -F 2 15 0 5 14 13 -F 2 7 0 6 14 13 -F 2 4 0 11 4 3 -F 2 11 1 5 23 22 -F 2 6 1 6 11 10 -F 2 13 2 5 11 10 -F 2 6 2 6 23 22 -F 2 10 3 5 10 9 -F 2 5 3 6 19 18 -F 2 9 4 5 19 18 -F 2 7 11 5 11 10 -F 2 8 12 5 17 16 -go - -engine > player2: P 11.803996 11.215721 1 32 3 -P 9.319567 21.808874 1 15 5 -P 14.288424 0.622569 1 42 5 -P 11.865493 5.273785 1 18 3 -P 11.742498 17.157658 1 22 3 -P 4.254093 0.000000 1 3 1 -P 19.353899 22.431443 2 9 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 13 5 -P 14.743177 12.694819 1 19 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 67 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 17 1 2 22 1 -F 1 10 1 3 17 1 -F 1 10 1 3 17 2 -F 1 9 2 4 17 2 -F 1 20 2 4 17 3 -F 1 5 2 6 23 9 -F 1 6 0 5 14 1 -F 1 5 1 5 23 10 -F 1 13 2 4 17 4 -F 1 7 2 1 22 10 -F 1 7 3 1 17 5 -F 1 8 3 4 12 1 -F 1 3 12 2 13 2 -F 1 3 0 2 11 1 -F 1 9 1 2 22 12 -F 1 5 2 4 17 7 -F 1 5 3 4 12 2 -F 1 3 11 2 11 1 -F 1 2 12 2 13 3 -F 1 6 1 5 23 14 -F 1 5 2 4 17 8 -F 1 21 3 1 17 8 -F 1 5 3 4 12 3 -F 1 6 0 5 14 6 -F 1 4 1 11 13 5 -F 1 11 2 4 17 9 -F 1 5 2 5 11 3 -F 1 3 2 11 11 3 -F 1 5 11 5 11 3 -F 1 20 0 1 11 4 -F 1 10 0 5 14 7 -F 1 7 1 5 23 16 -F 1 7 3 5 10 3 -F 1 6 4 5 19 12 -F 1 5 11 5 11 4 -F 1 7 12 5 17 10 -F 1 8 0 1 11 5 -F 1 10 1 0 11 5 -F 1 2 1 12 11 5 -F 1 6 2 0 11 5 -F 1 3 2 1 22 16 -F 1 2 2 12 13 7 -F 1 3 3 1 17 11 -F 1 1 3 12 8 2 -F 1 3 11 1 13 7 -F 1 2 11 12 7 1 -F 1 4 12 1 11 5 -F 2 4 6 8 25 20 -F 1 11 0 5 14 9 -F 1 5 0 6 14 9 -F 1 3 1 12 11 6 -F 1 14 2 1 22 17 -F 1 7 2 5 11 6 -F 1 4 2 12 13 8 -F 1 6 3 5 10 5 -F 1 3 3 12 8 3 -F 1 10 4 1 6 1 -F 1 5 4 12 6 1 -F 1 7 1 5 23 19 -F 1 17 2 1 22 18 -F 1 8 2 5 11 7 -F 1 7 3 5 10 6 -F 1 3 0 12 4 1 -F 1 6 1 5 23 20 -F 1 16 2 5 11 8 -F 1 8 2 6 23 20 -F 1 13 3 5 10 7 -F 1 6 3 6 19 16 -F 1 17 4 1 6 3 -F 1 9 4 5 19 16 -F 1 8 11 5 11 8 -F 1 10 0 5 14 12 -F 1 5 0 11 4 2 -F 1 6 1 5 23 21 -F 1 11 2 5 11 9 -F 1 5 2 6 23 21 -F 1 11 3 5 10 8 -F 1 5 3 6 19 17 -F 1 20 4 5 19 17 -F 1 10 4 6 10 8 -F 1 5 4 11 8 6 -F 1 10 11 5 11 9 -F 1 5 11 6 17 15 -F 1 8 12 5 17 15 -F 1 15 0 5 14 13 -F 1 7 0 6 14 13 -F 1 4 0 11 4 3 -F 1 11 1 5 23 22 -F 1 6 1 6 11 10 -F 1 13 2 5 11 10 -F 1 6 2 6 23 22 -F 1 10 3 5 10 9 -F 1 5 3 6 19 18 -F 1 9 4 5 19 18 -F 1 7 11 5 11 10 -F 1 8 12 5 17 16 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 16 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 1 0 0.04930925260078114 -player2 > engine: 0 6 8 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 4 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 2 0 -player2 > engine: 1 0 7 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 2 0 -player2 > engine: 2 0 21 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 1 0 0.017865583039514844 -player2 > engine: 2 6 10 -player2 > engine: comparing 2 and 7, gives 1 0 0.055283730301199124 -player2 > engine: 2 7 5 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 2 0 -player2 > engine: 3 0 9 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0.035611364342123364 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 2 0 -player2 > engine: 4 0 11 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 1 0 0.07199481416693816 -player2 > engine: 4 6 5 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 2 0 -player2 > engine: 5 0 1 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0.07396388117028554 -player2 > engine: comparing 5 and 7, gives 0 0 0.24325391264188054 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 1 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 6 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 9 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 23 3 -P 9.319567 21.808874 2 23 5 -P 14.288424 0.622569 2 34 5 -P 11.865493 5.273785 2 22 3 -P 11.742498 17.157658 2 17 3 -P 4.254093 0.000000 2 8 1 -P 19.353899 22.431443 1 10 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 12 5 -P 14.743177 12.694819 2 25 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 70 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 10 1 3 17 1 -F 2 9 2 4 17 1 -F 2 20 2 4 17 2 -F 2 5 2 6 23 8 -F 2 5 1 5 23 9 -F 2 13 2 4 17 3 -F 2 7 2 1 22 9 -F 2 7 3 1 17 4 -F 2 3 12 2 13 1 -F 2 9 1 2 22 11 -F 2 5 2 4 17 6 -F 2 5 3 4 12 1 -F 2 2 12 2 13 2 -F 2 6 1 5 23 13 -F 2 5 2 4 17 7 -F 2 21 3 1 17 7 -F 2 5 3 4 12 2 -F 2 6 0 5 14 5 -F 2 4 1 11 13 4 -F 2 11 2 4 17 8 -F 2 5 2 5 11 2 -F 2 3 2 11 11 2 -F 2 5 11 5 11 2 -F 2 20 0 1 11 3 -F 2 10 0 5 14 6 -F 2 7 1 5 23 15 -F 2 7 3 5 10 2 -F 2 6 4 5 19 11 -F 2 5 11 5 11 3 -F 2 7 12 5 17 9 -F 2 8 0 1 11 4 -F 2 10 1 0 11 4 -F 2 2 1 12 11 4 -F 2 6 2 0 11 4 -F 2 3 2 1 22 15 -F 2 2 2 12 13 6 -F 2 3 3 1 17 10 -F 2 1 3 12 8 1 -F 2 3 11 1 13 6 -F 2 4 12 1 11 4 -F 1 4 6 8 25 19 -F 2 11 0 5 14 8 -F 2 5 0 6 14 8 -F 2 3 1 12 11 5 -F 2 14 2 1 22 16 -F 2 7 2 5 11 5 -F 2 4 2 12 13 7 -F 2 6 3 5 10 4 -F 2 3 3 12 8 2 -F 2 7 1 5 23 18 -F 2 17 2 1 22 17 -F 2 8 2 5 11 6 -F 2 7 3 5 10 5 -F 2 6 1 5 23 19 -F 2 16 2 5 11 7 -F 2 8 2 6 23 19 -F 2 13 3 5 10 6 -F 2 6 3 6 19 15 -F 2 17 4 1 6 2 -F 2 9 4 5 19 15 -F 2 8 11 5 11 7 -F 2 10 0 5 14 11 -F 2 5 0 11 4 1 -F 2 6 1 5 23 20 -F 2 11 2 5 11 8 -F 2 5 2 6 23 20 -F 2 11 3 5 10 7 -F 2 5 3 6 19 16 -F 2 20 4 5 19 16 -F 2 10 4 6 10 7 -F 2 5 4 11 8 5 -F 2 10 11 5 11 8 -F 2 5 11 6 17 14 -F 2 8 12 5 17 14 -F 2 15 0 5 14 12 -F 2 7 0 6 14 12 -F 2 4 0 11 4 2 -F 2 11 1 5 23 21 -F 2 6 1 6 11 9 -F 2 13 2 5 11 9 -F 2 6 2 6 23 21 -F 2 10 3 5 10 8 -F 2 5 3 6 19 17 -F 2 9 4 5 19 17 -F 2 7 11 5 11 9 -F 2 8 12 5 17 15 -F 2 8 0 6 14 13 -F 2 4 0 11 4 3 -F 2 7 1 0 11 10 -F 2 21 2 0 11 10 -F 2 10 2 6 23 22 -F 2 5 2 7 22 21 -F 2 9 3 0 6 5 -F 2 11 4 0 6 5 -F 2 5 4 6 10 9 -F 2 1 5 0 14 13 -F 2 1 5 8 5 4 -F 2 6 11 0 4 3 -F 2 9 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 23 3 -P 9.319567 21.808874 1 23 5 -P 14.288424 0.622569 1 34 5 -P 11.865493 5.273785 1 22 3 -P 11.742498 17.157658 1 17 3 -P 4.254093 0.000000 1 8 1 -P 19.353899 22.431443 2 10 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 12 5 -P 14.743177 12.694819 1 25 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 70 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 10 1 3 17 1 -F 1 9 2 4 17 1 -F 1 20 2 4 17 2 -F 1 5 2 6 23 8 -F 1 5 1 5 23 9 -F 1 13 2 4 17 3 -F 1 7 2 1 22 9 -F 1 7 3 1 17 4 -F 1 3 12 2 13 1 -F 1 9 1 2 22 11 -F 1 5 2 4 17 6 -F 1 5 3 4 12 1 -F 1 2 12 2 13 2 -F 1 6 1 5 23 13 -F 1 5 2 4 17 7 -F 1 21 3 1 17 7 -F 1 5 3 4 12 2 -F 1 6 0 5 14 5 -F 1 4 1 11 13 4 -F 1 11 2 4 17 8 -F 1 5 2 5 11 2 -F 1 3 2 11 11 2 -F 1 5 11 5 11 2 -F 1 20 0 1 11 3 -F 1 10 0 5 14 6 -F 1 7 1 5 23 15 -F 1 7 3 5 10 2 -F 1 6 4 5 19 11 -F 1 5 11 5 11 3 -F 1 7 12 5 17 9 -F 1 8 0 1 11 4 -F 1 10 1 0 11 4 -F 1 2 1 12 11 4 -F 1 6 2 0 11 4 -F 1 3 2 1 22 15 -F 1 2 2 12 13 6 -F 1 3 3 1 17 10 -F 1 1 3 12 8 1 -F 1 3 11 1 13 6 -F 1 4 12 1 11 4 -F 2 4 6 8 25 19 -F 1 11 0 5 14 8 -F 1 5 0 6 14 8 -F 1 3 1 12 11 5 -F 1 14 2 1 22 16 -F 1 7 2 5 11 5 -F 1 4 2 12 13 7 -F 1 6 3 5 10 4 -F 1 3 3 12 8 2 -F 1 7 1 5 23 18 -F 1 17 2 1 22 17 -F 1 8 2 5 11 6 -F 1 7 3 5 10 5 -F 1 6 1 5 23 19 -F 1 16 2 5 11 7 -F 1 8 2 6 23 19 -F 1 13 3 5 10 6 -F 1 6 3 6 19 15 -F 1 17 4 1 6 2 -F 1 9 4 5 19 15 -F 1 8 11 5 11 7 -F 1 10 0 5 14 11 -F 1 5 0 11 4 1 -F 1 6 1 5 23 20 -F 1 11 2 5 11 8 -F 1 5 2 6 23 20 -F 1 11 3 5 10 7 -F 1 5 3 6 19 16 -F 1 20 4 5 19 16 -F 1 10 4 6 10 7 -F 1 5 4 11 8 5 -F 1 10 11 5 11 8 -F 1 5 11 6 17 14 -F 1 8 12 5 17 14 -F 1 15 0 5 14 12 -F 1 7 0 6 14 12 -F 1 4 0 11 4 2 -F 1 11 1 5 23 21 -F 1 6 1 6 11 9 -F 1 13 2 5 11 9 -F 1 6 2 6 23 21 -F 1 10 3 5 10 8 -F 1 5 3 6 19 17 -F 1 9 4 5 19 17 -F 1 7 11 5 11 9 -F 1 8 12 5 17 15 -F 1 8 0 6 14 13 -F 1 4 0 11 4 3 -F 1 7 1 0 11 10 -F 1 21 2 0 11 10 -F 1 10 2 6 23 22 -F 1 5 2 7 22 21 -F 1 9 3 0 6 5 -F 1 11 4 0 6 5 -F 1 5 4 6 10 9 -F 1 1 5 0 14 13 -F 1 1 5 8 5 4 -F 1 6 11 0 4 3 -F 1 9 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 11 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 1 0 0.04930925260078114 -player2 > engine: 0 6 6 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 3 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 2 0 -player2 > engine: 1 2 11 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 1 0 0.03978663719190064 -player2 > engine: 1 6 6 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 17 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 1 0 0.017865583039514844 -player2 > engine: 2 6 8 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 2 0 -player2 > engine: 3 2 11 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 1 0 0.035611364342123364 -player2 > engine: 3 6 5 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 2 0 -player2 > engine: 4 2 8 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0.07199481416693816 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0.07396388117028554 -player2 > engine: comparing 5 and 7, gives 0 0 0.24325391264188054 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 4 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 6 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 12 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 6 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 6 3 -P 9.319567 21.808874 2 11 5 -P 14.288424 0.622569 2 34 5 -P 11.865493 5.273785 2 19 3 -P 11.742498 17.157658 2 26 3 -P 4.254093 0.000000 2 5 1 -P 19.353899 22.431443 1 11 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 16 5 -P 14.743177 12.694819 2 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 73 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 20 2 4 17 1 -F 2 5 2 6 23 7 -F 2 5 1 5 23 8 -F 2 13 2 4 17 2 -F 2 7 2 1 22 8 -F 2 7 3 1 17 3 -F 2 9 1 2 22 10 -F 2 5 2 4 17 5 -F 2 2 12 2 13 1 -F 2 6 1 5 23 12 -F 2 5 2 4 17 6 -F 2 21 3 1 17 6 -F 2 5 3 4 12 1 -F 2 6 0 5 14 4 -F 2 4 1 11 13 3 -F 2 11 2 4 17 7 -F 2 5 2 5 11 1 -F 2 3 2 11 11 1 -F 2 5 11 5 11 1 -F 2 20 0 1 11 2 -F 2 10 0 5 14 5 -F 2 7 1 5 23 14 -F 2 7 3 5 10 1 -F 2 6 4 5 19 10 -F 2 5 11 5 11 2 -F 2 7 12 5 17 8 -F 2 8 0 1 11 3 -F 2 10 1 0 11 3 -F 2 2 1 12 11 3 -F 2 6 2 0 11 3 -F 2 3 2 1 22 14 -F 2 2 2 12 13 5 -F 2 3 3 1 17 9 -F 2 3 11 1 13 5 -F 2 4 12 1 11 3 -F 1 4 6 8 25 18 -F 2 11 0 5 14 7 -F 2 5 0 6 14 7 -F 2 3 1 12 11 4 -F 2 14 2 1 22 15 -F 2 7 2 5 11 4 -F 2 4 2 12 13 6 -F 2 6 3 5 10 3 -F 2 3 3 12 8 1 -F 2 7 1 5 23 17 -F 2 17 2 1 22 16 -F 2 8 2 5 11 5 -F 2 7 3 5 10 4 -F 2 6 1 5 23 18 -F 2 16 2 5 11 6 -F 2 8 2 6 23 18 -F 2 13 3 5 10 5 -F 2 6 3 6 19 14 -F 2 17 4 1 6 1 -F 2 9 4 5 19 14 -F 2 8 11 5 11 6 -F 2 10 0 5 14 10 -F 2 6 1 5 23 19 -F 2 11 2 5 11 7 -F 2 5 2 6 23 19 -F 2 11 3 5 10 6 -F 2 5 3 6 19 15 -F 2 20 4 5 19 15 -F 2 10 4 6 10 6 -F 2 5 4 11 8 4 -F 2 10 11 5 11 7 -F 2 5 11 6 17 13 -F 2 8 12 5 17 13 -F 2 15 0 5 14 11 -F 2 7 0 6 14 11 -F 2 4 0 11 4 1 -F 2 11 1 5 23 20 -F 2 6 1 6 11 8 -F 2 13 2 5 11 8 -F 2 6 2 6 23 20 -F 2 10 3 5 10 7 -F 2 5 3 6 19 16 -F 2 9 4 5 19 16 -F 2 7 11 5 11 8 -F 2 8 12 5 17 14 -F 2 8 0 6 14 12 -F 2 4 0 11 4 2 -F 2 7 1 0 11 9 -F 2 21 2 0 11 9 -F 2 10 2 6 23 21 -F 2 5 2 7 22 20 -F 2 9 3 0 6 4 -F 2 11 4 0 6 4 -F 2 5 4 6 10 8 -F 2 1 5 0 14 12 -F 2 1 5 8 5 3 -F 2 6 11 0 4 2 -F 2 9 12 0 4 2 -F 2 11 0 2 11 10 -F 2 6 0 6 14 13 -F 2 3 0 12 4 3 -F 2 11 1 2 22 21 -F 2 6 1 6 11 10 -F 2 8 2 6 23 22 -F 2 11 3 2 6 5 -F 2 5 3 6 19 18 -F 2 8 4 2 17 16 -F 2 4 5 8 5 4 -F 2 6 11 0 4 3 -F 2 12 12 0 4 3 -F 2 6 12 2 13 12 -go - -engine > player2: P 11.803996 11.215721 1 6 3 -P 9.319567 21.808874 1 11 5 -P 14.288424 0.622569 1 34 5 -P 11.865493 5.273785 1 19 3 -P 11.742498 17.157658 1 26 3 -P 4.254093 0.000000 1 5 1 -P 19.353899 22.431443 2 11 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 16 5 -P 14.743177 12.694819 1 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 73 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 20 2 4 17 1 -F 1 5 2 6 23 7 -F 1 5 1 5 23 8 -F 1 13 2 4 17 2 -F 1 7 2 1 22 8 -F 1 7 3 1 17 3 -F 1 9 1 2 22 10 -F 1 5 2 4 17 5 -F 1 2 12 2 13 1 -F 1 6 1 5 23 12 -F 1 5 2 4 17 6 -F 1 21 3 1 17 6 -F 1 5 3 4 12 1 -F 1 6 0 5 14 4 -F 1 4 1 11 13 3 -F 1 11 2 4 17 7 -F 1 5 2 5 11 1 -F 1 3 2 11 11 1 -F 1 5 11 5 11 1 -F 1 20 0 1 11 2 -F 1 10 0 5 14 5 -F 1 7 1 5 23 14 -F 1 7 3 5 10 1 -F 1 6 4 5 19 10 -F 1 5 11 5 11 2 -F 1 7 12 5 17 8 -F 1 8 0 1 11 3 -F 1 10 1 0 11 3 -F 1 2 1 12 11 3 -F 1 6 2 0 11 3 -F 1 3 2 1 22 14 -F 1 2 2 12 13 5 -F 1 3 3 1 17 9 -F 1 3 11 1 13 5 -F 1 4 12 1 11 3 -F 2 4 6 8 25 18 -F 1 11 0 5 14 7 -F 1 5 0 6 14 7 -F 1 3 1 12 11 4 -F 1 14 2 1 22 15 -F 1 7 2 5 11 4 -F 1 4 2 12 13 6 -F 1 6 3 5 10 3 -F 1 3 3 12 8 1 -F 1 7 1 5 23 17 -F 1 17 2 1 22 16 -F 1 8 2 5 11 5 -F 1 7 3 5 10 4 -F 1 6 1 5 23 18 -F 1 16 2 5 11 6 -F 1 8 2 6 23 18 -F 1 13 3 5 10 5 -F 1 6 3 6 19 14 -F 1 17 4 1 6 1 -F 1 9 4 5 19 14 -F 1 8 11 5 11 6 -F 1 10 0 5 14 10 -F 1 6 1 5 23 19 -F 1 11 2 5 11 7 -F 1 5 2 6 23 19 -F 1 11 3 5 10 6 -F 1 5 3 6 19 15 -F 1 20 4 5 19 15 -F 1 10 4 6 10 6 -F 1 5 4 11 8 4 -F 1 10 11 5 11 7 -F 1 5 11 6 17 13 -F 1 8 12 5 17 13 -F 1 15 0 5 14 11 -F 1 7 0 6 14 11 -F 1 4 0 11 4 1 -F 1 11 1 5 23 20 -F 1 6 1 6 11 8 -F 1 13 2 5 11 8 -F 1 6 2 6 23 20 -F 1 10 3 5 10 7 -F 1 5 3 6 19 16 -F 1 9 4 5 19 16 -F 1 7 11 5 11 8 -F 1 8 12 5 17 14 -F 1 8 0 6 14 12 -F 1 4 0 11 4 2 -F 1 7 1 0 11 9 -F 1 21 2 0 11 9 -F 1 10 2 6 23 21 -F 1 5 2 7 22 20 -F 1 9 3 0 6 4 -F 1 11 4 0 6 4 -F 1 5 4 6 10 8 -F 1 1 5 0 14 12 -F 1 1 5 8 5 3 -F 1 6 11 0 4 2 -F 1 9 12 0 4 2 -F 1 11 0 2 11 10 -F 1 6 0 6 14 13 -F 1 3 0 12 4 3 -F 1 11 1 2 22 21 -F 1 6 1 6 11 10 -F 1 8 2 6 23 22 -F 1 11 3 2 6 5 -F 1 5 3 6 19 18 -F 1 8 4 2 17 16 -F 1 4 5 8 5 4 -F 1 6 11 0 4 3 -F 1 12 12 0 4 3 -F 1 6 12 2 13 12 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 3 -player2 > engine: comparing 0 and 3, gives 0 2 0 -player2 > engine: 0 3 1 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 2 0 -player2 > engine: 1 2 5 -player2 > engine: comparing 1 and 3, gives 0 2 0 -player2 > engine: 1 3 3 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 17 -player2 > engine: comparing 2 and 3, gives 0 2 0 -player2 > engine: 2 3 8 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 2 0 -player2 > engine: 3 2 9 -player2 > engine: comparing 3 and 3, gives 0 2 0 -player2 > engine: 3 3 5 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0.035611364342123364 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 2 0 -player2 > engine: 4 2 13 -player2 > engine: comparing 4 and 3, gives 0 2 0 -player2 > engine: 4 3 6 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0.07199481416693816 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 2 0 -player2 > engine: 5 3 2 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0.07396388117028554 -player2 > engine: comparing 5 and 7, gives 0 0 0.24325391264188054 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 1 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 8 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 4 -player2 > engine: comparing 11 and 3, gives 0 2 0 -player2 > engine: 11 3 2 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 6 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 3 -player2 > engine: comparing 12 and 3, gives 0 2 0 -player2 > engine: 12 3 2 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 5 3 -P 9.319567 21.808874 2 25 5 -P 14.288424 0.622569 2 33 5 -P 11.865493 5.273785 2 13 3 -P 11.742498 17.157658 2 35 3 -P 4.254093 0.000000 2 20 1 -P 19.353899 22.431443 1 12 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 14 5 -P 14.743177 12.694819 2 10 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 76 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 6 23 6 -F 2 5 1 5 23 7 -F 2 13 2 4 17 1 -F 2 7 2 1 22 7 -F 2 7 3 1 17 2 -F 2 9 1 2 22 9 -F 2 5 2 4 17 4 -F 2 6 1 5 23 11 -F 2 5 2 4 17 5 -F 2 21 3 1 17 5 -F 2 6 0 5 14 3 -F 2 4 1 11 13 2 -F 2 11 2 4 17 6 -F 2 20 0 1 11 1 -F 2 10 0 5 14 4 -F 2 7 1 5 23 13 -F 2 6 4 5 19 9 -F 2 5 11 5 11 1 -F 2 7 12 5 17 7 -F 2 8 0 1 11 2 -F 2 10 1 0 11 2 -F 2 2 1 12 11 2 -F 2 6 2 0 11 2 -F 2 3 2 1 22 13 -F 2 2 2 12 13 4 -F 2 3 3 1 17 8 -F 2 3 11 1 13 4 -F 2 4 12 1 11 2 -F 1 4 6 8 25 17 -F 2 11 0 5 14 6 -F 2 5 0 6 14 6 -F 2 3 1 12 11 3 -F 2 14 2 1 22 14 -F 2 7 2 5 11 3 -F 2 4 2 12 13 5 -F 2 6 3 5 10 2 -F 2 7 1 5 23 16 -F 2 17 2 1 22 15 -F 2 8 2 5 11 4 -F 2 7 3 5 10 3 -F 2 6 1 5 23 17 -F 2 16 2 5 11 5 -F 2 8 2 6 23 17 -F 2 13 3 5 10 4 -F 2 6 3 6 19 13 -F 2 9 4 5 19 13 -F 2 8 11 5 11 5 -F 2 10 0 5 14 9 -F 2 6 1 5 23 18 -F 2 11 2 5 11 6 -F 2 5 2 6 23 18 -F 2 11 3 5 10 5 -F 2 5 3 6 19 14 -F 2 20 4 5 19 14 -F 2 10 4 6 10 5 -F 2 5 4 11 8 3 -F 2 10 11 5 11 6 -F 2 5 11 6 17 12 -F 2 8 12 5 17 12 -F 2 15 0 5 14 10 -F 2 7 0 6 14 10 -F 2 11 1 5 23 19 -F 2 6 1 6 11 7 -F 2 13 2 5 11 7 -F 2 6 2 6 23 19 -F 2 10 3 5 10 6 -F 2 5 3 6 19 15 -F 2 9 4 5 19 15 -F 2 7 11 5 11 7 -F 2 8 12 5 17 13 -F 2 8 0 6 14 11 -F 2 4 0 11 4 1 -F 2 7 1 0 11 8 -F 2 21 2 0 11 8 -F 2 10 2 6 23 20 -F 2 5 2 7 22 19 -F 2 9 3 0 6 3 -F 2 11 4 0 6 3 -F 2 5 4 6 10 7 -F 2 1 5 0 14 11 -F 2 1 5 8 5 2 -F 2 6 11 0 4 1 -F 2 9 12 0 4 1 -F 2 11 0 2 11 9 -F 2 6 0 6 14 12 -F 2 3 0 12 4 2 -F 2 11 1 2 22 20 -F 2 6 1 6 11 9 -F 2 8 2 6 23 21 -F 2 11 3 2 6 4 -F 2 5 3 6 19 17 -F 2 8 4 2 17 15 -F 2 4 5 8 5 3 -F 2 6 11 0 4 2 -F 2 12 12 0 4 2 -F 2 6 12 2 13 11 -F 2 3 0 2 11 10 -F 2 1 0 3 6 5 -F 2 5 1 2 22 21 -F 2 3 1 3 17 16 -F 2 8 2 3 6 5 -F 2 9 3 2 6 5 -F 2 13 4 2 17 16 -F 2 6 4 3 12 11 -F 2 2 5 3 10 9 -F 2 1 5 8 5 4 -F 2 8 11 0 4 3 -F 2 4 11 2 11 10 -F 2 2 11 3 6 5 -F 2 6 12 0 4 3 -F 2 3 12 2 13 12 -F 2 2 12 3 8 7 -go - -engine > player2: P 11.803996 11.215721 1 5 3 -P 9.319567 21.808874 1 25 5 -P 14.288424 0.622569 1 33 5 -P 11.865493 5.273785 1 13 3 -P 11.742498 17.157658 1 35 3 -P 4.254093 0.000000 1 20 1 -P 19.353899 22.431443 2 12 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 14 5 -P 14.743177 12.694819 1 10 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 76 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 6 23 6 -F 1 5 1 5 23 7 -F 1 13 2 4 17 1 -F 1 7 2 1 22 7 -F 1 7 3 1 17 2 -F 1 9 1 2 22 9 -F 1 5 2 4 17 4 -F 1 6 1 5 23 11 -F 1 5 2 4 17 5 -F 1 21 3 1 17 5 -F 1 6 0 5 14 3 -F 1 4 1 11 13 2 -F 1 11 2 4 17 6 -F 1 20 0 1 11 1 -F 1 10 0 5 14 4 -F 1 7 1 5 23 13 -F 1 6 4 5 19 9 -F 1 5 11 5 11 1 -F 1 7 12 5 17 7 -F 1 8 0 1 11 2 -F 1 10 1 0 11 2 -F 1 2 1 12 11 2 -F 1 6 2 0 11 2 -F 1 3 2 1 22 13 -F 1 2 2 12 13 4 -F 1 3 3 1 17 8 -F 1 3 11 1 13 4 -F 1 4 12 1 11 2 -F 2 4 6 8 25 17 -F 1 11 0 5 14 6 -F 1 5 0 6 14 6 -F 1 3 1 12 11 3 -F 1 14 2 1 22 14 -F 1 7 2 5 11 3 -F 1 4 2 12 13 5 -F 1 6 3 5 10 2 -F 1 7 1 5 23 16 -F 1 17 2 1 22 15 -F 1 8 2 5 11 4 -F 1 7 3 5 10 3 -F 1 6 1 5 23 17 -F 1 16 2 5 11 5 -F 1 8 2 6 23 17 -F 1 13 3 5 10 4 -F 1 6 3 6 19 13 -F 1 9 4 5 19 13 -F 1 8 11 5 11 5 -F 1 10 0 5 14 9 -F 1 6 1 5 23 18 -F 1 11 2 5 11 6 -F 1 5 2 6 23 18 -F 1 11 3 5 10 5 -F 1 5 3 6 19 14 -F 1 20 4 5 19 14 -F 1 10 4 6 10 5 -F 1 5 4 11 8 3 -F 1 10 11 5 11 6 -F 1 5 11 6 17 12 -F 1 8 12 5 17 12 -F 1 15 0 5 14 10 -F 1 7 0 6 14 10 -F 1 11 1 5 23 19 -F 1 6 1 6 11 7 -F 1 13 2 5 11 7 -F 1 6 2 6 23 19 -F 1 10 3 5 10 6 -F 1 5 3 6 19 15 -F 1 9 4 5 19 15 -F 1 7 11 5 11 7 -F 1 8 12 5 17 13 -F 1 8 0 6 14 11 -F 1 4 0 11 4 1 -F 1 7 1 0 11 8 -F 1 21 2 0 11 8 -F 1 10 2 6 23 20 -F 1 5 2 7 22 19 -F 1 9 3 0 6 3 -F 1 11 4 0 6 3 -F 1 5 4 6 10 7 -F 1 1 5 0 14 11 -F 1 1 5 8 5 2 -F 1 6 11 0 4 1 -F 1 9 12 0 4 1 -F 1 11 0 2 11 9 -F 1 6 0 6 14 12 -F 1 3 0 12 4 2 -F 1 11 1 2 22 20 -F 1 6 1 6 11 9 -F 1 8 2 6 23 21 -F 1 11 3 2 6 4 -F 1 5 3 6 19 17 -F 1 8 4 2 17 15 -F 1 4 5 8 5 3 -F 1 6 11 0 4 2 -F 1 12 12 0 4 2 -F 1 6 12 2 13 11 -F 1 3 0 2 11 10 -F 1 1 0 3 6 5 -F 1 5 1 2 22 21 -F 1 3 1 3 17 16 -F 1 8 2 3 6 5 -F 1 9 3 2 6 5 -F 1 13 4 2 17 16 -F 1 6 4 3 12 11 -F 1 2 5 3 10 9 -F 1 1 5 8 5 4 -F 1 8 11 0 4 3 -F 1 4 11 2 11 10 -F 1 2 11 3 6 5 -F 1 6 12 0 4 3 -F 1 3 12 2 13 12 -F 1 2 12 3 8 7 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 2 0 -player2 > engine: 0 3 2 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 1 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 2 0 -player2 > engine: 1 2 12 -player2 > engine: comparing 1 and 3, gives 0 2 0 -player2 > engine: 1 3 6 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 16 -player2 > engine: comparing 2 and 3, gives 0 2 0 -player2 > engine: 2 3 8 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 2 0 -player2 > engine: 3 2 6 -player2 > engine: comparing 3 and 3, gives 0 2 0 -player2 > engine: 3 3 3 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0.035611364342123364 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 2 0 -player2 > engine: 4 2 17 -player2 > engine: comparing 4 and 3, gives 0 2 0 -player2 > engine: 4 3 9 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0.07199481416693816 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 2 0 -player2 > engine: 5 3 10 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0.07396388117028554 -player2 > engine: comparing 5 and 7, gives 0 0 0.24325391264188054 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 5 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 2 0 -player2 > engine: 11 3 7 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 2 0 -player2 > engine: 12 3 5 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 20 3 -P 9.319567 21.808874 2 32 5 -P 14.288424 0.622569 2 30 5 -P 11.865493 5.273785 2 10 3 -P 11.742498 17.157658 2 25 3 -P 4.254093 0.000000 2 11 1 -P 19.353899 22.431443 1 13 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 16 5 -P 14.743177 12.694819 2 10 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 79 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 6 23 5 -F 2 5 1 5 23 6 -F 2 7 2 1 22 6 -F 2 7 3 1 17 1 -F 2 9 1 2 22 8 -F 2 5 2 4 17 3 -F 2 6 1 5 23 10 -F 2 5 2 4 17 4 -F 2 21 3 1 17 4 -F 2 6 0 5 14 2 -F 2 4 1 11 13 1 -F 2 11 2 4 17 5 -F 2 10 0 5 14 3 -F 2 7 1 5 23 12 -F 2 6 4 5 19 8 -F 2 7 12 5 17 6 -F 2 8 0 1 11 1 -F 2 10 1 0 11 1 -F 2 2 1 12 11 1 -F 2 6 2 0 11 1 -F 2 3 2 1 22 12 -F 2 2 2 12 13 3 -F 2 3 3 1 17 7 -F 2 3 11 1 13 3 -F 2 4 12 1 11 1 -F 1 4 6 8 25 16 -F 2 11 0 5 14 5 -F 2 5 0 6 14 5 -F 2 3 1 12 11 2 -F 2 14 2 1 22 13 -F 2 7 2 5 11 2 -F 2 4 2 12 13 4 -F 2 6 3 5 10 1 -F 2 7 1 5 23 15 -F 2 17 2 1 22 14 -F 2 8 2 5 11 3 -F 2 7 3 5 10 2 -F 2 6 1 5 23 16 -F 2 16 2 5 11 4 -F 2 8 2 6 23 16 -F 2 13 3 5 10 3 -F 2 6 3 6 19 12 -F 2 9 4 5 19 12 -F 2 8 11 5 11 4 -F 2 10 0 5 14 8 -F 2 6 1 5 23 17 -F 2 11 2 5 11 5 -F 2 5 2 6 23 17 -F 2 11 3 5 10 4 -F 2 5 3 6 19 13 -F 2 20 4 5 19 13 -F 2 10 4 6 10 4 -F 2 5 4 11 8 2 -F 2 10 11 5 11 5 -F 2 5 11 6 17 11 -F 2 8 12 5 17 11 -F 2 15 0 5 14 9 -F 2 7 0 6 14 9 -F 2 11 1 5 23 18 -F 2 6 1 6 11 6 -F 2 13 2 5 11 6 -F 2 6 2 6 23 18 -F 2 10 3 5 10 5 -F 2 5 3 6 19 14 -F 2 9 4 5 19 14 -F 2 7 11 5 11 6 -F 2 8 12 5 17 12 -F 2 8 0 6 14 10 -F 2 7 1 0 11 7 -F 2 21 2 0 11 7 -F 2 10 2 6 23 19 -F 2 5 2 7 22 18 -F 2 9 3 0 6 2 -F 2 11 4 0 6 2 -F 2 5 4 6 10 6 -F 2 1 5 0 14 10 -F 2 1 5 8 5 1 -F 2 11 0 2 11 8 -F 2 6 0 6 14 11 -F 2 3 0 12 4 1 -F 2 11 1 2 22 19 -F 2 6 1 6 11 8 -F 2 8 2 6 23 20 -F 2 11 3 2 6 3 -F 2 5 3 6 19 16 -F 2 8 4 2 17 14 -F 2 4 5 8 5 2 -F 2 6 11 0 4 1 -F 2 12 12 0 4 1 -F 2 6 12 2 13 10 -F 2 3 0 2 11 9 -F 2 1 0 3 6 4 -F 2 5 1 2 22 20 -F 2 3 1 3 17 15 -F 2 8 2 3 6 4 -F 2 9 3 2 6 4 -F 2 13 4 2 17 15 -F 2 6 4 3 12 10 -F 2 2 5 3 10 8 -F 2 1 5 8 5 3 -F 2 8 11 0 4 2 -F 2 4 11 2 11 9 -F 2 2 11 3 6 4 -F 2 6 12 0 4 2 -F 2 3 12 2 13 11 -F 2 2 12 3 8 6 -F 2 2 0 3 6 5 -F 2 1 0 12 4 3 -F 2 12 1 2 22 21 -F 2 6 1 3 17 16 -F 2 8 2 3 6 5 -F 2 6 3 2 6 5 -F 2 17 4 2 17 16 -F 2 9 4 3 12 11 -F 2 10 5 3 10 9 -F 2 5 5 8 5 4 -F 2 7 11 3 6 5 -F 2 5 12 3 8 7 -go - -engine > player2: P 11.803996 11.215721 1 20 3 -P 9.319567 21.808874 1 32 5 -P 14.288424 0.622569 1 30 5 -P 11.865493 5.273785 1 10 3 -P 11.742498 17.157658 1 25 3 -P 4.254093 0.000000 1 11 1 -P 19.353899 22.431443 2 13 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 83 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 16 5 -P 14.743177 12.694819 1 10 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 79 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 6 23 5 -F 1 5 1 5 23 6 -F 1 7 2 1 22 6 -F 1 7 3 1 17 1 -F 1 9 1 2 22 8 -F 1 5 2 4 17 3 -F 1 6 1 5 23 10 -F 1 5 2 4 17 4 -F 1 21 3 1 17 4 -F 1 6 0 5 14 2 -F 1 4 1 11 13 1 -F 1 11 2 4 17 5 -F 1 10 0 5 14 3 -F 1 7 1 5 23 12 -F 1 6 4 5 19 8 -F 1 7 12 5 17 6 -F 1 8 0 1 11 1 -F 1 10 1 0 11 1 -F 1 2 1 12 11 1 -F 1 6 2 0 11 1 -F 1 3 2 1 22 12 -F 1 2 2 12 13 3 -F 1 3 3 1 17 7 -F 1 3 11 1 13 3 -F 1 4 12 1 11 1 -F 2 4 6 8 25 16 -F 1 11 0 5 14 5 -F 1 5 0 6 14 5 -F 1 3 1 12 11 2 -F 1 14 2 1 22 13 -F 1 7 2 5 11 2 -F 1 4 2 12 13 4 -F 1 6 3 5 10 1 -F 1 7 1 5 23 15 -F 1 17 2 1 22 14 -F 1 8 2 5 11 3 -F 1 7 3 5 10 2 -F 1 6 1 5 23 16 -F 1 16 2 5 11 4 -F 1 8 2 6 23 16 -F 1 13 3 5 10 3 -F 1 6 3 6 19 12 -F 1 9 4 5 19 12 -F 1 8 11 5 11 4 -F 1 10 0 5 14 8 -F 1 6 1 5 23 17 -F 1 11 2 5 11 5 -F 1 5 2 6 23 17 -F 1 11 3 5 10 4 -F 1 5 3 6 19 13 -F 1 20 4 5 19 13 -F 1 10 4 6 10 4 -F 1 5 4 11 8 2 -F 1 10 11 5 11 5 -F 1 5 11 6 17 11 -F 1 8 12 5 17 11 -F 1 15 0 5 14 9 -F 1 7 0 6 14 9 -F 1 11 1 5 23 18 -F 1 6 1 6 11 6 -F 1 13 2 5 11 6 -F 1 6 2 6 23 18 -F 1 10 3 5 10 5 -F 1 5 3 6 19 14 -F 1 9 4 5 19 14 -F 1 7 11 5 11 6 -F 1 8 12 5 17 12 -F 1 8 0 6 14 10 -F 1 7 1 0 11 7 -F 1 21 2 0 11 7 -F 1 10 2 6 23 19 -F 1 5 2 7 22 18 -F 1 9 3 0 6 2 -F 1 11 4 0 6 2 -F 1 5 4 6 10 6 -F 1 1 5 0 14 10 -F 1 1 5 8 5 1 -F 1 11 0 2 11 8 -F 1 6 0 6 14 11 -F 1 3 0 12 4 1 -F 1 11 1 2 22 19 -F 1 6 1 6 11 8 -F 1 8 2 6 23 20 -F 1 11 3 2 6 3 -F 1 5 3 6 19 16 -F 1 8 4 2 17 14 -F 1 4 5 8 5 2 -F 1 6 11 0 4 1 -F 1 12 12 0 4 1 -F 1 6 12 2 13 10 -F 1 3 0 2 11 9 -F 1 1 0 3 6 4 -F 1 5 1 2 22 20 -F 1 3 1 3 17 15 -F 1 8 2 3 6 4 -F 1 9 3 2 6 4 -F 1 13 4 2 17 15 -F 1 6 4 3 12 10 -F 1 2 5 3 10 8 -F 1 1 5 8 5 3 -F 1 8 11 0 4 2 -F 1 4 11 2 11 9 -F 1 2 11 3 6 4 -F 1 6 12 0 4 2 -F 1 3 12 2 13 11 -F 1 2 12 3 8 6 -F 1 2 0 3 6 5 -F 1 1 0 12 4 3 -F 1 12 1 2 22 21 -F 1 6 1 3 17 16 -F 1 8 2 3 6 5 -F 1 6 3 2 6 5 -F 1 17 4 2 17 16 -F 1 9 4 3 12 11 -F 1 10 5 3 10 9 -F 1 5 5 8 5 4 -F 1 7 11 3 6 5 -F 1 5 12 3 8 7 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 2 0 -player2 > engine: 0 3 10 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 5 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 2 0 -player2 > engine: 1 3 16 -player2 > engine: comparing 1 and 4, gives 0 2 0 -player2 > engine: 1 4 8 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 15 -player2 > engine: comparing 2 and 3, gives 0 2 0 -player2 > engine: 2 3 7 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 2 0 -player2 > engine: 3 3 5 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0.035611364342123364 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 2 0 -player2 > engine: 4 3 12 -player2 > engine: comparing 4 and 4, gives 0 2 0 -player2 > engine: 4 4 6 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0.07199481416693816 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 1 0 0.07396388117028554 -player2 > engine: 5 6 5 -player2 > engine: comparing 5 and 7, gives 0 0 0.24325391264188054 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 3 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 2 0 -player2 > engine: 11 3 8 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 42 3 -P 9.319567 21.808874 2 32 5 -P 14.288424 0.622569 2 28 5 -P 11.865493 5.273785 2 13 3 -P 11.742498 17.157658 2 16 3 -P 4.254093 0.000000 2 10 1 -P 19.353899 22.431443 1 14 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 82 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 17 5 -P 14.743177 12.694819 2 20 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 82 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 6 23 4 -F 2 5 1 5 23 5 -F 2 7 2 1 22 5 -F 2 9 1 2 22 7 -F 2 5 2 4 17 2 -F 2 6 1 5 23 9 -F 2 5 2 4 17 3 -F 2 21 3 1 17 3 -F 2 6 0 5 14 1 -F 2 11 2 4 17 4 -F 2 10 0 5 14 2 -F 2 7 1 5 23 11 -F 2 6 4 5 19 7 -F 2 7 12 5 17 5 -F 2 3 2 1 22 11 -F 2 2 2 12 13 2 -F 2 3 3 1 17 6 -F 2 3 11 1 13 2 -F 1 4 6 8 25 15 -F 2 11 0 5 14 4 -F 2 5 0 6 14 4 -F 2 3 1 12 11 1 -F 2 14 2 1 22 12 -F 2 7 2 5 11 1 -F 2 4 2 12 13 3 -F 2 7 1 5 23 14 -F 2 17 2 1 22 13 -F 2 8 2 5 11 2 -F 2 7 3 5 10 1 -F 2 6 1 5 23 15 -F 2 16 2 5 11 3 -F 2 8 2 6 23 15 -F 2 13 3 5 10 2 -F 2 6 3 6 19 11 -F 2 9 4 5 19 11 -F 2 8 11 5 11 3 -F 2 10 0 5 14 7 -F 2 6 1 5 23 16 -F 2 11 2 5 11 4 -F 2 5 2 6 23 16 -F 2 11 3 5 10 3 -F 2 5 3 6 19 12 -F 2 20 4 5 19 12 -F 2 10 4 6 10 3 -F 2 5 4 11 8 1 -F 2 10 11 5 11 4 -F 2 5 11 6 17 10 -F 2 8 12 5 17 10 -F 2 15 0 5 14 8 -F 2 7 0 6 14 8 -F 2 11 1 5 23 17 -F 2 6 1 6 11 5 -F 2 13 2 5 11 5 -F 2 6 2 6 23 17 -F 2 10 3 5 10 4 -F 2 5 3 6 19 13 -F 2 9 4 5 19 13 -F 2 7 11 5 11 5 -F 2 8 12 5 17 11 -F 2 8 0 6 14 9 -F 2 7 1 0 11 6 -F 2 21 2 0 11 6 -F 2 10 2 6 23 18 -F 2 5 2 7 22 17 -F 2 9 3 0 6 1 -F 2 11 4 0 6 1 -F 2 5 4 6 10 5 -F 2 1 5 0 14 9 -F 2 11 0 2 11 7 -F 2 6 0 6 14 10 -F 2 11 1 2 22 18 -F 2 6 1 6 11 7 -F 2 8 2 6 23 19 -F 2 11 3 2 6 2 -F 2 5 3 6 19 15 -F 2 8 4 2 17 13 -F 2 4 5 8 5 1 -F 2 6 12 2 13 9 -F 2 3 0 2 11 8 -F 2 1 0 3 6 3 -F 2 5 1 2 22 19 -F 2 3 1 3 17 14 -F 2 8 2 3 6 3 -F 2 9 3 2 6 3 -F 2 13 4 2 17 14 -F 2 6 4 3 12 9 -F 2 2 5 3 10 7 -F 2 1 5 8 5 2 -F 2 8 11 0 4 1 -F 2 4 11 2 11 8 -F 2 2 11 3 6 3 -F 2 6 12 0 4 1 -F 2 3 12 2 13 10 -F 2 2 12 3 8 5 -F 2 2 0 3 6 4 -F 2 1 0 12 4 2 -F 2 12 1 2 22 20 -F 2 6 1 3 17 15 -F 2 8 2 3 6 4 -F 2 6 3 2 6 4 -F 2 17 4 2 17 15 -F 2 9 4 3 12 10 -F 2 10 5 3 10 8 -F 2 5 5 8 5 3 -F 2 7 11 3 6 4 -F 2 5 12 3 8 6 -F 2 10 0 3 6 5 -F 2 5 0 11 4 3 -F 2 16 1 3 17 16 -F 2 8 1 4 6 5 -F 2 7 2 3 6 5 -F 2 12 4 3 12 11 -F 2 5 5 6 28 27 -F 2 3 5 8 5 4 -F 2 8 11 3 6 5 -go - -engine > player2: P 11.803996 11.215721 1 42 3 -P 9.319567 21.808874 1 32 5 -P 14.288424 0.622569 1 28 5 -P 11.865493 5.273785 1 13 3 -P 11.742498 17.157658 1 16 3 -P 4.254093 0.000000 1 10 1 -P 19.353899 22.431443 2 14 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 82 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 17 5 -P 14.743177 12.694819 1 20 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 82 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 6 23 4 -F 1 5 1 5 23 5 -F 1 7 2 1 22 5 -F 1 9 1 2 22 7 -F 1 5 2 4 17 2 -F 1 6 1 5 23 9 -F 1 5 2 4 17 3 -F 1 21 3 1 17 3 -F 1 6 0 5 14 1 -F 1 11 2 4 17 4 -F 1 10 0 5 14 2 -F 1 7 1 5 23 11 -F 1 6 4 5 19 7 -F 1 7 12 5 17 5 -F 1 3 2 1 22 11 -F 1 2 2 12 13 2 -F 1 3 3 1 17 6 -F 1 3 11 1 13 2 -F 2 4 6 8 25 15 -F 1 11 0 5 14 4 -F 1 5 0 6 14 4 -F 1 3 1 12 11 1 -F 1 14 2 1 22 12 -F 1 7 2 5 11 1 -F 1 4 2 12 13 3 -F 1 7 1 5 23 14 -F 1 17 2 1 22 13 -F 1 8 2 5 11 2 -F 1 7 3 5 10 1 -F 1 6 1 5 23 15 -F 1 16 2 5 11 3 -F 1 8 2 6 23 15 -F 1 13 3 5 10 2 -F 1 6 3 6 19 11 -F 1 9 4 5 19 11 -F 1 8 11 5 11 3 -F 1 10 0 5 14 7 -F 1 6 1 5 23 16 -F 1 11 2 5 11 4 -F 1 5 2 6 23 16 -F 1 11 3 5 10 3 -F 1 5 3 6 19 12 -F 1 20 4 5 19 12 -F 1 10 4 6 10 3 -F 1 5 4 11 8 1 -F 1 10 11 5 11 4 -F 1 5 11 6 17 10 -F 1 8 12 5 17 10 -F 1 15 0 5 14 8 -F 1 7 0 6 14 8 -F 1 11 1 5 23 17 -F 1 6 1 6 11 5 -F 1 13 2 5 11 5 -F 1 6 2 6 23 17 -F 1 10 3 5 10 4 -F 1 5 3 6 19 13 -F 1 9 4 5 19 13 -F 1 7 11 5 11 5 -F 1 8 12 5 17 11 -F 1 8 0 6 14 9 -F 1 7 1 0 11 6 -F 1 21 2 0 11 6 -F 1 10 2 6 23 18 -F 1 5 2 7 22 17 -F 1 9 3 0 6 1 -F 1 11 4 0 6 1 -F 1 5 4 6 10 5 -F 1 1 5 0 14 9 -F 1 11 0 2 11 7 -F 1 6 0 6 14 10 -F 1 11 1 2 22 18 -F 1 6 1 6 11 7 -F 1 8 2 6 23 19 -F 1 11 3 2 6 2 -F 1 5 3 6 19 15 -F 1 8 4 2 17 13 -F 1 4 5 8 5 1 -F 1 6 12 2 13 9 -F 1 3 0 2 11 8 -F 1 1 0 3 6 3 -F 1 5 1 2 22 19 -F 1 3 1 3 17 14 -F 1 8 2 3 6 3 -F 1 9 3 2 6 3 -F 1 13 4 2 17 14 -F 1 6 4 3 12 9 -F 1 2 5 3 10 7 -F 1 1 5 8 5 2 -F 1 8 11 0 4 1 -F 1 4 11 2 11 8 -F 1 2 11 3 6 3 -F 1 6 12 0 4 1 -F 1 3 12 2 13 10 -F 1 2 12 3 8 5 -F 1 2 0 3 6 4 -F 1 1 0 12 4 2 -F 1 12 1 2 22 20 -F 1 6 1 3 17 15 -F 1 8 2 3 6 4 -F 1 6 3 2 6 4 -F 1 17 4 2 17 15 -F 1 9 4 3 12 10 -F 1 10 5 3 10 8 -F 1 5 5 8 5 3 -F 1 7 11 3 6 4 -F 1 5 12 3 8 6 -F 1 10 0 3 6 5 -F 1 5 0 11 4 3 -F 1 16 1 3 17 16 -F 1 8 1 4 6 5 -F 1 7 2 3 6 5 -F 1 12 4 3 12 11 -F 1 5 5 6 28 27 -F 1 3 5 8 5 4 -F 1 8 11 3 6 5 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 2 0 -player2 > engine: 0 3 21 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 1 0 0.04930925260078114 -player2 > engine: 0 6 10 -player2 > engine: comparing 0 and 7, gives 1 0 0.1740544248372269 -player2 > engine: 0 7 5 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 2 0 -player2 > engine: 1 4 16 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 1 0 0.03978663719190064 -player2 > engine: 1 6 8 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 2 0 -player2 > engine: 2 3 14 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 1 0 0.017865583039514844 -player2 > engine: 2 6 7 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 1 0 0.035611364342123364 -player2 > engine: 3 6 6 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 1 0 0.07199481416693816 -player2 > engine: 4 6 8 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0.07396388117028554 -player2 > engine: comparing 5 and 7, gives 0 0 0.24325391264188054 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 5 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 1 0 0.02429023389729467 -player2 > engine: 11 6 8 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 1 0 0.03712936976970223 -player2 > engine: 12 6 10 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 43 3 -P 9.319567 21.808874 2 13 5 -P 14.288424 0.622569 2 12 5 -P 11.865493 5.273785 2 10 3 -P 11.742498 17.157658 2 11 3 -P 4.254093 0.000000 2 26 1 -P 19.353899 22.431443 1 15 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 78 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 19 5 -P 14.743177 12.694819 2 18 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 85 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 6 23 3 -F 2 5 1 5 23 4 -F 2 7 2 1 22 4 -F 2 9 1 2 22 6 -F 2 5 2 4 17 1 -F 2 6 1 5 23 8 -F 2 5 2 4 17 2 -F 2 21 3 1 17 2 -F 2 11 2 4 17 3 -F 2 10 0 5 14 1 -F 2 7 1 5 23 10 -F 2 6 4 5 19 6 -F 2 7 12 5 17 4 -F 2 3 2 1 22 10 -F 2 2 2 12 13 1 -F 2 3 3 1 17 5 -F 2 3 11 1 13 1 -F 1 4 6 8 25 14 -F 2 11 0 5 14 3 -F 2 5 0 6 14 3 -F 2 14 2 1 22 11 -F 2 4 2 12 13 2 -F 2 7 1 5 23 13 -F 2 17 2 1 22 12 -F 2 8 2 5 11 1 -F 2 6 1 5 23 14 -F 2 16 2 5 11 2 -F 2 8 2 6 23 14 -F 2 13 3 5 10 1 -F 2 6 3 6 19 10 -F 2 9 4 5 19 10 -F 2 8 11 5 11 2 -F 2 10 0 5 14 6 -F 2 6 1 5 23 15 -F 2 11 2 5 11 3 -F 2 5 2 6 23 15 -F 2 11 3 5 10 2 -F 2 5 3 6 19 11 -F 2 20 4 5 19 11 -F 2 10 4 6 10 2 -F 2 10 11 5 11 3 -F 2 5 11 6 17 9 -F 2 8 12 5 17 9 -F 2 15 0 5 14 7 -F 2 7 0 6 14 7 -F 2 11 1 5 23 16 -F 2 6 1 6 11 4 -F 2 13 2 5 11 4 -F 2 6 2 6 23 16 -F 2 10 3 5 10 3 -F 2 5 3 6 19 12 -F 2 9 4 5 19 12 -F 2 7 11 5 11 4 -F 2 8 12 5 17 10 -F 2 8 0 6 14 8 -F 2 7 1 0 11 5 -F 2 21 2 0 11 5 -F 2 10 2 6 23 17 -F 2 5 2 7 22 16 -F 2 5 4 6 10 4 -F 2 1 5 0 14 8 -F 2 11 0 2 11 6 -F 2 6 0 6 14 9 -F 2 11 1 2 22 17 -F 2 6 1 6 11 6 -F 2 8 2 6 23 18 -F 2 11 3 2 6 1 -F 2 5 3 6 19 14 -F 2 8 4 2 17 12 -F 2 6 12 2 13 8 -F 2 3 0 2 11 7 -F 2 1 0 3 6 2 -F 2 5 1 2 22 18 -F 2 3 1 3 17 13 -F 2 8 2 3 6 2 -F 2 9 3 2 6 2 -F 2 13 4 2 17 13 -F 2 6 4 3 12 8 -F 2 2 5 3 10 6 -F 2 1 5 8 5 1 -F 2 4 11 2 11 7 -F 2 2 11 3 6 2 -F 2 3 12 2 13 9 -F 2 2 12 3 8 4 -F 2 2 0 3 6 3 -F 2 1 0 12 4 1 -F 2 12 1 2 22 19 -F 2 6 1 3 17 14 -F 2 8 2 3 6 3 -F 2 6 3 2 6 3 -F 2 17 4 2 17 14 -F 2 9 4 3 12 9 -F 2 10 5 3 10 7 -F 2 5 5 8 5 2 -F 2 7 11 3 6 3 -F 2 5 12 3 8 5 -F 2 10 0 3 6 4 -F 2 5 0 11 4 2 -F 2 16 1 3 17 15 -F 2 8 1 4 6 4 -F 2 7 2 3 6 4 -F 2 12 4 3 12 10 -F 2 5 5 6 28 26 -F 2 3 5 8 5 3 -F 2 8 11 3 6 4 -F 2 21 0 3 6 5 -F 2 10 0 6 14 13 -F 2 5 0 7 12 11 -F 2 16 1 4 6 5 -F 2 8 1 6 11 10 -F 2 14 2 3 6 5 -F 2 7 2 6 23 22 -F 2 6 3 6 19 18 -F 2 8 4 6 10 9 -F 2 5 5 8 5 4 -F 2 8 11 6 17 16 -F 2 10 12 6 11 10 -go - -engine > player2: P 11.803996 11.215721 1 43 3 -P 9.319567 21.808874 1 13 5 -P 14.288424 0.622569 1 12 5 -P 11.865493 5.273785 1 10 3 -P 11.742498 17.157658 1 11 3 -P 4.254093 0.000000 1 26 1 -P 19.353899 22.431443 2 15 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 78 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 19 5 -P 14.743177 12.694819 1 18 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 85 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 6 23 3 -F 1 5 1 5 23 4 -F 1 7 2 1 22 4 -F 1 9 1 2 22 6 -F 1 5 2 4 17 1 -F 1 6 1 5 23 8 -F 1 5 2 4 17 2 -F 1 21 3 1 17 2 -F 1 11 2 4 17 3 -F 1 10 0 5 14 1 -F 1 7 1 5 23 10 -F 1 6 4 5 19 6 -F 1 7 12 5 17 4 -F 1 3 2 1 22 10 -F 1 2 2 12 13 1 -F 1 3 3 1 17 5 -F 1 3 11 1 13 1 -F 2 4 6 8 25 14 -F 1 11 0 5 14 3 -F 1 5 0 6 14 3 -F 1 14 2 1 22 11 -F 1 4 2 12 13 2 -F 1 7 1 5 23 13 -F 1 17 2 1 22 12 -F 1 8 2 5 11 1 -F 1 6 1 5 23 14 -F 1 16 2 5 11 2 -F 1 8 2 6 23 14 -F 1 13 3 5 10 1 -F 1 6 3 6 19 10 -F 1 9 4 5 19 10 -F 1 8 11 5 11 2 -F 1 10 0 5 14 6 -F 1 6 1 5 23 15 -F 1 11 2 5 11 3 -F 1 5 2 6 23 15 -F 1 11 3 5 10 2 -F 1 5 3 6 19 11 -F 1 20 4 5 19 11 -F 1 10 4 6 10 2 -F 1 10 11 5 11 3 -F 1 5 11 6 17 9 -F 1 8 12 5 17 9 -F 1 15 0 5 14 7 -F 1 7 0 6 14 7 -F 1 11 1 5 23 16 -F 1 6 1 6 11 4 -F 1 13 2 5 11 4 -F 1 6 2 6 23 16 -F 1 10 3 5 10 3 -F 1 5 3 6 19 12 -F 1 9 4 5 19 12 -F 1 7 11 5 11 4 -F 1 8 12 5 17 10 -F 1 8 0 6 14 8 -F 1 7 1 0 11 5 -F 1 21 2 0 11 5 -F 1 10 2 6 23 17 -F 1 5 2 7 22 16 -F 1 5 4 6 10 4 -F 1 1 5 0 14 8 -F 1 11 0 2 11 6 -F 1 6 0 6 14 9 -F 1 11 1 2 22 17 -F 1 6 1 6 11 6 -F 1 8 2 6 23 18 -F 1 11 3 2 6 1 -F 1 5 3 6 19 14 -F 1 8 4 2 17 12 -F 1 6 12 2 13 8 -F 1 3 0 2 11 7 -F 1 1 0 3 6 2 -F 1 5 1 2 22 18 -F 1 3 1 3 17 13 -F 1 8 2 3 6 2 -F 1 9 3 2 6 2 -F 1 13 4 2 17 13 -F 1 6 4 3 12 8 -F 1 2 5 3 10 6 -F 1 1 5 8 5 1 -F 1 4 11 2 11 7 -F 1 2 11 3 6 2 -F 1 3 12 2 13 9 -F 1 2 12 3 8 4 -F 1 2 0 3 6 3 -F 1 1 0 12 4 1 -F 1 12 1 2 22 19 -F 1 6 1 3 17 14 -F 1 8 2 3 6 3 -F 1 6 3 2 6 3 -F 1 17 4 2 17 14 -F 1 9 4 3 12 9 -F 1 10 5 3 10 7 -F 1 5 5 8 5 2 -F 1 7 11 3 6 3 -F 1 5 12 3 8 5 -F 1 10 0 3 6 4 -F 1 5 0 11 4 2 -F 1 16 1 3 17 15 -F 1 8 1 4 6 4 -F 1 7 2 3 6 4 -F 1 12 4 3 12 10 -F 1 5 5 6 28 26 -F 1 3 5 8 5 3 -F 1 8 11 3 6 4 -F 1 21 0 3 6 5 -F 1 10 0 6 14 13 -F 1 5 0 7 12 11 -F 1 16 1 4 6 5 -F 1 8 1 6 11 10 -F 1 14 2 3 6 5 -F 1 7 2 6 23 22 -F 1 6 3 6 19 18 -F 1 8 4 6 10 9 -F 1 5 5 8 5 4 -F 1 8 11 6 17 16 -F 1 10 12 6 11 10 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 21 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 1 0 0.04930925260078114 -player2 > engine: 0 6 11 -player2 > engine: comparing 0 and 7, gives 1 0 0.1740544248372269 -player2 > engine: 0 7 5 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 3 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 2 0 -player2 > engine: 1 0 6 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0.03978663719190064 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 2 0 -player2 > engine: 2 0 6 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 2 0 -player2 > engine: 3 0 5 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0.035611364342123364 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 2 0 -player2 > engine: 4 0 5 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0.07199481416693816 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 2 0 -player2 > engine: 5 0 13 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 1 0 0.07396388117028554 -player2 > engine: 5 6 6 -player2 > engine: comparing 5 and 7, gives 0 0 0.24325391264188054 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 3 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 9 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 9 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 27 3 -P 9.319567 21.808874 2 15 5 -P 14.288424 0.622569 2 22 5 -P 11.865493 5.273785 2 8 3 -P 11.742498 17.157658 2 14 3 -P 4.254093 0.000000 2 36 1 -P 19.353899 22.431443 1 16 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 77 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 15 5 -P 14.743177 12.694819 2 17 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 88 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 6 23 2 -F 2 5 1 5 23 3 -F 2 7 2 1 22 3 -F 2 9 1 2 22 5 -F 2 6 1 5 23 7 -F 2 5 2 4 17 1 -F 2 21 3 1 17 1 -F 2 11 2 4 17 2 -F 2 7 1 5 23 9 -F 2 6 4 5 19 5 -F 2 7 12 5 17 3 -F 2 3 2 1 22 9 -F 2 3 3 1 17 4 -F 1 4 6 8 25 13 -F 2 11 0 5 14 2 -F 2 5 0 6 14 2 -F 2 14 2 1 22 10 -F 2 4 2 12 13 1 -F 2 7 1 5 23 12 -F 2 17 2 1 22 11 -F 2 6 1 5 23 13 -F 2 16 2 5 11 1 -F 2 8 2 6 23 13 -F 2 6 3 6 19 9 -F 2 9 4 5 19 9 -F 2 8 11 5 11 1 -F 2 10 0 5 14 5 -F 2 6 1 5 23 14 -F 2 11 2 5 11 2 -F 2 5 2 6 23 14 -F 2 11 3 5 10 1 -F 2 5 3 6 19 10 -F 2 20 4 5 19 10 -F 2 10 4 6 10 1 -F 2 10 11 5 11 2 -F 2 5 11 6 17 8 -F 2 8 12 5 17 8 -F 2 15 0 5 14 6 -F 2 7 0 6 14 6 -F 2 11 1 5 23 15 -F 2 6 1 6 11 3 -F 2 13 2 5 11 3 -F 2 6 2 6 23 15 -F 2 10 3 5 10 2 -F 2 5 3 6 19 11 -F 2 9 4 5 19 11 -F 2 7 11 5 11 3 -F 2 8 12 5 17 9 -F 2 8 0 6 14 7 -F 2 7 1 0 11 4 -F 2 21 2 0 11 4 -F 2 10 2 6 23 16 -F 2 5 2 7 22 15 -F 2 5 4 6 10 3 -F 2 1 5 0 14 7 -F 2 11 0 2 11 5 -F 2 6 0 6 14 8 -F 2 11 1 2 22 16 -F 2 6 1 6 11 5 -F 2 8 2 6 23 17 -F 2 5 3 6 19 13 -F 2 8 4 2 17 11 -F 2 6 12 2 13 7 -F 2 3 0 2 11 6 -F 2 1 0 3 6 1 -F 2 5 1 2 22 17 -F 2 3 1 3 17 12 -F 2 8 2 3 6 1 -F 2 9 3 2 6 1 -F 2 13 4 2 17 12 -F 2 6 4 3 12 7 -F 2 2 5 3 10 5 -F 2 4 11 2 11 6 -F 2 2 11 3 6 1 -F 2 3 12 2 13 8 -F 2 2 12 3 8 3 -F 2 2 0 3 6 2 -F 2 12 1 2 22 18 -F 2 6 1 3 17 13 -F 2 8 2 3 6 2 -F 2 6 3 2 6 2 -F 2 17 4 2 17 13 -F 2 9 4 3 12 8 -F 2 10 5 3 10 6 -F 2 5 5 8 5 1 -F 2 7 11 3 6 2 -F 2 5 12 3 8 4 -F 2 10 0 3 6 3 -F 2 5 0 11 4 1 -F 2 16 1 3 17 14 -F 2 8 1 4 6 3 -F 2 7 2 3 6 3 -F 2 12 4 3 12 9 -F 2 5 5 6 28 25 -F 2 3 5 8 5 2 -F 2 8 11 3 6 3 -F 2 21 0 3 6 4 -F 2 10 0 6 14 12 -F 2 5 0 7 12 10 -F 2 16 1 4 6 4 -F 2 8 1 6 11 9 -F 2 14 2 3 6 4 -F 2 7 2 6 23 21 -F 2 6 3 6 19 17 -F 2 8 4 6 10 8 -F 2 5 5 8 5 3 -F 2 8 11 6 17 15 -F 2 10 12 6 11 9 -F 2 11 0 6 14 13 -F 2 5 0 7 12 11 -F 2 3 0 11 4 3 -F 2 6 1 0 11 10 -F 2 6 2 0 11 10 -F 2 5 3 0 6 5 -F 2 5 4 0 6 5 -F 2 13 5 0 14 13 -F 2 6 5 6 28 27 -F 2 3 5 8 5 4 -F 2 9 11 0 4 3 -F 2 9 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 27 3 -P 9.319567 21.808874 1 15 5 -P 14.288424 0.622569 1 22 5 -P 11.865493 5.273785 1 8 3 -P 11.742498 17.157658 1 14 3 -P 4.254093 0.000000 1 36 1 -P 19.353899 22.431443 2 16 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 77 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 15 5 -P 14.743177 12.694819 1 17 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 88 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 6 23 2 -F 1 5 1 5 23 3 -F 1 7 2 1 22 3 -F 1 9 1 2 22 5 -F 1 6 1 5 23 7 -F 1 5 2 4 17 1 -F 1 21 3 1 17 1 -F 1 11 2 4 17 2 -F 1 7 1 5 23 9 -F 1 6 4 5 19 5 -F 1 7 12 5 17 3 -F 1 3 2 1 22 9 -F 1 3 3 1 17 4 -F 2 4 6 8 25 13 -F 1 11 0 5 14 2 -F 1 5 0 6 14 2 -F 1 14 2 1 22 10 -F 1 4 2 12 13 1 -F 1 7 1 5 23 12 -F 1 17 2 1 22 11 -F 1 6 1 5 23 13 -F 1 16 2 5 11 1 -F 1 8 2 6 23 13 -F 1 6 3 6 19 9 -F 1 9 4 5 19 9 -F 1 8 11 5 11 1 -F 1 10 0 5 14 5 -F 1 6 1 5 23 14 -F 1 11 2 5 11 2 -F 1 5 2 6 23 14 -F 1 11 3 5 10 1 -F 1 5 3 6 19 10 -F 1 20 4 5 19 10 -F 1 10 4 6 10 1 -F 1 10 11 5 11 2 -F 1 5 11 6 17 8 -F 1 8 12 5 17 8 -F 1 15 0 5 14 6 -F 1 7 0 6 14 6 -F 1 11 1 5 23 15 -F 1 6 1 6 11 3 -F 1 13 2 5 11 3 -F 1 6 2 6 23 15 -F 1 10 3 5 10 2 -F 1 5 3 6 19 11 -F 1 9 4 5 19 11 -F 1 7 11 5 11 3 -F 1 8 12 5 17 9 -F 1 8 0 6 14 7 -F 1 7 1 0 11 4 -F 1 21 2 0 11 4 -F 1 10 2 6 23 16 -F 1 5 2 7 22 15 -F 1 5 4 6 10 3 -F 1 1 5 0 14 7 -F 1 11 0 2 11 5 -F 1 6 0 6 14 8 -F 1 11 1 2 22 16 -F 1 6 1 6 11 5 -F 1 8 2 6 23 17 -F 1 5 3 6 19 13 -F 1 8 4 2 17 11 -F 1 6 12 2 13 7 -F 1 3 0 2 11 6 -F 1 1 0 3 6 1 -F 1 5 1 2 22 17 -F 1 3 1 3 17 12 -F 1 8 2 3 6 1 -F 1 9 3 2 6 1 -F 1 13 4 2 17 12 -F 1 6 4 3 12 7 -F 1 2 5 3 10 5 -F 1 4 11 2 11 6 -F 1 2 11 3 6 1 -F 1 3 12 2 13 8 -F 1 2 12 3 8 3 -F 1 2 0 3 6 2 -F 1 12 1 2 22 18 -F 1 6 1 3 17 13 -F 1 8 2 3 6 2 -F 1 6 3 2 6 2 -F 1 17 4 2 17 13 -F 1 9 4 3 12 8 -F 1 10 5 3 10 6 -F 1 5 5 8 5 1 -F 1 7 11 3 6 2 -F 1 5 12 3 8 4 -F 1 10 0 3 6 3 -F 1 5 0 11 4 1 -F 1 16 1 3 17 14 -F 1 8 1 4 6 3 -F 1 7 2 3 6 3 -F 1 12 4 3 12 9 -F 1 5 5 6 28 25 -F 1 3 5 8 5 2 -F 1 8 11 3 6 3 -F 1 21 0 3 6 4 -F 1 10 0 6 14 12 -F 1 5 0 7 12 10 -F 1 16 1 4 6 4 -F 1 8 1 6 11 9 -F 1 14 2 3 6 4 -F 1 7 2 6 23 21 -F 1 6 3 6 19 17 -F 1 8 4 6 10 8 -F 1 5 5 8 5 3 -F 1 8 11 6 17 15 -F 1 10 12 6 11 9 -F 1 11 0 6 14 13 -F 1 5 0 7 12 11 -F 1 3 0 11 4 3 -F 1 6 1 0 11 10 -F 1 6 2 0 11 10 -F 1 5 3 0 6 5 -F 1 5 4 0 6 5 -F 1 13 5 0 14 13 -F 1 6 5 6 28 27 -F 1 3 5 8 5 4 -F 1 9 11 0 4 3 -F 1 9 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 1 0 0.04930925260078114 -player2 > engine: 0 6 13 -player2 > engine: comparing 0 and 7, gives 1 0 0.1740544248372269 -player2 > engine: 0 7 7 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 1 0 0.03978663719190064 -player2 > engine: 1 6 7 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 1 0 0.017865583039514844 -player2 > engine: 2 6 11 -player2 > engine: comparing 2 and 7, gives 1 0 0.055283730301199124 -player2 > engine: 2 7 5 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0.035611364342123364 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 1 0 0.07199481416693816 -player2 > engine: 4 6 7 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 2 0 -player2 > engine: 5 2 18 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 1 0 0.07396388117028554 -player2 > engine: 5 6 9 -player2 > engine: comparing 5 and 7, gives 0 0 0.24325391264188054 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 4 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 7 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 8 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 10 3 -P 9.319567 21.808874 2 34 5 -P 14.288424 0.622569 2 20 5 -P 11.865493 5.273785 2 22 3 -P 11.742498 17.157658 2 15 3 -P 4.254093 0.000000 2 41 1 -P 19.353899 22.431443 1 7 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 72 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 18 5 -P 14.743177 12.694819 2 18 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 91 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 2 6 23 1 -F 2 5 1 5 23 2 -F 2 7 2 1 22 2 -F 2 9 1 2 22 4 -F 2 6 1 5 23 6 -F 2 11 2 4 17 1 -F 2 7 1 5 23 8 -F 2 6 4 5 19 4 -F 2 7 12 5 17 2 -F 2 3 2 1 22 8 -F 2 3 3 1 17 3 -F 1 4 6 8 25 12 -F 2 11 0 5 14 1 -F 2 5 0 6 14 1 -F 2 14 2 1 22 9 -F 2 7 1 5 23 11 -F 2 17 2 1 22 10 -F 2 6 1 5 23 12 -F 2 8 2 6 23 12 -F 2 6 3 6 19 8 -F 2 9 4 5 19 8 -F 2 10 0 5 14 4 -F 2 6 1 5 23 13 -F 2 11 2 5 11 1 -F 2 5 2 6 23 13 -F 2 5 3 6 19 9 -F 2 20 4 5 19 9 -F 2 10 11 5 11 1 -F 2 5 11 6 17 7 -F 2 8 12 5 17 7 -F 2 15 0 5 14 5 -F 2 7 0 6 14 5 -F 2 11 1 5 23 14 -F 2 6 1 6 11 2 -F 2 13 2 5 11 2 -F 2 6 2 6 23 14 -F 2 10 3 5 10 1 -F 2 5 3 6 19 10 -F 2 9 4 5 19 10 -F 2 7 11 5 11 2 -F 2 8 12 5 17 8 -F 2 8 0 6 14 6 -F 2 7 1 0 11 3 -F 2 21 2 0 11 3 -F 2 10 2 6 23 15 -F 2 5 2 7 22 14 -F 2 5 4 6 10 2 -F 2 1 5 0 14 6 -F 2 11 0 2 11 4 -F 2 6 0 6 14 7 -F 2 11 1 2 22 15 -F 2 6 1 6 11 4 -F 2 8 2 6 23 16 -F 2 5 3 6 19 12 -F 2 8 4 2 17 10 -F 2 6 12 2 13 6 -F 2 3 0 2 11 5 -F 2 5 1 2 22 16 -F 2 3 1 3 17 11 -F 2 13 4 2 17 11 -F 2 6 4 3 12 6 -F 2 2 5 3 10 4 -F 2 4 11 2 11 5 -F 2 3 12 2 13 7 -F 2 2 12 3 8 2 -F 2 2 0 3 6 1 -F 2 12 1 2 22 17 -F 2 6 1 3 17 12 -F 2 8 2 3 6 1 -F 2 6 3 2 6 1 -F 2 17 4 2 17 12 -F 2 9 4 3 12 7 -F 2 10 5 3 10 5 -F 2 7 11 3 6 1 -F 2 5 12 3 8 3 -F 2 10 0 3 6 2 -F 2 16 1 3 17 13 -F 2 8 1 4 6 2 -F 2 7 2 3 6 2 -F 2 12 4 3 12 8 -F 2 5 5 6 28 24 -F 2 3 5 8 5 1 -F 2 8 11 3 6 2 -F 2 21 0 3 6 3 -F 2 10 0 6 14 11 -F 2 5 0 7 12 9 -F 2 16 1 4 6 3 -F 2 8 1 6 11 8 -F 2 14 2 3 6 3 -F 2 7 2 6 23 20 -F 2 6 3 6 19 16 -F 2 8 4 6 10 7 -F 2 5 5 8 5 2 -F 2 8 11 6 17 14 -F 2 10 12 6 11 8 -F 2 11 0 6 14 12 -F 2 5 0 7 12 10 -F 2 3 0 11 4 2 -F 2 6 1 0 11 9 -F 2 6 2 0 11 9 -F 2 5 3 0 6 4 -F 2 5 4 0 6 4 -F 2 13 5 0 14 12 -F 2 6 5 6 28 26 -F 2 3 5 8 5 3 -F 2 9 11 0 4 2 -F 2 9 12 0 4 2 -F 2 13 0 6 14 13 -F 2 7 0 7 12 11 -F 2 7 1 6 11 10 -F 2 11 2 6 23 22 -F 2 5 2 7 22 21 -F 2 7 4 6 10 9 -F 2 18 5 2 11 10 -F 2 9 5 6 28 27 -F 2 4 5 8 5 4 -F 2 7 11 0 4 3 -F 2 8 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 10 3 -P 9.319567 21.808874 1 34 5 -P 14.288424 0.622569 1 20 5 -P 11.865493 5.273785 1 22 3 -P 11.742498 17.157658 1 15 3 -P 4.254093 0.000000 1 41 1 -P 19.353899 22.431443 2 7 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 72 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 18 5 -P 14.743177 12.694819 1 18 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 91 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 2 6 23 1 -F 1 5 1 5 23 2 -F 1 7 2 1 22 2 -F 1 9 1 2 22 4 -F 1 6 1 5 23 6 -F 1 11 2 4 17 1 -F 1 7 1 5 23 8 -F 1 6 4 5 19 4 -F 1 7 12 5 17 2 -F 1 3 2 1 22 8 -F 1 3 3 1 17 3 -F 2 4 6 8 25 12 -F 1 11 0 5 14 1 -F 1 5 0 6 14 1 -F 1 14 2 1 22 9 -F 1 7 1 5 23 11 -F 1 17 2 1 22 10 -F 1 6 1 5 23 12 -F 1 8 2 6 23 12 -F 1 6 3 6 19 8 -F 1 9 4 5 19 8 -F 1 10 0 5 14 4 -F 1 6 1 5 23 13 -F 1 11 2 5 11 1 -F 1 5 2 6 23 13 -F 1 5 3 6 19 9 -F 1 20 4 5 19 9 -F 1 10 11 5 11 1 -F 1 5 11 6 17 7 -F 1 8 12 5 17 7 -F 1 15 0 5 14 5 -F 1 7 0 6 14 5 -F 1 11 1 5 23 14 -F 1 6 1 6 11 2 -F 1 13 2 5 11 2 -F 1 6 2 6 23 14 -F 1 10 3 5 10 1 -F 1 5 3 6 19 10 -F 1 9 4 5 19 10 -F 1 7 11 5 11 2 -F 1 8 12 5 17 8 -F 1 8 0 6 14 6 -F 1 7 1 0 11 3 -F 1 21 2 0 11 3 -F 1 10 2 6 23 15 -F 1 5 2 7 22 14 -F 1 5 4 6 10 2 -F 1 1 5 0 14 6 -F 1 11 0 2 11 4 -F 1 6 0 6 14 7 -F 1 11 1 2 22 15 -F 1 6 1 6 11 4 -F 1 8 2 6 23 16 -F 1 5 3 6 19 12 -F 1 8 4 2 17 10 -F 1 6 12 2 13 6 -F 1 3 0 2 11 5 -F 1 5 1 2 22 16 -F 1 3 1 3 17 11 -F 1 13 4 2 17 11 -F 1 6 4 3 12 6 -F 1 2 5 3 10 4 -F 1 4 11 2 11 5 -F 1 3 12 2 13 7 -F 1 2 12 3 8 2 -F 1 2 0 3 6 1 -F 1 12 1 2 22 17 -F 1 6 1 3 17 12 -F 1 8 2 3 6 1 -F 1 6 3 2 6 1 -F 1 17 4 2 17 12 -F 1 9 4 3 12 7 -F 1 10 5 3 10 5 -F 1 7 11 3 6 1 -F 1 5 12 3 8 3 -F 1 10 0 3 6 2 -F 1 16 1 3 17 13 -F 1 8 1 4 6 2 -F 1 7 2 3 6 2 -F 1 12 4 3 12 8 -F 1 5 5 6 28 24 -F 1 3 5 8 5 1 -F 1 8 11 3 6 2 -F 1 21 0 3 6 3 -F 1 10 0 6 14 11 -F 1 5 0 7 12 9 -F 1 16 1 4 6 3 -F 1 8 1 6 11 8 -F 1 14 2 3 6 3 -F 1 7 2 6 23 20 -F 1 6 3 6 19 16 -F 1 8 4 6 10 7 -F 1 5 5 8 5 2 -F 1 8 11 6 17 14 -F 1 10 12 6 11 8 -F 1 11 0 6 14 12 -F 1 5 0 7 12 10 -F 1 3 0 11 4 2 -F 1 6 1 0 11 9 -F 1 6 2 0 11 9 -F 1 5 3 0 6 4 -F 1 5 4 0 6 4 -F 1 13 5 0 14 12 -F 1 6 5 6 28 26 -F 1 3 5 8 5 3 -F 1 9 11 0 4 2 -F 1 9 12 0 4 2 -F 1 13 0 6 14 13 -F 1 7 0 7 12 11 -F 1 7 1 6 11 10 -F 1 11 2 6 23 22 -F 1 5 2 7 22 21 -F 1 7 4 6 10 9 -F 1 18 5 2 11 10 -F 1 9 5 6 28 27 -F 1 4 5 8 5 4 -F 1 7 11 0 4 3 -F 1 8 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0.04930925260078114 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 5 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 2 0 -player2 > engine: 1 1 17 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 1 0 0.03978663719190064 -player2 > engine: 1 6 8 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 2 0 -player2 > engine: 1 11 4 -player2 > engine: comparing 1 and 12, gives 0 2 0 -player2 > engine: 1 12 2 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 10 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0.017865583039514844 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 2 0 -player2 > engine: 2 11 5 -player2 > engine: comparing 2 and 12, gives 0 2 0 -player2 > engine: 2 12 2 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 2 0 -player2 > engine: 3 1 11 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 1 0 0.035611364342123364 -player2 > engine: 3 6 5 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 2 0 -player2 > engine: 3 12 3 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 1 0 0.07199481416693816 -player2 > engine: 4 6 7 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 2 0 -player2 > engine: 4 11 4 -player2 > engine: comparing 4 and 12, gives 0 2 0 -player2 > engine: 4 12 2 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 2 0 -player2 > engine: 5 1 20 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 1 0 0.07396388117028554 -player2 > engine: 5 6 10 -player2 > engine: comparing 5 and 7, gives 1 0 0.24325391264188054 -player2 > engine: 5 7 5 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 3 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 2 0 -player2 > engine: 5 12 1 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 9 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0.02429023389729467 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 2 0 -player2 > engine: 11 11 4 -player2 > engine: comparing 11 and 12, gives 0 2 0 -player2 > engine: 11 12 2 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 9 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0.03712936976970223 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 2 0 -player2 > engine: 12 11 4 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 2 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 6 3 -P 9.319567 21.808874 2 25 5 -P 14.288424 0.622569 2 24 5 -P 11.865493 5.273785 2 23 3 -P 11.742498 17.157658 2 16 3 -P 4.254093 0.000000 2 45 1 -P 19.353899 22.431443 2 2 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 69 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 12 5 -P 14.743177 12.694819 2 10 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 94 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 1 5 23 1 -F 2 7 2 1 22 1 -F 2 9 1 2 22 3 -F 2 6 1 5 23 5 -F 2 7 1 5 23 7 -F 2 6 4 5 19 3 -F 2 7 12 5 17 1 -F 2 3 2 1 22 7 -F 2 3 3 1 17 2 -F 1 4 6 8 25 11 -F 2 14 2 1 22 8 -F 2 7 1 5 23 10 -F 2 17 2 1 22 9 -F 2 6 1 5 23 11 -F 2 8 2 6 23 11 -F 2 6 3 6 19 7 -F 2 9 4 5 19 7 -F 2 10 0 5 14 3 -F 2 6 1 5 23 12 -F 2 5 2 6 23 12 -F 2 5 3 6 19 8 -F 2 20 4 5 19 8 -F 2 5 11 6 17 6 -F 2 8 12 5 17 6 -F 2 15 0 5 14 4 -F 2 7 0 6 14 4 -F 2 11 1 5 23 13 -F 2 6 1 6 11 1 -F 2 13 2 5 11 1 -F 2 6 2 6 23 13 -F 2 5 3 6 19 9 -F 2 9 4 5 19 9 -F 2 7 11 5 11 1 -F 2 8 12 5 17 7 -F 2 8 0 6 14 5 -F 2 7 1 0 11 2 -F 2 21 2 0 11 2 -F 2 10 2 6 23 14 -F 2 5 2 7 22 13 -F 2 5 4 6 10 1 -F 2 1 5 0 14 5 -F 2 11 0 2 11 3 -F 2 6 0 6 14 6 -F 2 11 1 2 22 14 -F 2 6 1 6 11 3 -F 2 8 2 6 23 15 -F 2 5 3 6 19 11 -F 2 8 4 2 17 9 -F 2 6 12 2 13 5 -F 2 3 0 2 11 4 -F 2 5 1 2 22 15 -F 2 3 1 3 17 10 -F 2 13 4 2 17 10 -F 2 6 4 3 12 5 -F 2 2 5 3 10 3 -F 2 4 11 2 11 4 -F 2 3 12 2 13 6 -F 2 2 12 3 8 1 -F 2 12 1 2 22 16 -F 2 6 1 3 17 11 -F 2 17 4 2 17 11 -F 2 9 4 3 12 6 -F 2 10 5 3 10 4 -F 2 5 12 3 8 2 -F 2 10 0 3 6 1 -F 2 16 1 3 17 12 -F 2 8 1 4 6 1 -F 2 7 2 3 6 1 -F 2 12 4 3 12 7 -F 2 5 5 6 28 23 -F 2 8 11 3 6 1 -F 2 21 0 3 6 2 -F 2 10 0 6 14 10 -F 2 5 0 7 12 8 -F 2 16 1 4 6 2 -F 2 8 1 6 11 7 -F 2 14 2 3 6 2 -F 2 7 2 6 23 19 -F 2 6 3 6 19 15 -F 2 8 4 6 10 6 -F 2 5 5 8 5 1 -F 2 8 11 6 17 13 -F 2 10 12 6 11 7 -F 2 11 0 6 14 11 -F 2 5 0 7 12 9 -F 2 3 0 11 4 1 -F 2 6 1 0 11 8 -F 2 6 2 0 11 8 -F 2 5 3 0 6 3 -F 2 5 4 0 6 3 -F 2 13 5 0 14 11 -F 2 6 5 6 28 25 -F 2 3 5 8 5 2 -F 2 9 11 0 4 1 -F 2 9 12 0 4 1 -F 2 13 0 6 14 12 -F 2 7 0 7 12 10 -F 2 7 1 6 11 9 -F 2 11 2 6 23 21 -F 2 5 2 7 22 20 -F 2 7 4 6 10 8 -F 2 18 5 2 11 9 -F 2 9 5 6 28 26 -F 2 4 5 8 5 3 -F 2 7 11 0 4 2 -F 2 8 12 0 4 2 -F 2 5 0 11 4 3 -F 2 2 0 12 4 3 -F 2 8 1 6 11 10 -F 2 4 1 11 13 12 -F 2 2 1 12 11 10 -F 2 5 2 11 11 10 -F 2 2 2 12 13 12 -F 2 11 3 1 17 16 -F 2 5 3 6 19 18 -F 2 3 3 12 8 7 -F 2 7 4 6 10 9 -F 2 4 4 11 8 7 -F 2 2 4 12 6 5 -F 2 20 5 1 23 22 -F 2 10 5 6 28 27 -F 2 5 5 7 25 24 -F 2 3 5 8 5 4 -F 2 1 5 12 17 16 -F 2 9 11 0 4 3 -F 2 2 11 12 7 6 -F 2 9 12 0 4 3 -F 2 4 12 11 7 6 -go - -engine > player2: P 11.803996 11.215721 1 6 3 -P 9.319567 21.808874 1 25 5 -P 14.288424 0.622569 1 24 5 -P 11.865493 5.273785 1 23 3 -P 11.742498 17.157658 1 16 3 -P 4.254093 0.000000 1 45 1 -P 19.353899 22.431443 1 2 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 69 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 12 5 -P 14.743177 12.694819 1 10 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 94 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 1 5 23 1 -F 1 7 2 1 22 1 -F 1 9 1 2 22 3 -F 1 6 1 5 23 5 -F 1 7 1 5 23 7 -F 1 6 4 5 19 3 -F 1 7 12 5 17 1 -F 1 3 2 1 22 7 -F 1 3 3 1 17 2 -F 2 4 6 8 25 11 -F 1 14 2 1 22 8 -F 1 7 1 5 23 10 -F 1 17 2 1 22 9 -F 1 6 1 5 23 11 -F 1 8 2 6 23 11 -F 1 6 3 6 19 7 -F 1 9 4 5 19 7 -F 1 10 0 5 14 3 -F 1 6 1 5 23 12 -F 1 5 2 6 23 12 -F 1 5 3 6 19 8 -F 1 20 4 5 19 8 -F 1 5 11 6 17 6 -F 1 8 12 5 17 6 -F 1 15 0 5 14 4 -F 1 7 0 6 14 4 -F 1 11 1 5 23 13 -F 1 6 1 6 11 1 -F 1 13 2 5 11 1 -F 1 6 2 6 23 13 -F 1 5 3 6 19 9 -F 1 9 4 5 19 9 -F 1 7 11 5 11 1 -F 1 8 12 5 17 7 -F 1 8 0 6 14 5 -F 1 7 1 0 11 2 -F 1 21 2 0 11 2 -F 1 10 2 6 23 14 -F 1 5 2 7 22 13 -F 1 5 4 6 10 1 -F 1 1 5 0 14 5 -F 1 11 0 2 11 3 -F 1 6 0 6 14 6 -F 1 11 1 2 22 14 -F 1 6 1 6 11 3 -F 1 8 2 6 23 15 -F 1 5 3 6 19 11 -F 1 8 4 2 17 9 -F 1 6 12 2 13 5 -F 1 3 0 2 11 4 -F 1 5 1 2 22 15 -F 1 3 1 3 17 10 -F 1 13 4 2 17 10 -F 1 6 4 3 12 5 -F 1 2 5 3 10 3 -F 1 4 11 2 11 4 -F 1 3 12 2 13 6 -F 1 2 12 3 8 1 -F 1 12 1 2 22 16 -F 1 6 1 3 17 11 -F 1 17 4 2 17 11 -F 1 9 4 3 12 6 -F 1 10 5 3 10 4 -F 1 5 12 3 8 2 -F 1 10 0 3 6 1 -F 1 16 1 3 17 12 -F 1 8 1 4 6 1 -F 1 7 2 3 6 1 -F 1 12 4 3 12 7 -F 1 5 5 6 28 23 -F 1 8 11 3 6 1 -F 1 21 0 3 6 2 -F 1 10 0 6 14 10 -F 1 5 0 7 12 8 -F 1 16 1 4 6 2 -F 1 8 1 6 11 7 -F 1 14 2 3 6 2 -F 1 7 2 6 23 19 -F 1 6 3 6 19 15 -F 1 8 4 6 10 6 -F 1 5 5 8 5 1 -F 1 8 11 6 17 13 -F 1 10 12 6 11 7 -F 1 11 0 6 14 11 -F 1 5 0 7 12 9 -F 1 3 0 11 4 1 -F 1 6 1 0 11 8 -F 1 6 2 0 11 8 -F 1 5 3 0 6 3 -F 1 5 4 0 6 3 -F 1 13 5 0 14 11 -F 1 6 5 6 28 25 -F 1 3 5 8 5 2 -F 1 9 11 0 4 1 -F 1 9 12 0 4 1 -F 1 13 0 6 14 12 -F 1 7 0 7 12 10 -F 1 7 1 6 11 9 -F 1 11 2 6 23 21 -F 1 5 2 7 22 20 -F 1 7 4 6 10 8 -F 1 18 5 2 11 9 -F 1 9 5 6 28 26 -F 1 4 5 8 5 3 -F 1 7 11 0 4 2 -F 1 8 12 0 4 2 -F 1 5 0 11 4 3 -F 1 2 0 12 4 3 -F 1 8 1 6 11 10 -F 1 4 1 11 13 12 -F 1 2 1 12 11 10 -F 1 5 2 11 11 10 -F 1 2 2 12 13 12 -F 1 11 3 1 17 16 -F 1 5 3 6 19 18 -F 1 3 3 12 8 7 -F 1 7 4 6 10 9 -F 1 4 4 11 8 7 -F 1 2 4 12 6 5 -F 1 20 5 1 23 22 -F 1 10 5 6 28 27 -F 1 5 5 7 25 24 -F 1 3 5 8 5 4 -F 1 1 5 12 17 16 -F 1 9 11 0 4 3 -F 1 2 11 12 7 6 -F 1 9 12 0 4 3 -F 1 4 12 11 7 6 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 3 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 2 0 -player2 > engine: 1 1 12 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 1 0 0.22024599787140162 -player2 > engine: 1 7 6 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 2 0 -player2 > engine: 1 12 3 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 2 0 -player2 > engine: 2 1 12 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 1 0 0.055283730301199124 -player2 > engine: 2 7 6 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 2 0 -player2 > engine: 2 12 3 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 2 0 -player2 > engine: 3 1 11 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 1 0 0.11566425403838958 -player2 > engine: 3 7 6 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 2 0 -player2 > engine: 3 12 3 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 1 0 0.3347412907627885 -player2 > engine: 4 7 8 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 2 0 -player2 > engine: 4 12 4 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 2 0 -player2 > engine: 5 1 22 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 1 0 0.24325391264188054 -player2 > engine: 5 7 11 -player2 > engine: comparing 5 and 8, gives 1 0 1.3010849971288805 -player2 > engine: 5 8 6 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 2 0 -player2 > engine: 5 12 3 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 1.301084708495155 -player2 > engine: 6 7 1 -player2 > engine: comparing 6 and 8, gives 0 0 0.24325389952200152 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 1 0 0.0863773644023548 -player2 > engine: 11 7 6 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 2 0 -player2 > engine: 11 12 3 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 5 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 24 3 -P 9.319567 21.808874 2 28 5 -P 14.288424 0.622569 2 8 5 -P 11.865493 5.273785 2 33 3 -P 11.742498 17.157658 2 15 3 -P 4.254093 0.000000 2 36 1 -P 19.353899 22.431443 2 13 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 64 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 11 5 -P 14.743177 12.694819 2 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 97 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 9 1 2 22 2 -F 2 6 1 5 23 4 -F 2 7 1 5 23 6 -F 2 6 4 5 19 2 -F 2 3 2 1 22 6 -F 2 3 3 1 17 1 -F 1 4 6 8 25 10 -F 2 14 2 1 22 7 -F 2 7 1 5 23 9 -F 2 17 2 1 22 8 -F 2 6 1 5 23 10 -F 2 8 2 6 23 10 -F 2 6 3 6 19 6 -F 2 9 4 5 19 6 -F 2 10 0 5 14 2 -F 2 6 1 5 23 11 -F 2 5 2 6 23 11 -F 2 5 3 6 19 7 -F 2 20 4 5 19 7 -F 2 5 11 6 17 5 -F 2 8 12 5 17 5 -F 2 15 0 5 14 3 -F 2 7 0 6 14 3 -F 2 11 1 5 23 12 -F 2 6 2 6 23 12 -F 2 5 3 6 19 8 -F 2 9 4 5 19 8 -F 2 8 12 5 17 6 -F 2 8 0 6 14 4 -F 2 7 1 0 11 1 -F 2 21 2 0 11 1 -F 2 10 2 6 23 13 -F 2 5 2 7 22 12 -F 2 1 5 0 14 4 -F 2 11 0 2 11 2 -F 2 6 0 6 14 5 -F 2 11 1 2 22 13 -F 2 6 1 6 11 2 -F 2 8 2 6 23 14 -F 2 5 3 6 19 10 -F 2 8 4 2 17 8 -F 2 6 12 2 13 4 -F 2 3 0 2 11 3 -F 2 5 1 2 22 14 -F 2 3 1 3 17 9 -F 2 13 4 2 17 9 -F 2 6 4 3 12 4 -F 2 2 5 3 10 2 -F 2 4 11 2 11 3 -F 2 3 12 2 13 5 -F 2 12 1 2 22 15 -F 2 6 1 3 17 10 -F 2 17 4 2 17 10 -F 2 9 4 3 12 5 -F 2 10 5 3 10 3 -F 2 5 12 3 8 1 -F 2 16 1 3 17 11 -F 2 12 4 3 12 6 -F 2 5 5 6 28 22 -F 2 21 0 3 6 1 -F 2 10 0 6 14 9 -F 2 5 0 7 12 7 -F 2 16 1 4 6 1 -F 2 8 1 6 11 6 -F 2 14 2 3 6 1 -F 2 7 2 6 23 18 -F 2 6 3 6 19 14 -F 2 8 4 6 10 5 -F 2 8 11 6 17 12 -F 2 10 12 6 11 6 -F 2 11 0 6 14 10 -F 2 5 0 7 12 8 -F 2 6 1 0 11 7 -F 2 6 2 0 11 7 -F 2 5 3 0 6 2 -F 2 5 4 0 6 2 -F 2 13 5 0 14 10 -F 2 6 5 6 28 24 -F 2 3 5 8 5 1 -F 2 13 0 6 14 11 -F 2 7 0 7 12 9 -F 2 7 1 6 11 8 -F 2 11 2 6 23 20 -F 2 5 2 7 22 19 -F 2 7 4 6 10 7 -F 2 18 5 2 11 8 -F 2 9 5 6 28 25 -F 2 4 5 8 5 2 -F 2 7 11 0 4 1 -F 2 8 12 0 4 1 -F 2 5 0 11 4 2 -F 2 2 0 12 4 2 -F 2 8 1 6 11 9 -F 2 4 1 11 13 11 -F 2 2 1 12 11 9 -F 2 5 2 11 11 9 -F 2 2 2 12 13 11 -F 2 11 3 1 17 15 -F 2 5 3 6 19 17 -F 2 3 3 12 8 6 -F 2 7 4 6 10 8 -F 2 4 4 11 8 6 -F 2 2 4 12 6 4 -F 2 20 5 1 23 21 -F 2 10 5 6 28 26 -F 2 5 5 7 25 23 -F 2 3 5 8 5 3 -F 2 1 5 12 17 15 -F 2 9 11 0 4 2 -F 2 2 11 12 7 5 -F 2 9 12 0 4 2 -F 2 4 12 11 7 5 -F 2 3 0 12 4 3 -F 2 6 1 7 6 5 -F 2 3 1 12 11 10 -F 2 12 2 1 22 21 -F 2 6 2 7 22 21 -F 2 3 2 12 13 12 -F 2 11 3 1 17 16 -F 2 6 3 7 18 17 -F 2 3 3 12 8 7 -F 2 8 4 7 6 5 -F 2 4 4 12 6 5 -F 2 22 5 1 23 22 -F 2 11 5 7 25 24 -F 2 6 5 8 5 4 -F 2 3 5 12 17 16 -F 2 1 6 7 5 4 -F 2 6 11 7 14 13 -F 2 3 11 12 7 6 -go - -engine > player2: P 11.803996 11.215721 1 24 3 -P 9.319567 21.808874 1 28 5 -P 14.288424 0.622569 1 8 5 -P 11.865493 5.273785 1 33 3 -P 11.742498 17.157658 1 15 3 -P 4.254093 0.000000 1 36 1 -P 19.353899 22.431443 1 13 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 64 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 11 5 -P 14.743177 12.694819 1 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 97 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 9 1 2 22 2 -F 1 6 1 5 23 4 -F 1 7 1 5 23 6 -F 1 6 4 5 19 2 -F 1 3 2 1 22 6 -F 1 3 3 1 17 1 -F 2 4 6 8 25 10 -F 1 14 2 1 22 7 -F 1 7 1 5 23 9 -F 1 17 2 1 22 8 -F 1 6 1 5 23 10 -F 1 8 2 6 23 10 -F 1 6 3 6 19 6 -F 1 9 4 5 19 6 -F 1 10 0 5 14 2 -F 1 6 1 5 23 11 -F 1 5 2 6 23 11 -F 1 5 3 6 19 7 -F 1 20 4 5 19 7 -F 1 5 11 6 17 5 -F 1 8 12 5 17 5 -F 1 15 0 5 14 3 -F 1 7 0 6 14 3 -F 1 11 1 5 23 12 -F 1 6 2 6 23 12 -F 1 5 3 6 19 8 -F 1 9 4 5 19 8 -F 1 8 12 5 17 6 -F 1 8 0 6 14 4 -F 1 7 1 0 11 1 -F 1 21 2 0 11 1 -F 1 10 2 6 23 13 -F 1 5 2 7 22 12 -F 1 1 5 0 14 4 -F 1 11 0 2 11 2 -F 1 6 0 6 14 5 -F 1 11 1 2 22 13 -F 1 6 1 6 11 2 -F 1 8 2 6 23 14 -F 1 5 3 6 19 10 -F 1 8 4 2 17 8 -F 1 6 12 2 13 4 -F 1 3 0 2 11 3 -F 1 5 1 2 22 14 -F 1 3 1 3 17 9 -F 1 13 4 2 17 9 -F 1 6 4 3 12 4 -F 1 2 5 3 10 2 -F 1 4 11 2 11 3 -F 1 3 12 2 13 5 -F 1 12 1 2 22 15 -F 1 6 1 3 17 10 -F 1 17 4 2 17 10 -F 1 9 4 3 12 5 -F 1 10 5 3 10 3 -F 1 5 12 3 8 1 -F 1 16 1 3 17 11 -F 1 12 4 3 12 6 -F 1 5 5 6 28 22 -F 1 21 0 3 6 1 -F 1 10 0 6 14 9 -F 1 5 0 7 12 7 -F 1 16 1 4 6 1 -F 1 8 1 6 11 6 -F 1 14 2 3 6 1 -F 1 7 2 6 23 18 -F 1 6 3 6 19 14 -F 1 8 4 6 10 5 -F 1 8 11 6 17 12 -F 1 10 12 6 11 6 -F 1 11 0 6 14 10 -F 1 5 0 7 12 8 -F 1 6 1 0 11 7 -F 1 6 2 0 11 7 -F 1 5 3 0 6 2 -F 1 5 4 0 6 2 -F 1 13 5 0 14 10 -F 1 6 5 6 28 24 -F 1 3 5 8 5 1 -F 1 13 0 6 14 11 -F 1 7 0 7 12 9 -F 1 7 1 6 11 8 -F 1 11 2 6 23 20 -F 1 5 2 7 22 19 -F 1 7 4 6 10 7 -F 1 18 5 2 11 8 -F 1 9 5 6 28 25 -F 1 4 5 8 5 2 -F 1 7 11 0 4 1 -F 1 8 12 0 4 1 -F 1 5 0 11 4 2 -F 1 2 0 12 4 2 -F 1 8 1 6 11 9 -F 1 4 1 11 13 11 -F 1 2 1 12 11 9 -F 1 5 2 11 11 9 -F 1 2 2 12 13 11 -F 1 11 3 1 17 15 -F 1 5 3 6 19 17 -F 1 3 3 12 8 6 -F 1 7 4 6 10 8 -F 1 4 4 11 8 6 -F 1 2 4 12 6 4 -F 1 20 5 1 23 21 -F 1 10 5 6 28 26 -F 1 5 5 7 25 23 -F 1 3 5 8 5 3 -F 1 1 5 12 17 15 -F 1 9 11 0 4 2 -F 1 2 11 12 7 5 -F 1 9 12 0 4 2 -F 1 4 12 11 7 5 -F 1 3 0 12 4 3 -F 1 6 1 7 6 5 -F 1 3 1 12 11 10 -F 1 12 2 1 22 21 -F 1 6 2 7 22 21 -F 1 3 2 12 13 12 -F 1 11 3 1 17 16 -F 1 6 3 7 18 17 -F 1 3 3 12 8 7 -F 1 8 4 7 6 5 -F 1 4 4 12 6 5 -F 1 22 5 1 23 22 -F 1 11 5 7 25 24 -F 1 6 5 8 5 4 -F 1 3 5 12 17 16 -F 1 1 6 7 5 4 -F 1 6 11 7 14 13 -F 1 3 11 12 7 6 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 2 0 -player2 > engine: 0 1 12 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 1 0 0.1740544248372269 -player2 > engine: 0 7 6 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 3 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 1 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 2 0 -player2 > engine: 1 1 14 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 1 0 0.22024599787140162 -player2 > engine: 1 7 7 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 2 0 -player2 > engine: 2 1 4 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 2 0 -player2 > engine: 3 1 16 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 1 0 0.11566425403838958 -player2 > engine: 3 7 8 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 2 0 -player2 > engine: 4 1 7 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 2 0 -player2 > engine: 5 1 18 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 1 0 0.24325391264188054 -player2 > engine: 5 7 9 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 4 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 2 0 -player2 > engine: 6 1 6 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 1.301084708495155 -player2 > engine: 6 7 3 -player2 > engine: comparing 6 and 8, gives 0 0 0.24325389952200152 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 2 0 -player2 > engine: 11 1 5 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 2 0 -player2 > engine: 12 1 7 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 48 3 -P 9.319567 21.808874 2 29 5 -P 14.288424 0.622569 2 9 5 -P 11.865493 5.273785 2 52 3 -P 11.742498 17.157658 2 27 3 -P 4.254093 0.000000 2 6 1 -P 19.353899 22.431443 2 5 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 61 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 11 5 -P 14.743177 12.694819 2 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 100 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 9 1 2 22 1 -F 2 6 1 5 23 3 -F 2 7 1 5 23 5 -F 2 6 4 5 19 1 -F 2 3 2 1 22 5 -F 1 4 6 8 25 9 -F 2 14 2 1 22 6 -F 2 7 1 5 23 8 -F 2 17 2 1 22 7 -F 2 6 1 5 23 9 -F 2 8 2 6 23 9 -F 2 6 3 6 19 5 -F 2 9 4 5 19 5 -F 2 10 0 5 14 1 -F 2 6 1 5 23 10 -F 2 5 2 6 23 10 -F 2 5 3 6 19 6 -F 2 20 4 5 19 6 -F 2 5 11 6 17 4 -F 2 8 12 5 17 4 -F 2 15 0 5 14 2 -F 2 7 0 6 14 2 -F 2 11 1 5 23 11 -F 2 6 2 6 23 11 -F 2 5 3 6 19 7 -F 2 9 4 5 19 7 -F 2 8 12 5 17 5 -F 2 8 0 6 14 3 -F 2 10 2 6 23 12 -F 2 5 2 7 22 11 -F 2 1 5 0 14 3 -F 2 11 0 2 11 1 -F 2 6 0 6 14 4 -F 2 11 1 2 22 12 -F 2 6 1 6 11 1 -F 2 8 2 6 23 13 -F 2 5 3 6 19 9 -F 2 8 4 2 17 7 -F 2 6 12 2 13 3 -F 2 3 0 2 11 2 -F 2 5 1 2 22 13 -F 2 3 1 3 17 8 -F 2 13 4 2 17 8 -F 2 6 4 3 12 3 -F 2 2 5 3 10 1 -F 2 4 11 2 11 2 -F 2 3 12 2 13 4 -F 2 12 1 2 22 14 -F 2 6 1 3 17 9 -F 2 17 4 2 17 9 -F 2 9 4 3 12 4 -F 2 10 5 3 10 2 -F 2 16 1 3 17 10 -F 2 12 4 3 12 5 -F 2 5 5 6 28 21 -F 2 10 0 6 14 8 -F 2 5 0 7 12 6 -F 2 8 1 6 11 5 -F 2 7 2 6 23 17 -F 2 6 3 6 19 13 -F 2 8 4 6 10 4 -F 2 8 11 6 17 11 -F 2 10 12 6 11 5 -F 2 11 0 6 14 9 -F 2 5 0 7 12 7 -F 2 6 1 0 11 6 -F 2 6 2 0 11 6 -F 2 5 3 0 6 1 -F 2 5 4 0 6 1 -F 2 13 5 0 14 9 -F 2 6 5 6 28 23 -F 2 13 0 6 14 10 -F 2 7 0 7 12 8 -F 2 7 1 6 11 7 -F 2 11 2 6 23 19 -F 2 5 2 7 22 18 -F 2 7 4 6 10 6 -F 2 18 5 2 11 7 -F 2 9 5 6 28 24 -F 2 4 5 8 5 1 -F 2 5 0 11 4 1 -F 2 2 0 12 4 1 -F 2 8 1 6 11 8 -F 2 4 1 11 13 10 -F 2 2 1 12 11 8 -F 2 5 2 11 11 8 -F 2 2 2 12 13 10 -F 2 11 3 1 17 14 -F 2 5 3 6 19 16 -F 2 3 3 12 8 5 -F 2 7 4 6 10 7 -F 2 4 4 11 8 5 -F 2 2 4 12 6 3 -F 2 20 5 1 23 20 -F 2 10 5 6 28 25 -F 2 5 5 7 25 22 -F 2 3 5 8 5 2 -F 2 1 5 12 17 14 -F 2 9 11 0 4 1 -F 2 2 11 12 7 4 -F 2 9 12 0 4 1 -F 2 4 12 11 7 4 -F 2 3 0 12 4 2 -F 2 6 1 7 6 4 -F 2 3 1 12 11 9 -F 2 12 2 1 22 20 -F 2 6 2 7 22 20 -F 2 3 2 12 13 11 -F 2 11 3 1 17 15 -F 2 6 3 7 18 16 -F 2 3 3 12 8 6 -F 2 8 4 7 6 4 -F 2 4 4 12 6 4 -F 2 22 5 1 23 21 -F 2 11 5 7 25 23 -F 2 6 5 8 5 3 -F 2 3 5 12 17 15 -F 2 1 6 7 5 3 -F 2 6 11 7 14 12 -F 2 3 11 12 7 5 -F 2 12 0 1 11 10 -F 2 6 0 7 12 11 -F 2 3 0 11 4 3 -F 2 1 0 12 4 3 -F 2 7 1 7 6 5 -F 2 4 2 1 22 21 -F 2 16 3 1 17 16 -F 2 8 3 7 18 17 -F 2 7 4 1 6 5 -F 2 18 5 1 23 22 -F 2 9 5 7 25 24 -F 2 4 5 8 5 4 -F 2 6 6 1 11 10 -F 2 3 6 7 5 4 -F 2 5 11 1 13 12 -F 2 7 12 1 11 10 -go - -engine > player2: P 11.803996 11.215721 1 48 3 -P 9.319567 21.808874 1 29 5 -P 14.288424 0.622569 1 9 5 -P 11.865493 5.273785 1 52 3 -P 11.742498 17.157658 1 27 3 -P 4.254093 0.000000 1 6 1 -P 19.353899 22.431443 1 5 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 61 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 11 5 -P 14.743177 12.694819 1 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 100 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 9 1 2 22 1 -F 1 6 1 5 23 3 -F 1 7 1 5 23 5 -F 1 6 4 5 19 1 -F 1 3 2 1 22 5 -F 2 4 6 8 25 9 -F 1 14 2 1 22 6 -F 1 7 1 5 23 8 -F 1 17 2 1 22 7 -F 1 6 1 5 23 9 -F 1 8 2 6 23 9 -F 1 6 3 6 19 5 -F 1 9 4 5 19 5 -F 1 10 0 5 14 1 -F 1 6 1 5 23 10 -F 1 5 2 6 23 10 -F 1 5 3 6 19 6 -F 1 20 4 5 19 6 -F 1 5 11 6 17 4 -F 1 8 12 5 17 4 -F 1 15 0 5 14 2 -F 1 7 0 6 14 2 -F 1 11 1 5 23 11 -F 1 6 2 6 23 11 -F 1 5 3 6 19 7 -F 1 9 4 5 19 7 -F 1 8 12 5 17 5 -F 1 8 0 6 14 3 -F 1 10 2 6 23 12 -F 1 5 2 7 22 11 -F 1 1 5 0 14 3 -F 1 11 0 2 11 1 -F 1 6 0 6 14 4 -F 1 11 1 2 22 12 -F 1 6 1 6 11 1 -F 1 8 2 6 23 13 -F 1 5 3 6 19 9 -F 1 8 4 2 17 7 -F 1 6 12 2 13 3 -F 1 3 0 2 11 2 -F 1 5 1 2 22 13 -F 1 3 1 3 17 8 -F 1 13 4 2 17 8 -F 1 6 4 3 12 3 -F 1 2 5 3 10 1 -F 1 4 11 2 11 2 -F 1 3 12 2 13 4 -F 1 12 1 2 22 14 -F 1 6 1 3 17 9 -F 1 17 4 2 17 9 -F 1 9 4 3 12 4 -F 1 10 5 3 10 2 -F 1 16 1 3 17 10 -F 1 12 4 3 12 5 -F 1 5 5 6 28 21 -F 1 10 0 6 14 8 -F 1 5 0 7 12 6 -F 1 8 1 6 11 5 -F 1 7 2 6 23 17 -F 1 6 3 6 19 13 -F 1 8 4 6 10 4 -F 1 8 11 6 17 11 -F 1 10 12 6 11 5 -F 1 11 0 6 14 9 -F 1 5 0 7 12 7 -F 1 6 1 0 11 6 -F 1 6 2 0 11 6 -F 1 5 3 0 6 1 -F 1 5 4 0 6 1 -F 1 13 5 0 14 9 -F 1 6 5 6 28 23 -F 1 13 0 6 14 10 -F 1 7 0 7 12 8 -F 1 7 1 6 11 7 -F 1 11 2 6 23 19 -F 1 5 2 7 22 18 -F 1 7 4 6 10 6 -F 1 18 5 2 11 7 -F 1 9 5 6 28 24 -F 1 4 5 8 5 1 -F 1 5 0 11 4 1 -F 1 2 0 12 4 1 -F 1 8 1 6 11 8 -F 1 4 1 11 13 10 -F 1 2 1 12 11 8 -F 1 5 2 11 11 8 -F 1 2 2 12 13 10 -F 1 11 3 1 17 14 -F 1 5 3 6 19 16 -F 1 3 3 12 8 5 -F 1 7 4 6 10 7 -F 1 4 4 11 8 5 -F 1 2 4 12 6 3 -F 1 20 5 1 23 20 -F 1 10 5 6 28 25 -F 1 5 5 7 25 22 -F 1 3 5 8 5 2 -F 1 1 5 12 17 14 -F 1 9 11 0 4 1 -F 1 2 11 12 7 4 -F 1 9 12 0 4 1 -F 1 4 12 11 7 4 -F 1 3 0 12 4 2 -F 1 6 1 7 6 4 -F 1 3 1 12 11 9 -F 1 12 2 1 22 20 -F 1 6 2 7 22 20 -F 1 3 2 12 13 11 -F 1 11 3 1 17 15 -F 1 6 3 7 18 16 -F 1 3 3 12 8 6 -F 1 8 4 7 6 4 -F 1 4 4 12 6 4 -F 1 22 5 1 23 21 -F 1 11 5 7 25 23 -F 1 6 5 8 5 3 -F 1 3 5 12 17 15 -F 1 1 6 7 5 3 -F 1 6 11 7 14 12 -F 1 3 11 12 7 5 -F 1 12 0 1 11 10 -F 1 6 0 7 12 11 -F 1 3 0 11 4 3 -F 1 1 0 12 4 3 -F 1 7 1 7 6 5 -F 1 4 2 1 22 21 -F 1 16 3 1 17 16 -F 1 8 3 7 18 17 -F 1 7 4 1 6 5 -F 1 18 5 1 23 22 -F 1 9 5 7 25 24 -F 1 4 5 8 5 4 -F 1 6 6 1 11 10 -F 1 3 6 7 5 4 -F 1 5 11 1 13 12 -F 1 7 12 1 11 10 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 2 0 -player2 > engine: 0 1 24 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 2 0 -player2 > engine: 0 4 12 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 1 0 0.1740544248372269 -player2 > engine: 0 7 6 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 3 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 2 0 -player2 > engine: 1 1 14 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 2 0 -player2 > engine: 1 4 7 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 2 0 -player2 > engine: 2 1 4 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 2 0 -player2 > engine: 2 4 2 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 2 0 -player2 > engine: 3 1 26 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 2 0 -player2 > engine: 3 4 13 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 1 0 0.11566425403838958 -player2 > engine: 3 7 6 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 2 0 -player2 > engine: 4 1 13 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 2 0 -player2 > engine: 4 4 7 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 2 0 -player2 > engine: 5 1 3 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 2 0 -player2 > engine: 5 4 1 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0.24325391264188054 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 1 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 2 0 -player2 > engine: 6 1 2 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 2 0 -player2 > engine: 6 4 1 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 1.301084708495155 -player2 > engine: 6 7 1 -player2 > engine: comparing 6 and 8, gives 0 0 0.24325389952200152 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 2 0 -player2 > engine: 11 1 5 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 2 0 -player2 > engine: 11 4 3 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 2 0 -player2 > engine: 12 1 6 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 2 0 -player2 > engine: 12 4 3 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 34 3 -P 9.319567 21.808874 2 27 5 -P 14.288424 0.622569 2 28 5 -P 11.865493 5.273785 2 12 3 -P 11.742498 17.157658 2 17 3 -P 4.254093 0.000000 2 18 1 -P 19.353899 22.431443 2 8 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 57 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 13 5 -P 14.743177 12.694819 2 11 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 103 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 1 5 23 2 -F 2 7 1 5 23 4 -F 2 3 2 1 22 4 -F 1 4 6 8 25 8 -F 2 14 2 1 22 5 -F 2 7 1 5 23 7 -F 2 17 2 1 22 6 -F 2 6 1 5 23 8 -F 2 8 2 6 23 8 -F 2 6 3 6 19 4 -F 2 9 4 5 19 4 -F 2 6 1 5 23 9 -F 2 5 2 6 23 9 -F 2 5 3 6 19 5 -F 2 20 4 5 19 5 -F 2 5 11 6 17 3 -F 2 8 12 5 17 3 -F 2 15 0 5 14 1 -F 2 7 0 6 14 1 -F 2 11 1 5 23 10 -F 2 6 2 6 23 10 -F 2 5 3 6 19 6 -F 2 9 4 5 19 6 -F 2 8 12 5 17 4 -F 2 8 0 6 14 2 -F 2 10 2 6 23 11 -F 2 5 2 7 22 10 -F 2 1 5 0 14 2 -F 2 6 0 6 14 3 -F 2 11 1 2 22 11 -F 2 8 2 6 23 12 -F 2 5 3 6 19 8 -F 2 8 4 2 17 6 -F 2 6 12 2 13 2 -F 2 3 0 2 11 1 -F 2 5 1 2 22 12 -F 2 3 1 3 17 7 -F 2 13 4 2 17 7 -F 2 6 4 3 12 2 -F 2 4 11 2 11 1 -F 2 3 12 2 13 3 -F 2 12 1 2 22 13 -F 2 6 1 3 17 8 -F 2 17 4 2 17 8 -F 2 9 4 3 12 3 -F 2 10 5 3 10 1 -F 2 16 1 3 17 9 -F 2 12 4 3 12 4 -F 2 5 5 6 28 20 -F 2 10 0 6 14 7 -F 2 5 0 7 12 5 -F 2 8 1 6 11 4 -F 2 7 2 6 23 16 -F 2 6 3 6 19 12 -F 2 8 4 6 10 3 -F 2 8 11 6 17 10 -F 2 10 12 6 11 4 -F 2 11 0 6 14 8 -F 2 5 0 7 12 6 -F 2 6 1 0 11 5 -F 2 6 2 0 11 5 -F 2 13 5 0 14 8 -F 2 6 5 6 28 22 -F 2 13 0 6 14 9 -F 2 7 0 7 12 7 -F 2 7 1 6 11 6 -F 2 11 2 6 23 18 -F 2 5 2 7 22 17 -F 2 7 4 6 10 5 -F 2 18 5 2 11 6 -F 2 9 5 6 28 23 -F 2 8 1 6 11 7 -F 2 4 1 11 13 9 -F 2 2 1 12 11 7 -F 2 5 2 11 11 7 -F 2 2 2 12 13 9 -F 2 11 3 1 17 13 -F 2 5 3 6 19 15 -F 2 3 3 12 8 4 -F 2 7 4 6 10 6 -F 2 4 4 11 8 4 -F 2 2 4 12 6 2 -F 2 20 5 1 23 19 -F 2 10 5 6 28 24 -F 2 5 5 7 25 21 -F 2 3 5 8 5 1 -F 2 1 5 12 17 13 -F 2 2 11 12 7 3 -F 2 4 12 11 7 3 -F 2 3 0 12 4 1 -F 2 6 1 7 6 3 -F 2 3 1 12 11 8 -F 2 12 2 1 22 19 -F 2 6 2 7 22 19 -F 2 3 2 12 13 10 -F 2 11 3 1 17 14 -F 2 6 3 7 18 15 -F 2 3 3 12 8 5 -F 2 8 4 7 6 3 -F 2 4 4 12 6 3 -F 2 22 5 1 23 20 -F 2 11 5 7 25 22 -F 2 6 5 8 5 2 -F 2 3 5 12 17 14 -F 2 1 6 7 5 2 -F 2 6 11 7 14 11 -F 2 3 11 12 7 4 -F 2 12 0 1 11 9 -F 2 6 0 7 12 10 -F 2 3 0 11 4 2 -F 2 1 0 12 4 2 -F 2 7 1 7 6 4 -F 2 4 2 1 22 20 -F 2 16 3 1 17 15 -F 2 8 3 7 18 16 -F 2 7 4 1 6 4 -F 2 18 5 1 23 21 -F 2 9 5 7 25 23 -F 2 4 5 8 5 3 -F 2 6 6 1 11 9 -F 2 3 6 7 5 3 -F 2 5 11 1 13 11 -F 2 7 12 1 11 9 -F 2 24 0 1 11 10 -F 2 12 0 4 6 5 -F 2 6 0 7 12 11 -F 2 3 0 12 4 3 -F 2 7 1 4 6 5 -F 2 4 2 1 22 21 -F 2 2 2 4 17 16 -F 2 26 3 1 17 16 -F 2 13 3 4 12 11 -F 2 6 3 7 18 17 -F 2 13 4 1 6 5 -F 2 3 5 1 23 22 -F 2 1 5 4 19 18 -F 2 1 5 8 5 4 -F 2 2 6 1 11 10 -F 2 1 6 4 10 9 -F 2 1 6 7 5 4 -F 2 5 11 1 13 12 -F 2 3 11 4 8 7 -F 2 6 12 1 11 10 -F 2 3 12 4 6 5 -go - -engine > player2: P 11.803996 11.215721 1 34 3 -P 9.319567 21.808874 1 27 5 -P 14.288424 0.622569 1 28 5 -P 11.865493 5.273785 1 12 3 -P 11.742498 17.157658 1 17 3 -P 4.254093 0.000000 1 18 1 -P 19.353899 22.431443 1 8 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 57 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 13 5 -P 14.743177 12.694819 1 11 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 103 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 1 5 23 2 -F 1 7 1 5 23 4 -F 1 3 2 1 22 4 -F 2 4 6 8 25 8 -F 1 14 2 1 22 5 -F 1 7 1 5 23 7 -F 1 17 2 1 22 6 -F 1 6 1 5 23 8 -F 1 8 2 6 23 8 -F 1 6 3 6 19 4 -F 1 9 4 5 19 4 -F 1 6 1 5 23 9 -F 1 5 2 6 23 9 -F 1 5 3 6 19 5 -F 1 20 4 5 19 5 -F 1 5 11 6 17 3 -F 1 8 12 5 17 3 -F 1 15 0 5 14 1 -F 1 7 0 6 14 1 -F 1 11 1 5 23 10 -F 1 6 2 6 23 10 -F 1 5 3 6 19 6 -F 1 9 4 5 19 6 -F 1 8 12 5 17 4 -F 1 8 0 6 14 2 -F 1 10 2 6 23 11 -F 1 5 2 7 22 10 -F 1 1 5 0 14 2 -F 1 6 0 6 14 3 -F 1 11 1 2 22 11 -F 1 8 2 6 23 12 -F 1 5 3 6 19 8 -F 1 8 4 2 17 6 -F 1 6 12 2 13 2 -F 1 3 0 2 11 1 -F 1 5 1 2 22 12 -F 1 3 1 3 17 7 -F 1 13 4 2 17 7 -F 1 6 4 3 12 2 -F 1 4 11 2 11 1 -F 1 3 12 2 13 3 -F 1 12 1 2 22 13 -F 1 6 1 3 17 8 -F 1 17 4 2 17 8 -F 1 9 4 3 12 3 -F 1 10 5 3 10 1 -F 1 16 1 3 17 9 -F 1 12 4 3 12 4 -F 1 5 5 6 28 20 -F 1 10 0 6 14 7 -F 1 5 0 7 12 5 -F 1 8 1 6 11 4 -F 1 7 2 6 23 16 -F 1 6 3 6 19 12 -F 1 8 4 6 10 3 -F 1 8 11 6 17 10 -F 1 10 12 6 11 4 -F 1 11 0 6 14 8 -F 1 5 0 7 12 6 -F 1 6 1 0 11 5 -F 1 6 2 0 11 5 -F 1 13 5 0 14 8 -F 1 6 5 6 28 22 -F 1 13 0 6 14 9 -F 1 7 0 7 12 7 -F 1 7 1 6 11 6 -F 1 11 2 6 23 18 -F 1 5 2 7 22 17 -F 1 7 4 6 10 5 -F 1 18 5 2 11 6 -F 1 9 5 6 28 23 -F 1 8 1 6 11 7 -F 1 4 1 11 13 9 -F 1 2 1 12 11 7 -F 1 5 2 11 11 7 -F 1 2 2 12 13 9 -F 1 11 3 1 17 13 -F 1 5 3 6 19 15 -F 1 3 3 12 8 4 -F 1 7 4 6 10 6 -F 1 4 4 11 8 4 -F 1 2 4 12 6 2 -F 1 20 5 1 23 19 -F 1 10 5 6 28 24 -F 1 5 5 7 25 21 -F 1 3 5 8 5 1 -F 1 1 5 12 17 13 -F 1 2 11 12 7 3 -F 1 4 12 11 7 3 -F 1 3 0 12 4 1 -F 1 6 1 7 6 3 -F 1 3 1 12 11 8 -F 1 12 2 1 22 19 -F 1 6 2 7 22 19 -F 1 3 2 12 13 10 -F 1 11 3 1 17 14 -F 1 6 3 7 18 15 -F 1 3 3 12 8 5 -F 1 8 4 7 6 3 -F 1 4 4 12 6 3 -F 1 22 5 1 23 20 -F 1 11 5 7 25 22 -F 1 6 5 8 5 2 -F 1 3 5 12 17 14 -F 1 1 6 7 5 2 -F 1 6 11 7 14 11 -F 1 3 11 12 7 4 -F 1 12 0 1 11 9 -F 1 6 0 7 12 10 -F 1 3 0 11 4 2 -F 1 1 0 12 4 2 -F 1 7 1 7 6 4 -F 1 4 2 1 22 20 -F 1 16 3 1 17 15 -F 1 8 3 7 18 16 -F 1 7 4 1 6 4 -F 1 18 5 1 23 21 -F 1 9 5 7 25 23 -F 1 4 5 8 5 3 -F 1 6 6 1 11 9 -F 1 3 6 7 5 3 -F 1 5 11 1 13 11 -F 1 7 12 1 11 9 -F 1 24 0 1 11 10 -F 1 12 0 4 6 5 -F 1 6 0 7 12 11 -F 1 3 0 12 4 3 -F 1 7 1 4 6 5 -F 1 4 2 1 22 21 -F 1 2 2 4 17 16 -F 1 26 3 1 17 16 -F 1 13 3 4 12 11 -F 1 6 3 7 18 17 -F 1 13 4 1 6 5 -F 1 3 5 1 23 22 -F 1 1 5 4 19 18 -F 1 1 5 8 5 4 -F 1 2 6 1 11 10 -F 1 1 6 4 10 9 -F 1 1 6 7 5 4 -F 1 5 11 1 13 12 -F 1 3 11 4 8 7 -F 1 6 12 1 11 10 -F 1 3 12 4 6 5 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 17 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 2 0 -player2 > engine: 0 4 8 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 4 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 2 0 -player2 > engine: 1 0 13 -player2 > engine: comparing 1 and 1, gives 0 2 0 -player2 > engine: 1 1 7 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 2 0 -player2 > engine: 1 4 3 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 2 0 -player2 > engine: 2 0 14 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 2 0 -player2 > engine: 2 4 7 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 2 0 -player2 > engine: 3 0 6 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 2 0 -player2 > engine: 3 4 3 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 2 0 -player2 > engine: 4 0 8 -player2 > engine: comparing 4 and 1, gives 0 2 0 -player2 > engine: 4 1 4 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 2 0 -player2 > engine: 4 4 2 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 2 0 -player2 > engine: 5 0 9 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 2 0 -player2 > engine: 5 4 4 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0.24325391264188054 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 2 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 2 0 -player2 > engine: 6 0 4 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 2 0 -player2 > engine: 6 4 2 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 1.301084708495155 -player2 > engine: 6 7 1 -player2 > engine: comparing 6 and 8, gives 0 0 0.24325389952200152 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 6 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 2 0 -player2 > engine: 11 4 3 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 5 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 2 0 -player2 > engine: 12 4 3 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 25 3 -P 9.319567 21.808874 2 16 5 -P 14.288424 0.622569 2 19 5 -P 11.865493 5.273785 2 16 3 -P 11.742498 17.157658 2 8 3 -P 4.254093 0.000000 2 19 1 -P 19.353899 22.431443 2 9 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 54 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 9 5 -P 14.743177 12.694819 2 11 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 106 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 1 5 23 1 -F 2 7 1 5 23 3 -F 2 3 2 1 22 3 -F 1 4 6 8 25 7 -F 2 14 2 1 22 4 -F 2 7 1 5 23 6 -F 2 17 2 1 22 5 -F 2 6 1 5 23 7 -F 2 8 2 6 23 7 -F 2 6 3 6 19 3 -F 2 9 4 5 19 3 -F 2 6 1 5 23 8 -F 2 5 2 6 23 8 -F 2 5 3 6 19 4 -F 2 20 4 5 19 4 -F 2 5 11 6 17 2 -F 2 8 12 5 17 2 -F 2 11 1 5 23 9 -F 2 6 2 6 23 9 -F 2 5 3 6 19 5 -F 2 9 4 5 19 5 -F 2 8 12 5 17 3 -F 2 8 0 6 14 1 -F 2 10 2 6 23 10 -F 2 5 2 7 22 9 -F 2 1 5 0 14 1 -F 2 6 0 6 14 2 -F 2 11 1 2 22 10 -F 2 8 2 6 23 11 -F 2 5 3 6 19 7 -F 2 8 4 2 17 5 -F 2 6 12 2 13 1 -F 2 5 1 2 22 11 -F 2 3 1 3 17 6 -F 2 13 4 2 17 6 -F 2 6 4 3 12 1 -F 2 3 12 2 13 2 -F 2 12 1 2 22 12 -F 2 6 1 3 17 7 -F 2 17 4 2 17 7 -F 2 9 4 3 12 2 -F 2 16 1 3 17 8 -F 2 12 4 3 12 3 -F 2 5 5 6 28 19 -F 2 10 0 6 14 6 -F 2 5 0 7 12 4 -F 2 8 1 6 11 3 -F 2 7 2 6 23 15 -F 2 6 3 6 19 11 -F 2 8 4 6 10 2 -F 2 8 11 6 17 9 -F 2 10 12 6 11 3 -F 2 11 0 6 14 7 -F 2 5 0 7 12 5 -F 2 6 1 0 11 4 -F 2 6 2 0 11 4 -F 2 13 5 0 14 7 -F 2 6 5 6 28 21 -F 2 13 0 6 14 8 -F 2 7 0 7 12 6 -F 2 7 1 6 11 5 -F 2 11 2 6 23 17 -F 2 5 2 7 22 16 -F 2 7 4 6 10 4 -F 2 18 5 2 11 5 -F 2 9 5 6 28 22 -F 2 8 1 6 11 6 -F 2 4 1 11 13 8 -F 2 2 1 12 11 6 -F 2 5 2 11 11 6 -F 2 2 2 12 13 8 -F 2 11 3 1 17 12 -F 2 5 3 6 19 14 -F 2 3 3 12 8 3 -F 2 7 4 6 10 5 -F 2 4 4 11 8 3 -F 2 2 4 12 6 1 -F 2 20 5 1 23 18 -F 2 10 5 6 28 23 -F 2 5 5 7 25 20 -F 2 1 5 12 17 12 -F 2 2 11 12 7 2 -F 2 4 12 11 7 2 -F 2 6 1 7 6 2 -F 2 3 1 12 11 7 -F 2 12 2 1 22 18 -F 2 6 2 7 22 18 -F 2 3 2 12 13 9 -F 2 11 3 1 17 13 -F 2 6 3 7 18 14 -F 2 3 3 12 8 4 -F 2 8 4 7 6 2 -F 2 4 4 12 6 2 -F 2 22 5 1 23 19 -F 2 11 5 7 25 21 -F 2 6 5 8 5 1 -F 2 3 5 12 17 13 -F 2 1 6 7 5 1 -F 2 6 11 7 14 10 -F 2 3 11 12 7 3 -F 2 12 0 1 11 8 -F 2 6 0 7 12 9 -F 2 3 0 11 4 1 -F 2 1 0 12 4 1 -F 2 7 1 7 6 3 -F 2 4 2 1 22 19 -F 2 16 3 1 17 14 -F 2 8 3 7 18 15 -F 2 7 4 1 6 3 -F 2 18 5 1 23 20 -F 2 9 5 7 25 22 -F 2 4 5 8 5 2 -F 2 6 6 1 11 8 -F 2 3 6 7 5 2 -F 2 5 11 1 13 10 -F 2 7 12 1 11 8 -F 2 24 0 1 11 9 -F 2 12 0 4 6 4 -F 2 6 0 7 12 10 -F 2 3 0 12 4 2 -F 2 7 1 4 6 4 -F 2 4 2 1 22 20 -F 2 2 2 4 17 15 -F 2 26 3 1 17 15 -F 2 13 3 4 12 10 -F 2 6 3 7 18 16 -F 2 13 4 1 6 4 -F 2 3 5 1 23 21 -F 2 1 5 4 19 17 -F 2 1 5 8 5 3 -F 2 2 6 1 11 9 -F 2 1 6 4 10 8 -F 2 1 6 7 5 3 -F 2 5 11 1 13 11 -F 2 3 11 4 8 6 -F 2 6 12 1 11 9 -F 2 3 12 4 6 4 -F 2 8 0 4 6 5 -F 2 4 0 11 4 3 -F 2 13 1 0 11 10 -F 2 3 1 4 6 5 -F 2 14 2 0 11 10 -F 2 7 2 4 17 16 -F 2 6 3 0 6 5 -F 2 3 3 4 12 11 -F 2 8 4 0 6 5 -F 2 4 4 1 6 5 -F 2 9 5 0 14 13 -F 2 4 5 4 19 18 -F 2 2 5 8 5 4 -F 2 4 6 0 14 13 -F 2 2 6 4 10 9 -F 2 1 6 7 5 4 -F 2 6 11 0 4 3 -F 2 3 11 4 8 7 -F 2 5 12 0 4 3 -F 2 3 12 4 6 5 -go - -engine > player2: P 11.803996 11.215721 1 25 3 -P 9.319567 21.808874 1 16 5 -P 14.288424 0.622569 1 19 5 -P 11.865493 5.273785 1 16 3 -P 11.742498 17.157658 1 8 3 -P 4.254093 0.000000 1 19 1 -P 19.353899 22.431443 1 9 1 -P 14.743614 22.324001 0 83 3 -P 8.864377 0.107441 0 54 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 9 5 -P 14.743177 12.694819 1 11 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 106 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 1 5 23 1 -F 1 7 1 5 23 3 -F 1 3 2 1 22 3 -F 2 4 6 8 25 7 -F 1 14 2 1 22 4 -F 1 7 1 5 23 6 -F 1 17 2 1 22 5 -F 1 6 1 5 23 7 -F 1 8 2 6 23 7 -F 1 6 3 6 19 3 -F 1 9 4 5 19 3 -F 1 6 1 5 23 8 -F 1 5 2 6 23 8 -F 1 5 3 6 19 4 -F 1 20 4 5 19 4 -F 1 5 11 6 17 2 -F 1 8 12 5 17 2 -F 1 11 1 5 23 9 -F 1 6 2 6 23 9 -F 1 5 3 6 19 5 -F 1 9 4 5 19 5 -F 1 8 12 5 17 3 -F 1 8 0 6 14 1 -F 1 10 2 6 23 10 -F 1 5 2 7 22 9 -F 1 1 5 0 14 1 -F 1 6 0 6 14 2 -F 1 11 1 2 22 10 -F 1 8 2 6 23 11 -F 1 5 3 6 19 7 -F 1 8 4 2 17 5 -F 1 6 12 2 13 1 -F 1 5 1 2 22 11 -F 1 3 1 3 17 6 -F 1 13 4 2 17 6 -F 1 6 4 3 12 1 -F 1 3 12 2 13 2 -F 1 12 1 2 22 12 -F 1 6 1 3 17 7 -F 1 17 4 2 17 7 -F 1 9 4 3 12 2 -F 1 16 1 3 17 8 -F 1 12 4 3 12 3 -F 1 5 5 6 28 19 -F 1 10 0 6 14 6 -F 1 5 0 7 12 4 -F 1 8 1 6 11 3 -F 1 7 2 6 23 15 -F 1 6 3 6 19 11 -F 1 8 4 6 10 2 -F 1 8 11 6 17 9 -F 1 10 12 6 11 3 -F 1 11 0 6 14 7 -F 1 5 0 7 12 5 -F 1 6 1 0 11 4 -F 1 6 2 0 11 4 -F 1 13 5 0 14 7 -F 1 6 5 6 28 21 -F 1 13 0 6 14 8 -F 1 7 0 7 12 6 -F 1 7 1 6 11 5 -F 1 11 2 6 23 17 -F 1 5 2 7 22 16 -F 1 7 4 6 10 4 -F 1 18 5 2 11 5 -F 1 9 5 6 28 22 -F 1 8 1 6 11 6 -F 1 4 1 11 13 8 -F 1 2 1 12 11 6 -F 1 5 2 11 11 6 -F 1 2 2 12 13 8 -F 1 11 3 1 17 12 -F 1 5 3 6 19 14 -F 1 3 3 12 8 3 -F 1 7 4 6 10 5 -F 1 4 4 11 8 3 -F 1 2 4 12 6 1 -F 1 20 5 1 23 18 -F 1 10 5 6 28 23 -F 1 5 5 7 25 20 -F 1 1 5 12 17 12 -F 1 2 11 12 7 2 -F 1 4 12 11 7 2 -F 1 6 1 7 6 2 -F 1 3 1 12 11 7 -F 1 12 2 1 22 18 -F 1 6 2 7 22 18 -F 1 3 2 12 13 9 -F 1 11 3 1 17 13 -F 1 6 3 7 18 14 -F 1 3 3 12 8 4 -F 1 8 4 7 6 2 -F 1 4 4 12 6 2 -F 1 22 5 1 23 19 -F 1 11 5 7 25 21 -F 1 6 5 8 5 1 -F 1 3 5 12 17 13 -F 1 1 6 7 5 1 -F 1 6 11 7 14 10 -F 1 3 11 12 7 3 -F 1 12 0 1 11 8 -F 1 6 0 7 12 9 -F 1 3 0 11 4 1 -F 1 1 0 12 4 1 -F 1 7 1 7 6 3 -F 1 4 2 1 22 19 -F 1 16 3 1 17 14 -F 1 8 3 7 18 15 -F 1 7 4 1 6 3 -F 1 18 5 1 23 20 -F 1 9 5 7 25 22 -F 1 4 5 8 5 2 -F 1 6 6 1 11 8 -F 1 3 6 7 5 2 -F 1 5 11 1 13 10 -F 1 7 12 1 11 8 -F 1 24 0 1 11 9 -F 1 12 0 4 6 4 -F 1 6 0 7 12 10 -F 1 3 0 12 4 2 -F 1 7 1 4 6 4 -F 1 4 2 1 22 20 -F 1 2 2 4 17 15 -F 1 26 3 1 17 15 -F 1 13 3 4 12 10 -F 1 6 3 7 18 16 -F 1 13 4 1 6 4 -F 1 3 5 1 23 21 -F 1 1 5 4 19 17 -F 1 1 5 8 5 3 -F 1 2 6 1 11 9 -F 1 1 6 4 10 8 -F 1 1 6 7 5 3 -F 1 5 11 1 13 11 -F 1 3 11 4 8 6 -F 1 6 12 1 11 9 -F 1 3 12 4 6 4 -F 1 8 0 4 6 5 -F 1 4 0 11 4 3 -F 1 13 1 0 11 10 -F 1 3 1 4 6 5 -F 1 14 2 0 11 10 -F 1 7 2 4 17 16 -F 1 6 3 0 6 5 -F 1 3 3 4 12 11 -F 1 8 4 0 6 5 -F 1 4 4 1 6 5 -F 1 9 5 0 14 13 -F 1 4 5 4 19 18 -F 1 2 5 8 5 4 -F 1 4 6 0 14 13 -F 1 2 6 4 10 9 -F 1 1 6 7 5 4 -F 1 6 11 0 4 3 -F 1 3 11 4 8 7 -F 1 5 12 0 4 3 -F 1 3 12 4 6 5 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 12 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 2 0 -player2 > engine: 0 4 6 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 2 0 -player2 > engine: 1 4 8 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 1 0 0.055283730301199124 -player2 > engine: 2 7 9 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 1 0 0.11566425403838958 -player2 > engine: 3 7 8 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 2 0 -player2 > engine: 4 4 4 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 1 0 0.24325391264188054 -player2 > engine: 5 7 9 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 5 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 1.301084708495155 -player2 > engine: 6 7 4 -player2 > engine: comparing 6 and 8, gives 0 0 0.24325389952200152 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 4 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 5 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 2 0 -player2 > engine: 12 4 3 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 11 3 -P 9.319567 21.808874 2 13 5 -P 14.288424 0.622569 2 21 5 -P 11.865493 5.273785 2 17 3 -P 11.742498 17.157658 2 11 3 -P 4.254093 0.000000 2 12 1 -P 19.353899 22.431443 2 14 1 -P 14.743614 22.324001 0 82 3 -P 8.864377 0.107441 0 48 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 13 5 -P 14.743177 12.694819 2 11 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 109 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 7 1 5 23 2 -F 2 3 2 1 22 2 -F 1 4 6 8 25 6 -F 2 14 2 1 22 3 -F 2 7 1 5 23 5 -F 2 17 2 1 22 4 -F 2 6 1 5 23 6 -F 2 8 2 6 23 6 -F 2 6 3 6 19 2 -F 2 9 4 5 19 2 -F 2 6 1 5 23 7 -F 2 5 2 6 23 7 -F 2 5 3 6 19 3 -F 2 20 4 5 19 3 -F 2 5 11 6 17 1 -F 2 8 12 5 17 1 -F 2 11 1 5 23 8 -F 2 6 2 6 23 8 -F 2 5 3 6 19 4 -F 2 9 4 5 19 4 -F 2 8 12 5 17 2 -F 2 10 2 6 23 9 -F 2 5 2 7 22 8 -F 2 6 0 6 14 1 -F 2 11 1 2 22 9 -F 2 8 2 6 23 10 -F 2 5 3 6 19 6 -F 2 8 4 2 17 4 -F 2 5 1 2 22 10 -F 2 3 1 3 17 5 -F 2 13 4 2 17 5 -F 2 3 12 2 13 1 -F 2 12 1 2 22 11 -F 2 6 1 3 17 6 -F 2 17 4 2 17 6 -F 2 9 4 3 12 1 -F 2 16 1 3 17 7 -F 2 12 4 3 12 2 -F 2 5 5 6 28 18 -F 2 10 0 6 14 5 -F 2 5 0 7 12 3 -F 2 8 1 6 11 2 -F 2 7 2 6 23 14 -F 2 6 3 6 19 10 -F 2 8 4 6 10 1 -F 2 8 11 6 17 8 -F 2 10 12 6 11 2 -F 2 11 0 6 14 6 -F 2 5 0 7 12 4 -F 2 6 1 0 11 3 -F 2 6 2 0 11 3 -F 2 13 5 0 14 6 -F 2 6 5 6 28 20 -F 2 13 0 6 14 7 -F 2 7 0 7 12 5 -F 2 7 1 6 11 4 -F 2 11 2 6 23 16 -F 2 5 2 7 22 15 -F 2 7 4 6 10 3 -F 2 18 5 2 11 4 -F 2 9 5 6 28 21 -F 2 8 1 6 11 5 -F 2 4 1 11 13 7 -F 2 2 1 12 11 5 -F 2 5 2 11 11 5 -F 2 2 2 12 13 7 -F 2 11 3 1 17 11 -F 2 5 3 6 19 13 -F 2 3 3 12 8 2 -F 2 7 4 6 10 4 -F 2 4 4 11 8 2 -F 2 20 5 1 23 17 -F 2 10 5 6 28 22 -F 2 5 5 7 25 19 -F 2 1 5 12 17 11 -F 2 2 11 12 7 1 -F 2 4 12 11 7 1 -F 2 6 1 7 6 1 -F 2 3 1 12 11 6 -F 2 12 2 1 22 17 -F 2 6 2 7 22 17 -F 2 3 2 12 13 8 -F 2 11 3 1 17 12 -F 2 6 3 7 18 13 -F 2 3 3 12 8 3 -F 2 8 4 7 6 1 -F 2 4 4 12 6 1 -F 2 22 5 1 23 18 -F 2 11 5 7 25 20 -F 2 3 5 12 17 12 -F 2 6 11 7 14 9 -F 2 3 11 12 7 2 -F 2 12 0 1 11 7 -F 2 6 0 7 12 8 -F 2 7 1 7 6 2 -F 2 4 2 1 22 18 -F 2 16 3 1 17 13 -F 2 8 3 7 18 14 -F 2 7 4 1 6 2 -F 2 18 5 1 23 19 -F 2 9 5 7 25 21 -F 2 4 5 8 5 1 -F 2 6 6 1 11 7 -F 2 3 6 7 5 1 -F 2 5 11 1 13 9 -F 2 7 12 1 11 7 -F 2 24 0 1 11 8 -F 2 12 0 4 6 3 -F 2 6 0 7 12 9 -F 2 3 0 12 4 1 -F 2 7 1 4 6 3 -F 2 4 2 1 22 19 -F 2 2 2 4 17 14 -F 2 26 3 1 17 14 -F 2 13 3 4 12 9 -F 2 6 3 7 18 15 -F 2 13 4 1 6 3 -F 2 3 5 1 23 20 -F 2 1 5 4 19 16 -F 2 1 5 8 5 2 -F 2 2 6 1 11 8 -F 2 1 6 4 10 7 -F 2 1 6 7 5 2 -F 2 5 11 1 13 10 -F 2 3 11 4 8 5 -F 2 6 12 1 11 8 -F 2 3 12 4 6 3 -F 2 8 0 4 6 4 -F 2 4 0 11 4 2 -F 2 13 1 0 11 9 -F 2 3 1 4 6 4 -F 2 14 2 0 11 9 -F 2 7 2 4 17 15 -F 2 6 3 0 6 4 -F 2 3 3 4 12 10 -F 2 8 4 0 6 4 -F 2 4 4 1 6 4 -F 2 9 5 0 14 12 -F 2 4 5 4 19 17 -F 2 2 5 8 5 3 -F 2 4 6 0 14 12 -F 2 2 6 4 10 8 -F 2 1 6 7 5 3 -F 2 6 11 0 4 2 -F 2 3 11 4 8 6 -F 2 5 12 0 4 2 -F 2 3 12 4 6 4 -F 2 12 0 2 11 10 -F 2 6 0 4 6 5 -F 2 8 1 4 6 5 -F 2 9 2 7 22 21 -F 2 8 3 7 18 17 -F 2 9 5 7 25 24 -F 2 5 5 8 5 4 -F 2 4 6 7 5 4 -F 2 4 11 0 4 3 -F 2 5 12 0 4 3 -F 2 3 12 4 6 5 -go - -engine > player2: P 11.803996 11.215721 1 11 3 -P 9.319567 21.808874 1 13 5 -P 14.288424 0.622569 1 21 5 -P 11.865493 5.273785 1 17 3 -P 11.742498 17.157658 1 11 3 -P 4.254093 0.000000 1 12 1 -P 19.353899 22.431443 1 14 1 -P 14.743614 22.324001 0 82 3 -P 8.864377 0.107441 0 48 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 13 5 -P 14.743177 12.694819 1 11 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 109 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 7 1 5 23 2 -F 1 3 2 1 22 2 -F 2 4 6 8 25 6 -F 1 14 2 1 22 3 -F 1 7 1 5 23 5 -F 1 17 2 1 22 4 -F 1 6 1 5 23 6 -F 1 8 2 6 23 6 -F 1 6 3 6 19 2 -F 1 9 4 5 19 2 -F 1 6 1 5 23 7 -F 1 5 2 6 23 7 -F 1 5 3 6 19 3 -F 1 20 4 5 19 3 -F 1 5 11 6 17 1 -F 1 8 12 5 17 1 -F 1 11 1 5 23 8 -F 1 6 2 6 23 8 -F 1 5 3 6 19 4 -F 1 9 4 5 19 4 -F 1 8 12 5 17 2 -F 1 10 2 6 23 9 -F 1 5 2 7 22 8 -F 1 6 0 6 14 1 -F 1 11 1 2 22 9 -F 1 8 2 6 23 10 -F 1 5 3 6 19 6 -F 1 8 4 2 17 4 -F 1 5 1 2 22 10 -F 1 3 1 3 17 5 -F 1 13 4 2 17 5 -F 1 3 12 2 13 1 -F 1 12 1 2 22 11 -F 1 6 1 3 17 6 -F 1 17 4 2 17 6 -F 1 9 4 3 12 1 -F 1 16 1 3 17 7 -F 1 12 4 3 12 2 -F 1 5 5 6 28 18 -F 1 10 0 6 14 5 -F 1 5 0 7 12 3 -F 1 8 1 6 11 2 -F 1 7 2 6 23 14 -F 1 6 3 6 19 10 -F 1 8 4 6 10 1 -F 1 8 11 6 17 8 -F 1 10 12 6 11 2 -F 1 11 0 6 14 6 -F 1 5 0 7 12 4 -F 1 6 1 0 11 3 -F 1 6 2 0 11 3 -F 1 13 5 0 14 6 -F 1 6 5 6 28 20 -F 1 13 0 6 14 7 -F 1 7 0 7 12 5 -F 1 7 1 6 11 4 -F 1 11 2 6 23 16 -F 1 5 2 7 22 15 -F 1 7 4 6 10 3 -F 1 18 5 2 11 4 -F 1 9 5 6 28 21 -F 1 8 1 6 11 5 -F 1 4 1 11 13 7 -F 1 2 1 12 11 5 -F 1 5 2 11 11 5 -F 1 2 2 12 13 7 -F 1 11 3 1 17 11 -F 1 5 3 6 19 13 -F 1 3 3 12 8 2 -F 1 7 4 6 10 4 -F 1 4 4 11 8 2 -F 1 20 5 1 23 17 -F 1 10 5 6 28 22 -F 1 5 5 7 25 19 -F 1 1 5 12 17 11 -F 1 2 11 12 7 1 -F 1 4 12 11 7 1 -F 1 6 1 7 6 1 -F 1 3 1 12 11 6 -F 1 12 2 1 22 17 -F 1 6 2 7 22 17 -F 1 3 2 12 13 8 -F 1 11 3 1 17 12 -F 1 6 3 7 18 13 -F 1 3 3 12 8 3 -F 1 8 4 7 6 1 -F 1 4 4 12 6 1 -F 1 22 5 1 23 18 -F 1 11 5 7 25 20 -F 1 3 5 12 17 12 -F 1 6 11 7 14 9 -F 1 3 11 12 7 2 -F 1 12 0 1 11 7 -F 1 6 0 7 12 8 -F 1 7 1 7 6 2 -F 1 4 2 1 22 18 -F 1 16 3 1 17 13 -F 1 8 3 7 18 14 -F 1 7 4 1 6 2 -F 1 18 5 1 23 19 -F 1 9 5 7 25 21 -F 1 4 5 8 5 1 -F 1 6 6 1 11 7 -F 1 3 6 7 5 1 -F 1 5 11 1 13 9 -F 1 7 12 1 11 7 -F 1 24 0 1 11 8 -F 1 12 0 4 6 3 -F 1 6 0 7 12 9 -F 1 3 0 12 4 1 -F 1 7 1 4 6 3 -F 1 4 2 1 22 19 -F 1 2 2 4 17 14 -F 1 26 3 1 17 14 -F 1 13 3 4 12 9 -F 1 6 3 7 18 15 -F 1 13 4 1 6 3 -F 1 3 5 1 23 20 -F 1 1 5 4 19 16 -F 1 1 5 8 5 2 -F 1 2 6 1 11 8 -F 1 1 6 4 10 7 -F 1 1 6 7 5 2 -F 1 5 11 1 13 10 -F 1 3 11 4 8 5 -F 1 6 12 1 11 8 -F 1 3 12 4 6 3 -F 1 8 0 4 6 4 -F 1 4 0 11 4 2 -F 1 13 1 0 11 9 -F 1 3 1 4 6 4 -F 1 14 2 0 11 9 -F 1 7 2 4 17 15 -F 1 6 3 0 6 4 -F 1 3 3 4 12 10 -F 1 8 4 0 6 4 -F 1 4 4 1 6 4 -F 1 9 5 0 14 12 -F 1 4 5 4 19 17 -F 1 2 5 8 5 3 -F 1 4 6 0 14 12 -F 1 2 6 4 10 8 -F 1 1 6 7 5 3 -F 1 6 11 0 4 2 -F 1 3 11 4 8 6 -F 1 5 12 0 4 2 -F 1 3 12 4 6 4 -F 1 12 0 2 11 10 -F 1 6 0 4 6 5 -F 1 8 1 4 6 5 -F 1 9 2 7 22 21 -F 1 8 3 7 18 17 -F 1 9 5 7 25 24 -F 1 5 5 8 5 4 -F 1 4 6 7 5 4 -F 1 4 11 0 4 3 -F 1 5 12 0 4 3 -F 1 3 12 4 6 5 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 1 0 0.1740544248372269 -player2 > engine: 0 7 5 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 1 0 0.22024599787140162 -player2 > engine: 1 7 6 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 10 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 1 0 0.055283730301199124 -player2 > engine: 2 7 5 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 2 0 -player2 > engine: 3 2 8 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0.11566425403838958 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 1 0 0.3347412907627885 -player2 > engine: 4 7 5 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 1 0 0.24325391264188054 -player2 > engine: 5 7 6 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 3 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 1 0 1.301084708495155 -player2 > engine: 6 7 7 -player2 > engine: comparing 6 and 8, gives 0 0 0.24325389952200152 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 6 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 5 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 9 3 -P 9.319567 21.808874 2 12 5 -P 14.288424 0.622569 2 24 5 -P 11.865493 5.273785 2 21 3 -P 11.742498 17.157658 2 9 3 -P 4.254093 0.000000 2 12 1 -P 19.353899 22.431443 2 27 1 -P 14.743614 22.324001 0 65 3 -P 8.864377 0.107441 0 44 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 16 5 -P 14.743177 12.694819 2 20 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 112 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 7 1 5 23 1 -F 2 3 2 1 22 1 -F 1 4 6 8 25 5 -F 2 14 2 1 22 2 -F 2 7 1 5 23 4 -F 2 17 2 1 22 3 -F 2 6 1 5 23 5 -F 2 8 2 6 23 5 -F 2 6 3 6 19 1 -F 2 9 4 5 19 1 -F 2 6 1 5 23 6 -F 2 5 2 6 23 6 -F 2 5 3 6 19 2 -F 2 20 4 5 19 2 -F 2 11 1 5 23 7 -F 2 6 2 6 23 7 -F 2 5 3 6 19 3 -F 2 9 4 5 19 3 -F 2 8 12 5 17 1 -F 2 10 2 6 23 8 -F 2 5 2 7 22 7 -F 2 11 1 2 22 8 -F 2 8 2 6 23 9 -F 2 5 3 6 19 5 -F 2 8 4 2 17 3 -F 2 5 1 2 22 9 -F 2 3 1 3 17 4 -F 2 13 4 2 17 4 -F 2 12 1 2 22 10 -F 2 6 1 3 17 5 -F 2 17 4 2 17 5 -F 2 16 1 3 17 6 -F 2 12 4 3 12 1 -F 2 5 5 6 28 17 -F 2 10 0 6 14 4 -F 2 5 0 7 12 2 -F 2 8 1 6 11 1 -F 2 7 2 6 23 13 -F 2 6 3 6 19 9 -F 2 8 11 6 17 7 -F 2 10 12 6 11 1 -F 2 11 0 6 14 5 -F 2 5 0 7 12 3 -F 2 6 1 0 11 2 -F 2 6 2 0 11 2 -F 2 13 5 0 14 5 -F 2 6 5 6 28 19 -F 2 13 0 6 14 6 -F 2 7 0 7 12 4 -F 2 7 1 6 11 3 -F 2 11 2 6 23 15 -F 2 5 2 7 22 14 -F 2 7 4 6 10 2 -F 2 18 5 2 11 3 -F 2 9 5 6 28 20 -F 2 8 1 6 11 4 -F 2 4 1 11 13 6 -F 2 2 1 12 11 4 -F 2 5 2 11 11 4 -F 2 2 2 12 13 6 -F 2 11 3 1 17 10 -F 2 5 3 6 19 12 -F 2 3 3 12 8 1 -F 2 7 4 6 10 3 -F 2 4 4 11 8 1 -F 2 20 5 1 23 16 -F 2 10 5 6 28 21 -F 2 5 5 7 25 18 -F 2 1 5 12 17 10 -F 2 3 1 12 11 5 -F 2 12 2 1 22 16 -F 2 6 2 7 22 16 -F 2 3 2 12 13 7 -F 2 11 3 1 17 11 -F 2 6 3 7 18 12 -F 2 3 3 12 8 2 -F 2 22 5 1 23 17 -F 2 11 5 7 25 19 -F 2 3 5 12 17 11 -F 2 6 11 7 14 8 -F 2 3 11 12 7 1 -F 2 12 0 1 11 6 -F 2 6 0 7 12 7 -F 2 7 1 7 6 1 -F 2 4 2 1 22 17 -F 2 16 3 1 17 12 -F 2 8 3 7 18 13 -F 2 7 4 1 6 1 -F 2 18 5 1 23 18 -F 2 9 5 7 25 20 -F 2 6 6 1 11 6 -F 2 5 11 1 13 8 -F 2 7 12 1 11 6 -F 2 24 0 1 11 7 -F 2 12 0 4 6 2 -F 2 6 0 7 12 8 -F 2 7 1 4 6 2 -F 2 4 2 1 22 18 -F 2 2 2 4 17 13 -F 2 26 3 1 17 13 -F 2 13 3 4 12 8 -F 2 6 3 7 18 14 -F 2 13 4 1 6 2 -F 2 3 5 1 23 19 -F 2 1 5 4 19 15 -F 2 1 5 8 5 1 -F 2 2 6 1 11 7 -F 2 1 6 4 10 6 -F 2 1 6 7 5 1 -F 2 5 11 1 13 9 -F 2 3 11 4 8 4 -F 2 6 12 1 11 7 -F 2 3 12 4 6 2 -F 2 8 0 4 6 3 -F 2 4 0 11 4 1 -F 2 13 1 0 11 8 -F 2 3 1 4 6 3 -F 2 14 2 0 11 8 -F 2 7 2 4 17 14 -F 2 6 3 0 6 3 -F 2 3 3 4 12 9 -F 2 8 4 0 6 3 -F 2 4 4 1 6 3 -F 2 9 5 0 14 11 -F 2 4 5 4 19 16 -F 2 2 5 8 5 2 -F 2 4 6 0 14 11 -F 2 2 6 4 10 7 -F 2 1 6 7 5 2 -F 2 6 11 0 4 1 -F 2 3 11 4 8 5 -F 2 5 12 0 4 1 -F 2 3 12 4 6 3 -F 2 12 0 2 11 9 -F 2 6 0 4 6 4 -F 2 8 1 4 6 4 -F 2 9 2 7 22 20 -F 2 8 3 7 18 16 -F 2 9 5 7 25 23 -F 2 5 5 8 5 3 -F 2 4 6 7 5 3 -F 2 4 11 0 4 2 -F 2 5 12 0 4 2 -F 2 3 12 4 6 4 -F 2 5 0 7 12 11 -F 2 6 1 7 6 5 -F 2 5 2 7 22 21 -F 2 8 3 2 6 5 -F 2 5 4 7 6 5 -F 2 6 5 7 25 24 -F 2 3 5 8 5 4 -F 2 7 6 7 5 4 -F 2 6 11 0 4 3 -F 2 5 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 9 3 -P 9.319567 21.808874 1 12 5 -P 14.288424 0.622569 1 24 5 -P 11.865493 5.273785 1 21 3 -P 11.742498 17.157658 1 9 3 -P 4.254093 0.000000 1 12 1 -P 19.353899 22.431443 1 27 1 -P 14.743614 22.324001 0 65 3 -P 8.864377 0.107441 0 44 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 16 5 -P 14.743177 12.694819 1 20 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 112 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 7 1 5 23 1 -F 1 3 2 1 22 1 -F 2 4 6 8 25 5 -F 1 14 2 1 22 2 -F 1 7 1 5 23 4 -F 1 17 2 1 22 3 -F 1 6 1 5 23 5 -F 1 8 2 6 23 5 -F 1 6 3 6 19 1 -F 1 9 4 5 19 1 -F 1 6 1 5 23 6 -F 1 5 2 6 23 6 -F 1 5 3 6 19 2 -F 1 20 4 5 19 2 -F 1 11 1 5 23 7 -F 1 6 2 6 23 7 -F 1 5 3 6 19 3 -F 1 9 4 5 19 3 -F 1 8 12 5 17 1 -F 1 10 2 6 23 8 -F 1 5 2 7 22 7 -F 1 11 1 2 22 8 -F 1 8 2 6 23 9 -F 1 5 3 6 19 5 -F 1 8 4 2 17 3 -F 1 5 1 2 22 9 -F 1 3 1 3 17 4 -F 1 13 4 2 17 4 -F 1 12 1 2 22 10 -F 1 6 1 3 17 5 -F 1 17 4 2 17 5 -F 1 16 1 3 17 6 -F 1 12 4 3 12 1 -F 1 5 5 6 28 17 -F 1 10 0 6 14 4 -F 1 5 0 7 12 2 -F 1 8 1 6 11 1 -F 1 7 2 6 23 13 -F 1 6 3 6 19 9 -F 1 8 11 6 17 7 -F 1 10 12 6 11 1 -F 1 11 0 6 14 5 -F 1 5 0 7 12 3 -F 1 6 1 0 11 2 -F 1 6 2 0 11 2 -F 1 13 5 0 14 5 -F 1 6 5 6 28 19 -F 1 13 0 6 14 6 -F 1 7 0 7 12 4 -F 1 7 1 6 11 3 -F 1 11 2 6 23 15 -F 1 5 2 7 22 14 -F 1 7 4 6 10 2 -F 1 18 5 2 11 3 -F 1 9 5 6 28 20 -F 1 8 1 6 11 4 -F 1 4 1 11 13 6 -F 1 2 1 12 11 4 -F 1 5 2 11 11 4 -F 1 2 2 12 13 6 -F 1 11 3 1 17 10 -F 1 5 3 6 19 12 -F 1 3 3 12 8 1 -F 1 7 4 6 10 3 -F 1 4 4 11 8 1 -F 1 20 5 1 23 16 -F 1 10 5 6 28 21 -F 1 5 5 7 25 18 -F 1 1 5 12 17 10 -F 1 3 1 12 11 5 -F 1 12 2 1 22 16 -F 1 6 2 7 22 16 -F 1 3 2 12 13 7 -F 1 11 3 1 17 11 -F 1 6 3 7 18 12 -F 1 3 3 12 8 2 -F 1 22 5 1 23 17 -F 1 11 5 7 25 19 -F 1 3 5 12 17 11 -F 1 6 11 7 14 8 -F 1 3 11 12 7 1 -F 1 12 0 1 11 6 -F 1 6 0 7 12 7 -F 1 7 1 7 6 1 -F 1 4 2 1 22 17 -F 1 16 3 1 17 12 -F 1 8 3 7 18 13 -F 1 7 4 1 6 1 -F 1 18 5 1 23 18 -F 1 9 5 7 25 20 -F 1 6 6 1 11 6 -F 1 5 11 1 13 8 -F 1 7 12 1 11 6 -F 1 24 0 1 11 7 -F 1 12 0 4 6 2 -F 1 6 0 7 12 8 -F 1 7 1 4 6 2 -F 1 4 2 1 22 18 -F 1 2 2 4 17 13 -F 1 26 3 1 17 13 -F 1 13 3 4 12 8 -F 1 6 3 7 18 14 -F 1 13 4 1 6 2 -F 1 3 5 1 23 19 -F 1 1 5 4 19 15 -F 1 1 5 8 5 1 -F 1 2 6 1 11 7 -F 1 1 6 4 10 6 -F 1 1 6 7 5 1 -F 1 5 11 1 13 9 -F 1 3 11 4 8 4 -F 1 6 12 1 11 7 -F 1 3 12 4 6 2 -F 1 8 0 4 6 3 -F 1 4 0 11 4 1 -F 1 13 1 0 11 8 -F 1 3 1 4 6 3 -F 1 14 2 0 11 8 -F 1 7 2 4 17 14 -F 1 6 3 0 6 3 -F 1 3 3 4 12 9 -F 1 8 4 0 6 3 -F 1 4 4 1 6 3 -F 1 9 5 0 14 11 -F 1 4 5 4 19 16 -F 1 2 5 8 5 2 -F 1 4 6 0 14 11 -F 1 2 6 4 10 7 -F 1 1 6 7 5 2 -F 1 6 11 0 4 1 -F 1 3 11 4 8 5 -F 1 5 12 0 4 1 -F 1 3 12 4 6 3 -F 1 12 0 2 11 9 -F 1 6 0 4 6 4 -F 1 8 1 4 6 4 -F 1 9 2 7 22 20 -F 1 8 3 7 18 16 -F 1 9 5 7 25 23 -F 1 5 5 8 5 3 -F 1 4 6 7 5 3 -F 1 4 11 0 4 2 -F 1 5 12 0 4 2 -F 1 3 12 4 6 4 -F 1 5 0 7 12 11 -F 1 6 1 7 6 5 -F 1 5 2 7 22 21 -F 1 8 3 2 6 5 -F 1 5 4 7 6 5 -F 1 6 5 7 25 24 -F 1 3 5 8 5 4 -F 1 7 6 7 5 4 -F 1 6 11 0 4 3 -F 1 5 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0.1740544248372269 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 1 0 0.22024599787140162 -player2 > engine: 1 7 6 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 1 0 0.055283730301199124 -player2 > engine: 2 7 12 -player2 > engine: comparing 2 and 8, gives 1 0 0.22024599404952816 -player2 > engine: 2 8 6 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 1 0 0.11566425403838958 -player2 > engine: 3 7 10 -player2 > engine: comparing 3 and 8, gives 1 0 0.3347412423175552 -player2 > engine: 3 8 5 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0.3347412907627885 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 1 0 0.24325391264188054 -player2 > engine: 5 7 6 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 3 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 1 0 1.301084708495155 -player2 > engine: 6 7 13 -player2 > engine: comparing 6 and 8, gives 1 0 0.24325389952200152 -player2 > engine: 6 8 7 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 1 0 0.0863773644023548 -player2 > engine: 11 7 8 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 1 0 0.12462117745455811 -player2 > engine: 12 7 10 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 23 3 -P 9.319567 21.808874 2 21 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 2 21 3 -P 11.742498 17.157658 2 12 3 -P 4.254093 0.000000 2 28 1 -P 19.353899 22.431443 2 32 1 -P 14.743614 22.324001 0 57 3 -P 8.864377 0.107441 0 43 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 21 5 -P 14.743177 12.694819 2 21 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 115 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 4 6 8 25 4 -F 2 14 2 1 22 1 -F 2 7 1 5 23 3 -F 2 17 2 1 22 2 -F 2 6 1 5 23 4 -F 2 8 2 6 23 4 -F 2 6 1 5 23 5 -F 2 5 2 6 23 5 -F 2 5 3 6 19 1 -F 2 20 4 5 19 1 -F 2 11 1 5 23 6 -F 2 6 2 6 23 6 -F 2 5 3 6 19 2 -F 2 9 4 5 19 2 -F 2 10 2 6 23 7 -F 2 5 2 7 22 6 -F 2 11 1 2 22 7 -F 2 8 2 6 23 8 -F 2 5 3 6 19 4 -F 2 8 4 2 17 2 -F 2 5 1 2 22 8 -F 2 3 1 3 17 3 -F 2 13 4 2 17 3 -F 2 12 1 2 22 9 -F 2 6 1 3 17 4 -F 2 17 4 2 17 4 -F 2 16 1 3 17 5 -F 2 5 5 6 28 16 -F 2 10 0 6 14 3 -F 2 5 0 7 12 1 -F 2 7 2 6 23 12 -F 2 6 3 6 19 8 -F 2 8 11 6 17 6 -F 2 11 0 6 14 4 -F 2 5 0 7 12 2 -F 2 6 1 0 11 1 -F 2 6 2 0 11 1 -F 2 13 5 0 14 4 -F 2 6 5 6 28 18 -F 2 13 0 6 14 5 -F 2 7 0 7 12 3 -F 2 7 1 6 11 2 -F 2 11 2 6 23 14 -F 2 5 2 7 22 13 -F 2 7 4 6 10 1 -F 2 18 5 2 11 2 -F 2 9 5 6 28 19 -F 2 8 1 6 11 3 -F 2 4 1 11 13 5 -F 2 2 1 12 11 3 -F 2 5 2 11 11 3 -F 2 2 2 12 13 5 -F 2 11 3 1 17 9 -F 2 5 3 6 19 11 -F 2 7 4 6 10 2 -F 2 20 5 1 23 15 -F 2 10 5 6 28 20 -F 2 5 5 7 25 17 -F 2 1 5 12 17 9 -F 2 3 1 12 11 4 -F 2 12 2 1 22 15 -F 2 6 2 7 22 15 -F 2 3 2 12 13 6 -F 2 11 3 1 17 10 -F 2 6 3 7 18 11 -F 2 3 3 12 8 1 -F 2 22 5 1 23 16 -F 2 11 5 7 25 18 -F 2 3 5 12 17 10 -F 2 6 11 7 14 7 -F 2 12 0 1 11 5 -F 2 6 0 7 12 6 -F 2 4 2 1 22 16 -F 2 16 3 1 17 11 -F 2 8 3 7 18 12 -F 2 18 5 1 23 17 -F 2 9 5 7 25 19 -F 2 6 6 1 11 5 -F 2 5 11 1 13 7 -F 2 7 12 1 11 5 -F 2 24 0 1 11 6 -F 2 12 0 4 6 1 -F 2 6 0 7 12 7 -F 2 7 1 4 6 1 -F 2 4 2 1 22 17 -F 2 2 2 4 17 12 -F 2 26 3 1 17 12 -F 2 13 3 4 12 7 -F 2 6 3 7 18 13 -F 2 13 4 1 6 1 -F 2 3 5 1 23 18 -F 2 1 5 4 19 14 -F 2 2 6 1 11 6 -F 2 1 6 4 10 5 -F 2 5 11 1 13 8 -F 2 3 11 4 8 3 -F 2 6 12 1 11 6 -F 2 3 12 4 6 1 -F 2 8 0 4 6 2 -F 2 13 1 0 11 7 -F 2 3 1 4 6 2 -F 2 14 2 0 11 7 -F 2 7 2 4 17 13 -F 2 6 3 0 6 2 -F 2 3 3 4 12 8 -F 2 8 4 0 6 2 -F 2 4 4 1 6 2 -F 2 9 5 0 14 10 -F 2 4 5 4 19 15 -F 2 2 5 8 5 1 -F 2 4 6 0 14 10 -F 2 2 6 4 10 6 -F 2 1 6 7 5 1 -F 2 3 11 4 8 4 -F 2 3 12 4 6 2 -F 2 12 0 2 11 8 -F 2 6 0 4 6 3 -F 2 8 1 4 6 3 -F 2 9 2 7 22 19 -F 2 8 3 7 18 15 -F 2 9 5 7 25 22 -F 2 5 5 8 5 2 -F 2 4 6 7 5 2 -F 2 4 11 0 4 1 -F 2 5 12 0 4 1 -F 2 3 12 4 6 3 -F 2 5 0 7 12 10 -F 2 6 1 7 6 4 -F 2 5 2 7 22 20 -F 2 8 3 2 6 4 -F 2 5 4 7 6 4 -F 2 6 5 7 25 23 -F 2 3 5 8 5 3 -F 2 7 6 7 5 3 -F 2 6 11 0 4 2 -F 2 5 12 0 4 2 -F 2 6 1 7 6 5 -F 2 12 2 7 22 21 -F 2 6 2 8 6 5 -F 2 10 3 7 18 17 -F 2 5 3 8 6 5 -F 2 6 5 7 25 24 -F 2 3 5 8 5 4 -F 2 13 6 7 5 4 -F 2 7 6 8 25 24 -F 2 8 11 7 14 13 -F 2 10 12 7 10 9 -go - -engine > player2: P 11.803996 11.215721 1 23 3 -P 9.319567 21.808874 1 21 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 1 21 3 -P 11.742498 17.157658 1 12 3 -P 4.254093 0.000000 1 28 1 -P 19.353899 22.431443 1 32 1 -P 14.743614 22.324001 0 57 3 -P 8.864377 0.107441 0 43 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 21 5 -P 14.743177 12.694819 1 21 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 115 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 4 6 8 25 4 -F 1 14 2 1 22 1 -F 1 7 1 5 23 3 -F 1 17 2 1 22 2 -F 1 6 1 5 23 4 -F 1 8 2 6 23 4 -F 1 6 1 5 23 5 -F 1 5 2 6 23 5 -F 1 5 3 6 19 1 -F 1 20 4 5 19 1 -F 1 11 1 5 23 6 -F 1 6 2 6 23 6 -F 1 5 3 6 19 2 -F 1 9 4 5 19 2 -F 1 10 2 6 23 7 -F 1 5 2 7 22 6 -F 1 11 1 2 22 7 -F 1 8 2 6 23 8 -F 1 5 3 6 19 4 -F 1 8 4 2 17 2 -F 1 5 1 2 22 8 -F 1 3 1 3 17 3 -F 1 13 4 2 17 3 -F 1 12 1 2 22 9 -F 1 6 1 3 17 4 -F 1 17 4 2 17 4 -F 1 16 1 3 17 5 -F 1 5 5 6 28 16 -F 1 10 0 6 14 3 -F 1 5 0 7 12 1 -F 1 7 2 6 23 12 -F 1 6 3 6 19 8 -F 1 8 11 6 17 6 -F 1 11 0 6 14 4 -F 1 5 0 7 12 2 -F 1 6 1 0 11 1 -F 1 6 2 0 11 1 -F 1 13 5 0 14 4 -F 1 6 5 6 28 18 -F 1 13 0 6 14 5 -F 1 7 0 7 12 3 -F 1 7 1 6 11 2 -F 1 11 2 6 23 14 -F 1 5 2 7 22 13 -F 1 7 4 6 10 1 -F 1 18 5 2 11 2 -F 1 9 5 6 28 19 -F 1 8 1 6 11 3 -F 1 4 1 11 13 5 -F 1 2 1 12 11 3 -F 1 5 2 11 11 3 -F 1 2 2 12 13 5 -F 1 11 3 1 17 9 -F 1 5 3 6 19 11 -F 1 7 4 6 10 2 -F 1 20 5 1 23 15 -F 1 10 5 6 28 20 -F 1 5 5 7 25 17 -F 1 1 5 12 17 9 -F 1 3 1 12 11 4 -F 1 12 2 1 22 15 -F 1 6 2 7 22 15 -F 1 3 2 12 13 6 -F 1 11 3 1 17 10 -F 1 6 3 7 18 11 -F 1 3 3 12 8 1 -F 1 22 5 1 23 16 -F 1 11 5 7 25 18 -F 1 3 5 12 17 10 -F 1 6 11 7 14 7 -F 1 12 0 1 11 5 -F 1 6 0 7 12 6 -F 1 4 2 1 22 16 -F 1 16 3 1 17 11 -F 1 8 3 7 18 12 -F 1 18 5 1 23 17 -F 1 9 5 7 25 19 -F 1 6 6 1 11 5 -F 1 5 11 1 13 7 -F 1 7 12 1 11 5 -F 1 24 0 1 11 6 -F 1 12 0 4 6 1 -F 1 6 0 7 12 7 -F 1 7 1 4 6 1 -F 1 4 2 1 22 17 -F 1 2 2 4 17 12 -F 1 26 3 1 17 12 -F 1 13 3 4 12 7 -F 1 6 3 7 18 13 -F 1 13 4 1 6 1 -F 1 3 5 1 23 18 -F 1 1 5 4 19 14 -F 1 2 6 1 11 6 -F 1 1 6 4 10 5 -F 1 5 11 1 13 8 -F 1 3 11 4 8 3 -F 1 6 12 1 11 6 -F 1 3 12 4 6 1 -F 1 8 0 4 6 2 -F 1 13 1 0 11 7 -F 1 3 1 4 6 2 -F 1 14 2 0 11 7 -F 1 7 2 4 17 13 -F 1 6 3 0 6 2 -F 1 3 3 4 12 8 -F 1 8 4 0 6 2 -F 1 4 4 1 6 2 -F 1 9 5 0 14 10 -F 1 4 5 4 19 15 -F 1 2 5 8 5 1 -F 1 4 6 0 14 10 -F 1 2 6 4 10 6 -F 1 1 6 7 5 1 -F 1 3 11 4 8 4 -F 1 3 12 4 6 2 -F 1 12 0 2 11 8 -F 1 6 0 4 6 3 -F 1 8 1 4 6 3 -F 1 9 2 7 22 19 -F 1 8 3 7 18 15 -F 1 9 5 7 25 22 -F 1 5 5 8 5 2 -F 1 4 6 7 5 2 -F 1 4 11 0 4 1 -F 1 5 12 0 4 1 -F 1 3 12 4 6 3 -F 1 5 0 7 12 10 -F 1 6 1 7 6 4 -F 1 5 2 7 22 20 -F 1 8 3 2 6 4 -F 1 5 4 7 6 4 -F 1 6 5 7 25 23 -F 1 3 5 8 5 3 -F 1 7 6 7 5 3 -F 1 6 11 0 4 2 -F 1 5 12 0 4 2 -F 1 6 1 7 6 5 -F 1 12 2 7 22 21 -F 1 6 2 8 6 5 -F 1 10 3 7 18 17 -F 1 5 3 8 6 5 -F 1 6 5 7 25 24 -F 1 3 5 8 5 4 -F 1 13 6 7 5 4 -F 1 7 6 8 25 24 -F 1 8 11 7 14 13 -F 1 10 12 7 10 9 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 2 0 -player2 > engine: 0 3 11 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 1 0 0.1740544248372269 -player2 > engine: 0 7 6 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 3 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 2 0 -player2 > engine: 1 3 10 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 1 0 0.22024599787140162 -player2 > engine: 1 7 5 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 2 0 -player2 > engine: 2 3 5 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0.055283730301199124 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 2 0 -player2 > engine: 3 3 10 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 1 0 0.11566425403838958 -player2 > engine: 3 7 5 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 1 0 0.3347412907627885 -player2 > engine: 4 7 6 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 2 0 -player2 > engine: 5 3 14 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 1 0 0.24325391264188054 -player2 > engine: 5 7 7 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 3 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 2 0 -player2 > engine: 6 3 16 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 1 0 1.301084708495155 -player2 > engine: 6 7 8 -player2 > engine: comparing 6 and 8, gives 0 0 0.24325389952200152 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 2 0 -player2 > engine: 11 3 10 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 1 0 0.0863773644023548 -player2 > engine: 11 7 5 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 2 0 -player2 > engine: 12 3 10 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 1 0 0.12462117745455811 -player2 > engine: 12 7 5 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 27 3 -P 9.319567 21.808874 2 38 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 2 19 3 -P 11.742498 17.157658 2 31 3 -P 4.254093 0.000000 2 25 1 -P 19.353899 22.431443 2 21 1 -P 14.743614 22.324001 0 51 3 -P 8.864377 0.107441 0 41 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 11 5 -P 14.743177 12.694819 2 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 118 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 4 6 8 25 3 -F 2 7 1 5 23 2 -F 2 17 2 1 22 1 -F 2 6 1 5 23 3 -F 2 8 2 6 23 3 -F 2 6 1 5 23 4 -F 2 5 2 6 23 4 -F 2 11 1 5 23 5 -F 2 6 2 6 23 5 -F 2 5 3 6 19 1 -F 2 9 4 5 19 1 -F 2 10 2 6 23 6 -F 2 5 2 7 22 5 -F 2 11 1 2 22 6 -F 2 8 2 6 23 7 -F 2 5 3 6 19 3 -F 2 8 4 2 17 1 -F 2 5 1 2 22 7 -F 2 3 1 3 17 2 -F 2 13 4 2 17 2 -F 2 12 1 2 22 8 -F 2 6 1 3 17 3 -F 2 17 4 2 17 3 -F 2 16 1 3 17 4 -F 2 5 5 6 28 15 -F 2 10 0 6 14 2 -F 2 7 2 6 23 11 -F 2 6 3 6 19 7 -F 2 8 11 6 17 5 -F 2 11 0 6 14 3 -F 2 5 0 7 12 1 -F 2 13 5 0 14 3 -F 2 6 5 6 28 17 -F 2 13 0 6 14 4 -F 2 7 0 7 12 2 -F 2 7 1 6 11 1 -F 2 11 2 6 23 13 -F 2 5 2 7 22 12 -F 2 18 5 2 11 1 -F 2 9 5 6 28 18 -F 2 8 1 6 11 2 -F 2 4 1 11 13 4 -F 2 2 1 12 11 2 -F 2 5 2 11 11 2 -F 2 2 2 12 13 4 -F 2 11 3 1 17 8 -F 2 5 3 6 19 10 -F 2 7 4 6 10 1 -F 2 20 5 1 23 14 -F 2 10 5 6 28 19 -F 2 5 5 7 25 16 -F 2 1 5 12 17 8 -F 2 3 1 12 11 3 -F 2 12 2 1 22 14 -F 2 6 2 7 22 14 -F 2 3 2 12 13 5 -F 2 11 3 1 17 9 -F 2 6 3 7 18 10 -F 2 22 5 1 23 15 -F 2 11 5 7 25 17 -F 2 3 5 12 17 9 -F 2 6 11 7 14 6 -F 2 12 0 1 11 4 -F 2 6 0 7 12 5 -F 2 4 2 1 22 15 -F 2 16 3 1 17 10 -F 2 8 3 7 18 11 -F 2 18 5 1 23 16 -F 2 9 5 7 25 18 -F 2 6 6 1 11 4 -F 2 5 11 1 13 6 -F 2 7 12 1 11 4 -F 2 24 0 1 11 5 -F 2 6 0 7 12 6 -F 2 4 2 1 22 16 -F 2 2 2 4 17 11 -F 2 26 3 1 17 11 -F 2 13 3 4 12 6 -F 2 6 3 7 18 12 -F 2 3 5 1 23 17 -F 2 1 5 4 19 13 -F 2 2 6 1 11 5 -F 2 1 6 4 10 4 -F 2 5 11 1 13 7 -F 2 3 11 4 8 2 -F 2 6 12 1 11 5 -F 2 8 0 4 6 1 -F 2 13 1 0 11 6 -F 2 3 1 4 6 1 -F 2 14 2 0 11 6 -F 2 7 2 4 17 12 -F 2 6 3 0 6 1 -F 2 3 3 4 12 7 -F 2 8 4 0 6 1 -F 2 4 4 1 6 1 -F 2 9 5 0 14 9 -F 2 4 5 4 19 14 -F 2 4 6 0 14 9 -F 2 2 6 4 10 5 -F 2 3 11 4 8 3 -F 2 3 12 4 6 1 -F 2 12 0 2 11 7 -F 2 6 0 4 6 2 -F 2 8 1 4 6 2 -F 2 9 2 7 22 18 -F 2 8 3 7 18 14 -F 2 9 5 7 25 21 -F 2 5 5 8 5 1 -F 2 4 6 7 5 1 -F 2 3 12 4 6 2 -F 2 5 0 7 12 9 -F 2 6 1 7 6 3 -F 2 5 2 7 22 19 -F 2 8 3 2 6 3 -F 2 5 4 7 6 3 -F 2 6 5 7 25 22 -F 2 3 5 8 5 2 -F 2 7 6 7 5 2 -F 2 6 11 0 4 1 -F 2 5 12 0 4 1 -F 2 6 1 7 6 4 -F 2 12 2 7 22 20 -F 2 6 2 8 6 4 -F 2 10 3 7 18 16 -F 2 5 3 8 6 4 -F 2 6 5 7 25 23 -F 2 3 5 8 5 3 -F 2 13 6 7 5 3 -F 2 7 6 8 25 23 -F 2 8 11 7 14 12 -F 2 10 12 7 10 8 -F 2 11 0 3 6 5 -F 2 6 0 7 12 11 -F 2 3 0 11 4 3 -F 2 10 1 3 17 16 -F 2 5 1 7 6 5 -F 2 5 2 3 6 5 -F 2 5 3 7 18 17 -F 2 6 4 7 6 5 -F 2 14 5 3 10 9 -F 2 7 5 7 25 24 -F 2 3 5 8 5 4 -F 2 16 6 3 19 18 -F 2 8 6 7 5 4 -F 2 10 11 3 6 5 -F 2 5 11 7 14 13 -F 2 10 12 3 8 7 -F 2 5 12 7 10 9 -go - -engine > player2: P 11.803996 11.215721 1 27 3 -P 9.319567 21.808874 1 38 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 1 19 3 -P 11.742498 17.157658 1 31 3 -P 4.254093 0.000000 1 25 1 -P 19.353899 22.431443 1 21 1 -P 14.743614 22.324001 0 51 3 -P 8.864377 0.107441 0 41 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 11 5 -P 14.743177 12.694819 1 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 118 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 4 6 8 25 3 -F 1 7 1 5 23 2 -F 1 17 2 1 22 1 -F 1 6 1 5 23 3 -F 1 8 2 6 23 3 -F 1 6 1 5 23 4 -F 1 5 2 6 23 4 -F 1 11 1 5 23 5 -F 1 6 2 6 23 5 -F 1 5 3 6 19 1 -F 1 9 4 5 19 1 -F 1 10 2 6 23 6 -F 1 5 2 7 22 5 -F 1 11 1 2 22 6 -F 1 8 2 6 23 7 -F 1 5 3 6 19 3 -F 1 8 4 2 17 1 -F 1 5 1 2 22 7 -F 1 3 1 3 17 2 -F 1 13 4 2 17 2 -F 1 12 1 2 22 8 -F 1 6 1 3 17 3 -F 1 17 4 2 17 3 -F 1 16 1 3 17 4 -F 1 5 5 6 28 15 -F 1 10 0 6 14 2 -F 1 7 2 6 23 11 -F 1 6 3 6 19 7 -F 1 8 11 6 17 5 -F 1 11 0 6 14 3 -F 1 5 0 7 12 1 -F 1 13 5 0 14 3 -F 1 6 5 6 28 17 -F 1 13 0 6 14 4 -F 1 7 0 7 12 2 -F 1 7 1 6 11 1 -F 1 11 2 6 23 13 -F 1 5 2 7 22 12 -F 1 18 5 2 11 1 -F 1 9 5 6 28 18 -F 1 8 1 6 11 2 -F 1 4 1 11 13 4 -F 1 2 1 12 11 2 -F 1 5 2 11 11 2 -F 1 2 2 12 13 4 -F 1 11 3 1 17 8 -F 1 5 3 6 19 10 -F 1 7 4 6 10 1 -F 1 20 5 1 23 14 -F 1 10 5 6 28 19 -F 1 5 5 7 25 16 -F 1 1 5 12 17 8 -F 1 3 1 12 11 3 -F 1 12 2 1 22 14 -F 1 6 2 7 22 14 -F 1 3 2 12 13 5 -F 1 11 3 1 17 9 -F 1 6 3 7 18 10 -F 1 22 5 1 23 15 -F 1 11 5 7 25 17 -F 1 3 5 12 17 9 -F 1 6 11 7 14 6 -F 1 12 0 1 11 4 -F 1 6 0 7 12 5 -F 1 4 2 1 22 15 -F 1 16 3 1 17 10 -F 1 8 3 7 18 11 -F 1 18 5 1 23 16 -F 1 9 5 7 25 18 -F 1 6 6 1 11 4 -F 1 5 11 1 13 6 -F 1 7 12 1 11 4 -F 1 24 0 1 11 5 -F 1 6 0 7 12 6 -F 1 4 2 1 22 16 -F 1 2 2 4 17 11 -F 1 26 3 1 17 11 -F 1 13 3 4 12 6 -F 1 6 3 7 18 12 -F 1 3 5 1 23 17 -F 1 1 5 4 19 13 -F 1 2 6 1 11 5 -F 1 1 6 4 10 4 -F 1 5 11 1 13 7 -F 1 3 11 4 8 2 -F 1 6 12 1 11 5 -F 1 8 0 4 6 1 -F 1 13 1 0 11 6 -F 1 3 1 4 6 1 -F 1 14 2 0 11 6 -F 1 7 2 4 17 12 -F 1 6 3 0 6 1 -F 1 3 3 4 12 7 -F 1 8 4 0 6 1 -F 1 4 4 1 6 1 -F 1 9 5 0 14 9 -F 1 4 5 4 19 14 -F 1 4 6 0 14 9 -F 1 2 6 4 10 5 -F 1 3 11 4 8 3 -F 1 3 12 4 6 1 -F 1 12 0 2 11 7 -F 1 6 0 4 6 2 -F 1 8 1 4 6 2 -F 1 9 2 7 22 18 -F 1 8 3 7 18 14 -F 1 9 5 7 25 21 -F 1 5 5 8 5 1 -F 1 4 6 7 5 1 -F 1 3 12 4 6 2 -F 1 5 0 7 12 9 -F 1 6 1 7 6 3 -F 1 5 2 7 22 19 -F 1 8 3 2 6 3 -F 1 5 4 7 6 3 -F 1 6 5 7 25 22 -F 1 3 5 8 5 2 -F 1 7 6 7 5 2 -F 1 6 11 0 4 1 -F 1 5 12 0 4 1 -F 1 6 1 7 6 4 -F 1 12 2 7 22 20 -F 1 6 2 8 6 4 -F 1 10 3 7 18 16 -F 1 5 3 8 6 4 -F 1 6 5 7 25 23 -F 1 3 5 8 5 3 -F 1 13 6 7 5 3 -F 1 7 6 8 25 23 -F 1 8 11 7 14 12 -F 1 10 12 7 10 8 -F 1 11 0 3 6 5 -F 1 6 0 7 12 11 -F 1 3 0 11 4 3 -F 1 10 1 3 17 16 -F 1 5 1 7 6 5 -F 1 5 2 3 6 5 -F 1 5 3 7 18 17 -F 1 6 4 7 6 5 -F 1 14 5 3 10 9 -F 1 7 5 7 25 24 -F 1 3 5 8 5 4 -F 1 16 6 3 19 18 -F 1 8 6 7 5 4 -F 1 10 11 3 6 5 -F 1 5 11 7 14 13 -F 1 10 12 3 8 7 -F 1 5 12 7 10 9 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 2 0 -player2 > engine: 0 3 13 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 1 0 0.1740544248372269 -player2 > engine: 0 7 7 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 3 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 1 0 0.22024599787140162 -player2 > engine: 1 7 19 -player2 > engine: comparing 1 and 8, gives 1 0 0.0552837277548503 -player2 > engine: 1 8 9 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 1 0 0.055283730301199124 -player2 > engine: 2 7 5 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 1 0 0.11566425403838958 -player2 > engine: 3 7 9 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 1 0 0.3347412907627885 -player2 > engine: 4 7 15 -player2 > engine: comparing 4 and 8, gives 1 0 0.11566424744259145 -player2 > engine: 4 8 8 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 1 0 0.24325391264188054 -player2 > engine: 5 7 12 -player2 > engine: comparing 5 and 8, gives 1 0 1.3010849971288805 -player2 > engine: 5 8 6 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 1 0 1.301084708495155 -player2 > engine: 6 7 10 -player2 > engine: comparing 6 and 8, gives 1 0 0.24325389952200152 -player2 > engine: 6 8 5 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 1 0 0.0863773644023548 -player2 > engine: 11 7 5 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 1 0 0.12462117745455811 -player2 > engine: 12 7 7 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 30 3 -P 9.319567 21.808874 2 36 5 -P 14.288424 0.622569 2 37 5 -P 11.865493 5.273785 2 13 3 -P 11.742498 17.157658 2 25 3 -P 4.254093 0.000000 2 17 1 -P 19.353899 22.431443 2 26 1 -P 14.743614 22.324001 0 42 3 -P 8.864377 0.107441 0 36 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 11 5 -P 14.743177 12.694819 2 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 121 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 4 6 8 25 2 -F 2 7 1 5 23 1 -F 2 6 1 5 23 2 -F 2 8 2 6 23 2 -F 2 6 1 5 23 3 -F 2 5 2 6 23 3 -F 2 11 1 5 23 4 -F 2 6 2 6 23 4 -F 2 10 2 6 23 5 -F 2 5 2 7 22 4 -F 2 11 1 2 22 5 -F 2 8 2 6 23 6 -F 2 5 3 6 19 2 -F 2 5 1 2 22 6 -F 2 3 1 3 17 1 -F 2 13 4 2 17 1 -F 2 12 1 2 22 7 -F 2 6 1 3 17 2 -F 2 17 4 2 17 2 -F 2 16 1 3 17 3 -F 2 5 5 6 28 14 -F 2 10 0 6 14 1 -F 2 7 2 6 23 10 -F 2 6 3 6 19 6 -F 2 8 11 6 17 4 -F 2 11 0 6 14 2 -F 2 13 5 0 14 2 -F 2 6 5 6 28 16 -F 2 13 0 6 14 3 -F 2 7 0 7 12 1 -F 2 11 2 6 23 12 -F 2 5 2 7 22 11 -F 2 9 5 6 28 17 -F 2 8 1 6 11 1 -F 2 4 1 11 13 3 -F 2 2 1 12 11 1 -F 2 5 2 11 11 1 -F 2 2 2 12 13 3 -F 2 11 3 1 17 7 -F 2 5 3 6 19 9 -F 2 20 5 1 23 13 -F 2 10 5 6 28 18 -F 2 5 5 7 25 15 -F 2 1 5 12 17 7 -F 2 3 1 12 11 2 -F 2 12 2 1 22 13 -F 2 6 2 7 22 13 -F 2 3 2 12 13 4 -F 2 11 3 1 17 8 -F 2 6 3 7 18 9 -F 2 22 5 1 23 14 -F 2 11 5 7 25 16 -F 2 3 5 12 17 8 -F 2 6 11 7 14 5 -F 2 12 0 1 11 3 -F 2 6 0 7 12 4 -F 2 4 2 1 22 14 -F 2 16 3 1 17 9 -F 2 8 3 7 18 10 -F 2 18 5 1 23 15 -F 2 9 5 7 25 17 -F 2 6 6 1 11 3 -F 2 5 11 1 13 5 -F 2 7 12 1 11 3 -F 2 24 0 1 11 4 -F 2 6 0 7 12 5 -F 2 4 2 1 22 15 -F 2 2 2 4 17 10 -F 2 26 3 1 17 10 -F 2 13 3 4 12 5 -F 2 6 3 7 18 11 -F 2 3 5 1 23 16 -F 2 1 5 4 19 12 -F 2 2 6 1 11 4 -F 2 1 6 4 10 3 -F 2 5 11 1 13 6 -F 2 3 11 4 8 1 -F 2 6 12 1 11 4 -F 2 13 1 0 11 5 -F 2 14 2 0 11 5 -F 2 7 2 4 17 11 -F 2 3 3 4 12 6 -F 2 9 5 0 14 8 -F 2 4 5 4 19 13 -F 2 4 6 0 14 8 -F 2 2 6 4 10 4 -F 2 3 11 4 8 2 -F 2 12 0 2 11 6 -F 2 6 0 4 6 1 -F 2 8 1 4 6 1 -F 2 9 2 7 22 17 -F 2 8 3 7 18 13 -F 2 9 5 7 25 20 -F 2 3 12 4 6 1 -F 2 5 0 7 12 8 -F 2 6 1 7 6 2 -F 2 5 2 7 22 18 -F 2 8 3 2 6 2 -F 2 5 4 7 6 2 -F 2 6 5 7 25 21 -F 2 3 5 8 5 1 -F 2 7 6 7 5 1 -F 2 6 1 7 6 3 -F 2 12 2 7 22 19 -F 2 6 2 8 6 3 -F 2 10 3 7 18 15 -F 2 5 3 8 6 3 -F 2 6 5 7 25 22 -F 2 3 5 8 5 2 -F 2 13 6 7 5 2 -F 2 7 6 8 25 22 -F 2 8 11 7 14 11 -F 2 10 12 7 10 7 -F 2 11 0 3 6 4 -F 2 6 0 7 12 10 -F 2 3 0 11 4 2 -F 2 10 1 3 17 15 -F 2 5 1 7 6 4 -F 2 5 2 3 6 4 -F 2 5 3 7 18 16 -F 2 6 4 7 6 4 -F 2 14 5 3 10 8 -F 2 7 5 7 25 23 -F 2 3 5 8 5 3 -F 2 16 6 3 19 17 -F 2 8 6 7 5 3 -F 2 10 11 3 6 4 -F 2 5 11 7 14 12 -F 2 10 12 3 8 6 -F 2 5 12 7 10 8 -F 2 13 0 3 6 5 -F 2 7 0 7 12 11 -F 2 3 0 11 4 3 -F 2 2 0 12 4 3 -F 2 19 1 7 6 5 -F 2 9 1 8 22 21 -F 2 5 2 7 22 21 -F 2 9 3 7 18 17 -F 2 15 4 7 6 5 -F 2 8 4 8 18 17 -F 2 12 5 7 25 24 -F 2 6 5 8 5 4 -F 2 10 6 7 5 4 -F 2 5 6 8 25 24 -F 2 5 11 7 14 13 -F 2 7 12 7 10 9 -go - -engine > player2: P 11.803996 11.215721 1 30 3 -P 9.319567 21.808874 1 36 5 -P 14.288424 0.622569 1 37 5 -P 11.865493 5.273785 1 13 3 -P 11.742498 17.157658 1 25 3 -P 4.254093 0.000000 1 17 1 -P 19.353899 22.431443 1 26 1 -P 14.743614 22.324001 0 42 3 -P 8.864377 0.107441 0 36 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 11 5 -P 14.743177 12.694819 1 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 121 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 4 6 8 25 2 -F 1 7 1 5 23 1 -F 1 6 1 5 23 2 -F 1 8 2 6 23 2 -F 1 6 1 5 23 3 -F 1 5 2 6 23 3 -F 1 11 1 5 23 4 -F 1 6 2 6 23 4 -F 1 10 2 6 23 5 -F 1 5 2 7 22 4 -F 1 11 1 2 22 5 -F 1 8 2 6 23 6 -F 1 5 3 6 19 2 -F 1 5 1 2 22 6 -F 1 3 1 3 17 1 -F 1 13 4 2 17 1 -F 1 12 1 2 22 7 -F 1 6 1 3 17 2 -F 1 17 4 2 17 2 -F 1 16 1 3 17 3 -F 1 5 5 6 28 14 -F 1 10 0 6 14 1 -F 1 7 2 6 23 10 -F 1 6 3 6 19 6 -F 1 8 11 6 17 4 -F 1 11 0 6 14 2 -F 1 13 5 0 14 2 -F 1 6 5 6 28 16 -F 1 13 0 6 14 3 -F 1 7 0 7 12 1 -F 1 11 2 6 23 12 -F 1 5 2 7 22 11 -F 1 9 5 6 28 17 -F 1 8 1 6 11 1 -F 1 4 1 11 13 3 -F 1 2 1 12 11 1 -F 1 5 2 11 11 1 -F 1 2 2 12 13 3 -F 1 11 3 1 17 7 -F 1 5 3 6 19 9 -F 1 20 5 1 23 13 -F 1 10 5 6 28 18 -F 1 5 5 7 25 15 -F 1 1 5 12 17 7 -F 1 3 1 12 11 2 -F 1 12 2 1 22 13 -F 1 6 2 7 22 13 -F 1 3 2 12 13 4 -F 1 11 3 1 17 8 -F 1 6 3 7 18 9 -F 1 22 5 1 23 14 -F 1 11 5 7 25 16 -F 1 3 5 12 17 8 -F 1 6 11 7 14 5 -F 1 12 0 1 11 3 -F 1 6 0 7 12 4 -F 1 4 2 1 22 14 -F 1 16 3 1 17 9 -F 1 8 3 7 18 10 -F 1 18 5 1 23 15 -F 1 9 5 7 25 17 -F 1 6 6 1 11 3 -F 1 5 11 1 13 5 -F 1 7 12 1 11 3 -F 1 24 0 1 11 4 -F 1 6 0 7 12 5 -F 1 4 2 1 22 15 -F 1 2 2 4 17 10 -F 1 26 3 1 17 10 -F 1 13 3 4 12 5 -F 1 6 3 7 18 11 -F 1 3 5 1 23 16 -F 1 1 5 4 19 12 -F 1 2 6 1 11 4 -F 1 1 6 4 10 3 -F 1 5 11 1 13 6 -F 1 3 11 4 8 1 -F 1 6 12 1 11 4 -F 1 13 1 0 11 5 -F 1 14 2 0 11 5 -F 1 7 2 4 17 11 -F 1 3 3 4 12 6 -F 1 9 5 0 14 8 -F 1 4 5 4 19 13 -F 1 4 6 0 14 8 -F 1 2 6 4 10 4 -F 1 3 11 4 8 2 -F 1 12 0 2 11 6 -F 1 6 0 4 6 1 -F 1 8 1 4 6 1 -F 1 9 2 7 22 17 -F 1 8 3 7 18 13 -F 1 9 5 7 25 20 -F 1 3 12 4 6 1 -F 1 5 0 7 12 8 -F 1 6 1 7 6 2 -F 1 5 2 7 22 18 -F 1 8 3 2 6 2 -F 1 5 4 7 6 2 -F 1 6 5 7 25 21 -F 1 3 5 8 5 1 -F 1 7 6 7 5 1 -F 1 6 1 7 6 3 -F 1 12 2 7 22 19 -F 1 6 2 8 6 3 -F 1 10 3 7 18 15 -F 1 5 3 8 6 3 -F 1 6 5 7 25 22 -F 1 3 5 8 5 2 -F 1 13 6 7 5 2 -F 1 7 6 8 25 22 -F 1 8 11 7 14 11 -F 1 10 12 7 10 7 -F 1 11 0 3 6 4 -F 1 6 0 7 12 10 -F 1 3 0 11 4 2 -F 1 10 1 3 17 15 -F 1 5 1 7 6 4 -F 1 5 2 3 6 4 -F 1 5 3 7 18 16 -F 1 6 4 7 6 4 -F 1 14 5 3 10 8 -F 1 7 5 7 25 23 -F 1 3 5 8 5 3 -F 1 16 6 3 19 17 -F 1 8 6 7 5 3 -F 1 10 11 3 6 4 -F 1 5 11 7 14 12 -F 1 10 12 3 8 6 -F 1 5 12 7 10 8 -F 1 13 0 3 6 5 -F 1 7 0 7 12 11 -F 1 3 0 11 4 3 -F 1 2 0 12 4 3 -F 1 19 1 7 6 5 -F 1 9 1 8 22 21 -F 1 5 2 7 22 21 -F 1 9 3 7 18 17 -F 1 15 4 7 6 5 -F 1 8 4 8 18 17 -F 1 12 5 7 25 24 -F 1 6 5 8 5 4 -F 1 10 6 7 5 4 -F 1 5 6 8 25 24 -F 1 5 11 7 14 13 -F 1 7 12 7 10 9 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 15 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 1 0 0.1740544248372269 -player2 > engine: 0 7 7 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 4 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 2 0 -player2 > engine: 1 0 18 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 1 0 0.22024599787140162 -player2 > engine: 1 7 9 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 2 0 -player2 > engine: 2 0 18 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 1 0 0.055283730301199124 -player2 > engine: 2 7 9 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 1 0 0.11566425403838958 -player2 > engine: 3 7 6 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 1 0 0.3347412907627885 -player2 > engine: 4 7 12 -player2 > engine: comparing 4 and 8, gives 1 0 0.11566424744259145 -player2 > engine: 4 8 6 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 1 0 0.24325391264188054 -player2 > engine: 5 7 8 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 4 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 1 0 1.301084708495155 -player2 > engine: 6 7 13 -player2 > engine: comparing 6 and 8, gives 1 0 0.24325389952200152 -player2 > engine: 6 8 6 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 5 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 6 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 22 3 -P 9.319567 21.808874 2 14 5 -P 14.288424 0.622569 2 28 5 -P 11.865493 5.273785 2 13 3 -P 11.742498 17.157658 2 30 3 -P 4.254093 0.000000 2 13 1 -P 19.353899 22.431443 2 26 1 -P 14.743614 22.324001 0 28 3 -P 8.864377 0.107441 0 33 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 16 5 -P 14.743177 12.694819 2 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 124 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 4 6 8 25 1 -F 2 6 1 5 23 1 -F 2 8 2 6 23 1 -F 2 6 1 5 23 2 -F 2 5 2 6 23 2 -F 2 11 1 5 23 3 -F 2 6 2 6 23 3 -F 2 10 2 6 23 4 -F 2 5 2 7 22 3 -F 2 11 1 2 22 4 -F 2 8 2 6 23 5 -F 2 5 3 6 19 1 -F 2 5 1 2 22 5 -F 2 12 1 2 22 6 -F 2 6 1 3 17 1 -F 2 17 4 2 17 1 -F 2 16 1 3 17 2 -F 2 5 5 6 28 13 -F 2 7 2 6 23 9 -F 2 6 3 6 19 5 -F 2 8 11 6 17 3 -F 2 11 0 6 14 1 -F 2 13 5 0 14 1 -F 2 6 5 6 28 15 -F 2 13 0 6 14 2 -F 2 11 2 6 23 11 -F 2 5 2 7 22 10 -F 2 9 5 6 28 16 -F 2 4 1 11 13 2 -F 2 2 2 12 13 2 -F 2 11 3 1 17 6 -F 2 5 3 6 19 8 -F 2 20 5 1 23 12 -F 2 10 5 6 28 17 -F 2 5 5 7 25 14 -F 2 1 5 12 17 6 -F 2 3 1 12 11 1 -F 2 12 2 1 22 12 -F 2 6 2 7 22 12 -F 2 3 2 12 13 3 -F 2 11 3 1 17 7 -F 2 6 3 7 18 8 -F 2 22 5 1 23 13 -F 2 11 5 7 25 15 -F 2 3 5 12 17 7 -F 2 6 11 7 14 4 -F 2 12 0 1 11 2 -F 2 6 0 7 12 3 -F 2 4 2 1 22 13 -F 2 16 3 1 17 8 -F 2 8 3 7 18 9 -F 2 18 5 1 23 14 -F 2 9 5 7 25 16 -F 2 6 6 1 11 2 -F 2 5 11 1 13 4 -F 2 7 12 1 11 2 -F 2 24 0 1 11 3 -F 2 6 0 7 12 4 -F 2 4 2 1 22 14 -F 2 2 2 4 17 9 -F 2 26 3 1 17 9 -F 2 13 3 4 12 4 -F 2 6 3 7 18 10 -F 2 3 5 1 23 15 -F 2 1 5 4 19 11 -F 2 2 6 1 11 3 -F 2 1 6 4 10 2 -F 2 5 11 1 13 5 -F 2 6 12 1 11 3 -F 2 13 1 0 11 4 -F 2 14 2 0 11 4 -F 2 7 2 4 17 10 -F 2 3 3 4 12 5 -F 2 9 5 0 14 7 -F 2 4 5 4 19 12 -F 2 4 6 0 14 7 -F 2 2 6 4 10 3 -F 2 3 11 4 8 1 -F 2 12 0 2 11 5 -F 2 9 2 7 22 16 -F 2 8 3 7 18 12 -F 2 9 5 7 25 19 -F 2 5 0 7 12 7 -F 2 6 1 7 6 1 -F 2 5 2 7 22 17 -F 2 8 3 2 6 1 -F 2 5 4 7 6 1 -F 2 6 5 7 25 20 -F 2 6 1 7 6 2 -F 2 12 2 7 22 18 -F 2 6 2 8 6 2 -F 2 10 3 7 18 14 -F 2 5 3 8 6 2 -F 2 6 5 7 25 21 -F 2 3 5 8 5 1 -F 2 13 6 7 5 1 -F 2 7 6 8 25 21 -F 2 8 11 7 14 10 -F 2 10 12 7 10 6 -F 2 11 0 3 6 3 -F 2 6 0 7 12 9 -F 2 3 0 11 4 1 -F 2 10 1 3 17 14 -F 2 5 1 7 6 3 -F 2 5 2 3 6 3 -F 2 5 3 7 18 15 -F 2 6 4 7 6 3 -F 2 14 5 3 10 7 -F 2 7 5 7 25 22 -F 2 3 5 8 5 2 -F 2 16 6 3 19 16 -F 2 8 6 7 5 2 -F 2 10 11 3 6 3 -F 2 5 11 7 14 11 -F 2 10 12 3 8 5 -F 2 5 12 7 10 7 -F 2 13 0 3 6 4 -F 2 7 0 7 12 10 -F 2 3 0 11 4 2 -F 2 2 0 12 4 2 -F 2 19 1 7 6 4 -F 2 9 1 8 22 20 -F 2 5 2 7 22 20 -F 2 9 3 7 18 16 -F 2 15 4 7 6 4 -F 2 8 4 8 18 16 -F 2 12 5 7 25 23 -F 2 6 5 8 5 3 -F 2 10 6 7 5 3 -F 2 5 6 8 25 23 -F 2 5 11 7 14 12 -F 2 7 12 7 10 8 -F 2 7 0 7 12 11 -F 2 4 0 12 4 3 -F 2 18 1 0 11 10 -F 2 9 1 7 6 5 -F 2 18 2 0 11 10 -F 2 9 2 7 22 21 -F 2 6 3 7 18 17 -F 2 12 4 7 6 5 -F 2 6 4 8 18 17 -F 2 8 5 7 25 24 -F 2 4 5 8 5 4 -F 2 13 6 7 5 4 -F 2 6 6 8 25 24 -F 2 5 11 0 4 3 -F 2 6 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 22 3 -P 9.319567 21.808874 1 14 5 -P 14.288424 0.622569 1 28 5 -P 11.865493 5.273785 1 13 3 -P 11.742498 17.157658 1 30 3 -P 4.254093 0.000000 1 13 1 -P 19.353899 22.431443 1 26 1 -P 14.743614 22.324001 0 28 3 -P 8.864377 0.107441 0 33 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 16 5 -P 14.743177 12.694819 1 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 124 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 4 6 8 25 1 -F 1 6 1 5 23 1 -F 1 8 2 6 23 1 -F 1 6 1 5 23 2 -F 1 5 2 6 23 2 -F 1 11 1 5 23 3 -F 1 6 2 6 23 3 -F 1 10 2 6 23 4 -F 1 5 2 7 22 3 -F 1 11 1 2 22 4 -F 1 8 2 6 23 5 -F 1 5 3 6 19 1 -F 1 5 1 2 22 5 -F 1 12 1 2 22 6 -F 1 6 1 3 17 1 -F 1 17 4 2 17 1 -F 1 16 1 3 17 2 -F 1 5 5 6 28 13 -F 1 7 2 6 23 9 -F 1 6 3 6 19 5 -F 1 8 11 6 17 3 -F 1 11 0 6 14 1 -F 1 13 5 0 14 1 -F 1 6 5 6 28 15 -F 1 13 0 6 14 2 -F 1 11 2 6 23 11 -F 1 5 2 7 22 10 -F 1 9 5 6 28 16 -F 1 4 1 11 13 2 -F 1 2 2 12 13 2 -F 1 11 3 1 17 6 -F 1 5 3 6 19 8 -F 1 20 5 1 23 12 -F 1 10 5 6 28 17 -F 1 5 5 7 25 14 -F 1 1 5 12 17 6 -F 1 3 1 12 11 1 -F 1 12 2 1 22 12 -F 1 6 2 7 22 12 -F 1 3 2 12 13 3 -F 1 11 3 1 17 7 -F 1 6 3 7 18 8 -F 1 22 5 1 23 13 -F 1 11 5 7 25 15 -F 1 3 5 12 17 7 -F 1 6 11 7 14 4 -F 1 12 0 1 11 2 -F 1 6 0 7 12 3 -F 1 4 2 1 22 13 -F 1 16 3 1 17 8 -F 1 8 3 7 18 9 -F 1 18 5 1 23 14 -F 1 9 5 7 25 16 -F 1 6 6 1 11 2 -F 1 5 11 1 13 4 -F 1 7 12 1 11 2 -F 1 24 0 1 11 3 -F 1 6 0 7 12 4 -F 1 4 2 1 22 14 -F 1 2 2 4 17 9 -F 1 26 3 1 17 9 -F 1 13 3 4 12 4 -F 1 6 3 7 18 10 -F 1 3 5 1 23 15 -F 1 1 5 4 19 11 -F 1 2 6 1 11 3 -F 1 1 6 4 10 2 -F 1 5 11 1 13 5 -F 1 6 12 1 11 3 -F 1 13 1 0 11 4 -F 1 14 2 0 11 4 -F 1 7 2 4 17 10 -F 1 3 3 4 12 5 -F 1 9 5 0 14 7 -F 1 4 5 4 19 12 -F 1 4 6 0 14 7 -F 1 2 6 4 10 3 -F 1 3 11 4 8 1 -F 1 12 0 2 11 5 -F 1 9 2 7 22 16 -F 1 8 3 7 18 12 -F 1 9 5 7 25 19 -F 1 5 0 7 12 7 -F 1 6 1 7 6 1 -F 1 5 2 7 22 17 -F 1 8 3 2 6 1 -F 1 5 4 7 6 1 -F 1 6 5 7 25 20 -F 1 6 1 7 6 2 -F 1 12 2 7 22 18 -F 1 6 2 8 6 2 -F 1 10 3 7 18 14 -F 1 5 3 8 6 2 -F 1 6 5 7 25 21 -F 1 3 5 8 5 1 -F 1 13 6 7 5 1 -F 1 7 6 8 25 21 -F 1 8 11 7 14 10 -F 1 10 12 7 10 6 -F 1 11 0 3 6 3 -F 1 6 0 7 12 9 -F 1 3 0 11 4 1 -F 1 10 1 3 17 14 -F 1 5 1 7 6 3 -F 1 5 2 3 6 3 -F 1 5 3 7 18 15 -F 1 6 4 7 6 3 -F 1 14 5 3 10 7 -F 1 7 5 7 25 22 -F 1 3 5 8 5 2 -F 1 16 6 3 19 16 -F 1 8 6 7 5 2 -F 1 10 11 3 6 3 -F 1 5 11 7 14 11 -F 1 10 12 3 8 5 -F 1 5 12 7 10 7 -F 1 13 0 3 6 4 -F 1 7 0 7 12 10 -F 1 3 0 11 4 2 -F 1 2 0 12 4 2 -F 1 19 1 7 6 4 -F 1 9 1 8 22 20 -F 1 5 2 7 22 20 -F 1 9 3 7 18 16 -F 1 15 4 7 6 4 -F 1 8 4 8 18 16 -F 1 12 5 7 25 23 -F 1 6 5 8 5 3 -F 1 10 6 7 5 3 -F 1 5 6 8 25 23 -F 1 5 11 7 14 12 -F 1 7 12 7 10 8 -F 1 7 0 7 12 11 -F 1 4 0 12 4 3 -F 1 18 1 0 11 10 -F 1 9 1 7 6 5 -F 1 18 2 0 11 10 -F 1 9 2 7 22 21 -F 1 6 3 7 18 17 -F 1 12 4 7 6 5 -F 1 6 4 8 18 17 -F 1 8 5 7 25 24 -F 1 4 5 8 5 4 -F 1 13 6 7 5 4 -F 1 6 6 8 25 24 -F 1 5 11 0 4 3 -F 1 6 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 2 0 -player2 > engine: 0 4 11 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 1 0 0.1740544248372269 -player2 > engine: 0 7 5 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 2 0 -player2 > engine: 1 4 7 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0.22024599787140162 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 1 0 0.055283730301199124 -player2 > engine: 2 7 14 -player2 > engine: comparing 2 and 8, gives 1 0 0.22024599404952816 -player2 > engine: 2 8 7 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 1 0 0.11566425403838958 -player2 > engine: 3 7 6 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 2 0 -player2 > engine: 4 4 15 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 1 0 0.3347412907627885 -player2 > engine: 4 7 7 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 1 0 0.24325391264188054 -player2 > engine: 5 7 6 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 3 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 1 0 1.301084708495155 -player2 > engine: 6 7 13 -player2 > engine: comparing 6 and 8, gives 1 0 0.24325389952200152 -player2 > engine: 6 8 6 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 1 0 0.0863773644023548 -player2 > engine: 11 7 8 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 1 0 0.12462117745455811 -player2 > engine: 12 7 6 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 22 3 -P 9.319567 21.808874 2 12 5 -P 14.288424 0.622569 2 37 5 -P 11.865493 5.273785 2 16 3 -P 11.742498 17.157658 2 29 3 -P 4.254093 0.000000 2 11 1 -P 19.353899 22.431443 2 32 1 -P 14.743614 22.324001 0 4 3 -P 8.864377 0.107441 0 29 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 16 5 -P 14.743177 12.694819 2 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 127 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 1 5 23 1 -F 2 5 2 6 23 1 -F 2 11 1 5 23 2 -F 2 6 2 6 23 2 -F 2 10 2 6 23 3 -F 2 5 2 7 22 2 -F 2 11 1 2 22 3 -F 2 8 2 6 23 4 -F 2 5 1 2 22 4 -F 2 12 1 2 22 5 -F 2 16 1 3 17 1 -F 2 5 5 6 28 12 -F 2 7 2 6 23 8 -F 2 6 3 6 19 4 -F 2 8 11 6 17 2 -F 2 6 5 6 28 14 -F 2 13 0 6 14 1 -F 2 11 2 6 23 10 -F 2 5 2 7 22 9 -F 2 9 5 6 28 15 -F 2 4 1 11 13 1 -F 2 2 2 12 13 1 -F 2 11 3 1 17 5 -F 2 5 3 6 19 7 -F 2 20 5 1 23 11 -F 2 10 5 6 28 16 -F 2 5 5 7 25 13 -F 2 1 5 12 17 5 -F 2 12 2 1 22 11 -F 2 6 2 7 22 11 -F 2 3 2 12 13 2 -F 2 11 3 1 17 6 -F 2 6 3 7 18 7 -F 2 22 5 1 23 12 -F 2 11 5 7 25 14 -F 2 3 5 12 17 6 -F 2 6 11 7 14 3 -F 2 12 0 1 11 1 -F 2 6 0 7 12 2 -F 2 4 2 1 22 12 -F 2 16 3 1 17 7 -F 2 8 3 7 18 8 -F 2 18 5 1 23 13 -F 2 9 5 7 25 15 -F 2 6 6 1 11 1 -F 2 5 11 1 13 3 -F 2 7 12 1 11 1 -F 2 24 0 1 11 2 -F 2 6 0 7 12 3 -F 2 4 2 1 22 13 -F 2 2 2 4 17 8 -F 2 26 3 1 17 8 -F 2 13 3 4 12 3 -F 2 6 3 7 18 9 -F 2 3 5 1 23 14 -F 2 1 5 4 19 10 -F 2 2 6 1 11 2 -F 2 1 6 4 10 1 -F 2 5 11 1 13 4 -F 2 6 12 1 11 2 -F 2 13 1 0 11 3 -F 2 14 2 0 11 3 -F 2 7 2 4 17 9 -F 2 3 3 4 12 4 -F 2 9 5 0 14 6 -F 2 4 5 4 19 11 -F 2 4 6 0 14 6 -F 2 2 6 4 10 2 -F 2 12 0 2 11 4 -F 2 9 2 7 22 15 -F 2 8 3 7 18 11 -F 2 9 5 7 25 18 -F 2 5 0 7 12 6 -F 2 5 2 7 22 16 -F 2 6 5 7 25 19 -F 2 6 1 7 6 1 -F 2 12 2 7 22 17 -F 2 6 2 8 6 1 -F 2 10 3 7 18 13 -F 2 5 3 8 6 1 -F 2 6 5 7 25 20 -F 2 7 6 8 25 20 -F 2 8 11 7 14 9 -F 2 10 12 7 10 5 -F 2 11 0 3 6 2 -F 2 6 0 7 12 8 -F 2 10 1 3 17 13 -F 2 5 1 7 6 2 -F 2 5 2 3 6 2 -F 2 5 3 7 18 14 -F 2 6 4 7 6 2 -F 2 14 5 3 10 6 -F 2 7 5 7 25 21 -F 2 3 5 8 5 1 -F 2 16 6 3 19 15 -F 2 8 6 7 5 1 -F 2 10 11 3 6 2 -F 2 5 11 7 14 10 -F 2 10 12 3 8 4 -F 2 5 12 7 10 6 -F 2 13 0 3 6 3 -F 2 7 0 7 12 9 -F 2 3 0 11 4 1 -F 2 2 0 12 4 1 -F 2 19 1 7 6 3 -F 2 9 1 8 22 19 -F 2 5 2 7 22 19 -F 2 9 3 7 18 15 -F 2 15 4 7 6 3 -F 2 8 4 8 18 15 -F 2 12 5 7 25 22 -F 2 6 5 8 5 2 -F 2 10 6 7 5 2 -F 2 5 6 8 25 22 -F 2 5 11 7 14 11 -F 2 7 12 7 10 7 -F 2 7 0 7 12 10 -F 2 4 0 12 4 2 -F 2 18 1 0 11 9 -F 2 9 1 7 6 4 -F 2 18 2 0 11 9 -F 2 9 2 7 22 20 -F 2 6 3 7 18 16 -F 2 12 4 7 6 4 -F 2 6 4 8 18 16 -F 2 8 5 7 25 23 -F 2 4 5 8 5 3 -F 2 13 6 7 5 3 -F 2 6 6 8 25 23 -F 2 5 11 0 4 2 -F 2 6 12 0 4 2 -F 2 11 0 4 6 5 -F 2 5 0 7 12 11 -F 2 7 1 4 6 5 -F 2 14 2 7 22 21 -F 2 7 2 8 6 5 -F 2 6 3 7 18 17 -F 2 7 4 7 6 5 -F 2 6 5 7 25 24 -F 2 3 5 8 5 4 -F 2 13 6 7 5 4 -F 2 6 6 8 25 24 -F 2 8 11 7 14 13 -F 2 6 12 7 10 9 -go - -engine > player2: P 11.803996 11.215721 1 22 3 -P 9.319567 21.808874 1 12 5 -P 14.288424 0.622569 1 37 5 -P 11.865493 5.273785 1 16 3 -P 11.742498 17.157658 1 29 3 -P 4.254093 0.000000 1 11 1 -P 19.353899 22.431443 1 32 1 -P 14.743614 22.324001 0 4 3 -P 8.864377 0.107441 0 29 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 16 5 -P 14.743177 12.694819 1 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 127 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 1 5 23 1 -F 1 5 2 6 23 1 -F 1 11 1 5 23 2 -F 1 6 2 6 23 2 -F 1 10 2 6 23 3 -F 1 5 2 7 22 2 -F 1 11 1 2 22 3 -F 1 8 2 6 23 4 -F 1 5 1 2 22 4 -F 1 12 1 2 22 5 -F 1 16 1 3 17 1 -F 1 5 5 6 28 12 -F 1 7 2 6 23 8 -F 1 6 3 6 19 4 -F 1 8 11 6 17 2 -F 1 6 5 6 28 14 -F 1 13 0 6 14 1 -F 1 11 2 6 23 10 -F 1 5 2 7 22 9 -F 1 9 5 6 28 15 -F 1 4 1 11 13 1 -F 1 2 2 12 13 1 -F 1 11 3 1 17 5 -F 1 5 3 6 19 7 -F 1 20 5 1 23 11 -F 1 10 5 6 28 16 -F 1 5 5 7 25 13 -F 1 1 5 12 17 5 -F 1 12 2 1 22 11 -F 1 6 2 7 22 11 -F 1 3 2 12 13 2 -F 1 11 3 1 17 6 -F 1 6 3 7 18 7 -F 1 22 5 1 23 12 -F 1 11 5 7 25 14 -F 1 3 5 12 17 6 -F 1 6 11 7 14 3 -F 1 12 0 1 11 1 -F 1 6 0 7 12 2 -F 1 4 2 1 22 12 -F 1 16 3 1 17 7 -F 1 8 3 7 18 8 -F 1 18 5 1 23 13 -F 1 9 5 7 25 15 -F 1 6 6 1 11 1 -F 1 5 11 1 13 3 -F 1 7 12 1 11 1 -F 1 24 0 1 11 2 -F 1 6 0 7 12 3 -F 1 4 2 1 22 13 -F 1 2 2 4 17 8 -F 1 26 3 1 17 8 -F 1 13 3 4 12 3 -F 1 6 3 7 18 9 -F 1 3 5 1 23 14 -F 1 1 5 4 19 10 -F 1 2 6 1 11 2 -F 1 1 6 4 10 1 -F 1 5 11 1 13 4 -F 1 6 12 1 11 2 -F 1 13 1 0 11 3 -F 1 14 2 0 11 3 -F 1 7 2 4 17 9 -F 1 3 3 4 12 4 -F 1 9 5 0 14 6 -F 1 4 5 4 19 11 -F 1 4 6 0 14 6 -F 1 2 6 4 10 2 -F 1 12 0 2 11 4 -F 1 9 2 7 22 15 -F 1 8 3 7 18 11 -F 1 9 5 7 25 18 -F 1 5 0 7 12 6 -F 1 5 2 7 22 16 -F 1 6 5 7 25 19 -F 1 6 1 7 6 1 -F 1 12 2 7 22 17 -F 1 6 2 8 6 1 -F 1 10 3 7 18 13 -F 1 5 3 8 6 1 -F 1 6 5 7 25 20 -F 1 7 6 8 25 20 -F 1 8 11 7 14 9 -F 1 10 12 7 10 5 -F 1 11 0 3 6 2 -F 1 6 0 7 12 8 -F 1 10 1 3 17 13 -F 1 5 1 7 6 2 -F 1 5 2 3 6 2 -F 1 5 3 7 18 14 -F 1 6 4 7 6 2 -F 1 14 5 3 10 6 -F 1 7 5 7 25 21 -F 1 3 5 8 5 1 -F 1 16 6 3 19 15 -F 1 8 6 7 5 1 -F 1 10 11 3 6 2 -F 1 5 11 7 14 10 -F 1 10 12 3 8 4 -F 1 5 12 7 10 6 -F 1 13 0 3 6 3 -F 1 7 0 7 12 9 -F 1 3 0 11 4 1 -F 1 2 0 12 4 1 -F 1 19 1 7 6 3 -F 1 9 1 8 22 19 -F 1 5 2 7 22 19 -F 1 9 3 7 18 15 -F 1 15 4 7 6 3 -F 1 8 4 8 18 15 -F 1 12 5 7 25 22 -F 1 6 5 8 5 2 -F 1 10 6 7 5 2 -F 1 5 6 8 25 22 -F 1 5 11 7 14 11 -F 1 7 12 7 10 7 -F 1 7 0 7 12 10 -F 1 4 0 12 4 2 -F 1 18 1 0 11 9 -F 1 9 1 7 6 4 -F 1 18 2 0 11 9 -F 1 9 2 7 22 20 -F 1 6 3 7 18 16 -F 1 12 4 7 6 4 -F 1 6 4 8 18 16 -F 1 8 5 7 25 23 -F 1 4 5 8 5 3 -F 1 13 6 7 5 3 -F 1 6 6 8 25 23 -F 1 5 11 0 4 2 -F 1 6 12 0 4 2 -F 1 11 0 4 6 5 -F 1 5 0 7 12 11 -F 1 7 1 4 6 5 -F 1 14 2 7 22 21 -F 1 7 2 8 6 5 -F 1 6 3 7 18 17 -F 1 7 4 7 6 5 -F 1 6 5 7 25 24 -F 1 3 5 8 5 4 -F 1 13 6 7 5 4 -F 1 6 6 8 25 24 -F 1 8 11 7 14 13 -F 1 6 12 7 10 9 -go - -player1 > engine: 15 3 63 -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 1 0 0.1740544248372269 -player2 > engine: 0 7 11 -player2 > engine: comparing 0 and 8, gives 1 0 0.1740544209620978 -player2 > engine: 0 8 5 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 1 0 0.22024599787140162 -player2 > engine: 1 7 6 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 18 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 1 0 0.055283730301199124 -player2 > engine: 2 7 9 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 1 0 0.11566425403838958 -player2 > engine: 3 7 8 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 1 0 0.3347412907627885 -player2 > engine: 4 7 14 -player2 > engine: comparing 4 and 8, gives 1 0 0.11566424744259145 -player2 > engine: 4 8 7 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 1 0 0.24325391264188054 -player2 > engine: 5 7 5 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 3 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 1 0 1.301084708495155 -player2 > engine: 6 7 16 -player2 > engine: comparing 6 and 8, gives 1 0 0.24325389952200152 -player2 > engine: 6 8 8 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 8 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0.0863773644023548 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 7 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0.12462117745455811 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 9 3 -P 9.319567 21.808874 2 36 5 -P 14.288424 0.622569 2 33 5 -P 11.865493 5.273785 2 27 3 -P 11.742498 17.157658 2 12 3 -P 4.254093 0.000000 2 10 1 -P 19.353899 22.431443 2 27 1 -P 14.743614 22.324001 2 10 3 -P 8.864377 0.107441 0 15 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 20 5 -P 14.743177 12.694819 2 17 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 67 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 11 1 5 23 1 -F 2 6 2 6 23 1 -F 2 10 2 6 23 2 -F 2 5 2 7 22 1 -F 2 11 1 2 22 2 -F 2 8 2 6 23 3 -F 2 5 1 2 22 3 -F 2 12 1 2 22 4 -F 2 5 5 6 28 11 -F 2 7 2 6 23 7 -F 2 6 3 6 19 3 -F 2 8 11 6 17 1 -F 2 6 5 6 28 13 -F 2 11 2 6 23 9 -F 2 5 2 7 22 8 -F 2 9 5 6 28 14 -F 2 11 3 1 17 4 -F 2 5 3 6 19 6 -F 2 20 5 1 23 10 -F 2 10 5 6 28 15 -F 2 5 5 7 25 12 -F 2 1 5 12 17 4 -F 2 12 2 1 22 10 -F 2 6 2 7 22 10 -F 2 3 2 12 13 1 -F 2 11 3 1 17 5 -F 2 6 3 7 18 6 -F 2 22 5 1 23 11 -F 2 11 5 7 25 13 -F 2 3 5 12 17 5 -F 2 6 11 7 14 2 -F 2 6 0 7 12 1 -F 2 4 2 1 22 11 -F 2 16 3 1 17 6 -F 2 8 3 7 18 7 -F 2 18 5 1 23 12 -F 2 9 5 7 25 14 -F 2 5 11 1 13 2 -F 2 24 0 1 11 1 -F 2 6 0 7 12 2 -F 2 4 2 1 22 12 -F 2 2 2 4 17 7 -F 2 26 3 1 17 7 -F 2 13 3 4 12 2 -F 2 6 3 7 18 8 -F 2 3 5 1 23 13 -F 2 1 5 4 19 9 -F 2 2 6 1 11 1 -F 2 5 11 1 13 3 -F 2 6 12 1 11 1 -F 2 13 1 0 11 2 -F 2 14 2 0 11 2 -F 2 7 2 4 17 8 -F 2 3 3 4 12 3 -F 2 9 5 0 14 5 -F 2 4 5 4 19 10 -F 2 4 6 0 14 5 -F 2 2 6 4 10 1 -F 2 12 0 2 11 3 -F 2 9 2 7 22 14 -F 2 8 3 7 18 10 -F 2 9 5 7 25 17 -F 2 5 0 7 12 5 -F 2 5 2 7 22 15 -F 2 6 5 7 25 18 -F 2 12 2 7 22 16 -F 2 10 3 7 18 12 -F 2 6 5 7 25 19 -F 2 7 6 8 25 19 -F 2 8 11 7 14 8 -F 2 10 12 7 10 4 -F 2 11 0 3 6 1 -F 2 6 0 7 12 7 -F 2 10 1 3 17 12 -F 2 5 1 7 6 1 -F 2 5 2 3 6 1 -F 2 5 3 7 18 13 -F 2 6 4 7 6 1 -F 2 14 5 3 10 5 -F 2 7 5 7 25 20 -F 2 16 6 3 19 14 -F 2 10 11 3 6 1 -F 2 5 11 7 14 9 -F 2 10 12 3 8 3 -F 2 5 12 7 10 5 -F 2 13 0 3 6 2 -F 2 7 0 7 12 8 -F 2 19 1 7 6 2 -F 2 9 1 8 22 18 -F 2 5 2 7 22 18 -F 2 9 3 7 18 14 -F 2 15 4 7 6 2 -F 2 8 4 8 18 14 -F 2 12 5 7 25 21 -F 2 6 5 8 5 1 -F 2 10 6 7 5 1 -F 2 5 6 8 25 21 -F 2 5 11 7 14 10 -F 2 7 12 7 10 6 -F 2 7 0 7 12 9 -F 2 4 0 12 4 1 -F 2 18 1 0 11 8 -F 2 9 1 7 6 3 -F 2 18 2 0 11 8 -F 2 9 2 7 22 19 -F 2 6 3 7 18 15 -F 2 12 4 7 6 3 -F 2 6 4 8 18 15 -F 2 8 5 7 25 22 -F 2 4 5 8 5 2 -F 2 13 6 7 5 2 -F 2 6 6 8 25 22 -F 2 5 11 0 4 1 -F 2 6 12 0 4 1 -F 2 11 0 4 6 4 -F 2 5 0 7 12 10 -F 2 7 1 4 6 4 -F 2 14 2 7 22 20 -F 2 7 2 8 6 4 -F 2 6 3 7 18 16 -F 2 7 4 7 6 4 -F 2 6 5 7 25 23 -F 2 3 5 8 5 3 -F 2 13 6 7 5 3 -F 2 6 6 8 25 23 -F 2 8 11 7 14 12 -F 2 6 12 7 10 8 -F 1 63 15 3 14 13 -F 2 11 0 7 12 11 -F 2 5 0 8 12 11 -F 2 6 1 7 6 5 -F 2 9 2 7 22 21 -F 2 8 3 7 18 17 -F 2 14 4 7 6 5 -F 2 7 4 8 18 17 -F 2 5 5 7 25 24 -F 2 3 5 8 5 4 -F 2 16 6 7 5 4 -F 2 8 6 8 25 24 -F 2 8 11 0 4 3 -F 2 7 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 9 3 -P 9.319567 21.808874 1 36 5 -P 14.288424 0.622569 1 33 5 -P 11.865493 5.273785 1 27 3 -P 11.742498 17.157658 1 12 3 -P 4.254093 0.000000 1 10 1 -P 19.353899 22.431443 1 27 1 -P 14.743614 22.324001 1 10 3 -P 8.864377 0.107441 0 15 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 20 5 -P 14.743177 12.694819 1 17 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 67 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 11 1 5 23 1 -F 1 6 2 6 23 1 -F 1 10 2 6 23 2 -F 1 5 2 7 22 1 -F 1 11 1 2 22 2 -F 1 8 2 6 23 3 -F 1 5 1 2 22 3 -F 1 12 1 2 22 4 -F 1 5 5 6 28 11 -F 1 7 2 6 23 7 -F 1 6 3 6 19 3 -F 1 8 11 6 17 1 -F 1 6 5 6 28 13 -F 1 11 2 6 23 9 -F 1 5 2 7 22 8 -F 1 9 5 6 28 14 -F 1 11 3 1 17 4 -F 1 5 3 6 19 6 -F 1 20 5 1 23 10 -F 1 10 5 6 28 15 -F 1 5 5 7 25 12 -F 1 1 5 12 17 4 -F 1 12 2 1 22 10 -F 1 6 2 7 22 10 -F 1 3 2 12 13 1 -F 1 11 3 1 17 5 -F 1 6 3 7 18 6 -F 1 22 5 1 23 11 -F 1 11 5 7 25 13 -F 1 3 5 12 17 5 -F 1 6 11 7 14 2 -F 1 6 0 7 12 1 -F 1 4 2 1 22 11 -F 1 16 3 1 17 6 -F 1 8 3 7 18 7 -F 1 18 5 1 23 12 -F 1 9 5 7 25 14 -F 1 5 11 1 13 2 -F 1 24 0 1 11 1 -F 1 6 0 7 12 2 -F 1 4 2 1 22 12 -F 1 2 2 4 17 7 -F 1 26 3 1 17 7 -F 1 13 3 4 12 2 -F 1 6 3 7 18 8 -F 1 3 5 1 23 13 -F 1 1 5 4 19 9 -F 1 2 6 1 11 1 -F 1 5 11 1 13 3 -F 1 6 12 1 11 1 -F 1 13 1 0 11 2 -F 1 14 2 0 11 2 -F 1 7 2 4 17 8 -F 1 3 3 4 12 3 -F 1 9 5 0 14 5 -F 1 4 5 4 19 10 -F 1 4 6 0 14 5 -F 1 2 6 4 10 1 -F 1 12 0 2 11 3 -F 1 9 2 7 22 14 -F 1 8 3 7 18 10 -F 1 9 5 7 25 17 -F 1 5 0 7 12 5 -F 1 5 2 7 22 15 -F 1 6 5 7 25 18 -F 1 12 2 7 22 16 -F 1 10 3 7 18 12 -F 1 6 5 7 25 19 -F 1 7 6 8 25 19 -F 1 8 11 7 14 8 -F 1 10 12 7 10 4 -F 1 11 0 3 6 1 -F 1 6 0 7 12 7 -F 1 10 1 3 17 12 -F 1 5 1 7 6 1 -F 1 5 2 3 6 1 -F 1 5 3 7 18 13 -F 1 6 4 7 6 1 -F 1 14 5 3 10 5 -F 1 7 5 7 25 20 -F 1 16 6 3 19 14 -F 1 10 11 3 6 1 -F 1 5 11 7 14 9 -F 1 10 12 3 8 3 -F 1 5 12 7 10 5 -F 1 13 0 3 6 2 -F 1 7 0 7 12 8 -F 1 19 1 7 6 2 -F 1 9 1 8 22 18 -F 1 5 2 7 22 18 -F 1 9 3 7 18 14 -F 1 15 4 7 6 2 -F 1 8 4 8 18 14 -F 1 12 5 7 25 21 -F 1 6 5 8 5 1 -F 1 10 6 7 5 1 -F 1 5 6 8 25 21 -F 1 5 11 7 14 10 -F 1 7 12 7 10 6 -F 1 7 0 7 12 9 -F 1 4 0 12 4 1 -F 1 18 1 0 11 8 -F 1 9 1 7 6 3 -F 1 18 2 0 11 8 -F 1 9 2 7 22 19 -F 1 6 3 7 18 15 -F 1 12 4 7 6 3 -F 1 6 4 8 18 15 -F 1 8 5 7 25 22 -F 1 4 5 8 5 2 -F 1 13 6 7 5 2 -F 1 6 6 8 25 22 -F 1 5 11 0 4 1 -F 1 6 12 0 4 1 -F 1 11 0 4 6 4 -F 1 5 0 7 12 10 -F 1 7 1 4 6 4 -F 1 14 2 7 22 20 -F 1 7 2 8 6 4 -F 1 6 3 7 18 16 -F 1 7 4 7 6 4 -F 1 6 5 7 25 23 -F 1 3 5 8 5 3 -F 1 13 6 7 5 3 -F 1 6 6 8 25 23 -F 1 8 11 7 14 12 -F 1 6 12 7 10 8 -F 2 63 15 3 14 13 -F 1 11 0 7 12 11 -F 1 5 0 8 12 11 -F 1 6 1 7 6 5 -F 1 9 2 7 22 21 -F 1 8 3 7 18 17 -F 1 14 4 7 6 5 -F 1 7 4 8 18 17 -F 1 5 5 7 25 24 -F 1 3 5 8 5 4 -F 1 16 6 7 5 4 -F 1 8 6 8 25 24 -F 1 8 11 0 4 3 -F 1 7 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 4 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 2 0 -player2 > engine: 1 5 18 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 1 0 0.0552837277548503 -player2 > engine: 1 8 9 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 2 0 -player2 > engine: 1 11 4 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 2 0 -player2 > engine: 2 5 16 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 1 0 0.22024599404952816 -player2 > engine: 2 8 8 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 2 0 -player2 > engine: 2 11 4 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 2 0 -player2 > engine: 3 5 13 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 1 0 0.3347412423175552 -player2 > engine: 3 8 7 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 2 0 -player2 > engine: 3 11 3 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 1 0 0.11566424744259145 -player2 > engine: 4 8 6 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 2 0 -player2 > engine: 4 11 3 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 5 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 2 0 -player2 > engine: 5 11 2 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 2 0 -player2 > engine: 6 5 13 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 1 0 0.24325389952200152 -player2 > engine: 6 8 7 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 2 0 -player2 > engine: 6 11 3 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0.08702721144983125 -player2 > engine: comparing 7 and 9, gives 0 0 0.03001903676337727 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 2 0 -player2 > engine: 7 11 5 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 1 0 0.12462116451252786 -player2 > engine: 11 8 10 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 2 0 -player2 > engine: 11 11 5 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 1 0 0.08637735876892912 -player2 > engine: 12 8 8 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 2 0 -player2 > engine: 12 11 4 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 19 3 -P 9.319567 21.808874 2 42 5 -P 14.288424 0.622569 2 10 5 -P 11.865493 5.273785 2 33 3 -P 11.742498 17.157658 2 8 3 -P 4.254093 0.000000 2 15 1 -P 19.353899 22.431443 2 19 1 -P 14.743614 22.324001 2 40 3 -P 8.864377 0.107441 0 9 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 15 5 -P 14.743177 12.694819 2 17 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 70 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 10 2 6 23 1 -F 2 11 1 2 22 1 -F 2 8 2 6 23 2 -F 2 5 1 2 22 2 -F 2 12 1 2 22 3 -F 2 5 5 6 28 10 -F 2 7 2 6 23 6 -F 2 6 3 6 19 2 -F 2 6 5 6 28 12 -F 2 11 2 6 23 8 -F 2 5 2 7 22 7 -F 2 9 5 6 28 13 -F 2 11 3 1 17 3 -F 2 5 3 6 19 5 -F 2 20 5 1 23 9 -F 2 10 5 6 28 14 -F 2 5 5 7 25 11 -F 2 1 5 12 17 3 -F 2 12 2 1 22 9 -F 2 6 2 7 22 9 -F 2 11 3 1 17 4 -F 2 6 3 7 18 5 -F 2 22 5 1 23 10 -F 2 11 5 7 25 12 -F 2 3 5 12 17 4 -F 2 6 11 7 14 1 -F 2 4 2 1 22 10 -F 2 16 3 1 17 5 -F 2 8 3 7 18 6 -F 2 18 5 1 23 11 -F 2 9 5 7 25 13 -F 2 5 11 1 13 1 -F 2 6 0 7 12 1 -F 2 4 2 1 22 11 -F 2 2 2 4 17 6 -F 2 26 3 1 17 6 -F 2 13 3 4 12 1 -F 2 6 3 7 18 7 -F 2 3 5 1 23 12 -F 2 1 5 4 19 8 -F 2 5 11 1 13 2 -F 2 13 1 0 11 1 -F 2 14 2 0 11 1 -F 2 7 2 4 17 7 -F 2 3 3 4 12 2 -F 2 9 5 0 14 4 -F 2 4 5 4 19 9 -F 2 4 6 0 14 4 -F 2 12 0 2 11 2 -F 2 9 2 7 22 13 -F 2 8 3 7 18 9 -F 2 9 5 7 25 16 -F 2 5 0 7 12 4 -F 2 5 2 7 22 14 -F 2 6 5 7 25 17 -F 2 12 2 7 22 15 -F 2 10 3 7 18 11 -F 2 6 5 7 25 18 -F 2 7 6 8 25 18 -F 2 8 11 7 14 7 -F 2 10 12 7 10 3 -F 2 6 0 7 12 6 -F 2 10 1 3 17 11 -F 2 5 3 7 18 12 -F 2 14 5 3 10 4 -F 2 7 5 7 25 19 -F 2 16 6 3 19 13 -F 2 5 11 7 14 8 -F 2 10 12 3 8 2 -F 2 5 12 7 10 4 -F 2 13 0 3 6 1 -F 2 7 0 7 12 7 -F 2 19 1 7 6 1 -F 2 9 1 8 22 17 -F 2 5 2 7 22 17 -F 2 9 3 7 18 13 -F 2 15 4 7 6 1 -F 2 8 4 8 18 13 -F 2 12 5 7 25 20 -F 2 5 6 8 25 20 -F 2 5 11 7 14 9 -F 2 7 12 7 10 5 -F 2 7 0 7 12 8 -F 2 18 1 0 11 7 -F 2 9 1 7 6 2 -F 2 18 2 0 11 7 -F 2 9 2 7 22 18 -F 2 6 3 7 18 14 -F 2 12 4 7 6 2 -F 2 6 4 8 18 14 -F 2 8 5 7 25 21 -F 2 4 5 8 5 1 -F 2 13 6 7 5 1 -F 2 6 6 8 25 21 -F 2 11 0 4 6 3 -F 2 5 0 7 12 9 -F 2 7 1 4 6 3 -F 2 14 2 7 22 19 -F 2 7 2 8 6 3 -F 2 6 3 7 18 15 -F 2 7 4 7 6 3 -F 2 6 5 7 25 22 -F 2 3 5 8 5 2 -F 2 13 6 7 5 2 -F 2 6 6 8 25 22 -F 2 8 11 7 14 11 -F 2 6 12 7 10 7 -F 1 63 15 3 14 12 -F 2 11 0 7 12 10 -F 2 5 0 8 12 10 -F 2 6 1 7 6 4 -F 2 9 2 7 22 20 -F 2 8 3 7 18 16 -F 2 14 4 7 6 4 -F 2 7 4 8 18 16 -F 2 5 5 7 25 23 -F 2 3 5 8 5 3 -F 2 16 6 7 5 3 -F 2 8 6 8 25 23 -F 2 8 11 0 4 2 -F 2 7 12 0 4 2 -F 2 4 0 11 4 3 -F 2 18 1 5 23 22 -F 2 9 1 8 22 21 -F 2 4 1 11 13 12 -F 2 16 2 5 11 10 -F 2 8 2 8 6 5 -F 2 4 2 11 11 10 -F 2 13 3 5 10 9 -F 2 7 3 8 6 5 -F 2 3 3 11 6 5 -F 2 6 4 8 18 17 -F 2 3 4 11 8 7 -F 2 5 5 8 5 4 -F 2 2 5 11 11 10 -F 2 13 6 5 28 27 -F 2 7 6 8 25 24 -F 2 3 6 11 17 16 -F 2 5 7 11 14 13 -F 2 10 11 8 10 9 -F 2 8 12 8 14 13 -F 2 4 12 11 7 6 -go - -engine > player2: P 11.803996 11.215721 1 19 3 -P 9.319567 21.808874 1 42 5 -P 14.288424 0.622569 1 10 5 -P 11.865493 5.273785 1 33 3 -P 11.742498 17.157658 1 8 3 -P 4.254093 0.000000 1 15 1 -P 19.353899 22.431443 1 19 1 -P 14.743614 22.324001 1 40 3 -P 8.864377 0.107441 0 9 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 15 5 -P 14.743177 12.694819 1 17 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 70 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 10 2 6 23 1 -F 1 11 1 2 22 1 -F 1 8 2 6 23 2 -F 1 5 1 2 22 2 -F 1 12 1 2 22 3 -F 1 5 5 6 28 10 -F 1 7 2 6 23 6 -F 1 6 3 6 19 2 -F 1 6 5 6 28 12 -F 1 11 2 6 23 8 -F 1 5 2 7 22 7 -F 1 9 5 6 28 13 -F 1 11 3 1 17 3 -F 1 5 3 6 19 5 -F 1 20 5 1 23 9 -F 1 10 5 6 28 14 -F 1 5 5 7 25 11 -F 1 1 5 12 17 3 -F 1 12 2 1 22 9 -F 1 6 2 7 22 9 -F 1 11 3 1 17 4 -F 1 6 3 7 18 5 -F 1 22 5 1 23 10 -F 1 11 5 7 25 12 -F 1 3 5 12 17 4 -F 1 6 11 7 14 1 -F 1 4 2 1 22 10 -F 1 16 3 1 17 5 -F 1 8 3 7 18 6 -F 1 18 5 1 23 11 -F 1 9 5 7 25 13 -F 1 5 11 1 13 1 -F 1 6 0 7 12 1 -F 1 4 2 1 22 11 -F 1 2 2 4 17 6 -F 1 26 3 1 17 6 -F 1 13 3 4 12 1 -F 1 6 3 7 18 7 -F 1 3 5 1 23 12 -F 1 1 5 4 19 8 -F 1 5 11 1 13 2 -F 1 13 1 0 11 1 -F 1 14 2 0 11 1 -F 1 7 2 4 17 7 -F 1 3 3 4 12 2 -F 1 9 5 0 14 4 -F 1 4 5 4 19 9 -F 1 4 6 0 14 4 -F 1 12 0 2 11 2 -F 1 9 2 7 22 13 -F 1 8 3 7 18 9 -F 1 9 5 7 25 16 -F 1 5 0 7 12 4 -F 1 5 2 7 22 14 -F 1 6 5 7 25 17 -F 1 12 2 7 22 15 -F 1 10 3 7 18 11 -F 1 6 5 7 25 18 -F 1 7 6 8 25 18 -F 1 8 11 7 14 7 -F 1 10 12 7 10 3 -F 1 6 0 7 12 6 -F 1 10 1 3 17 11 -F 1 5 3 7 18 12 -F 1 14 5 3 10 4 -F 1 7 5 7 25 19 -F 1 16 6 3 19 13 -F 1 5 11 7 14 8 -F 1 10 12 3 8 2 -F 1 5 12 7 10 4 -F 1 13 0 3 6 1 -F 1 7 0 7 12 7 -F 1 19 1 7 6 1 -F 1 9 1 8 22 17 -F 1 5 2 7 22 17 -F 1 9 3 7 18 13 -F 1 15 4 7 6 1 -F 1 8 4 8 18 13 -F 1 12 5 7 25 20 -F 1 5 6 8 25 20 -F 1 5 11 7 14 9 -F 1 7 12 7 10 5 -F 1 7 0 7 12 8 -F 1 18 1 0 11 7 -F 1 9 1 7 6 2 -F 1 18 2 0 11 7 -F 1 9 2 7 22 18 -F 1 6 3 7 18 14 -F 1 12 4 7 6 2 -F 1 6 4 8 18 14 -F 1 8 5 7 25 21 -F 1 4 5 8 5 1 -F 1 13 6 7 5 1 -F 1 6 6 8 25 21 -F 1 11 0 4 6 3 -F 1 5 0 7 12 9 -F 1 7 1 4 6 3 -F 1 14 2 7 22 19 -F 1 7 2 8 6 3 -F 1 6 3 7 18 15 -F 1 7 4 7 6 3 -F 1 6 5 7 25 22 -F 1 3 5 8 5 2 -F 1 13 6 7 5 2 -F 1 6 6 8 25 22 -F 1 8 11 7 14 11 -F 1 6 12 7 10 7 -F 2 63 15 3 14 12 -F 1 11 0 7 12 10 -F 1 5 0 8 12 10 -F 1 6 1 7 6 4 -F 1 9 2 7 22 20 -F 1 8 3 7 18 16 -F 1 14 4 7 6 4 -F 1 7 4 8 18 16 -F 1 5 5 7 25 23 -F 1 3 5 8 5 3 -F 1 16 6 7 5 3 -F 1 8 6 8 25 23 -F 1 8 11 0 4 2 -F 1 7 12 0 4 2 -F 1 4 0 11 4 3 -F 1 18 1 5 23 22 -F 1 9 1 8 22 21 -F 1 4 1 11 13 12 -F 1 16 2 5 11 10 -F 1 8 2 8 6 5 -F 1 4 2 11 11 10 -F 1 13 3 5 10 9 -F 1 7 3 8 6 5 -F 1 3 3 11 6 5 -F 1 6 4 8 18 17 -F 1 3 4 11 8 7 -F 1 5 5 8 5 4 -F 1 2 5 11 11 10 -F 1 13 6 5 28 27 -F 1 7 6 8 25 24 -F 1 3 6 11 17 16 -F 1 5 7 11 14 13 -F 1 10 11 8 10 9 -F 1 8 12 8 14 13 -F 1 4 12 11 7 6 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 2 0 -player2 > engine: 0 5 9 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0.1740544209620978 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 5 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 2 0 -player2 > engine: 1 5 21 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 1 0 0.0552837277548503 -player2 > engine: 1 8 10 -player2 > engine: comparing 1 and 9, gives 1 0 0.01696282572734245 -player2 > engine: 1 9 5 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 2 0 -player2 > engine: 2 5 5 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 2 0 -player2 > engine: 3 5 16 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 1 0 0.3347412423175552 -player2 > engine: 3 8 8 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 2 0 -player2 > engine: 4 5 4 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 2 0 -player2 > engine: 4 12 2 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 2 0 -player2 > engine: 5 5 7 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 4 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 2 0 -player2 > engine: 6 5 9 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0.24325389952200152 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 2 0 -player2 > engine: 6 11 5 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 2 0 -player2 > engine: 7 5 20 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 1 0 0.08702721144983125 -player2 > engine: 7 8 10 -player2 > engine: comparing 7 and 9, gives 0 0 0.03001903676337727 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 2 0 -player2 > engine: 7 11 5 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 2 0 -player2 > engine: 11 5 7 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 2 0 -player2 > engine: 12 5 8 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 4 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 33 3 -P 9.319567 21.808874 2 16 5 -P 14.288424 0.622569 2 21 5 -P 11.865493 5.273785 2 25 3 -P 11.742498 17.157658 2 18 3 -P 4.254093 0.000000 2 12 1 -P 19.353899 22.431443 2 16 1 -P 14.743614 22.324001 2 67 3 -P 8.864377 0.107441 0 5 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 13 5 -P 14.743177 12.694819 2 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 73 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 8 2 6 23 1 -F 2 5 1 2 22 1 -F 2 12 1 2 22 2 -F 2 5 5 6 28 9 -F 2 7 2 6 23 5 -F 2 6 3 6 19 1 -F 2 6 5 6 28 11 -F 2 11 2 6 23 7 -F 2 5 2 7 22 6 -F 2 9 5 6 28 12 -F 2 11 3 1 17 2 -F 2 5 3 6 19 4 -F 2 20 5 1 23 8 -F 2 10 5 6 28 13 -F 2 5 5 7 25 10 -F 2 1 5 12 17 2 -F 2 12 2 1 22 8 -F 2 6 2 7 22 8 -F 2 11 3 1 17 3 -F 2 6 3 7 18 4 -F 2 22 5 1 23 9 -F 2 11 5 7 25 11 -F 2 3 5 12 17 3 -F 2 4 2 1 22 9 -F 2 16 3 1 17 4 -F 2 8 3 7 18 5 -F 2 18 5 1 23 10 -F 2 9 5 7 25 12 -F 2 4 2 1 22 10 -F 2 2 2 4 17 5 -F 2 26 3 1 17 5 -F 2 6 3 7 18 6 -F 2 3 5 1 23 11 -F 2 1 5 4 19 7 -F 2 5 11 1 13 1 -F 2 7 2 4 17 6 -F 2 3 3 4 12 1 -F 2 9 5 0 14 3 -F 2 4 5 4 19 8 -F 2 4 6 0 14 3 -F 2 12 0 2 11 1 -F 2 9 2 7 22 12 -F 2 8 3 7 18 8 -F 2 9 5 7 25 15 -F 2 5 0 7 12 3 -F 2 5 2 7 22 13 -F 2 6 5 7 25 16 -F 2 12 2 7 22 14 -F 2 10 3 7 18 10 -F 2 6 5 7 25 17 -F 2 7 6 8 25 17 -F 2 8 11 7 14 6 -F 2 10 12 7 10 2 -F 2 6 0 7 12 5 -F 2 10 1 3 17 10 -F 2 5 3 7 18 11 -F 2 14 5 3 10 3 -F 2 7 5 7 25 18 -F 2 16 6 3 19 12 -F 2 5 11 7 14 7 -F 2 10 12 3 8 1 -F 2 5 12 7 10 3 -F 2 7 0 7 12 6 -F 2 9 1 8 22 16 -F 2 5 2 7 22 16 -F 2 9 3 7 18 12 -F 2 8 4 8 18 12 -F 2 12 5 7 25 19 -F 2 5 6 8 25 19 -F 2 5 11 7 14 8 -F 2 7 12 7 10 4 -F 2 7 0 7 12 7 -F 2 18 1 0 11 6 -F 2 9 1 7 6 1 -F 2 18 2 0 11 6 -F 2 9 2 7 22 17 -F 2 6 3 7 18 13 -F 2 12 4 7 6 1 -F 2 6 4 8 18 13 -F 2 8 5 7 25 20 -F 2 6 6 8 25 20 -F 2 11 0 4 6 2 -F 2 5 0 7 12 8 -F 2 7 1 4 6 2 -F 2 14 2 7 22 18 -F 2 7 2 8 6 2 -F 2 6 3 7 18 14 -F 2 7 4 7 6 2 -F 2 6 5 7 25 21 -F 2 3 5 8 5 1 -F 2 13 6 7 5 1 -F 2 6 6 8 25 21 -F 2 8 11 7 14 10 -F 2 6 12 7 10 6 -F 1 63 15 3 14 11 -F 2 11 0 7 12 9 -F 2 5 0 8 12 9 -F 2 6 1 7 6 3 -F 2 9 2 7 22 19 -F 2 8 3 7 18 15 -F 2 14 4 7 6 3 -F 2 7 4 8 18 15 -F 2 5 5 7 25 22 -F 2 3 5 8 5 2 -F 2 16 6 7 5 2 -F 2 8 6 8 25 22 -F 2 8 11 0 4 1 -F 2 7 12 0 4 1 -F 2 4 0 11 4 2 -F 2 18 1 5 23 21 -F 2 9 1 8 22 20 -F 2 4 1 11 13 11 -F 2 16 2 5 11 9 -F 2 8 2 8 6 4 -F 2 4 2 11 11 9 -F 2 13 3 5 10 8 -F 2 7 3 8 6 4 -F 2 3 3 11 6 4 -F 2 6 4 8 18 16 -F 2 3 4 11 8 6 -F 2 5 5 8 5 3 -F 2 2 5 11 11 9 -F 2 13 6 5 28 26 -F 2 7 6 8 25 23 -F 2 3 6 11 17 15 -F 2 5 7 11 14 12 -F 2 10 11 8 10 8 -F 2 8 12 8 14 12 -F 2 4 12 11 7 5 -F 2 9 0 5 14 13 -F 2 5 0 11 4 3 -F 2 2 0 12 4 3 -F 2 21 1 5 23 22 -F 2 10 1 8 22 21 -F 2 5 1 9 24 23 -F 2 5 2 5 11 10 -F 2 16 3 5 10 9 -F 2 8 3 8 6 5 -F 2 4 4 5 19 18 -F 2 2 4 12 6 5 -F 2 4 5 8 5 4 -F 2 9 6 5 28 27 -F 2 5 6 11 17 16 -F 2 20 7 5 25 24 -F 2 10 7 8 23 22 -F 2 5 7 11 14 13 -F 2 7 11 5 11 10 -F 2 8 12 5 17 16 -go - -engine > player2: P 11.803996 11.215721 1 33 3 -P 9.319567 21.808874 1 16 5 -P 14.288424 0.622569 1 21 5 -P 11.865493 5.273785 1 25 3 -P 11.742498 17.157658 1 18 3 -P 4.254093 0.000000 1 12 1 -P 19.353899 22.431443 1 16 1 -P 14.743614 22.324001 1 67 3 -P 8.864377 0.107441 0 5 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 13 5 -P 14.743177 12.694819 1 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 73 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 8 2 6 23 1 -F 1 5 1 2 22 1 -F 1 12 1 2 22 2 -F 1 5 5 6 28 9 -F 1 7 2 6 23 5 -F 1 6 3 6 19 1 -F 1 6 5 6 28 11 -F 1 11 2 6 23 7 -F 1 5 2 7 22 6 -F 1 9 5 6 28 12 -F 1 11 3 1 17 2 -F 1 5 3 6 19 4 -F 1 20 5 1 23 8 -F 1 10 5 6 28 13 -F 1 5 5 7 25 10 -F 1 1 5 12 17 2 -F 1 12 2 1 22 8 -F 1 6 2 7 22 8 -F 1 11 3 1 17 3 -F 1 6 3 7 18 4 -F 1 22 5 1 23 9 -F 1 11 5 7 25 11 -F 1 3 5 12 17 3 -F 1 4 2 1 22 9 -F 1 16 3 1 17 4 -F 1 8 3 7 18 5 -F 1 18 5 1 23 10 -F 1 9 5 7 25 12 -F 1 4 2 1 22 10 -F 1 2 2 4 17 5 -F 1 26 3 1 17 5 -F 1 6 3 7 18 6 -F 1 3 5 1 23 11 -F 1 1 5 4 19 7 -F 1 5 11 1 13 1 -F 1 7 2 4 17 6 -F 1 3 3 4 12 1 -F 1 9 5 0 14 3 -F 1 4 5 4 19 8 -F 1 4 6 0 14 3 -F 1 12 0 2 11 1 -F 1 9 2 7 22 12 -F 1 8 3 7 18 8 -F 1 9 5 7 25 15 -F 1 5 0 7 12 3 -F 1 5 2 7 22 13 -F 1 6 5 7 25 16 -F 1 12 2 7 22 14 -F 1 10 3 7 18 10 -F 1 6 5 7 25 17 -F 1 7 6 8 25 17 -F 1 8 11 7 14 6 -F 1 10 12 7 10 2 -F 1 6 0 7 12 5 -F 1 10 1 3 17 10 -F 1 5 3 7 18 11 -F 1 14 5 3 10 3 -F 1 7 5 7 25 18 -F 1 16 6 3 19 12 -F 1 5 11 7 14 7 -F 1 10 12 3 8 1 -F 1 5 12 7 10 3 -F 1 7 0 7 12 6 -F 1 9 1 8 22 16 -F 1 5 2 7 22 16 -F 1 9 3 7 18 12 -F 1 8 4 8 18 12 -F 1 12 5 7 25 19 -F 1 5 6 8 25 19 -F 1 5 11 7 14 8 -F 1 7 12 7 10 4 -F 1 7 0 7 12 7 -F 1 18 1 0 11 6 -F 1 9 1 7 6 1 -F 1 18 2 0 11 6 -F 1 9 2 7 22 17 -F 1 6 3 7 18 13 -F 1 12 4 7 6 1 -F 1 6 4 8 18 13 -F 1 8 5 7 25 20 -F 1 6 6 8 25 20 -F 1 11 0 4 6 2 -F 1 5 0 7 12 8 -F 1 7 1 4 6 2 -F 1 14 2 7 22 18 -F 1 7 2 8 6 2 -F 1 6 3 7 18 14 -F 1 7 4 7 6 2 -F 1 6 5 7 25 21 -F 1 3 5 8 5 1 -F 1 13 6 7 5 1 -F 1 6 6 8 25 21 -F 1 8 11 7 14 10 -F 1 6 12 7 10 6 -F 2 63 15 3 14 11 -F 1 11 0 7 12 9 -F 1 5 0 8 12 9 -F 1 6 1 7 6 3 -F 1 9 2 7 22 19 -F 1 8 3 7 18 15 -F 1 14 4 7 6 3 -F 1 7 4 8 18 15 -F 1 5 5 7 25 22 -F 1 3 5 8 5 2 -F 1 16 6 7 5 2 -F 1 8 6 8 25 22 -F 1 8 11 0 4 1 -F 1 7 12 0 4 1 -F 1 4 0 11 4 2 -F 1 18 1 5 23 21 -F 1 9 1 8 22 20 -F 1 4 1 11 13 11 -F 1 16 2 5 11 9 -F 1 8 2 8 6 4 -F 1 4 2 11 11 9 -F 1 13 3 5 10 8 -F 1 7 3 8 6 4 -F 1 3 3 11 6 4 -F 1 6 4 8 18 16 -F 1 3 4 11 8 6 -F 1 5 5 8 5 3 -F 1 2 5 11 11 9 -F 1 13 6 5 28 26 -F 1 7 6 8 25 23 -F 1 3 6 11 17 15 -F 1 5 7 11 14 12 -F 1 10 11 8 10 8 -F 1 8 12 8 14 12 -F 1 4 12 11 7 5 -F 1 9 0 5 14 13 -F 1 5 0 11 4 3 -F 1 2 0 12 4 3 -F 1 21 1 5 23 22 -F 1 10 1 8 22 21 -F 1 5 1 9 24 23 -F 1 5 2 5 11 10 -F 1 16 3 5 10 9 -F 1 8 3 8 6 5 -F 1 4 4 5 19 18 -F 1 2 4 12 6 5 -F 1 4 5 8 5 4 -F 1 9 6 5 28 27 -F 1 5 6 11 17 16 -F 1 20 7 5 25 24 -F 1 10 7 8 23 22 -F 1 5 7 11 14 13 -F 1 7 11 5 11 10 -F 1 8 12 5 17 16 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 2 0 -player2 > engine: 0 5 16 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 1 0 0.1740544209620978 -player2 > engine: 0 8 8 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 4 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 2 0 -player2 > engine: 1 5 8 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 2 0 -player2 > engine: 2 5 10 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 1 0 0.22024599404952816 -player2 > engine: 2 8 5 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 2 0 -player2 > engine: 3 5 12 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 1 0 0.3347412423175552 -player2 > engine: 3 8 6 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 2 0 -player2 > engine: 4 5 9 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 2 0 -player2 > engine: 5 5 6 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 3 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 2 0 -player2 > engine: 6 5 8 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0.24325389952200152 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 2 0 -player2 > engine: 7 0 33 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 2 0 -player2 > engine: 7 5 17 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 1 0 0.08702721144983125 -player2 > engine: 7 8 8 -player2 > engine: comparing 7 and 9, gives 0 0 0.03001903676337727 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 2 0 -player2 > engine: 11 5 6 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 2 0 -player2 > engine: 12 5 7 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 21 3 -P 9.319567 21.808874 2 18 5 -P 14.288424 0.622569 2 28 5 -P 11.865493 5.273785 2 20 3 -P 11.742498 17.157658 2 15 3 -P 4.254093 0.000000 2 10 1 -P 19.353899 22.431443 2 23 1 -P 14.743614 22.324001 2 46 3 -P 8.864377 0.107441 0 2 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 12 5 -P 14.743177 12.694819 2 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 76 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 12 1 2 22 1 -F 2 5 5 6 28 8 -F 2 7 2 6 23 4 -F 2 6 5 6 28 10 -F 2 11 2 6 23 6 -F 2 5 2 7 22 5 -F 2 9 5 6 28 11 -F 2 11 3 1 17 1 -F 2 5 3 6 19 3 -F 2 20 5 1 23 7 -F 2 10 5 6 28 12 -F 2 5 5 7 25 9 -F 2 1 5 12 17 1 -F 2 12 2 1 22 7 -F 2 6 2 7 22 7 -F 2 11 3 1 17 2 -F 2 6 3 7 18 3 -F 2 22 5 1 23 8 -F 2 11 5 7 25 10 -F 2 3 5 12 17 2 -F 2 4 2 1 22 8 -F 2 16 3 1 17 3 -F 2 8 3 7 18 4 -F 2 18 5 1 23 9 -F 2 9 5 7 25 11 -F 2 4 2 1 22 9 -F 2 2 2 4 17 4 -F 2 26 3 1 17 4 -F 2 6 3 7 18 5 -F 2 3 5 1 23 10 -F 2 1 5 4 19 6 -F 2 7 2 4 17 5 -F 2 9 5 0 14 2 -F 2 4 5 4 19 7 -F 2 4 6 0 14 2 -F 2 9 2 7 22 11 -F 2 8 3 7 18 7 -F 2 9 5 7 25 14 -F 2 5 0 7 12 2 -F 2 5 2 7 22 12 -F 2 6 5 7 25 15 -F 2 12 2 7 22 13 -F 2 10 3 7 18 9 -F 2 6 5 7 25 16 -F 2 7 6 8 25 16 -F 2 8 11 7 14 5 -F 2 10 12 7 10 1 -F 2 6 0 7 12 4 -F 2 10 1 3 17 9 -F 2 5 3 7 18 10 -F 2 14 5 3 10 2 -F 2 7 5 7 25 17 -F 2 16 6 3 19 11 -F 2 5 11 7 14 6 -F 2 5 12 7 10 2 -F 2 7 0 7 12 5 -F 2 9 1 8 22 15 -F 2 5 2 7 22 15 -F 2 9 3 7 18 11 -F 2 8 4 8 18 11 -F 2 12 5 7 25 18 -F 2 5 6 8 25 18 -F 2 5 11 7 14 7 -F 2 7 12 7 10 3 -F 2 7 0 7 12 6 -F 2 18 1 0 11 5 -F 2 18 2 0 11 5 -F 2 9 2 7 22 16 -F 2 6 3 7 18 12 -F 2 6 4 8 18 12 -F 2 8 5 7 25 19 -F 2 6 6 8 25 19 -F 2 11 0 4 6 1 -F 2 5 0 7 12 7 -F 2 7 1 4 6 1 -F 2 14 2 7 22 17 -F 2 7 2 8 6 1 -F 2 6 3 7 18 13 -F 2 7 4 7 6 1 -F 2 6 5 7 25 20 -F 2 6 6 8 25 20 -F 2 8 11 7 14 9 -F 2 6 12 7 10 5 -F 1 63 15 3 14 10 -F 2 11 0 7 12 8 -F 2 5 0 8 12 8 -F 2 6 1 7 6 2 -F 2 9 2 7 22 18 -F 2 8 3 7 18 14 -F 2 14 4 7 6 2 -F 2 7 4 8 18 14 -F 2 5 5 7 25 21 -F 2 3 5 8 5 1 -F 2 16 6 7 5 1 -F 2 8 6 8 25 21 -F 2 4 0 11 4 1 -F 2 18 1 5 23 20 -F 2 9 1 8 22 19 -F 2 4 1 11 13 10 -F 2 16 2 5 11 8 -F 2 8 2 8 6 3 -F 2 4 2 11 11 8 -F 2 13 3 5 10 7 -F 2 7 3 8 6 3 -F 2 3 3 11 6 3 -F 2 6 4 8 18 15 -F 2 3 4 11 8 5 -F 2 5 5 8 5 2 -F 2 2 5 11 11 8 -F 2 13 6 5 28 25 -F 2 7 6 8 25 22 -F 2 3 6 11 17 14 -F 2 5 7 11 14 11 -F 2 10 11 8 10 7 -F 2 8 12 8 14 11 -F 2 4 12 11 7 4 -F 2 9 0 5 14 12 -F 2 5 0 11 4 2 -F 2 2 0 12 4 2 -F 2 21 1 5 23 21 -F 2 10 1 8 22 20 -F 2 5 1 9 24 22 -F 2 5 2 5 11 9 -F 2 16 3 5 10 8 -F 2 8 3 8 6 4 -F 2 4 4 5 19 17 -F 2 2 4 12 6 4 -F 2 4 5 8 5 3 -F 2 9 6 5 28 26 -F 2 5 6 11 17 15 -F 2 20 7 5 25 23 -F 2 10 7 8 23 21 -F 2 5 7 11 14 12 -F 2 7 11 5 11 9 -F 2 8 12 5 17 15 -F 2 16 0 5 14 13 -F 2 8 0 8 12 11 -F 2 4 0 11 4 3 -F 2 2 0 12 4 3 -F 2 8 1 5 23 22 -F 2 10 2 5 11 10 -F 2 5 2 8 6 5 -F 2 12 3 5 10 9 -F 2 6 3 8 6 5 -F 2 9 4 5 19 18 -F 2 3 5 8 5 4 -F 2 8 6 5 28 27 -F 2 33 7 0 12 11 -F 2 17 7 5 25 24 -F 2 8 7 8 23 22 -F 2 6 11 5 11 10 -F 2 7 12 5 17 16 -go - -engine > player2: P 11.803996 11.215721 1 21 3 -P 9.319567 21.808874 1 18 5 -P 14.288424 0.622569 1 28 5 -P 11.865493 5.273785 1 20 3 -P 11.742498 17.157658 1 15 3 -P 4.254093 0.000000 1 10 1 -P 19.353899 22.431443 1 23 1 -P 14.743614 22.324001 1 46 3 -P 8.864377 0.107441 0 2 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 12 5 -P 14.743177 12.694819 1 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 76 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 12 1 2 22 1 -F 1 5 5 6 28 8 -F 1 7 2 6 23 4 -F 1 6 5 6 28 10 -F 1 11 2 6 23 6 -F 1 5 2 7 22 5 -F 1 9 5 6 28 11 -F 1 11 3 1 17 1 -F 1 5 3 6 19 3 -F 1 20 5 1 23 7 -F 1 10 5 6 28 12 -F 1 5 5 7 25 9 -F 1 1 5 12 17 1 -F 1 12 2 1 22 7 -F 1 6 2 7 22 7 -F 1 11 3 1 17 2 -F 1 6 3 7 18 3 -F 1 22 5 1 23 8 -F 1 11 5 7 25 10 -F 1 3 5 12 17 2 -F 1 4 2 1 22 8 -F 1 16 3 1 17 3 -F 1 8 3 7 18 4 -F 1 18 5 1 23 9 -F 1 9 5 7 25 11 -F 1 4 2 1 22 9 -F 1 2 2 4 17 4 -F 1 26 3 1 17 4 -F 1 6 3 7 18 5 -F 1 3 5 1 23 10 -F 1 1 5 4 19 6 -F 1 7 2 4 17 5 -F 1 9 5 0 14 2 -F 1 4 5 4 19 7 -F 1 4 6 0 14 2 -F 1 9 2 7 22 11 -F 1 8 3 7 18 7 -F 1 9 5 7 25 14 -F 1 5 0 7 12 2 -F 1 5 2 7 22 12 -F 1 6 5 7 25 15 -F 1 12 2 7 22 13 -F 1 10 3 7 18 9 -F 1 6 5 7 25 16 -F 1 7 6 8 25 16 -F 1 8 11 7 14 5 -F 1 10 12 7 10 1 -F 1 6 0 7 12 4 -F 1 10 1 3 17 9 -F 1 5 3 7 18 10 -F 1 14 5 3 10 2 -F 1 7 5 7 25 17 -F 1 16 6 3 19 11 -F 1 5 11 7 14 6 -F 1 5 12 7 10 2 -F 1 7 0 7 12 5 -F 1 9 1 8 22 15 -F 1 5 2 7 22 15 -F 1 9 3 7 18 11 -F 1 8 4 8 18 11 -F 1 12 5 7 25 18 -F 1 5 6 8 25 18 -F 1 5 11 7 14 7 -F 1 7 12 7 10 3 -F 1 7 0 7 12 6 -F 1 18 1 0 11 5 -F 1 18 2 0 11 5 -F 1 9 2 7 22 16 -F 1 6 3 7 18 12 -F 1 6 4 8 18 12 -F 1 8 5 7 25 19 -F 1 6 6 8 25 19 -F 1 11 0 4 6 1 -F 1 5 0 7 12 7 -F 1 7 1 4 6 1 -F 1 14 2 7 22 17 -F 1 7 2 8 6 1 -F 1 6 3 7 18 13 -F 1 7 4 7 6 1 -F 1 6 5 7 25 20 -F 1 6 6 8 25 20 -F 1 8 11 7 14 9 -F 1 6 12 7 10 5 -F 2 63 15 3 14 10 -F 1 11 0 7 12 8 -F 1 5 0 8 12 8 -F 1 6 1 7 6 2 -F 1 9 2 7 22 18 -F 1 8 3 7 18 14 -F 1 14 4 7 6 2 -F 1 7 4 8 18 14 -F 1 5 5 7 25 21 -F 1 3 5 8 5 1 -F 1 16 6 7 5 1 -F 1 8 6 8 25 21 -F 1 4 0 11 4 1 -F 1 18 1 5 23 20 -F 1 9 1 8 22 19 -F 1 4 1 11 13 10 -F 1 16 2 5 11 8 -F 1 8 2 8 6 3 -F 1 4 2 11 11 8 -F 1 13 3 5 10 7 -F 1 7 3 8 6 3 -F 1 3 3 11 6 3 -F 1 6 4 8 18 15 -F 1 3 4 11 8 5 -F 1 5 5 8 5 2 -F 1 2 5 11 11 8 -F 1 13 6 5 28 25 -F 1 7 6 8 25 22 -F 1 3 6 11 17 14 -F 1 5 7 11 14 11 -F 1 10 11 8 10 7 -F 1 8 12 8 14 11 -F 1 4 12 11 7 4 -F 1 9 0 5 14 12 -F 1 5 0 11 4 2 -F 1 2 0 12 4 2 -F 1 21 1 5 23 21 -F 1 10 1 8 22 20 -F 1 5 1 9 24 22 -F 1 5 2 5 11 9 -F 1 16 3 5 10 8 -F 1 8 3 8 6 4 -F 1 4 4 5 19 17 -F 1 2 4 12 6 4 -F 1 4 5 8 5 3 -F 1 9 6 5 28 26 -F 1 5 6 11 17 15 -F 1 20 7 5 25 23 -F 1 10 7 8 23 21 -F 1 5 7 11 14 12 -F 1 7 11 5 11 9 -F 1 8 12 5 17 15 -F 1 16 0 5 14 13 -F 1 8 0 8 12 11 -F 1 4 0 11 4 3 -F 1 2 0 12 4 3 -F 1 8 1 5 23 22 -F 1 10 2 5 11 10 -F 1 5 2 8 6 5 -F 1 12 3 5 10 9 -F 1 6 3 8 6 5 -F 1 9 4 5 19 18 -F 1 3 5 8 5 4 -F 1 8 6 5 28 27 -F 1 33 7 0 12 11 -F 1 17 7 5 25 24 -F 1 8 7 8 23 22 -F 1 6 11 5 11 10 -F 1 7 12 5 17 16 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 2 0 -player2 > engine: 0 5 10 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 1 0 0.1740544209620978 -player2 > engine: 0 8 5 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 3 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 2 0 -player2 > engine: 1 5 9 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0.0552837277548503 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 2 0 -player2 > engine: 2 0 14 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 2 0 -player2 > engine: 2 5 7 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0.22024599404952816 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 2 0 -player2 > engine: 3 5 10 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0.3347412423175552 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 2 0 -player2 > engine: 4 5 7 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0.11566424744259145 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 2 0 -player2 > engine: 5 5 5 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 1.3010849971288805 -player2 > engine: 5 8 2 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 2 0 -player2 > engine: 6 5 11 -player2 > engine: comparing 6 and 6, gives 0 2 0 -player2 > engine: 6 6 6 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0.24325389952200152 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 2 0 -player2 > engine: 7 0 23 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 2 0 -player2 > engine: 7 5 11 -player2 > engine: comparing 7 and 6, gives 0 2 0 -player2 > engine: 7 6 6 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0.08702721144983125 -player2 > engine: comparing 7 and 9, gives 0 0 0.03001903676337727 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 6 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 2 0 -player2 > engine: 11 5 3 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0.12462116451252786 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 6 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 2 0 -player2 > engine: 12 5 3 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0.08637735876892912 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 6 3 -P 9.319567 21.808874 2 25 5 -P 14.288424 0.622569 2 24 5 -P 11.865493 5.273785 2 13 3 -P 11.742498 17.157658 2 29 3 -P 4.254093 0.000000 2 9 1 -P 19.353899 22.431443 2 13 1 -P 14.743614 22.324001 2 42 3 -P 8.864377 0.107441 2 8 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 12 5 -P 14.743177 12.694819 2 9 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 79 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 5 6 28 7 -F 2 7 2 6 23 3 -F 2 6 5 6 28 9 -F 2 11 2 6 23 5 -F 2 5 2 7 22 4 -F 2 9 5 6 28 10 -F 2 5 3 6 19 2 -F 2 20 5 1 23 6 -F 2 10 5 6 28 11 -F 2 5 5 7 25 8 -F 2 12 2 1 22 6 -F 2 6 2 7 22 6 -F 2 11 3 1 17 1 -F 2 6 3 7 18 2 -F 2 22 5 1 23 7 -F 2 11 5 7 25 9 -F 2 3 5 12 17 1 -F 2 4 2 1 22 7 -F 2 16 3 1 17 2 -F 2 8 3 7 18 3 -F 2 18 5 1 23 8 -F 2 9 5 7 25 10 -F 2 4 2 1 22 8 -F 2 2 2 4 17 3 -F 2 26 3 1 17 3 -F 2 6 3 7 18 4 -F 2 3 5 1 23 9 -F 2 1 5 4 19 5 -F 2 7 2 4 17 4 -F 2 9 5 0 14 1 -F 2 4 5 4 19 6 -F 2 4 6 0 14 1 -F 2 9 2 7 22 10 -F 2 8 3 7 18 6 -F 2 9 5 7 25 13 -F 2 5 0 7 12 1 -F 2 5 2 7 22 11 -F 2 6 5 7 25 14 -F 2 12 2 7 22 12 -F 2 10 3 7 18 8 -F 2 6 5 7 25 15 -F 2 7 6 8 25 15 -F 2 8 11 7 14 4 -F 2 6 0 7 12 3 -F 2 10 1 3 17 8 -F 2 5 3 7 18 9 -F 2 14 5 3 10 1 -F 2 7 5 7 25 16 -F 2 16 6 3 19 10 -F 2 5 11 7 14 5 -F 2 5 12 7 10 1 -F 2 7 0 7 12 4 -F 2 9 1 8 22 14 -F 2 5 2 7 22 14 -F 2 9 3 7 18 10 -F 2 8 4 8 18 10 -F 2 12 5 7 25 17 -F 2 5 6 8 25 17 -F 2 5 11 7 14 6 -F 2 7 12 7 10 2 -F 2 7 0 7 12 5 -F 2 18 1 0 11 4 -F 2 18 2 0 11 4 -F 2 9 2 7 22 15 -F 2 6 3 7 18 11 -F 2 6 4 8 18 11 -F 2 8 5 7 25 18 -F 2 6 6 8 25 18 -F 2 5 0 7 12 6 -F 2 14 2 7 22 16 -F 2 6 3 7 18 12 -F 2 6 5 7 25 19 -F 2 6 6 8 25 19 -F 2 8 11 7 14 8 -F 2 6 12 7 10 4 -F 1 63 15 3 14 9 -F 2 11 0 7 12 7 -F 2 5 0 8 12 7 -F 2 6 1 7 6 1 -F 2 9 2 7 22 17 -F 2 8 3 7 18 13 -F 2 14 4 7 6 1 -F 2 7 4 8 18 13 -F 2 5 5 7 25 20 -F 2 8 6 8 25 20 -F 2 18 1 5 23 19 -F 2 9 1 8 22 18 -F 2 4 1 11 13 9 -F 2 16 2 5 11 7 -F 2 8 2 8 6 2 -F 2 4 2 11 11 7 -F 2 13 3 5 10 6 -F 2 7 3 8 6 2 -F 2 3 3 11 6 2 -F 2 6 4 8 18 14 -F 2 3 4 11 8 4 -F 2 5 5 8 5 1 -F 2 2 5 11 11 7 -F 2 13 6 5 28 24 -F 2 7 6 8 25 21 -F 2 3 6 11 17 13 -F 2 5 7 11 14 10 -F 2 10 11 8 10 6 -F 2 8 12 8 14 10 -F 2 4 12 11 7 3 -F 2 9 0 5 14 11 -F 2 5 0 11 4 1 -F 2 2 0 12 4 1 -F 2 21 1 5 23 20 -F 2 10 1 8 22 19 -F 2 5 1 9 24 21 -F 2 5 2 5 11 8 -F 2 16 3 5 10 7 -F 2 8 3 8 6 3 -F 2 4 4 5 19 16 -F 2 2 4 12 6 3 -F 2 4 5 8 5 2 -F 2 9 6 5 28 25 -F 2 5 6 11 17 14 -F 2 20 7 5 25 22 -F 2 10 7 8 23 20 -F 2 5 7 11 14 11 -F 2 7 11 5 11 8 -F 2 8 12 5 17 14 -F 2 16 0 5 14 12 -F 2 8 0 8 12 10 -F 2 4 0 11 4 2 -F 2 2 0 12 4 2 -F 2 8 1 5 23 21 -F 2 10 2 5 11 9 -F 2 5 2 8 6 4 -F 2 12 3 5 10 8 -F 2 6 3 8 6 4 -F 2 9 4 5 19 17 -F 2 3 5 8 5 3 -F 2 8 6 5 28 26 -F 2 33 7 0 12 10 -F 2 17 7 5 25 23 -F 2 8 7 8 23 21 -F 2 6 11 5 11 9 -F 2 7 12 5 17 15 -F 2 10 0 5 14 13 -F 2 5 0 8 12 11 -F 2 3 0 12 4 3 -F 2 9 1 5 23 22 -F 2 14 2 0 11 10 -F 2 7 2 5 11 10 -F 2 10 3 5 10 9 -F 2 7 4 5 19 18 -F 2 2 5 8 5 4 -F 2 11 6 5 28 27 -F 2 23 7 0 12 11 -F 2 11 7 5 25 24 -F 2 6 7 6 5 4 -F 2 6 11 0 4 3 -F 2 3 11 5 11 10 -F 2 6 12 0 4 3 -F 2 3 12 5 17 16 -go - -engine > player2: P 11.803996 11.215721 1 6 3 -P 9.319567 21.808874 1 25 5 -P 14.288424 0.622569 1 24 5 -P 11.865493 5.273785 1 13 3 -P 11.742498 17.157658 1 29 3 -P 4.254093 0.000000 1 9 1 -P 19.353899 22.431443 1 13 1 -P 14.743614 22.324001 1 42 3 -P 8.864377 0.107441 1 8 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 12 5 -P 14.743177 12.694819 1 9 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 79 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 5 6 28 7 -F 1 7 2 6 23 3 -F 1 6 5 6 28 9 -F 1 11 2 6 23 5 -F 1 5 2 7 22 4 -F 1 9 5 6 28 10 -F 1 5 3 6 19 2 -F 1 20 5 1 23 6 -F 1 10 5 6 28 11 -F 1 5 5 7 25 8 -F 1 12 2 1 22 6 -F 1 6 2 7 22 6 -F 1 11 3 1 17 1 -F 1 6 3 7 18 2 -F 1 22 5 1 23 7 -F 1 11 5 7 25 9 -F 1 3 5 12 17 1 -F 1 4 2 1 22 7 -F 1 16 3 1 17 2 -F 1 8 3 7 18 3 -F 1 18 5 1 23 8 -F 1 9 5 7 25 10 -F 1 4 2 1 22 8 -F 1 2 2 4 17 3 -F 1 26 3 1 17 3 -F 1 6 3 7 18 4 -F 1 3 5 1 23 9 -F 1 1 5 4 19 5 -F 1 7 2 4 17 4 -F 1 9 5 0 14 1 -F 1 4 5 4 19 6 -F 1 4 6 0 14 1 -F 1 9 2 7 22 10 -F 1 8 3 7 18 6 -F 1 9 5 7 25 13 -F 1 5 0 7 12 1 -F 1 5 2 7 22 11 -F 1 6 5 7 25 14 -F 1 12 2 7 22 12 -F 1 10 3 7 18 8 -F 1 6 5 7 25 15 -F 1 7 6 8 25 15 -F 1 8 11 7 14 4 -F 1 6 0 7 12 3 -F 1 10 1 3 17 8 -F 1 5 3 7 18 9 -F 1 14 5 3 10 1 -F 1 7 5 7 25 16 -F 1 16 6 3 19 10 -F 1 5 11 7 14 5 -F 1 5 12 7 10 1 -F 1 7 0 7 12 4 -F 1 9 1 8 22 14 -F 1 5 2 7 22 14 -F 1 9 3 7 18 10 -F 1 8 4 8 18 10 -F 1 12 5 7 25 17 -F 1 5 6 8 25 17 -F 1 5 11 7 14 6 -F 1 7 12 7 10 2 -F 1 7 0 7 12 5 -F 1 18 1 0 11 4 -F 1 18 2 0 11 4 -F 1 9 2 7 22 15 -F 1 6 3 7 18 11 -F 1 6 4 8 18 11 -F 1 8 5 7 25 18 -F 1 6 6 8 25 18 -F 1 5 0 7 12 6 -F 1 14 2 7 22 16 -F 1 6 3 7 18 12 -F 1 6 5 7 25 19 -F 1 6 6 8 25 19 -F 1 8 11 7 14 8 -F 1 6 12 7 10 4 -F 2 63 15 3 14 9 -F 1 11 0 7 12 7 -F 1 5 0 8 12 7 -F 1 6 1 7 6 1 -F 1 9 2 7 22 17 -F 1 8 3 7 18 13 -F 1 14 4 7 6 1 -F 1 7 4 8 18 13 -F 1 5 5 7 25 20 -F 1 8 6 8 25 20 -F 1 18 1 5 23 19 -F 1 9 1 8 22 18 -F 1 4 1 11 13 9 -F 1 16 2 5 11 7 -F 1 8 2 8 6 2 -F 1 4 2 11 11 7 -F 1 13 3 5 10 6 -F 1 7 3 8 6 2 -F 1 3 3 11 6 2 -F 1 6 4 8 18 14 -F 1 3 4 11 8 4 -F 1 5 5 8 5 1 -F 1 2 5 11 11 7 -F 1 13 6 5 28 24 -F 1 7 6 8 25 21 -F 1 3 6 11 17 13 -F 1 5 7 11 14 10 -F 1 10 11 8 10 6 -F 1 8 12 8 14 10 -F 1 4 12 11 7 3 -F 1 9 0 5 14 11 -F 1 5 0 11 4 1 -F 1 2 0 12 4 1 -F 1 21 1 5 23 20 -F 1 10 1 8 22 19 -F 1 5 1 9 24 21 -F 1 5 2 5 11 8 -F 1 16 3 5 10 7 -F 1 8 3 8 6 3 -F 1 4 4 5 19 16 -F 1 2 4 12 6 3 -F 1 4 5 8 5 2 -F 1 9 6 5 28 25 -F 1 5 6 11 17 14 -F 1 20 7 5 25 22 -F 1 10 7 8 23 20 -F 1 5 7 11 14 11 -F 1 7 11 5 11 8 -F 1 8 12 5 17 14 -F 1 16 0 5 14 12 -F 1 8 0 8 12 10 -F 1 4 0 11 4 2 -F 1 2 0 12 4 2 -F 1 8 1 5 23 21 -F 1 10 2 5 11 9 -F 1 5 2 8 6 4 -F 1 12 3 5 10 8 -F 1 6 3 8 6 4 -F 1 9 4 5 19 17 -F 1 3 5 8 5 3 -F 1 8 6 5 28 26 -F 1 33 7 0 12 10 -F 1 17 7 5 25 23 -F 1 8 7 8 23 21 -F 1 6 11 5 11 9 -F 1 7 12 5 17 15 -F 1 10 0 5 14 13 -F 1 5 0 8 12 11 -F 1 3 0 12 4 3 -F 1 9 1 5 23 22 -F 1 14 2 0 11 10 -F 1 7 2 5 11 10 -F 1 10 3 5 10 9 -F 1 7 4 5 19 18 -F 1 2 5 8 5 4 -F 1 11 6 5 28 27 -F 1 23 7 0 12 11 -F 1 11 7 5 25 24 -F 1 6 7 6 5 4 -F 1 6 11 0 4 3 -F 1 3 11 5 11 10 -F 1 6 12 0 4 3 -F 1 3 12 5 17 16 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 3 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 2 0 -player2 > engine: 0 5 1 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 2 0 -player2 > engine: 1 2 12 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 2 0 -player2 > engine: 1 4 6 -player2 > engine: comparing 1 and 5, gives 0 2 0 -player2 > engine: 1 5 3 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 12 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 2 0 -player2 > engine: 2 5 6 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 2 0 -player2 > engine: 3 2 6 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 2 0 -player2 > engine: 3 5 3 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 2 0 -player2 > engine: 4 2 14 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 2 0 -player2 > engine: 4 4 7 -player2 > engine: comparing 4 and 5, gives 0 2 0 -player2 > engine: 4 5 4 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 2 0 -player2 > engine: 5 2 4 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 2 0 -player2 > engine: 5 5 2 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 2 0 -player2 > engine: 6 2 6 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 2 0 -player2 > engine: 6 5 3 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 2 0 -player2 > engine: 7 2 21 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 2 0 -player2 > engine: 7 4 10 -player2 > engine: comparing 7 and 5, gives 0 2 0 -player2 > engine: 7 5 5 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0.03001903676337727 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 2 0 -player2 > engine: 8 2 4 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 2 0 -player2 > engine: 8 5 2 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0.06056981656335845 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 6 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 2 0 -player2 > engine: 11 5 3 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 4 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 2 0 -player2 > engine: 12 5 2 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 18 3 -P 9.319567 21.808874 2 20 5 -P 14.288424 0.622569 2 23 5 -P 11.865493 5.273785 2 21 3 -P 11.742498 17.157658 2 14 3 -P 4.254093 0.000000 2 6 1 -P 19.353899 22.431443 2 5 1 -P 14.743614 22.324001 2 39 3 -P 8.864377 0.107441 2 10 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 13 5 -P 14.743177 12.694819 2 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 82 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 5 6 28 6 -F 2 7 2 6 23 2 -F 2 6 5 6 28 8 -F 2 11 2 6 23 4 -F 2 5 2 7 22 3 -F 2 9 5 6 28 9 -F 2 5 3 6 19 1 -F 2 20 5 1 23 5 -F 2 10 5 6 28 10 -F 2 5 5 7 25 7 -F 2 12 2 1 22 5 -F 2 6 2 7 22 5 -F 2 6 3 7 18 1 -F 2 22 5 1 23 6 -F 2 11 5 7 25 8 -F 2 4 2 1 22 6 -F 2 16 3 1 17 1 -F 2 8 3 7 18 2 -F 2 18 5 1 23 7 -F 2 9 5 7 25 9 -F 2 4 2 1 22 7 -F 2 2 2 4 17 2 -F 2 26 3 1 17 2 -F 2 6 3 7 18 3 -F 2 3 5 1 23 8 -F 2 1 5 4 19 4 -F 2 7 2 4 17 3 -F 2 4 5 4 19 5 -F 2 9 2 7 22 9 -F 2 8 3 7 18 5 -F 2 9 5 7 25 12 -F 2 5 2 7 22 10 -F 2 6 5 7 25 13 -F 2 12 2 7 22 11 -F 2 10 3 7 18 7 -F 2 6 5 7 25 14 -F 2 7 6 8 25 14 -F 2 8 11 7 14 3 -F 2 6 0 7 12 2 -F 2 10 1 3 17 7 -F 2 5 3 7 18 8 -F 2 7 5 7 25 15 -F 2 16 6 3 19 9 -F 2 5 11 7 14 4 -F 2 7 0 7 12 3 -F 2 9 1 8 22 13 -F 2 5 2 7 22 13 -F 2 9 3 7 18 9 -F 2 8 4 8 18 9 -F 2 12 5 7 25 16 -F 2 5 6 8 25 16 -F 2 5 11 7 14 5 -F 2 7 12 7 10 1 -F 2 7 0 7 12 4 -F 2 18 1 0 11 3 -F 2 18 2 0 11 3 -F 2 9 2 7 22 14 -F 2 6 3 7 18 10 -F 2 6 4 8 18 10 -F 2 8 5 7 25 17 -F 2 6 6 8 25 17 -F 2 5 0 7 12 5 -F 2 14 2 7 22 15 -F 2 6 3 7 18 11 -F 2 6 5 7 25 18 -F 2 6 6 8 25 18 -F 2 8 11 7 14 7 -F 2 6 12 7 10 3 -F 1 63 15 3 14 8 -F 2 11 0 7 12 6 -F 2 5 0 8 12 6 -F 2 9 2 7 22 16 -F 2 8 3 7 18 12 -F 2 7 4 8 18 12 -F 2 5 5 7 25 19 -F 2 8 6 8 25 19 -F 2 18 1 5 23 18 -F 2 9 1 8 22 17 -F 2 4 1 11 13 8 -F 2 16 2 5 11 6 -F 2 8 2 8 6 1 -F 2 4 2 11 11 6 -F 2 13 3 5 10 5 -F 2 7 3 8 6 1 -F 2 3 3 11 6 1 -F 2 6 4 8 18 13 -F 2 3 4 11 8 3 -F 2 2 5 11 11 6 -F 2 13 6 5 28 23 -F 2 7 6 8 25 20 -F 2 3 6 11 17 12 -F 2 5 7 11 14 9 -F 2 10 11 8 10 5 -F 2 8 12 8 14 9 -F 2 4 12 11 7 2 -F 2 9 0 5 14 10 -F 2 21 1 5 23 19 -F 2 10 1 8 22 18 -F 2 5 1 9 24 20 -F 2 5 2 5 11 7 -F 2 16 3 5 10 6 -F 2 8 3 8 6 2 -F 2 4 4 5 19 15 -F 2 2 4 12 6 2 -F 2 4 5 8 5 1 -F 2 9 6 5 28 24 -F 2 5 6 11 17 13 -F 2 20 7 5 25 21 -F 2 10 7 8 23 19 -F 2 5 7 11 14 10 -F 2 7 11 5 11 7 -F 2 8 12 5 17 13 -F 2 16 0 5 14 11 -F 2 8 0 8 12 9 -F 2 4 0 11 4 1 -F 2 2 0 12 4 1 -F 2 8 1 5 23 20 -F 2 10 2 5 11 8 -F 2 5 2 8 6 3 -F 2 12 3 5 10 7 -F 2 6 3 8 6 3 -F 2 9 4 5 19 16 -F 2 3 5 8 5 2 -F 2 8 6 5 28 25 -F 2 33 7 0 12 9 -F 2 17 7 5 25 22 -F 2 8 7 8 23 20 -F 2 6 11 5 11 8 -F 2 7 12 5 17 14 -F 2 10 0 5 14 12 -F 2 5 0 8 12 10 -F 2 3 0 12 4 2 -F 2 9 1 5 23 21 -F 2 14 2 0 11 9 -F 2 7 2 5 11 9 -F 2 10 3 5 10 8 -F 2 7 4 5 19 17 -F 2 2 5 8 5 3 -F 2 11 6 5 28 26 -F 2 23 7 0 12 10 -F 2 11 7 5 25 23 -F 2 6 7 6 5 3 -F 2 6 11 0 4 2 -F 2 3 11 5 11 9 -F 2 6 12 0 4 2 -F 2 3 12 5 17 15 -F 2 3 0 2 11 10 -F 2 1 0 5 14 13 -F 2 12 1 2 22 21 -F 2 6 1 4 6 5 -F 2 3 1 5 23 22 -F 2 6 2 5 11 10 -F 2 6 3 2 6 5 -F 2 3 3 5 10 9 -F 2 14 4 2 17 16 -F 2 4 4 5 19 18 -F 2 4 5 2 11 10 -F 2 6 6 2 23 22 -F 2 3 6 5 28 27 -F 2 21 7 2 22 21 -F 2 10 7 4 6 5 -F 2 5 7 5 25 24 -F 2 4 8 2 6 5 -F 2 2 8 5 5 4 -F 2 6 11 2 11 10 -F 2 3 11 5 11 10 -F 2 4 12 2 13 12 -F 2 2 12 5 17 16 -go - -engine > player2: P 11.803996 11.215721 1 18 3 -P 9.319567 21.808874 1 20 5 -P 14.288424 0.622569 1 23 5 -P 11.865493 5.273785 1 21 3 -P 11.742498 17.157658 1 14 3 -P 4.254093 0.000000 1 6 1 -P 19.353899 22.431443 1 5 1 -P 14.743614 22.324001 1 39 3 -P 8.864377 0.107441 1 10 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 13 5 -P 14.743177 12.694819 1 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 82 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 5 6 28 6 -F 1 7 2 6 23 2 -F 1 6 5 6 28 8 -F 1 11 2 6 23 4 -F 1 5 2 7 22 3 -F 1 9 5 6 28 9 -F 1 5 3 6 19 1 -F 1 20 5 1 23 5 -F 1 10 5 6 28 10 -F 1 5 5 7 25 7 -F 1 12 2 1 22 5 -F 1 6 2 7 22 5 -F 1 6 3 7 18 1 -F 1 22 5 1 23 6 -F 1 11 5 7 25 8 -F 1 4 2 1 22 6 -F 1 16 3 1 17 1 -F 1 8 3 7 18 2 -F 1 18 5 1 23 7 -F 1 9 5 7 25 9 -F 1 4 2 1 22 7 -F 1 2 2 4 17 2 -F 1 26 3 1 17 2 -F 1 6 3 7 18 3 -F 1 3 5 1 23 8 -F 1 1 5 4 19 4 -F 1 7 2 4 17 3 -F 1 4 5 4 19 5 -F 1 9 2 7 22 9 -F 1 8 3 7 18 5 -F 1 9 5 7 25 12 -F 1 5 2 7 22 10 -F 1 6 5 7 25 13 -F 1 12 2 7 22 11 -F 1 10 3 7 18 7 -F 1 6 5 7 25 14 -F 1 7 6 8 25 14 -F 1 8 11 7 14 3 -F 1 6 0 7 12 2 -F 1 10 1 3 17 7 -F 1 5 3 7 18 8 -F 1 7 5 7 25 15 -F 1 16 6 3 19 9 -F 1 5 11 7 14 4 -F 1 7 0 7 12 3 -F 1 9 1 8 22 13 -F 1 5 2 7 22 13 -F 1 9 3 7 18 9 -F 1 8 4 8 18 9 -F 1 12 5 7 25 16 -F 1 5 6 8 25 16 -F 1 5 11 7 14 5 -F 1 7 12 7 10 1 -F 1 7 0 7 12 4 -F 1 18 1 0 11 3 -F 1 18 2 0 11 3 -F 1 9 2 7 22 14 -F 1 6 3 7 18 10 -F 1 6 4 8 18 10 -F 1 8 5 7 25 17 -F 1 6 6 8 25 17 -F 1 5 0 7 12 5 -F 1 14 2 7 22 15 -F 1 6 3 7 18 11 -F 1 6 5 7 25 18 -F 1 6 6 8 25 18 -F 1 8 11 7 14 7 -F 1 6 12 7 10 3 -F 2 63 15 3 14 8 -F 1 11 0 7 12 6 -F 1 5 0 8 12 6 -F 1 9 2 7 22 16 -F 1 8 3 7 18 12 -F 1 7 4 8 18 12 -F 1 5 5 7 25 19 -F 1 8 6 8 25 19 -F 1 18 1 5 23 18 -F 1 9 1 8 22 17 -F 1 4 1 11 13 8 -F 1 16 2 5 11 6 -F 1 8 2 8 6 1 -F 1 4 2 11 11 6 -F 1 13 3 5 10 5 -F 1 7 3 8 6 1 -F 1 3 3 11 6 1 -F 1 6 4 8 18 13 -F 1 3 4 11 8 3 -F 1 2 5 11 11 6 -F 1 13 6 5 28 23 -F 1 7 6 8 25 20 -F 1 3 6 11 17 12 -F 1 5 7 11 14 9 -F 1 10 11 8 10 5 -F 1 8 12 8 14 9 -F 1 4 12 11 7 2 -F 1 9 0 5 14 10 -F 1 21 1 5 23 19 -F 1 10 1 8 22 18 -F 1 5 1 9 24 20 -F 1 5 2 5 11 7 -F 1 16 3 5 10 6 -F 1 8 3 8 6 2 -F 1 4 4 5 19 15 -F 1 2 4 12 6 2 -F 1 4 5 8 5 1 -F 1 9 6 5 28 24 -F 1 5 6 11 17 13 -F 1 20 7 5 25 21 -F 1 10 7 8 23 19 -F 1 5 7 11 14 10 -F 1 7 11 5 11 7 -F 1 8 12 5 17 13 -F 1 16 0 5 14 11 -F 1 8 0 8 12 9 -F 1 4 0 11 4 1 -F 1 2 0 12 4 1 -F 1 8 1 5 23 20 -F 1 10 2 5 11 8 -F 1 5 2 8 6 3 -F 1 12 3 5 10 7 -F 1 6 3 8 6 3 -F 1 9 4 5 19 16 -F 1 3 5 8 5 2 -F 1 8 6 5 28 25 -F 1 33 7 0 12 9 -F 1 17 7 5 25 22 -F 1 8 7 8 23 20 -F 1 6 11 5 11 8 -F 1 7 12 5 17 14 -F 1 10 0 5 14 12 -F 1 5 0 8 12 10 -F 1 3 0 12 4 2 -F 1 9 1 5 23 21 -F 1 14 2 0 11 9 -F 1 7 2 5 11 9 -F 1 10 3 5 10 8 -F 1 7 4 5 19 17 -F 1 2 5 8 5 3 -F 1 11 6 5 28 26 -F 1 23 7 0 12 10 -F 1 11 7 5 25 23 -F 1 6 7 6 5 3 -F 1 6 11 0 4 2 -F 1 3 11 5 11 9 -F 1 6 12 0 4 2 -F 1 3 12 5 17 15 -F 1 3 0 2 11 10 -F 1 1 0 5 14 13 -F 1 12 1 2 22 21 -F 1 6 1 4 6 5 -F 1 3 1 5 23 22 -F 1 6 2 5 11 10 -F 1 6 3 2 6 5 -F 1 3 3 5 10 9 -F 1 14 4 2 17 16 -F 1 4 4 5 19 18 -F 1 4 5 2 11 10 -F 1 6 6 2 23 22 -F 1 3 6 5 28 27 -F 1 21 7 2 22 21 -F 1 10 7 4 6 5 -F 1 5 7 5 25 24 -F 1 4 8 2 6 5 -F 1 2 8 5 5 4 -F 1 6 11 2 11 10 -F 1 3 11 5 11 10 -F 1 4 12 2 13 12 -F 1 2 12 5 17 16 -go - -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 9 -player2 > engine: comparing 0 and 3, gives 0 2 0 -player2 > engine: 0 3 4 -player1 > engine: go -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 2 0 -player2 > engine: 1 2 10 -player2 > engine: comparing 1 and 3, gives 0 2 0 -player2 > engine: 1 3 5 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 11 -player2 > engine: comparing 2 and 3, gives 0 2 0 -player2 > engine: 2 3 6 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 2 0 -player2 > engine: 2 5 3 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 2 0 -player2 > engine: 3 2 10 -player2 > engine: comparing 3 and 3, gives 0 2 0 -player2 > engine: 3 3 5 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 2 0 -player2 > engine: 3 5 3 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 2 0 -player2 > engine: 4 2 7 -player2 > engine: comparing 4 and 3, gives 0 2 0 -player2 > engine: 4 3 3 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 2 0 -player2 > engine: 5 2 3 -player2 > engine: comparing 5 and 3, gives 0 2 0 -player2 > engine: 5 3 1 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 2 0 -player2 > engine: 5 5 1 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 2 0 -player2 > engine: 6 2 2 -player2 > engine: comparing 6 and 3, gives 0 2 0 -player2 > engine: 6 3 1 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 2 0 -player2 > engine: 7 2 19 -player2 > engine: comparing 7 and 3, gives 0 2 0 -player2 > engine: 7 3 10 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 2 0 -player2 > engine: 7 5 5 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0.03001903676337727 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 2 0 -player2 > engine: 8 2 5 -player2 > engine: comparing 8 and 3, gives 0 2 0 -player2 > engine: 8 3 2 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 2 0 -player2 > engine: 8 5 1 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0.06056981656335845 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 6 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 3 -player2 > engine: comparing 11 and 3, gives 0 2 0 -player2 > engine: 11 3 2 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 6 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 3 -player2 > engine: comparing 12 and 3, gives 0 2 0 -player2 > engine: 12 3 2 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 8 3 -P 9.319567 21.808874 2 26 5 -P 14.288424 0.622569 2 19 5 -P 11.865493 5.273785 2 11 3 -P 11.742498 17.157658 2 7 3 -P 4.254093 0.000000 2 3 1 -P 19.353899 22.431443 2 8 1 -P 14.743614 22.324001 2 21 3 -P 8.864377 0.107441 2 24 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 14 5 -P 14.743177 12.694819 2 9 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 85 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 5 6 28 5 -F 2 7 2 6 23 1 -F 2 6 5 6 28 7 -F 2 11 2 6 23 3 -F 2 5 2 7 22 2 -F 2 9 5 6 28 8 -F 2 20 5 1 23 4 -F 2 10 5 6 28 9 -F 2 5 5 7 25 6 -F 2 12 2 1 22 4 -F 2 6 2 7 22 4 -F 2 22 5 1 23 5 -F 2 11 5 7 25 7 -F 2 4 2 1 22 5 -F 2 8 3 7 18 1 -F 2 18 5 1 23 6 -F 2 9 5 7 25 8 -F 2 4 2 1 22 6 -F 2 2 2 4 17 1 -F 2 26 3 1 17 1 -F 2 6 3 7 18 2 -F 2 3 5 1 23 7 -F 2 1 5 4 19 3 -F 2 7 2 4 17 2 -F 2 4 5 4 19 4 -F 2 9 2 7 22 8 -F 2 8 3 7 18 4 -F 2 9 5 7 25 11 -F 2 5 2 7 22 9 -F 2 6 5 7 25 12 -F 2 12 2 7 22 10 -F 2 10 3 7 18 6 -F 2 6 5 7 25 13 -F 2 7 6 8 25 13 -F 2 8 11 7 14 2 -F 2 6 0 7 12 1 -F 2 10 1 3 17 6 -F 2 5 3 7 18 7 -F 2 7 5 7 25 14 -F 2 16 6 3 19 8 -F 2 5 11 7 14 3 -F 2 7 0 7 12 2 -F 2 9 1 8 22 12 -F 2 5 2 7 22 12 -F 2 9 3 7 18 8 -F 2 8 4 8 18 8 -F 2 12 5 7 25 15 -F 2 5 6 8 25 15 -F 2 5 11 7 14 4 -F 2 7 0 7 12 3 -F 2 18 1 0 11 2 -F 2 18 2 0 11 2 -F 2 9 2 7 22 13 -F 2 6 3 7 18 9 -F 2 6 4 8 18 9 -F 2 8 5 7 25 16 -F 2 6 6 8 25 16 -F 2 5 0 7 12 4 -F 2 14 2 7 22 14 -F 2 6 3 7 18 10 -F 2 6 5 7 25 17 -F 2 6 6 8 25 17 -F 2 8 11 7 14 6 -F 2 6 12 7 10 2 -F 1 63 15 3 14 7 -F 2 11 0 7 12 5 -F 2 5 0 8 12 5 -F 2 9 2 7 22 15 -F 2 8 3 7 18 11 -F 2 7 4 8 18 11 -F 2 5 5 7 25 18 -F 2 8 6 8 25 18 -F 2 18 1 5 23 17 -F 2 9 1 8 22 16 -F 2 4 1 11 13 7 -F 2 16 2 5 11 5 -F 2 4 2 11 11 5 -F 2 13 3 5 10 4 -F 2 6 4 8 18 12 -F 2 3 4 11 8 2 -F 2 2 5 11 11 5 -F 2 13 6 5 28 22 -F 2 7 6 8 25 19 -F 2 3 6 11 17 11 -F 2 5 7 11 14 8 -F 2 10 11 8 10 4 -F 2 8 12 8 14 8 -F 2 4 12 11 7 1 -F 2 9 0 5 14 9 -F 2 21 1 5 23 18 -F 2 10 1 8 22 17 -F 2 5 1 9 24 19 -F 2 5 2 5 11 6 -F 2 16 3 5 10 5 -F 2 8 3 8 6 1 -F 2 4 4 5 19 14 -F 2 2 4 12 6 1 -F 2 9 6 5 28 23 -F 2 5 6 11 17 12 -F 2 20 7 5 25 20 -F 2 10 7 8 23 18 -F 2 5 7 11 14 9 -F 2 7 11 5 11 6 -F 2 8 12 5 17 12 -F 2 16 0 5 14 10 -F 2 8 0 8 12 8 -F 2 8 1 5 23 19 -F 2 10 2 5 11 7 -F 2 5 2 8 6 2 -F 2 12 3 5 10 6 -F 2 6 3 8 6 2 -F 2 9 4 5 19 15 -F 2 3 5 8 5 1 -F 2 8 6 5 28 24 -F 2 33 7 0 12 8 -F 2 17 7 5 25 21 -F 2 8 7 8 23 19 -F 2 6 11 5 11 7 -F 2 7 12 5 17 13 -F 2 10 0 5 14 11 -F 2 5 0 8 12 9 -F 2 3 0 12 4 1 -F 2 9 1 5 23 20 -F 2 14 2 0 11 8 -F 2 7 2 5 11 8 -F 2 10 3 5 10 7 -F 2 7 4 5 19 16 -F 2 2 5 8 5 2 -F 2 11 6 5 28 25 -F 2 23 7 0 12 9 -F 2 11 7 5 25 22 -F 2 6 7 6 5 2 -F 2 6 11 0 4 1 -F 2 3 11 5 11 8 -F 2 6 12 0 4 1 -F 2 3 12 5 17 14 -F 2 3 0 2 11 9 -F 2 1 0 5 14 12 -F 2 12 1 2 22 20 -F 2 6 1 4 6 4 -F 2 3 1 5 23 21 -F 2 6 2 5 11 9 -F 2 6 3 2 6 4 -F 2 3 3 5 10 8 -F 2 14 4 2 17 15 -F 2 4 4 5 19 17 -F 2 4 5 2 11 9 -F 2 6 6 2 23 21 -F 2 3 6 5 28 26 -F 2 21 7 2 22 20 -F 2 10 7 4 6 4 -F 2 5 7 5 25 23 -F 2 4 8 2 6 4 -F 2 2 8 5 5 3 -F 2 6 11 2 11 9 -F 2 3 11 5 11 9 -F 2 4 12 2 13 11 -F 2 2 12 5 17 15 -F 2 9 0 2 11 10 -F 2 4 0 3 6 5 -F 2 10 1 2 22 21 -F 2 5 1 3 17 16 -F 2 6 2 3 6 5 -F 2 3 2 5 11 10 -F 2 10 3 2 6 5 -F 2 3 3 5 10 9 -F 2 7 4 2 17 16 -F 2 3 4 3 12 11 -F 2 3 5 2 11 10 -F 2 1 5 3 10 9 -F 2 2 6 2 23 22 -F 2 1 6 3 19 18 -F 2 19 7 2 22 21 -F 2 10 7 3 18 17 -F 2 5 7 5 25 24 -F 2 5 8 2 6 5 -F 2 2 8 3 6 5 -F 2 1 8 5 5 4 -F 2 6 11 0 4 3 -F 2 3 11 2 11 10 -F 2 2 11 3 6 5 -F 2 6 12 0 4 3 -F 2 3 12 2 13 12 -F 2 2 12 3 8 7 -go - -engine > player2: P 11.803996 11.215721 1 8 3 -P 9.319567 21.808874 1 26 5 -P 14.288424 0.622569 1 19 5 -P 11.865493 5.273785 1 11 3 -P 11.742498 17.157658 1 7 3 -P 4.254093 0.000000 1 3 1 -P 19.353899 22.431443 1 8 1 -P 14.743614 22.324001 1 21 3 -P 8.864377 0.107441 1 24 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 14 5 -P 14.743177 12.694819 1 9 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 85 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 5 6 28 5 -F 1 7 2 6 23 1 -F 1 6 5 6 28 7 -F 1 11 2 6 23 3 -F 1 5 2 7 22 2 -F 1 9 5 6 28 8 -F 1 20 5 1 23 4 -F 1 10 5 6 28 9 -F 1 5 5 7 25 6 -F 1 12 2 1 22 4 -F 1 6 2 7 22 4 -F 1 22 5 1 23 5 -F 1 11 5 7 25 7 -F 1 4 2 1 22 5 -F 1 8 3 7 18 1 -F 1 18 5 1 23 6 -F 1 9 5 7 25 8 -F 1 4 2 1 22 6 -F 1 2 2 4 17 1 -F 1 26 3 1 17 1 -F 1 6 3 7 18 2 -F 1 3 5 1 23 7 -F 1 1 5 4 19 3 -F 1 7 2 4 17 2 -F 1 4 5 4 19 4 -F 1 9 2 7 22 8 -F 1 8 3 7 18 4 -F 1 9 5 7 25 11 -F 1 5 2 7 22 9 -F 1 6 5 7 25 12 -F 1 12 2 7 22 10 -F 1 10 3 7 18 6 -F 1 6 5 7 25 13 -F 1 7 6 8 25 13 -F 1 8 11 7 14 2 -F 1 6 0 7 12 1 -F 1 10 1 3 17 6 -F 1 5 3 7 18 7 -F 1 7 5 7 25 14 -F 1 16 6 3 19 8 -F 1 5 11 7 14 3 -F 1 7 0 7 12 2 -F 1 9 1 8 22 12 -F 1 5 2 7 22 12 -F 1 9 3 7 18 8 -F 1 8 4 8 18 8 -F 1 12 5 7 25 15 -F 1 5 6 8 25 15 -F 1 5 11 7 14 4 -F 1 7 0 7 12 3 -F 1 18 1 0 11 2 -F 1 18 2 0 11 2 -F 1 9 2 7 22 13 -F 1 6 3 7 18 9 -F 1 6 4 8 18 9 -F 1 8 5 7 25 16 -F 1 6 6 8 25 16 -F 1 5 0 7 12 4 -F 1 14 2 7 22 14 -F 1 6 3 7 18 10 -F 1 6 5 7 25 17 -F 1 6 6 8 25 17 -F 1 8 11 7 14 6 -F 1 6 12 7 10 2 -F 2 63 15 3 14 7 -F 1 11 0 7 12 5 -F 1 5 0 8 12 5 -F 1 9 2 7 22 15 -F 1 8 3 7 18 11 -F 1 7 4 8 18 11 -F 1 5 5 7 25 18 -F 1 8 6 8 25 18 -F 1 18 1 5 23 17 -F 1 9 1 8 22 16 -F 1 4 1 11 13 7 -F 1 16 2 5 11 5 -F 1 4 2 11 11 5 -F 1 13 3 5 10 4 -F 1 6 4 8 18 12 -F 1 3 4 11 8 2 -F 1 2 5 11 11 5 -F 1 13 6 5 28 22 -F 1 7 6 8 25 19 -F 1 3 6 11 17 11 -F 1 5 7 11 14 8 -F 1 10 11 8 10 4 -F 1 8 12 8 14 8 -F 1 4 12 11 7 1 -F 1 9 0 5 14 9 -F 1 21 1 5 23 18 -F 1 10 1 8 22 17 -F 1 5 1 9 24 19 -F 1 5 2 5 11 6 -F 1 16 3 5 10 5 -F 1 8 3 8 6 1 -F 1 4 4 5 19 14 -F 1 2 4 12 6 1 -F 1 9 6 5 28 23 -F 1 5 6 11 17 12 -F 1 20 7 5 25 20 -F 1 10 7 8 23 18 -F 1 5 7 11 14 9 -F 1 7 11 5 11 6 -F 1 8 12 5 17 12 -F 1 16 0 5 14 10 -F 1 8 0 8 12 8 -F 1 8 1 5 23 19 -F 1 10 2 5 11 7 -F 1 5 2 8 6 2 -F 1 12 3 5 10 6 -F 1 6 3 8 6 2 -F 1 9 4 5 19 15 -F 1 3 5 8 5 1 -F 1 8 6 5 28 24 -F 1 33 7 0 12 8 -F 1 17 7 5 25 21 -F 1 8 7 8 23 19 -F 1 6 11 5 11 7 -F 1 7 12 5 17 13 -F 1 10 0 5 14 11 -F 1 5 0 8 12 9 -F 1 3 0 12 4 1 -F 1 9 1 5 23 20 -F 1 14 2 0 11 8 -F 1 7 2 5 11 8 -F 1 10 3 5 10 7 -F 1 7 4 5 19 16 -F 1 2 5 8 5 2 -F 1 11 6 5 28 25 -F 1 23 7 0 12 9 -F 1 11 7 5 25 22 -F 1 6 7 6 5 2 -F 1 6 11 0 4 1 -F 1 3 11 5 11 8 -F 1 6 12 0 4 1 -F 1 3 12 5 17 14 -F 1 3 0 2 11 9 -F 1 1 0 5 14 12 -F 1 12 1 2 22 20 -F 1 6 1 4 6 4 -F 1 3 1 5 23 21 -F 1 6 2 5 11 9 -F 1 6 3 2 6 4 -F 1 3 3 5 10 8 -F 1 14 4 2 17 15 -F 1 4 4 5 19 17 -F 1 4 5 2 11 9 -F 1 6 6 2 23 21 -F 1 3 6 5 28 26 -F 1 21 7 2 22 20 -F 1 10 7 4 6 4 -F 1 5 7 5 25 23 -F 1 4 8 2 6 4 -F 1 2 8 5 5 3 -F 1 6 11 2 11 9 -F 1 3 11 5 11 9 -F 1 4 12 2 13 11 -F 1 2 12 5 17 15 -F 1 9 0 2 11 10 -F 1 4 0 3 6 5 -F 1 10 1 2 22 21 -F 1 5 1 3 17 16 -F 1 6 2 3 6 5 -F 1 3 2 5 11 10 -F 1 10 3 2 6 5 -F 1 3 3 5 10 9 -F 1 7 4 2 17 16 -F 1 3 4 3 12 11 -F 1 3 5 2 11 10 -F 1 1 5 3 10 9 -F 1 2 6 2 23 22 -F 1 1 6 3 19 18 -F 1 19 7 2 22 21 -F 1 10 7 3 18 17 -F 1 5 7 5 25 24 -F 1 5 8 2 6 5 -F 1 2 8 3 6 5 -F 1 1 8 5 5 4 -F 1 6 11 0 4 3 -F 1 3 11 2 11 10 -F 1 2 11 3 6 5 -F 1 6 12 0 4 3 -F 1 3 12 2 13 12 -F 1 2 12 3 8 7 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 2 0 -player2 > engine: 0 3 4 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 2 0 -player2 > engine: 1 2 13 -player2 > engine: comparing 1 and 3, gives 0 2 0 -player2 > engine: 1 3 6 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 9 -player2 > engine: comparing 2 and 3, gives 0 2 0 -player2 > engine: 2 3 5 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 2 0 -player2 > engine: 3 2 5 -player2 > engine: comparing 3 and 3, gives 0 2 0 -player2 > engine: 3 3 3 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 2 0 -player2 > engine: 4 3 3 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 2 0 -player2 > engine: 5 3 1 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 2 0 -player2 > engine: 6 3 4 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 2 0 -player2 > engine: 7 3 10 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 1 0 0.03001903676337727 -player2 > engine: 7 9 5 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 2 0 -player2 > engine: 8 2 12 -player2 > engine: comparing 8 and 3, gives 0 2 0 -player2 > engine: 8 3 6 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 2 0 -player2 > engine: 8 5 3 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0.06056981656335845 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 2 0 -player2 > engine: 11 3 7 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 2 0 -player2 > engine: 12 3 4 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 19 3 -P 9.319567 21.808874 2 38 5 -P 14.288424 0.622569 2 19 5 -P 11.865493 5.273785 2 9 3 -P 11.742498 17.157658 2 9 3 -P 4.254093 0.000000 2 3 1 -P 19.353899 22.431443 2 12 1 -P 14.743614 22.324001 2 23 3 -P 8.864377 0.107441 2 17 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 16 5 -P 14.743177 12.694819 2 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 88 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 5 6 28 4 -F 2 6 5 6 28 6 -F 2 11 2 6 23 2 -F 2 5 2 7 22 1 -F 2 9 5 6 28 7 -F 2 20 5 1 23 3 -F 2 10 5 6 28 8 -F 2 5 5 7 25 5 -F 2 12 2 1 22 3 -F 2 6 2 7 22 3 -F 2 22 5 1 23 4 -F 2 11 5 7 25 6 -F 2 4 2 1 22 4 -F 2 18 5 1 23 5 -F 2 9 5 7 25 7 -F 2 4 2 1 22 5 -F 2 6 3 7 18 1 -F 2 3 5 1 23 6 -F 2 1 5 4 19 2 -F 2 7 2 4 17 1 -F 2 4 5 4 19 3 -F 2 9 2 7 22 7 -F 2 8 3 7 18 3 -F 2 9 5 7 25 10 -F 2 5 2 7 22 8 -F 2 6 5 7 25 11 -F 2 12 2 7 22 9 -F 2 10 3 7 18 5 -F 2 6 5 7 25 12 -F 2 7 6 8 25 12 -F 2 8 11 7 14 1 -F 2 10 1 3 17 5 -F 2 5 3 7 18 6 -F 2 7 5 7 25 13 -F 2 16 6 3 19 7 -F 2 5 11 7 14 2 -F 2 7 0 7 12 1 -F 2 9 1 8 22 11 -F 2 5 2 7 22 11 -F 2 9 3 7 18 7 -F 2 8 4 8 18 7 -F 2 12 5 7 25 14 -F 2 5 6 8 25 14 -F 2 5 11 7 14 3 -F 2 7 0 7 12 2 -F 2 18 1 0 11 1 -F 2 18 2 0 11 1 -F 2 9 2 7 22 12 -F 2 6 3 7 18 8 -F 2 6 4 8 18 8 -F 2 8 5 7 25 15 -F 2 6 6 8 25 15 -F 2 5 0 7 12 3 -F 2 14 2 7 22 13 -F 2 6 3 7 18 9 -F 2 6 5 7 25 16 -F 2 6 6 8 25 16 -F 2 8 11 7 14 5 -F 2 6 12 7 10 1 -F 1 63 15 3 14 6 -F 2 11 0 7 12 4 -F 2 5 0 8 12 4 -F 2 9 2 7 22 14 -F 2 8 3 7 18 10 -F 2 7 4 8 18 10 -F 2 5 5 7 25 17 -F 2 8 6 8 25 17 -F 2 18 1 5 23 16 -F 2 9 1 8 22 15 -F 2 4 1 11 13 6 -F 2 16 2 5 11 4 -F 2 4 2 11 11 4 -F 2 13 3 5 10 3 -F 2 6 4 8 18 11 -F 2 3 4 11 8 1 -F 2 2 5 11 11 4 -F 2 13 6 5 28 21 -F 2 7 6 8 25 18 -F 2 3 6 11 17 10 -F 2 5 7 11 14 7 -F 2 10 11 8 10 3 -F 2 8 12 8 14 7 -F 2 9 0 5 14 8 -F 2 21 1 5 23 17 -F 2 10 1 8 22 16 -F 2 5 1 9 24 18 -F 2 5 2 5 11 5 -F 2 16 3 5 10 4 -F 2 4 4 5 19 13 -F 2 9 6 5 28 22 -F 2 5 6 11 17 11 -F 2 20 7 5 25 19 -F 2 10 7 8 23 17 -F 2 5 7 11 14 8 -F 2 7 11 5 11 5 -F 2 8 12 5 17 11 -F 2 16 0 5 14 9 -F 2 8 0 8 12 7 -F 2 8 1 5 23 18 -F 2 10 2 5 11 6 -F 2 5 2 8 6 1 -F 2 12 3 5 10 5 -F 2 6 3 8 6 1 -F 2 9 4 5 19 14 -F 2 8 6 5 28 23 -F 2 33 7 0 12 7 -F 2 17 7 5 25 20 -F 2 8 7 8 23 18 -F 2 6 11 5 11 6 -F 2 7 12 5 17 12 -F 2 10 0 5 14 10 -F 2 5 0 8 12 8 -F 2 9 1 5 23 19 -F 2 14 2 0 11 7 -F 2 7 2 5 11 7 -F 2 10 3 5 10 6 -F 2 7 4 5 19 15 -F 2 2 5 8 5 1 -F 2 11 6 5 28 24 -F 2 23 7 0 12 8 -F 2 11 7 5 25 21 -F 2 6 7 6 5 1 -F 2 3 11 5 11 7 -F 2 3 12 5 17 13 -F 2 3 0 2 11 8 -F 2 1 0 5 14 11 -F 2 12 1 2 22 19 -F 2 6 1 4 6 3 -F 2 3 1 5 23 20 -F 2 6 2 5 11 8 -F 2 6 3 2 6 3 -F 2 3 3 5 10 7 -F 2 14 4 2 17 14 -F 2 4 4 5 19 16 -F 2 4 5 2 11 8 -F 2 6 6 2 23 20 -F 2 3 6 5 28 25 -F 2 21 7 2 22 19 -F 2 10 7 4 6 3 -F 2 5 7 5 25 22 -F 2 4 8 2 6 3 -F 2 2 8 5 5 2 -F 2 6 11 2 11 8 -F 2 3 11 5 11 8 -F 2 4 12 2 13 10 -F 2 2 12 5 17 14 -F 2 9 0 2 11 9 -F 2 4 0 3 6 4 -F 2 10 1 2 22 20 -F 2 5 1 3 17 15 -F 2 6 2 3 6 4 -F 2 3 2 5 11 9 -F 2 10 3 2 6 4 -F 2 3 3 5 10 8 -F 2 7 4 2 17 15 -F 2 3 4 3 12 10 -F 2 3 5 2 11 9 -F 2 1 5 3 10 8 -F 2 2 6 2 23 21 -F 2 1 6 3 19 17 -F 2 19 7 2 22 20 -F 2 10 7 3 18 16 -F 2 5 7 5 25 23 -F 2 5 8 2 6 4 -F 2 2 8 3 6 4 -F 2 1 8 5 5 3 -F 2 6 11 0 4 2 -F 2 3 11 2 11 9 -F 2 2 11 3 6 4 -F 2 6 12 0 4 2 -F 2 3 12 2 13 11 -F 2 2 12 3 8 6 -F 2 4 0 3 6 5 -F 2 13 1 2 22 21 -F 2 6 1 3 17 16 -F 2 5 2 3 6 5 -F 2 5 3 2 6 5 -F 2 3 4 3 12 11 -F 2 1 5 3 10 9 -F 2 4 6 3 19 18 -F 2 10 7 3 18 17 -F 2 5 7 9 23 22 -F 2 12 8 2 6 5 -F 2 6 8 3 6 5 -F 2 3 8 5 5 4 -F 2 7 11 3 6 5 -F 2 4 12 3 8 7 -go - -engine > player2: P 11.803996 11.215721 1 19 3 -P 9.319567 21.808874 1 38 5 -P 14.288424 0.622569 1 19 5 -P 11.865493 5.273785 1 9 3 -P 11.742498 17.157658 1 9 3 -P 4.254093 0.000000 1 3 1 -P 19.353899 22.431443 1 12 1 -P 14.743614 22.324001 1 23 3 -P 8.864377 0.107441 1 17 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 16 5 -P 14.743177 12.694819 1 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 88 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 5 6 28 4 -F 1 6 5 6 28 6 -F 1 11 2 6 23 2 -F 1 5 2 7 22 1 -F 1 9 5 6 28 7 -F 1 20 5 1 23 3 -F 1 10 5 6 28 8 -F 1 5 5 7 25 5 -F 1 12 2 1 22 3 -F 1 6 2 7 22 3 -F 1 22 5 1 23 4 -F 1 11 5 7 25 6 -F 1 4 2 1 22 4 -F 1 18 5 1 23 5 -F 1 9 5 7 25 7 -F 1 4 2 1 22 5 -F 1 6 3 7 18 1 -F 1 3 5 1 23 6 -F 1 1 5 4 19 2 -F 1 7 2 4 17 1 -F 1 4 5 4 19 3 -F 1 9 2 7 22 7 -F 1 8 3 7 18 3 -F 1 9 5 7 25 10 -F 1 5 2 7 22 8 -F 1 6 5 7 25 11 -F 1 12 2 7 22 9 -F 1 10 3 7 18 5 -F 1 6 5 7 25 12 -F 1 7 6 8 25 12 -F 1 8 11 7 14 1 -F 1 10 1 3 17 5 -F 1 5 3 7 18 6 -F 1 7 5 7 25 13 -F 1 16 6 3 19 7 -F 1 5 11 7 14 2 -F 1 7 0 7 12 1 -F 1 9 1 8 22 11 -F 1 5 2 7 22 11 -F 1 9 3 7 18 7 -F 1 8 4 8 18 7 -F 1 12 5 7 25 14 -F 1 5 6 8 25 14 -F 1 5 11 7 14 3 -F 1 7 0 7 12 2 -F 1 18 1 0 11 1 -F 1 18 2 0 11 1 -F 1 9 2 7 22 12 -F 1 6 3 7 18 8 -F 1 6 4 8 18 8 -F 1 8 5 7 25 15 -F 1 6 6 8 25 15 -F 1 5 0 7 12 3 -F 1 14 2 7 22 13 -F 1 6 3 7 18 9 -F 1 6 5 7 25 16 -F 1 6 6 8 25 16 -F 1 8 11 7 14 5 -F 1 6 12 7 10 1 -F 2 63 15 3 14 6 -F 1 11 0 7 12 4 -F 1 5 0 8 12 4 -F 1 9 2 7 22 14 -F 1 8 3 7 18 10 -F 1 7 4 8 18 10 -F 1 5 5 7 25 17 -F 1 8 6 8 25 17 -F 1 18 1 5 23 16 -F 1 9 1 8 22 15 -F 1 4 1 11 13 6 -F 1 16 2 5 11 4 -F 1 4 2 11 11 4 -F 1 13 3 5 10 3 -F 1 6 4 8 18 11 -F 1 3 4 11 8 1 -F 1 2 5 11 11 4 -F 1 13 6 5 28 21 -F 1 7 6 8 25 18 -F 1 3 6 11 17 10 -F 1 5 7 11 14 7 -F 1 10 11 8 10 3 -F 1 8 12 8 14 7 -F 1 9 0 5 14 8 -F 1 21 1 5 23 17 -F 1 10 1 8 22 16 -F 1 5 1 9 24 18 -F 1 5 2 5 11 5 -F 1 16 3 5 10 4 -F 1 4 4 5 19 13 -F 1 9 6 5 28 22 -F 1 5 6 11 17 11 -F 1 20 7 5 25 19 -F 1 10 7 8 23 17 -F 1 5 7 11 14 8 -F 1 7 11 5 11 5 -F 1 8 12 5 17 11 -F 1 16 0 5 14 9 -F 1 8 0 8 12 7 -F 1 8 1 5 23 18 -F 1 10 2 5 11 6 -F 1 5 2 8 6 1 -F 1 12 3 5 10 5 -F 1 6 3 8 6 1 -F 1 9 4 5 19 14 -F 1 8 6 5 28 23 -F 1 33 7 0 12 7 -F 1 17 7 5 25 20 -F 1 8 7 8 23 18 -F 1 6 11 5 11 6 -F 1 7 12 5 17 12 -F 1 10 0 5 14 10 -F 1 5 0 8 12 8 -F 1 9 1 5 23 19 -F 1 14 2 0 11 7 -F 1 7 2 5 11 7 -F 1 10 3 5 10 6 -F 1 7 4 5 19 15 -F 1 2 5 8 5 1 -F 1 11 6 5 28 24 -F 1 23 7 0 12 8 -F 1 11 7 5 25 21 -F 1 6 7 6 5 1 -F 1 3 11 5 11 7 -F 1 3 12 5 17 13 -F 1 3 0 2 11 8 -F 1 1 0 5 14 11 -F 1 12 1 2 22 19 -F 1 6 1 4 6 3 -F 1 3 1 5 23 20 -F 1 6 2 5 11 8 -F 1 6 3 2 6 3 -F 1 3 3 5 10 7 -F 1 14 4 2 17 14 -F 1 4 4 5 19 16 -F 1 4 5 2 11 8 -F 1 6 6 2 23 20 -F 1 3 6 5 28 25 -F 1 21 7 2 22 19 -F 1 10 7 4 6 3 -F 1 5 7 5 25 22 -F 1 4 8 2 6 3 -F 1 2 8 5 5 2 -F 1 6 11 2 11 8 -F 1 3 11 5 11 8 -F 1 4 12 2 13 10 -F 1 2 12 5 17 14 -F 1 9 0 2 11 9 -F 1 4 0 3 6 4 -F 1 10 1 2 22 20 -F 1 5 1 3 17 15 -F 1 6 2 3 6 4 -F 1 3 2 5 11 9 -F 1 10 3 2 6 4 -F 1 3 3 5 10 8 -F 1 7 4 2 17 15 -F 1 3 4 3 12 10 -F 1 3 5 2 11 9 -F 1 1 5 3 10 8 -F 1 2 6 2 23 21 -F 1 1 6 3 19 17 -F 1 19 7 2 22 20 -F 1 10 7 3 18 16 -F 1 5 7 5 25 23 -F 1 5 8 2 6 4 -F 1 2 8 3 6 4 -F 1 1 8 5 5 3 -F 1 6 11 0 4 2 -F 1 3 11 2 11 9 -F 1 2 11 3 6 4 -F 1 6 12 0 4 2 -F 1 3 12 2 13 11 -F 1 2 12 3 8 6 -F 1 4 0 3 6 5 -F 1 13 1 2 22 21 -F 1 6 1 3 17 16 -F 1 5 2 3 6 5 -F 1 5 3 2 6 5 -F 1 3 4 3 12 11 -F 1 1 5 3 10 9 -F 1 4 6 3 19 18 -F 1 10 7 3 18 17 -F 1 5 7 9 23 22 -F 1 12 8 2 6 5 -F 1 6 8 3 6 5 -F 1 3 8 5 5 4 -F 1 7 11 3 6 5 -F 1 4 12 3 8 7 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 2 0 -player2 > engine: 0 3 9 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 5 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 2 0 -player2 > engine: 1 3 19 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 1 0 0.01696282572734245 -player2 > engine: 1 9 9 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 2 0 -player2 > engine: 1 12 5 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 2 0 -player2 > engine: 2 3 9 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 2 0 -player2 > engine: 2 12 5 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 2 0 -player2 > engine: 3 3 4 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 2 0 -player2 > engine: 3 12 2 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 2 0 -player2 > engine: 4 12 4 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 2 0 -player2 > engine: 5 12 1 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 1 0 0.09205867890315732 -player2 > engine: 6 9 6 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 2 0 -player2 > engine: 6 12 3 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 1 0 0.03001903676337727 -player2 > engine: 7 9 11 -player2 > engine: comparing 7 and 10, gives 1 0 0.06056981686559169 -player2 > engine: 7 10 6 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 2 0 -player2 > engine: 7 12 3 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 2 0 -player2 > engine: 8 3 8 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 2 0 -player2 > engine: 8 5 4 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0.06056981656335845 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 2 0 -player2 > engine: 8 12 2 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 2 0 -player2 > engine: 11 3 8 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 2 0 -player2 > engine: 11 11 4 -player2 > engine: comparing 11 and 12, gives 0 2 0 -player2 > engine: 11 12 2 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 1 0 0.03070447521228758 -player2 > engine: 12 9 7 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 4 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 42 3 -P 9.319567 21.808874 2 10 5 -P 14.288424 0.622569 2 10 5 -P 11.865493 5.273785 2 10 3 -P 11.742498 17.157658 2 15 3 -P 4.254093 0.000000 2 3 1 -P 19.353899 22.431443 2 10 1 -P 14.743614 22.324001 2 38 3 -P 8.864377 0.107441 2 19 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 14 5 -P 14.743177 12.694819 2 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 91 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 5 6 28 3 -F 2 6 5 6 28 5 -F 2 11 2 6 23 1 -F 2 9 5 6 28 6 -F 2 20 5 1 23 2 -F 2 10 5 6 28 7 -F 2 5 5 7 25 4 -F 2 12 2 1 22 2 -F 2 6 2 7 22 2 -F 2 22 5 1 23 3 -F 2 11 5 7 25 5 -F 2 4 2 1 22 3 -F 2 18 5 1 23 4 -F 2 9 5 7 25 6 -F 2 4 2 1 22 4 -F 2 3 5 1 23 5 -F 2 1 5 4 19 1 -F 2 4 5 4 19 2 -F 2 9 2 7 22 6 -F 2 8 3 7 18 2 -F 2 9 5 7 25 9 -F 2 5 2 7 22 7 -F 2 6 5 7 25 10 -F 2 12 2 7 22 8 -F 2 10 3 7 18 4 -F 2 6 5 7 25 11 -F 2 7 6 8 25 11 -F 2 10 1 3 17 4 -F 2 5 3 7 18 5 -F 2 7 5 7 25 12 -F 2 16 6 3 19 6 -F 2 5 11 7 14 1 -F 2 9 1 8 22 10 -F 2 5 2 7 22 10 -F 2 9 3 7 18 6 -F 2 8 4 8 18 6 -F 2 12 5 7 25 13 -F 2 5 6 8 25 13 -F 2 5 11 7 14 2 -F 2 7 0 7 12 1 -F 2 9 2 7 22 11 -F 2 6 3 7 18 7 -F 2 6 4 8 18 7 -F 2 8 5 7 25 14 -F 2 6 6 8 25 14 -F 2 5 0 7 12 2 -F 2 14 2 7 22 12 -F 2 6 3 7 18 8 -F 2 6 5 7 25 15 -F 2 6 6 8 25 15 -F 2 8 11 7 14 4 -F 1 63 15 3 14 5 -F 2 11 0 7 12 3 -F 2 5 0 8 12 3 -F 2 9 2 7 22 13 -F 2 8 3 7 18 9 -F 2 7 4 8 18 9 -F 2 5 5 7 25 16 -F 2 8 6 8 25 16 -F 2 18 1 5 23 15 -F 2 9 1 8 22 14 -F 2 4 1 11 13 5 -F 2 16 2 5 11 3 -F 2 4 2 11 11 3 -F 2 13 3 5 10 2 -F 2 6 4 8 18 10 -F 2 2 5 11 11 3 -F 2 13 6 5 28 20 -F 2 7 6 8 25 17 -F 2 3 6 11 17 9 -F 2 5 7 11 14 6 -F 2 10 11 8 10 2 -F 2 8 12 8 14 6 -F 2 9 0 5 14 7 -F 2 21 1 5 23 16 -F 2 10 1 8 22 15 -F 2 5 1 9 24 17 -F 2 5 2 5 11 4 -F 2 16 3 5 10 3 -F 2 4 4 5 19 12 -F 2 9 6 5 28 21 -F 2 5 6 11 17 10 -F 2 20 7 5 25 18 -F 2 10 7 8 23 16 -F 2 5 7 11 14 7 -F 2 7 11 5 11 4 -F 2 8 12 5 17 10 -F 2 16 0 5 14 8 -F 2 8 0 8 12 6 -F 2 8 1 5 23 17 -F 2 10 2 5 11 5 -F 2 12 3 5 10 4 -F 2 9 4 5 19 13 -F 2 8 6 5 28 22 -F 2 33 7 0 12 6 -F 2 17 7 5 25 19 -F 2 8 7 8 23 17 -F 2 6 11 5 11 5 -F 2 7 12 5 17 11 -F 2 10 0 5 14 9 -F 2 5 0 8 12 7 -F 2 9 1 5 23 18 -F 2 14 2 0 11 6 -F 2 7 2 5 11 6 -F 2 10 3 5 10 5 -F 2 7 4 5 19 14 -F 2 11 6 5 28 23 -F 2 23 7 0 12 7 -F 2 11 7 5 25 20 -F 2 3 11 5 11 6 -F 2 3 12 5 17 12 -F 2 3 0 2 11 7 -F 2 1 0 5 14 10 -F 2 12 1 2 22 18 -F 2 6 1 4 6 2 -F 2 3 1 5 23 19 -F 2 6 2 5 11 7 -F 2 6 3 2 6 2 -F 2 3 3 5 10 6 -F 2 14 4 2 17 13 -F 2 4 4 5 19 15 -F 2 4 5 2 11 7 -F 2 6 6 2 23 19 -F 2 3 6 5 28 24 -F 2 21 7 2 22 18 -F 2 10 7 4 6 2 -F 2 5 7 5 25 21 -F 2 4 8 2 6 2 -F 2 2 8 5 5 1 -F 2 6 11 2 11 7 -F 2 3 11 5 11 7 -F 2 4 12 2 13 9 -F 2 2 12 5 17 13 -F 2 9 0 2 11 8 -F 2 4 0 3 6 3 -F 2 10 1 2 22 19 -F 2 5 1 3 17 14 -F 2 6 2 3 6 3 -F 2 3 2 5 11 8 -F 2 10 3 2 6 3 -F 2 3 3 5 10 7 -F 2 7 4 2 17 14 -F 2 3 4 3 12 9 -F 2 3 5 2 11 8 -F 2 1 5 3 10 7 -F 2 2 6 2 23 20 -F 2 1 6 3 19 16 -F 2 19 7 2 22 19 -F 2 10 7 3 18 15 -F 2 5 7 5 25 22 -F 2 5 8 2 6 3 -F 2 2 8 3 6 3 -F 2 1 8 5 5 2 -F 2 6 11 0 4 1 -F 2 3 11 2 11 8 -F 2 2 11 3 6 3 -F 2 6 12 0 4 1 -F 2 3 12 2 13 10 -F 2 2 12 3 8 5 -F 2 4 0 3 6 4 -F 2 13 1 2 22 20 -F 2 6 1 3 17 15 -F 2 5 2 3 6 4 -F 2 5 3 2 6 4 -F 2 3 4 3 12 10 -F 2 1 5 3 10 8 -F 2 4 6 3 19 17 -F 2 10 7 3 18 16 -F 2 5 7 9 23 21 -F 2 12 8 2 6 4 -F 2 6 8 3 6 4 -F 2 3 8 5 5 3 -F 2 7 11 3 6 4 -F 2 4 12 3 8 6 -F 2 9 0 3 6 5 -F 2 5 0 11 4 3 -F 2 2 0 12 4 3 -F 2 19 1 3 17 16 -F 2 9 1 9 24 23 -F 2 5 1 12 11 10 -F 2 9 2 3 6 5 -F 2 5 2 12 13 12 -F 2 2 3 12 8 7 -F 2 4 4 12 6 5 -F 2 1 5 12 17 16 -F 2 6 6 9 22 21 -F 2 3 6 12 11 10 -F 2 11 7 9 23 22 -F 2 6 7 10 12 11 -F 2 3 7 12 10 9 -F 2 8 8 3 6 5 -F 2 4 8 5 5 4 -F 2 2 8 12 14 13 -F 2 8 11 3 6 5 -F 2 2 11 12 7 6 -F 2 7 12 9 14 13 -go - -engine > player2: P 11.803996 11.215721 1 42 3 -P 9.319567 21.808874 1 10 5 -P 14.288424 0.622569 1 10 5 -P 11.865493 5.273785 1 10 3 -P 11.742498 17.157658 1 15 3 -P 4.254093 0.000000 1 3 1 -P 19.353899 22.431443 1 10 1 -P 14.743614 22.324001 1 38 3 -P 8.864377 0.107441 1 19 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 14 5 -P 14.743177 12.694819 1 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 91 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 5 6 28 3 -F 1 6 5 6 28 5 -F 1 11 2 6 23 1 -F 1 9 5 6 28 6 -F 1 20 5 1 23 2 -F 1 10 5 6 28 7 -F 1 5 5 7 25 4 -F 1 12 2 1 22 2 -F 1 6 2 7 22 2 -F 1 22 5 1 23 3 -F 1 11 5 7 25 5 -F 1 4 2 1 22 3 -F 1 18 5 1 23 4 -F 1 9 5 7 25 6 -F 1 4 2 1 22 4 -F 1 3 5 1 23 5 -F 1 1 5 4 19 1 -F 1 4 5 4 19 2 -F 1 9 2 7 22 6 -F 1 8 3 7 18 2 -F 1 9 5 7 25 9 -F 1 5 2 7 22 7 -F 1 6 5 7 25 10 -F 1 12 2 7 22 8 -F 1 10 3 7 18 4 -F 1 6 5 7 25 11 -F 1 7 6 8 25 11 -F 1 10 1 3 17 4 -F 1 5 3 7 18 5 -F 1 7 5 7 25 12 -F 1 16 6 3 19 6 -F 1 5 11 7 14 1 -F 1 9 1 8 22 10 -F 1 5 2 7 22 10 -F 1 9 3 7 18 6 -F 1 8 4 8 18 6 -F 1 12 5 7 25 13 -F 1 5 6 8 25 13 -F 1 5 11 7 14 2 -F 1 7 0 7 12 1 -F 1 9 2 7 22 11 -F 1 6 3 7 18 7 -F 1 6 4 8 18 7 -F 1 8 5 7 25 14 -F 1 6 6 8 25 14 -F 1 5 0 7 12 2 -F 1 14 2 7 22 12 -F 1 6 3 7 18 8 -F 1 6 5 7 25 15 -F 1 6 6 8 25 15 -F 1 8 11 7 14 4 -F 2 63 15 3 14 5 -F 1 11 0 7 12 3 -F 1 5 0 8 12 3 -F 1 9 2 7 22 13 -F 1 8 3 7 18 9 -F 1 7 4 8 18 9 -F 1 5 5 7 25 16 -F 1 8 6 8 25 16 -F 1 18 1 5 23 15 -F 1 9 1 8 22 14 -F 1 4 1 11 13 5 -F 1 16 2 5 11 3 -F 1 4 2 11 11 3 -F 1 13 3 5 10 2 -F 1 6 4 8 18 10 -F 1 2 5 11 11 3 -F 1 13 6 5 28 20 -F 1 7 6 8 25 17 -F 1 3 6 11 17 9 -F 1 5 7 11 14 6 -F 1 10 11 8 10 2 -F 1 8 12 8 14 6 -F 1 9 0 5 14 7 -F 1 21 1 5 23 16 -F 1 10 1 8 22 15 -F 1 5 1 9 24 17 -F 1 5 2 5 11 4 -F 1 16 3 5 10 3 -F 1 4 4 5 19 12 -F 1 9 6 5 28 21 -F 1 5 6 11 17 10 -F 1 20 7 5 25 18 -F 1 10 7 8 23 16 -F 1 5 7 11 14 7 -F 1 7 11 5 11 4 -F 1 8 12 5 17 10 -F 1 16 0 5 14 8 -F 1 8 0 8 12 6 -F 1 8 1 5 23 17 -F 1 10 2 5 11 5 -F 1 12 3 5 10 4 -F 1 9 4 5 19 13 -F 1 8 6 5 28 22 -F 1 33 7 0 12 6 -F 1 17 7 5 25 19 -F 1 8 7 8 23 17 -F 1 6 11 5 11 5 -F 1 7 12 5 17 11 -F 1 10 0 5 14 9 -F 1 5 0 8 12 7 -F 1 9 1 5 23 18 -F 1 14 2 0 11 6 -F 1 7 2 5 11 6 -F 1 10 3 5 10 5 -F 1 7 4 5 19 14 -F 1 11 6 5 28 23 -F 1 23 7 0 12 7 -F 1 11 7 5 25 20 -F 1 3 11 5 11 6 -F 1 3 12 5 17 12 -F 1 3 0 2 11 7 -F 1 1 0 5 14 10 -F 1 12 1 2 22 18 -F 1 6 1 4 6 2 -F 1 3 1 5 23 19 -F 1 6 2 5 11 7 -F 1 6 3 2 6 2 -F 1 3 3 5 10 6 -F 1 14 4 2 17 13 -F 1 4 4 5 19 15 -F 1 4 5 2 11 7 -F 1 6 6 2 23 19 -F 1 3 6 5 28 24 -F 1 21 7 2 22 18 -F 1 10 7 4 6 2 -F 1 5 7 5 25 21 -F 1 4 8 2 6 2 -F 1 2 8 5 5 1 -F 1 6 11 2 11 7 -F 1 3 11 5 11 7 -F 1 4 12 2 13 9 -F 1 2 12 5 17 13 -F 1 9 0 2 11 8 -F 1 4 0 3 6 3 -F 1 10 1 2 22 19 -F 1 5 1 3 17 14 -F 1 6 2 3 6 3 -F 1 3 2 5 11 8 -F 1 10 3 2 6 3 -F 1 3 3 5 10 7 -F 1 7 4 2 17 14 -F 1 3 4 3 12 9 -F 1 3 5 2 11 8 -F 1 1 5 3 10 7 -F 1 2 6 2 23 20 -F 1 1 6 3 19 16 -F 1 19 7 2 22 19 -F 1 10 7 3 18 15 -F 1 5 7 5 25 22 -F 1 5 8 2 6 3 -F 1 2 8 3 6 3 -F 1 1 8 5 5 2 -F 1 6 11 0 4 1 -F 1 3 11 2 11 8 -F 1 2 11 3 6 3 -F 1 6 12 0 4 1 -F 1 3 12 2 13 10 -F 1 2 12 3 8 5 -F 1 4 0 3 6 4 -F 1 13 1 2 22 20 -F 1 6 1 3 17 15 -F 1 5 2 3 6 4 -F 1 5 3 2 6 4 -F 1 3 4 3 12 10 -F 1 1 5 3 10 8 -F 1 4 6 3 19 17 -F 1 10 7 3 18 16 -F 1 5 7 9 23 21 -F 1 12 8 2 6 4 -F 1 6 8 3 6 4 -F 1 3 8 5 5 3 -F 1 7 11 3 6 4 -F 1 4 12 3 8 6 -F 1 9 0 3 6 5 -F 1 5 0 11 4 3 -F 1 2 0 12 4 3 -F 1 19 1 3 17 16 -F 1 9 1 9 24 23 -F 1 5 1 12 11 10 -F 1 9 2 3 6 5 -F 1 5 2 12 13 12 -F 1 2 3 12 8 7 -F 1 4 4 12 6 5 -F 1 1 5 12 17 16 -F 1 6 6 9 22 21 -F 1 3 6 12 11 10 -F 1 11 7 9 23 22 -F 1 6 7 10 12 11 -F 1 3 7 12 10 9 -F 1 8 8 3 6 5 -F 1 4 8 5 5 4 -F 1 2 8 12 14 13 -F 1 8 11 3 6 5 -F 1 2 11 12 7 6 -F 1 7 12 9 14 13 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 21 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 1 0 0.05037544889393815 -player2 > engine: 0 9 10 -player2 > engine: comparing 0 and 10, gives 1 0 0.05037544355714904 -player2 > engine: 0 10 5 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 3 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 1 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 2 0 -player2 > engine: 1 12 5 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 2 0 -player2 > engine: 2 12 5 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 2 0 -player2 > engine: 3 12 5 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 1 0 0.03635537238221285 -player2 > engine: 4 9 7 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 2 0 -player2 > engine: 4 12 4 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 2 0 -player2 > engine: 6 12 5 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 2 0 -player2 > engine: 7 0 19 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 1 0 0.03001903676337727 -player2 > engine: 7 9 9 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 2 0 -player2 > engine: 7 12 5 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 1 0 0.06056981656335845 -player2 > engine: 8 9 9 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 2 0 -player2 > engine: 8 12 5 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 1 0 0.028128945542033604 -player2 > engine: 11 9 7 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 2 0 -player2 > engine: 11 12 3 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 1 0 0.03070447521228758 -player2 > engine: 12 9 6 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 3 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 38 3 -P 9.319567 21.808874 2 10 5 -P 14.288424 0.622569 2 10 5 -P 11.865493 5.273785 2 8 3 -P 11.742498 17.157658 2 8 3 -P 4.254093 0.000000 2 6 1 -P 19.353899 22.431443 2 17 1 -P 14.743614 22.324001 2 20 3 -P 8.864377 0.107441 2 8 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 9 5 -P 14.743177 12.694819 2 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 94 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 5 6 28 2 -F 2 6 5 6 28 4 -F 2 9 5 6 28 5 -F 2 20 5 1 23 1 -F 2 10 5 6 28 6 -F 2 5 5 7 25 3 -F 2 12 2 1 22 1 -F 2 6 2 7 22 1 -F 2 22 5 1 23 2 -F 2 11 5 7 25 4 -F 2 4 2 1 22 2 -F 2 18 5 1 23 3 -F 2 9 5 7 25 5 -F 2 4 2 1 22 3 -F 2 3 5 1 23 4 -F 2 4 5 4 19 1 -F 2 9 2 7 22 5 -F 2 8 3 7 18 1 -F 2 9 5 7 25 8 -F 2 5 2 7 22 6 -F 2 6 5 7 25 9 -F 2 12 2 7 22 7 -F 2 10 3 7 18 3 -F 2 6 5 7 25 10 -F 2 7 6 8 25 10 -F 2 10 1 3 17 3 -F 2 5 3 7 18 4 -F 2 7 5 7 25 11 -F 2 16 6 3 19 5 -F 2 9 1 8 22 9 -F 2 5 2 7 22 9 -F 2 9 3 7 18 5 -F 2 8 4 8 18 5 -F 2 12 5 7 25 12 -F 2 5 6 8 25 12 -F 2 5 11 7 14 1 -F 2 9 2 7 22 10 -F 2 6 3 7 18 6 -F 2 6 4 8 18 6 -F 2 8 5 7 25 13 -F 2 6 6 8 25 13 -F 2 5 0 7 12 1 -F 2 14 2 7 22 11 -F 2 6 3 7 18 7 -F 2 6 5 7 25 14 -F 2 6 6 8 25 14 -F 2 8 11 7 14 3 -F 1 63 15 3 14 4 -F 2 11 0 7 12 2 -F 2 5 0 8 12 2 -F 2 9 2 7 22 12 -F 2 8 3 7 18 8 -F 2 7 4 8 18 8 -F 2 5 5 7 25 15 -F 2 8 6 8 25 15 -F 2 18 1 5 23 14 -F 2 9 1 8 22 13 -F 2 4 1 11 13 4 -F 2 16 2 5 11 2 -F 2 4 2 11 11 2 -F 2 13 3 5 10 1 -F 2 6 4 8 18 9 -F 2 2 5 11 11 2 -F 2 13 6 5 28 19 -F 2 7 6 8 25 16 -F 2 3 6 11 17 8 -F 2 5 7 11 14 5 -F 2 10 11 8 10 1 -F 2 8 12 8 14 5 -F 2 9 0 5 14 6 -F 2 21 1 5 23 15 -F 2 10 1 8 22 14 -F 2 5 1 9 24 16 -F 2 5 2 5 11 3 -F 2 16 3 5 10 2 -F 2 4 4 5 19 11 -F 2 9 6 5 28 20 -F 2 5 6 11 17 9 -F 2 20 7 5 25 17 -F 2 10 7 8 23 15 -F 2 5 7 11 14 6 -F 2 7 11 5 11 3 -F 2 8 12 5 17 9 -F 2 16 0 5 14 7 -F 2 8 0 8 12 5 -F 2 8 1 5 23 16 -F 2 10 2 5 11 4 -F 2 12 3 5 10 3 -F 2 9 4 5 19 12 -F 2 8 6 5 28 21 -F 2 33 7 0 12 5 -F 2 17 7 5 25 18 -F 2 8 7 8 23 16 -F 2 6 11 5 11 4 -F 2 7 12 5 17 10 -F 2 10 0 5 14 8 -F 2 5 0 8 12 6 -F 2 9 1 5 23 17 -F 2 14 2 0 11 5 -F 2 7 2 5 11 5 -F 2 10 3 5 10 4 -F 2 7 4 5 19 13 -F 2 11 6 5 28 22 -F 2 23 7 0 12 6 -F 2 11 7 5 25 19 -F 2 3 11 5 11 5 -F 2 3 12 5 17 11 -F 2 3 0 2 11 6 -F 2 1 0 5 14 9 -F 2 12 1 2 22 17 -F 2 6 1 4 6 1 -F 2 3 1 5 23 18 -F 2 6 2 5 11 6 -F 2 6 3 2 6 1 -F 2 3 3 5 10 5 -F 2 14 4 2 17 12 -F 2 4 4 5 19 14 -F 2 4 5 2 11 6 -F 2 6 6 2 23 18 -F 2 3 6 5 28 23 -F 2 21 7 2 22 17 -F 2 10 7 4 6 1 -F 2 5 7 5 25 20 -F 2 4 8 2 6 1 -F 2 6 11 2 11 6 -F 2 3 11 5 11 6 -F 2 4 12 2 13 8 -F 2 2 12 5 17 12 -F 2 9 0 2 11 7 -F 2 4 0 3 6 2 -F 2 10 1 2 22 18 -F 2 5 1 3 17 13 -F 2 6 2 3 6 2 -F 2 3 2 5 11 7 -F 2 10 3 2 6 2 -F 2 3 3 5 10 6 -F 2 7 4 2 17 13 -F 2 3 4 3 12 8 -F 2 3 5 2 11 7 -F 2 1 5 3 10 6 -F 2 2 6 2 23 19 -F 2 1 6 3 19 15 -F 2 19 7 2 22 18 -F 2 10 7 3 18 14 -F 2 5 7 5 25 21 -F 2 5 8 2 6 2 -F 2 2 8 3 6 2 -F 2 1 8 5 5 1 -F 2 3 11 2 11 7 -F 2 2 11 3 6 2 -F 2 3 12 2 13 9 -F 2 2 12 3 8 4 -F 2 4 0 3 6 3 -F 2 13 1 2 22 19 -F 2 6 1 3 17 14 -F 2 5 2 3 6 3 -F 2 5 3 2 6 3 -F 2 3 4 3 12 9 -F 2 1 5 3 10 7 -F 2 4 6 3 19 16 -F 2 10 7 3 18 15 -F 2 5 7 9 23 20 -F 2 12 8 2 6 3 -F 2 6 8 3 6 3 -F 2 3 8 5 5 2 -F 2 7 11 3 6 3 -F 2 4 12 3 8 5 -F 2 9 0 3 6 4 -F 2 5 0 11 4 2 -F 2 2 0 12 4 2 -F 2 19 1 3 17 15 -F 2 9 1 9 24 22 -F 2 5 1 12 11 9 -F 2 9 2 3 6 4 -F 2 5 2 12 13 11 -F 2 2 3 12 8 6 -F 2 4 4 12 6 4 -F 2 1 5 12 17 15 -F 2 6 6 9 22 20 -F 2 3 6 12 11 9 -F 2 11 7 9 23 21 -F 2 6 7 10 12 10 -F 2 3 7 12 10 8 -F 2 8 8 3 6 4 -F 2 4 8 5 5 3 -F 2 2 8 12 14 12 -F 2 8 11 3 6 4 -F 2 2 11 12 7 5 -F 2 7 12 9 14 12 -F 2 10 0 9 14 13 -F 2 5 0 10 14 13 -F 2 3 0 11 4 3 -F 2 1 0 12 4 3 -F 2 5 1 12 11 10 -F 2 5 2 12 13 12 -F 2 5 3 12 8 7 -F 2 7 4 9 19 18 -F 2 4 4 12 6 5 -F 2 5 6 12 11 10 -F 2 19 7 0 12 11 -F 2 9 7 9 23 22 -F 2 5 7 12 10 9 -F 2 9 8 9 12 11 -F 2 5 8 12 14 13 -F 2 7 11 9 15 14 -F 2 3 11 12 7 6 -F 2 6 12 9 14 13 -go - -engine > player2: P 11.803996 11.215721 1 38 3 -P 9.319567 21.808874 1 10 5 -P 14.288424 0.622569 1 10 5 -P 11.865493 5.273785 1 8 3 -P 11.742498 17.157658 1 8 3 -P 4.254093 0.000000 1 6 1 -P 19.353899 22.431443 1 17 1 -P 14.743614 22.324001 1 20 3 -P 8.864377 0.107441 1 8 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 9 5 -P 14.743177 12.694819 1 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 94 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 5 6 28 2 -F 1 6 5 6 28 4 -F 1 9 5 6 28 5 -F 1 20 5 1 23 1 -F 1 10 5 6 28 6 -F 1 5 5 7 25 3 -F 1 12 2 1 22 1 -F 1 6 2 7 22 1 -F 1 22 5 1 23 2 -F 1 11 5 7 25 4 -F 1 4 2 1 22 2 -F 1 18 5 1 23 3 -F 1 9 5 7 25 5 -F 1 4 2 1 22 3 -F 1 3 5 1 23 4 -F 1 4 5 4 19 1 -F 1 9 2 7 22 5 -F 1 8 3 7 18 1 -F 1 9 5 7 25 8 -F 1 5 2 7 22 6 -F 1 6 5 7 25 9 -F 1 12 2 7 22 7 -F 1 10 3 7 18 3 -F 1 6 5 7 25 10 -F 1 7 6 8 25 10 -F 1 10 1 3 17 3 -F 1 5 3 7 18 4 -F 1 7 5 7 25 11 -F 1 16 6 3 19 5 -F 1 9 1 8 22 9 -F 1 5 2 7 22 9 -F 1 9 3 7 18 5 -F 1 8 4 8 18 5 -F 1 12 5 7 25 12 -F 1 5 6 8 25 12 -F 1 5 11 7 14 1 -F 1 9 2 7 22 10 -F 1 6 3 7 18 6 -F 1 6 4 8 18 6 -F 1 8 5 7 25 13 -F 1 6 6 8 25 13 -F 1 5 0 7 12 1 -F 1 14 2 7 22 11 -F 1 6 3 7 18 7 -F 1 6 5 7 25 14 -F 1 6 6 8 25 14 -F 1 8 11 7 14 3 -F 2 63 15 3 14 4 -F 1 11 0 7 12 2 -F 1 5 0 8 12 2 -F 1 9 2 7 22 12 -F 1 8 3 7 18 8 -F 1 7 4 8 18 8 -F 1 5 5 7 25 15 -F 1 8 6 8 25 15 -F 1 18 1 5 23 14 -F 1 9 1 8 22 13 -F 1 4 1 11 13 4 -F 1 16 2 5 11 2 -F 1 4 2 11 11 2 -F 1 13 3 5 10 1 -F 1 6 4 8 18 9 -F 1 2 5 11 11 2 -F 1 13 6 5 28 19 -F 1 7 6 8 25 16 -F 1 3 6 11 17 8 -F 1 5 7 11 14 5 -F 1 10 11 8 10 1 -F 1 8 12 8 14 5 -F 1 9 0 5 14 6 -F 1 21 1 5 23 15 -F 1 10 1 8 22 14 -F 1 5 1 9 24 16 -F 1 5 2 5 11 3 -F 1 16 3 5 10 2 -F 1 4 4 5 19 11 -F 1 9 6 5 28 20 -F 1 5 6 11 17 9 -F 1 20 7 5 25 17 -F 1 10 7 8 23 15 -F 1 5 7 11 14 6 -F 1 7 11 5 11 3 -F 1 8 12 5 17 9 -F 1 16 0 5 14 7 -F 1 8 0 8 12 5 -F 1 8 1 5 23 16 -F 1 10 2 5 11 4 -F 1 12 3 5 10 3 -F 1 9 4 5 19 12 -F 1 8 6 5 28 21 -F 1 33 7 0 12 5 -F 1 17 7 5 25 18 -F 1 8 7 8 23 16 -F 1 6 11 5 11 4 -F 1 7 12 5 17 10 -F 1 10 0 5 14 8 -F 1 5 0 8 12 6 -F 1 9 1 5 23 17 -F 1 14 2 0 11 5 -F 1 7 2 5 11 5 -F 1 10 3 5 10 4 -F 1 7 4 5 19 13 -F 1 11 6 5 28 22 -F 1 23 7 0 12 6 -F 1 11 7 5 25 19 -F 1 3 11 5 11 5 -F 1 3 12 5 17 11 -F 1 3 0 2 11 6 -F 1 1 0 5 14 9 -F 1 12 1 2 22 17 -F 1 6 1 4 6 1 -F 1 3 1 5 23 18 -F 1 6 2 5 11 6 -F 1 6 3 2 6 1 -F 1 3 3 5 10 5 -F 1 14 4 2 17 12 -F 1 4 4 5 19 14 -F 1 4 5 2 11 6 -F 1 6 6 2 23 18 -F 1 3 6 5 28 23 -F 1 21 7 2 22 17 -F 1 10 7 4 6 1 -F 1 5 7 5 25 20 -F 1 4 8 2 6 1 -F 1 6 11 2 11 6 -F 1 3 11 5 11 6 -F 1 4 12 2 13 8 -F 1 2 12 5 17 12 -F 1 9 0 2 11 7 -F 1 4 0 3 6 2 -F 1 10 1 2 22 18 -F 1 5 1 3 17 13 -F 1 6 2 3 6 2 -F 1 3 2 5 11 7 -F 1 10 3 2 6 2 -F 1 3 3 5 10 6 -F 1 7 4 2 17 13 -F 1 3 4 3 12 8 -F 1 3 5 2 11 7 -F 1 1 5 3 10 6 -F 1 2 6 2 23 19 -F 1 1 6 3 19 15 -F 1 19 7 2 22 18 -F 1 10 7 3 18 14 -F 1 5 7 5 25 21 -F 1 5 8 2 6 2 -F 1 2 8 3 6 2 -F 1 1 8 5 5 1 -F 1 3 11 2 11 7 -F 1 2 11 3 6 2 -F 1 3 12 2 13 9 -F 1 2 12 3 8 4 -F 1 4 0 3 6 3 -F 1 13 1 2 22 19 -F 1 6 1 3 17 14 -F 1 5 2 3 6 3 -F 1 5 3 2 6 3 -F 1 3 4 3 12 9 -F 1 1 5 3 10 7 -F 1 4 6 3 19 16 -F 1 10 7 3 18 15 -F 1 5 7 9 23 20 -F 1 12 8 2 6 3 -F 1 6 8 3 6 3 -F 1 3 8 5 5 2 -F 1 7 11 3 6 3 -F 1 4 12 3 8 5 -F 1 9 0 3 6 4 -F 1 5 0 11 4 2 -F 1 2 0 12 4 2 -F 1 19 1 3 17 15 -F 1 9 1 9 24 22 -F 1 5 1 12 11 9 -F 1 9 2 3 6 4 -F 1 5 2 12 13 11 -F 1 2 3 12 8 6 -F 1 4 4 12 6 4 -F 1 1 5 12 17 15 -F 1 6 6 9 22 20 -F 1 3 6 12 11 9 -F 1 11 7 9 23 21 -F 1 6 7 10 12 10 -F 1 3 7 12 10 8 -F 1 8 8 3 6 4 -F 1 4 8 5 5 3 -F 1 2 8 12 14 12 -F 1 8 11 3 6 4 -F 1 2 11 12 7 5 -F 1 7 12 9 14 12 -F 1 10 0 9 14 13 -F 1 5 0 10 14 13 -F 1 3 0 11 4 3 -F 1 1 0 12 4 3 -F 1 5 1 12 11 10 -F 1 5 2 12 13 12 -F 1 5 3 12 8 7 -F 1 7 4 9 19 18 -F 1 4 4 12 6 5 -F 1 5 6 12 11 10 -F 1 19 7 0 12 11 -F 1 9 7 9 23 22 -F 1 5 7 12 10 9 -F 1 9 8 9 12 11 -F 1 5 8 12 14 13 -F 1 7 11 9 15 14 -F 1 3 11 12 7 6 -F 1 6 12 9 14 13 -go - -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 19 -player1 > engine: go -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 1 0 0.05037544889393815 -player2 > engine: 0 9 9 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 5 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 2 0 -player2 > engine: 1 0 5 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 2 0 -player2 > engine: 2 0 5 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 2 0 -player2 > engine: 3 0 4 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 2 0 -player2 > engine: 4 0 4 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 2 0 -player2 > engine: 5 0 3 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 2 0 -player2 > engine: 6 0 8 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 2 0 -player2 > engine: 7 0 10 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0.03001903676337727 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 2 0 -player2 > engine: 8 0 4 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0.06056981656335845 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 4 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 6 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 25 3 -P 9.319567 21.808874 2 42 5 -P 14.288424 0.622569 2 20 5 -P 11.865493 5.273785 2 7 3 -P 11.742498 17.157658 2 27 3 -P 4.254093 0.000000 2 18 1 -P 19.353899 22.431443 2 10 1 -P 14.743614 22.324001 2 37 3 -P 8.864377 0.107441 2 17 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 10 5 -P 14.743177 12.694819 2 11 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 97 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 5 6 28 1 -F 2 6 5 6 28 3 -F 2 9 5 6 28 4 -F 2 10 5 6 28 5 -F 2 5 5 7 25 2 -F 2 22 5 1 23 1 -F 2 11 5 7 25 3 -F 2 4 2 1 22 1 -F 2 18 5 1 23 2 -F 2 9 5 7 25 4 -F 2 4 2 1 22 2 -F 2 3 5 1 23 3 -F 2 9 2 7 22 4 -F 2 9 5 7 25 7 -F 2 5 2 7 22 5 -F 2 6 5 7 25 8 -F 2 12 2 7 22 6 -F 2 10 3 7 18 2 -F 2 6 5 7 25 9 -F 2 7 6 8 25 9 -F 2 10 1 3 17 2 -F 2 5 3 7 18 3 -F 2 7 5 7 25 10 -F 2 16 6 3 19 4 -F 2 9 1 8 22 8 -F 2 5 2 7 22 8 -F 2 9 3 7 18 4 -F 2 8 4 8 18 4 -F 2 12 5 7 25 11 -F 2 5 6 8 25 11 -F 2 9 2 7 22 9 -F 2 6 3 7 18 5 -F 2 6 4 8 18 5 -F 2 8 5 7 25 12 -F 2 6 6 8 25 12 -F 2 14 2 7 22 10 -F 2 6 3 7 18 6 -F 2 6 5 7 25 13 -F 2 6 6 8 25 13 -F 2 8 11 7 14 2 -F 1 63 15 3 14 3 -F 2 11 0 7 12 1 -F 2 5 0 8 12 1 -F 2 9 2 7 22 11 -F 2 8 3 7 18 7 -F 2 7 4 8 18 7 -F 2 5 5 7 25 14 -F 2 8 6 8 25 14 -F 2 18 1 5 23 13 -F 2 9 1 8 22 12 -F 2 4 1 11 13 3 -F 2 16 2 5 11 1 -F 2 4 2 11 11 1 -F 2 6 4 8 18 8 -F 2 2 5 11 11 1 -F 2 13 6 5 28 18 -F 2 7 6 8 25 15 -F 2 3 6 11 17 7 -F 2 5 7 11 14 4 -F 2 8 12 8 14 4 -F 2 9 0 5 14 5 -F 2 21 1 5 23 14 -F 2 10 1 8 22 13 -F 2 5 1 9 24 15 -F 2 5 2 5 11 2 -F 2 16 3 5 10 1 -F 2 4 4 5 19 10 -F 2 9 6 5 28 19 -F 2 5 6 11 17 8 -F 2 20 7 5 25 16 -F 2 10 7 8 23 14 -F 2 5 7 11 14 5 -F 2 7 11 5 11 2 -F 2 8 12 5 17 8 -F 2 16 0 5 14 6 -F 2 8 0 8 12 4 -F 2 8 1 5 23 15 -F 2 10 2 5 11 3 -F 2 12 3 5 10 2 -F 2 9 4 5 19 11 -F 2 8 6 5 28 20 -F 2 33 7 0 12 4 -F 2 17 7 5 25 17 -F 2 8 7 8 23 15 -F 2 6 11 5 11 3 -F 2 7 12 5 17 9 -F 2 10 0 5 14 7 -F 2 5 0 8 12 5 -F 2 9 1 5 23 16 -F 2 14 2 0 11 4 -F 2 7 2 5 11 4 -F 2 10 3 5 10 3 -F 2 7 4 5 19 12 -F 2 11 6 5 28 21 -F 2 23 7 0 12 5 -F 2 11 7 5 25 18 -F 2 3 11 5 11 4 -F 2 3 12 5 17 10 -F 2 3 0 2 11 5 -F 2 1 0 5 14 8 -F 2 12 1 2 22 16 -F 2 3 1 5 23 17 -F 2 6 2 5 11 5 -F 2 3 3 5 10 4 -F 2 14 4 2 17 11 -F 2 4 4 5 19 13 -F 2 4 5 2 11 5 -F 2 6 6 2 23 17 -F 2 3 6 5 28 22 -F 2 21 7 2 22 16 -F 2 5 7 5 25 19 -F 2 6 11 2 11 5 -F 2 3 11 5 11 5 -F 2 4 12 2 13 7 -F 2 2 12 5 17 11 -F 2 9 0 2 11 6 -F 2 4 0 3 6 1 -F 2 10 1 2 22 17 -F 2 5 1 3 17 12 -F 2 6 2 3 6 1 -F 2 3 2 5 11 6 -F 2 10 3 2 6 1 -F 2 3 3 5 10 5 -F 2 7 4 2 17 12 -F 2 3 4 3 12 7 -F 2 3 5 2 11 6 -F 2 1 5 3 10 5 -F 2 2 6 2 23 18 -F 2 1 6 3 19 14 -F 2 19 7 2 22 17 -F 2 10 7 3 18 13 -F 2 5 7 5 25 20 -F 2 5 8 2 6 1 -F 2 2 8 3 6 1 -F 2 3 11 2 11 6 -F 2 2 11 3 6 1 -F 2 3 12 2 13 8 -F 2 2 12 3 8 3 -F 2 4 0 3 6 2 -F 2 13 1 2 22 18 -F 2 6 1 3 17 13 -F 2 5 2 3 6 2 -F 2 5 3 2 6 2 -F 2 3 4 3 12 8 -F 2 1 5 3 10 6 -F 2 4 6 3 19 15 -F 2 10 7 3 18 14 -F 2 5 7 9 23 19 -F 2 12 8 2 6 2 -F 2 6 8 3 6 2 -F 2 3 8 5 5 1 -F 2 7 11 3 6 2 -F 2 4 12 3 8 4 -F 2 9 0 3 6 3 -F 2 5 0 11 4 1 -F 2 2 0 12 4 1 -F 2 19 1 3 17 14 -F 2 9 1 9 24 21 -F 2 5 1 12 11 8 -F 2 9 2 3 6 3 -F 2 5 2 12 13 10 -F 2 2 3 12 8 5 -F 2 4 4 12 6 3 -F 2 1 5 12 17 14 -F 2 6 6 9 22 19 -F 2 3 6 12 11 8 -F 2 11 7 9 23 20 -F 2 6 7 10 12 9 -F 2 3 7 12 10 7 -F 2 8 8 3 6 3 -F 2 4 8 5 5 2 -F 2 2 8 12 14 11 -F 2 8 11 3 6 3 -F 2 2 11 12 7 4 -F 2 7 12 9 14 11 -F 2 10 0 9 14 12 -F 2 5 0 10 14 12 -F 2 3 0 11 4 2 -F 2 1 0 12 4 2 -F 2 5 1 12 11 9 -F 2 5 2 12 13 11 -F 2 5 3 12 8 6 -F 2 7 4 9 19 17 -F 2 4 4 12 6 4 -F 2 5 6 12 11 9 -F 2 19 7 0 12 10 -F 2 9 7 9 23 21 -F 2 5 7 12 10 8 -F 2 9 8 9 12 10 -F 2 5 8 12 14 12 -F 2 7 11 9 15 13 -F 2 3 11 12 7 5 -F 2 6 12 9 14 12 -F 2 9 0 9 14 13 -F 2 5 0 11 4 3 -F 2 2 0 12 4 3 -F 2 5 1 0 11 10 -F 2 5 2 0 11 10 -F 2 4 3 0 6 5 -F 2 4 4 0 6 5 -F 2 3 5 0 14 13 -F 2 8 6 0 14 13 -F 2 10 7 0 12 11 -F 2 4 8 0 12 11 -F 2 4 11 0 4 3 -F 2 6 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 25 3 -P 9.319567 21.808874 1 42 5 -P 14.288424 0.622569 1 20 5 -P 11.865493 5.273785 1 7 3 -P 11.742498 17.157658 1 27 3 -P 4.254093 0.000000 1 18 1 -P 19.353899 22.431443 1 10 1 -P 14.743614 22.324001 1 37 3 -P 8.864377 0.107441 1 17 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 10 5 -P 14.743177 12.694819 1 11 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 97 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 5 6 28 1 -F 1 6 5 6 28 3 -F 1 9 5 6 28 4 -F 1 10 5 6 28 5 -F 1 5 5 7 25 2 -F 1 22 5 1 23 1 -F 1 11 5 7 25 3 -F 1 4 2 1 22 1 -F 1 18 5 1 23 2 -F 1 9 5 7 25 4 -F 1 4 2 1 22 2 -F 1 3 5 1 23 3 -F 1 9 2 7 22 4 -F 1 9 5 7 25 7 -F 1 5 2 7 22 5 -F 1 6 5 7 25 8 -F 1 12 2 7 22 6 -F 1 10 3 7 18 2 -F 1 6 5 7 25 9 -F 1 7 6 8 25 9 -F 1 10 1 3 17 2 -F 1 5 3 7 18 3 -F 1 7 5 7 25 10 -F 1 16 6 3 19 4 -F 1 9 1 8 22 8 -F 1 5 2 7 22 8 -F 1 9 3 7 18 4 -F 1 8 4 8 18 4 -F 1 12 5 7 25 11 -F 1 5 6 8 25 11 -F 1 9 2 7 22 9 -F 1 6 3 7 18 5 -F 1 6 4 8 18 5 -F 1 8 5 7 25 12 -F 1 6 6 8 25 12 -F 1 14 2 7 22 10 -F 1 6 3 7 18 6 -F 1 6 5 7 25 13 -F 1 6 6 8 25 13 -F 1 8 11 7 14 2 -F 2 63 15 3 14 3 -F 1 11 0 7 12 1 -F 1 5 0 8 12 1 -F 1 9 2 7 22 11 -F 1 8 3 7 18 7 -F 1 7 4 8 18 7 -F 1 5 5 7 25 14 -F 1 8 6 8 25 14 -F 1 18 1 5 23 13 -F 1 9 1 8 22 12 -F 1 4 1 11 13 3 -F 1 16 2 5 11 1 -F 1 4 2 11 11 1 -F 1 6 4 8 18 8 -F 1 2 5 11 11 1 -F 1 13 6 5 28 18 -F 1 7 6 8 25 15 -F 1 3 6 11 17 7 -F 1 5 7 11 14 4 -F 1 8 12 8 14 4 -F 1 9 0 5 14 5 -F 1 21 1 5 23 14 -F 1 10 1 8 22 13 -F 1 5 1 9 24 15 -F 1 5 2 5 11 2 -F 1 16 3 5 10 1 -F 1 4 4 5 19 10 -F 1 9 6 5 28 19 -F 1 5 6 11 17 8 -F 1 20 7 5 25 16 -F 1 10 7 8 23 14 -F 1 5 7 11 14 5 -F 1 7 11 5 11 2 -F 1 8 12 5 17 8 -F 1 16 0 5 14 6 -F 1 8 0 8 12 4 -F 1 8 1 5 23 15 -F 1 10 2 5 11 3 -F 1 12 3 5 10 2 -F 1 9 4 5 19 11 -F 1 8 6 5 28 20 -F 1 33 7 0 12 4 -F 1 17 7 5 25 17 -F 1 8 7 8 23 15 -F 1 6 11 5 11 3 -F 1 7 12 5 17 9 -F 1 10 0 5 14 7 -F 1 5 0 8 12 5 -F 1 9 1 5 23 16 -F 1 14 2 0 11 4 -F 1 7 2 5 11 4 -F 1 10 3 5 10 3 -F 1 7 4 5 19 12 -F 1 11 6 5 28 21 -F 1 23 7 0 12 5 -F 1 11 7 5 25 18 -F 1 3 11 5 11 4 -F 1 3 12 5 17 10 -F 1 3 0 2 11 5 -F 1 1 0 5 14 8 -F 1 12 1 2 22 16 -F 1 3 1 5 23 17 -F 1 6 2 5 11 5 -F 1 3 3 5 10 4 -F 1 14 4 2 17 11 -F 1 4 4 5 19 13 -F 1 4 5 2 11 5 -F 1 6 6 2 23 17 -F 1 3 6 5 28 22 -F 1 21 7 2 22 16 -F 1 5 7 5 25 19 -F 1 6 11 2 11 5 -F 1 3 11 5 11 5 -F 1 4 12 2 13 7 -F 1 2 12 5 17 11 -F 1 9 0 2 11 6 -F 1 4 0 3 6 1 -F 1 10 1 2 22 17 -F 1 5 1 3 17 12 -F 1 6 2 3 6 1 -F 1 3 2 5 11 6 -F 1 10 3 2 6 1 -F 1 3 3 5 10 5 -F 1 7 4 2 17 12 -F 1 3 4 3 12 7 -F 1 3 5 2 11 6 -F 1 1 5 3 10 5 -F 1 2 6 2 23 18 -F 1 1 6 3 19 14 -F 1 19 7 2 22 17 -F 1 10 7 3 18 13 -F 1 5 7 5 25 20 -F 1 5 8 2 6 1 -F 1 2 8 3 6 1 -F 1 3 11 2 11 6 -F 1 2 11 3 6 1 -F 1 3 12 2 13 8 -F 1 2 12 3 8 3 -F 1 4 0 3 6 2 -F 1 13 1 2 22 18 -F 1 6 1 3 17 13 -F 1 5 2 3 6 2 -F 1 5 3 2 6 2 -F 1 3 4 3 12 8 -F 1 1 5 3 10 6 -F 1 4 6 3 19 15 -F 1 10 7 3 18 14 -F 1 5 7 9 23 19 -F 1 12 8 2 6 2 -F 1 6 8 3 6 2 -F 1 3 8 5 5 1 -F 1 7 11 3 6 2 -F 1 4 12 3 8 4 -F 1 9 0 3 6 3 -F 1 5 0 11 4 1 -F 1 2 0 12 4 1 -F 1 19 1 3 17 14 -F 1 9 1 9 24 21 -F 1 5 1 12 11 8 -F 1 9 2 3 6 3 -F 1 5 2 12 13 10 -F 1 2 3 12 8 5 -F 1 4 4 12 6 3 -F 1 1 5 12 17 14 -F 1 6 6 9 22 19 -F 1 3 6 12 11 8 -F 1 11 7 9 23 20 -F 1 6 7 10 12 9 -F 1 3 7 12 10 7 -F 1 8 8 3 6 3 -F 1 4 8 5 5 2 -F 1 2 8 12 14 11 -F 1 8 11 3 6 3 -F 1 2 11 12 7 4 -F 1 7 12 9 14 11 -F 1 10 0 9 14 12 -F 1 5 0 10 14 12 -F 1 3 0 11 4 2 -F 1 1 0 12 4 2 -F 1 5 1 12 11 9 -F 1 5 2 12 13 11 -F 1 5 3 12 8 6 -F 1 7 4 9 19 17 -F 1 4 4 12 6 4 -F 1 5 6 12 11 9 -F 1 19 7 0 12 10 -F 1 9 7 9 23 21 -F 1 5 7 12 10 8 -F 1 9 8 9 12 10 -F 1 5 8 12 14 12 -F 1 7 11 9 15 13 -F 1 3 11 12 7 5 -F 1 6 12 9 14 12 -F 1 9 0 9 14 13 -F 1 5 0 11 4 3 -F 1 2 0 12 4 3 -F 1 5 1 0 11 10 -F 1 5 2 0 11 10 -F 1 4 3 0 6 5 -F 1 4 4 0 6 5 -F 1 3 5 0 14 13 -F 1 8 6 0 14 13 -F 1 10 7 0 12 11 -F 1 4 8 0 12 11 -F 1 4 11 0 4 3 -F 1 6 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 12 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 2 0 -player2 > engine: 0 4 6 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 3 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 2 0 -player2 > engine: 1 4 21 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 1 0 0.01696282572734245 -player2 > engine: 1 9 10 -player2 > engine: comparing 1 and 10, gives 1 0 0.07185662694633879 -player2 > engine: 1 10 5 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 2 0 -player2 > engine: 2 4 10 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 2 0 -player2 > engine: 3 4 3 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0.07246707613730467 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 2 0 -player2 > engine: 4 0 13 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 2 0 -player2 > engine: 4 4 7 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 2 0 -player2 > engine: 5 4 9 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 2 0 -player2 > engine: 6 4 5 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 2 0 -player2 > engine: 7 4 18 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 2 0 -player2 > engine: 7 6 9 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0.03001903676337727 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 2 0 -player2 > engine: 8 4 8 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0.06056981656335845 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 5 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 2 0 -player2 > engine: 11 4 2 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 5 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 2 0 -player2 > engine: 12 4 3 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 19 3 -P 9.319567 21.808874 2 37 5 -P 14.288424 0.622569 2 30 5 -P 11.865493 5.273785 2 21 3 -P 11.742498 17.157658 2 17 3 -P 4.254093 0.000000 2 45 1 -P 19.353899 22.431443 2 11 1 -P 14.743614 22.324001 2 24 3 -P 8.864377 0.107441 2 17 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 19 5 -P 14.743177 12.694819 2 10 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 100 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 5 6 28 2 -F 2 9 5 6 28 3 -F 2 10 5 6 28 4 -F 2 5 5 7 25 1 -F 2 11 5 7 25 2 -F 2 18 5 1 23 1 -F 2 9 5 7 25 3 -F 2 4 2 1 22 1 -F 2 3 5 1 23 2 -F 2 9 2 7 22 3 -F 2 9 5 7 25 6 -F 2 5 2 7 22 4 -F 2 6 5 7 25 7 -F 2 12 2 7 22 5 -F 2 10 3 7 18 1 -F 2 6 5 7 25 8 -F 2 7 6 8 25 8 -F 2 10 1 3 17 1 -F 2 5 3 7 18 2 -F 2 7 5 7 25 9 -F 2 16 6 3 19 3 -F 2 9 1 8 22 7 -F 2 5 2 7 22 7 -F 2 9 3 7 18 3 -F 2 8 4 8 18 3 -F 2 12 5 7 25 10 -F 2 5 6 8 25 10 -F 2 9 2 7 22 8 -F 2 6 3 7 18 4 -F 2 6 4 8 18 4 -F 2 8 5 7 25 11 -F 2 6 6 8 25 11 -F 2 14 2 7 22 9 -F 2 6 3 7 18 5 -F 2 6 5 7 25 12 -F 2 6 6 8 25 12 -F 2 8 11 7 14 1 -F 1 63 15 3 14 2 -F 2 9 2 7 22 10 -F 2 8 3 7 18 6 -F 2 7 4 8 18 6 -F 2 5 5 7 25 13 -F 2 8 6 8 25 13 -F 2 18 1 5 23 12 -F 2 9 1 8 22 11 -F 2 4 1 11 13 2 -F 2 6 4 8 18 7 -F 2 13 6 5 28 17 -F 2 7 6 8 25 14 -F 2 3 6 11 17 6 -F 2 5 7 11 14 3 -F 2 8 12 8 14 3 -F 2 9 0 5 14 4 -F 2 21 1 5 23 13 -F 2 10 1 8 22 12 -F 2 5 1 9 24 14 -F 2 5 2 5 11 1 -F 2 4 4 5 19 9 -F 2 9 6 5 28 18 -F 2 5 6 11 17 7 -F 2 20 7 5 25 15 -F 2 10 7 8 23 13 -F 2 5 7 11 14 4 -F 2 7 11 5 11 1 -F 2 8 12 5 17 7 -F 2 16 0 5 14 5 -F 2 8 0 8 12 3 -F 2 8 1 5 23 14 -F 2 10 2 5 11 2 -F 2 12 3 5 10 1 -F 2 9 4 5 19 10 -F 2 8 6 5 28 19 -F 2 33 7 0 12 3 -F 2 17 7 5 25 16 -F 2 8 7 8 23 14 -F 2 6 11 5 11 2 -F 2 7 12 5 17 8 -F 2 10 0 5 14 6 -F 2 5 0 8 12 4 -F 2 9 1 5 23 15 -F 2 14 2 0 11 3 -F 2 7 2 5 11 3 -F 2 10 3 5 10 2 -F 2 7 4 5 19 11 -F 2 11 6 5 28 20 -F 2 23 7 0 12 4 -F 2 11 7 5 25 17 -F 2 3 11 5 11 3 -F 2 3 12 5 17 9 -F 2 3 0 2 11 4 -F 2 1 0 5 14 7 -F 2 12 1 2 22 15 -F 2 3 1 5 23 16 -F 2 6 2 5 11 4 -F 2 3 3 5 10 3 -F 2 14 4 2 17 10 -F 2 4 4 5 19 12 -F 2 4 5 2 11 4 -F 2 6 6 2 23 16 -F 2 3 6 5 28 21 -F 2 21 7 2 22 15 -F 2 5 7 5 25 18 -F 2 6 11 2 11 4 -F 2 3 11 5 11 4 -F 2 4 12 2 13 6 -F 2 2 12 5 17 10 -F 2 9 0 2 11 5 -F 2 10 1 2 22 16 -F 2 5 1 3 17 11 -F 2 3 2 5 11 5 -F 2 3 3 5 10 4 -F 2 7 4 2 17 11 -F 2 3 4 3 12 6 -F 2 3 5 2 11 5 -F 2 1 5 3 10 4 -F 2 2 6 2 23 17 -F 2 1 6 3 19 13 -F 2 19 7 2 22 16 -F 2 10 7 3 18 12 -F 2 5 7 5 25 19 -F 2 3 11 2 11 5 -F 2 3 12 2 13 7 -F 2 2 12 3 8 2 -F 2 4 0 3 6 1 -F 2 13 1 2 22 17 -F 2 6 1 3 17 12 -F 2 5 2 3 6 1 -F 2 5 3 2 6 1 -F 2 3 4 3 12 7 -F 2 1 5 3 10 5 -F 2 4 6 3 19 14 -F 2 10 7 3 18 13 -F 2 5 7 9 23 18 -F 2 12 8 2 6 1 -F 2 6 8 3 6 1 -F 2 7 11 3 6 1 -F 2 4 12 3 8 3 -F 2 9 0 3 6 2 -F 2 19 1 3 17 13 -F 2 9 1 9 24 20 -F 2 5 1 12 11 7 -F 2 9 2 3 6 2 -F 2 5 2 12 13 9 -F 2 2 3 12 8 4 -F 2 4 4 12 6 2 -F 2 1 5 12 17 13 -F 2 6 6 9 22 18 -F 2 3 6 12 11 7 -F 2 11 7 9 23 19 -F 2 6 7 10 12 8 -F 2 3 7 12 10 6 -F 2 8 8 3 6 2 -F 2 4 8 5 5 1 -F 2 2 8 12 14 10 -F 2 8 11 3 6 2 -F 2 2 11 12 7 3 -F 2 7 12 9 14 10 -F 2 10 0 9 14 11 -F 2 5 0 10 14 11 -F 2 3 0 11 4 1 -F 2 1 0 12 4 1 -F 2 5 1 12 11 8 -F 2 5 2 12 13 10 -F 2 5 3 12 8 5 -F 2 7 4 9 19 16 -F 2 4 4 12 6 3 -F 2 5 6 12 11 8 -F 2 19 7 0 12 9 -F 2 9 7 9 23 20 -F 2 5 7 12 10 7 -F 2 9 8 9 12 9 -F 2 5 8 12 14 11 -F 2 7 11 9 15 12 -F 2 3 11 12 7 4 -F 2 6 12 9 14 11 -F 2 9 0 9 14 12 -F 2 5 0 11 4 2 -F 2 2 0 12 4 2 -F 2 5 1 0 11 9 -F 2 5 2 0 11 9 -F 2 4 3 0 6 4 -F 2 4 4 0 6 4 -F 2 3 5 0 14 12 -F 2 8 6 0 14 12 -F 2 10 7 0 12 10 -F 2 4 8 0 12 10 -F 2 4 11 0 4 2 -F 2 6 12 0 4 2 -F 2 6 0 4 6 5 -F 2 3 0 12 4 3 -F 2 21 1 4 6 5 -F 2 10 1 9 24 23 -F 2 5 1 10 6 5 -F 2 10 2 4 17 16 -F 2 3 3 4 12 11 -F 2 13 4 0 6 5 -F 2 9 5 4 19 18 -F 2 5 6 4 10 9 -F 2 18 7 4 6 5 -F 2 9 7 6 5 4 -F 2 8 8 4 18 17 -F 2 5 11 0 4 3 -F 2 2 11 4 8 7 -F 2 5 12 0 4 3 -F 2 3 12 4 6 5 -go - -engine > player2: P 11.803996 11.215721 1 19 3 -P 9.319567 21.808874 1 37 5 -P 14.288424 0.622569 1 30 5 -P 11.865493 5.273785 1 21 3 -P 11.742498 17.157658 1 17 3 -P 4.254093 0.000000 1 45 1 -P 19.353899 22.431443 1 11 1 -P 14.743614 22.324001 1 24 3 -P 8.864377 0.107441 1 17 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 19 5 -P 14.743177 12.694819 1 10 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 100 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 5 6 28 2 -F 1 9 5 6 28 3 -F 1 10 5 6 28 4 -F 1 5 5 7 25 1 -F 1 11 5 7 25 2 -F 1 18 5 1 23 1 -F 1 9 5 7 25 3 -F 1 4 2 1 22 1 -F 1 3 5 1 23 2 -F 1 9 2 7 22 3 -F 1 9 5 7 25 6 -F 1 5 2 7 22 4 -F 1 6 5 7 25 7 -F 1 12 2 7 22 5 -F 1 10 3 7 18 1 -F 1 6 5 7 25 8 -F 1 7 6 8 25 8 -F 1 10 1 3 17 1 -F 1 5 3 7 18 2 -F 1 7 5 7 25 9 -F 1 16 6 3 19 3 -F 1 9 1 8 22 7 -F 1 5 2 7 22 7 -F 1 9 3 7 18 3 -F 1 8 4 8 18 3 -F 1 12 5 7 25 10 -F 1 5 6 8 25 10 -F 1 9 2 7 22 8 -F 1 6 3 7 18 4 -F 1 6 4 8 18 4 -F 1 8 5 7 25 11 -F 1 6 6 8 25 11 -F 1 14 2 7 22 9 -F 1 6 3 7 18 5 -F 1 6 5 7 25 12 -F 1 6 6 8 25 12 -F 1 8 11 7 14 1 -F 2 63 15 3 14 2 -F 1 9 2 7 22 10 -F 1 8 3 7 18 6 -F 1 7 4 8 18 6 -F 1 5 5 7 25 13 -F 1 8 6 8 25 13 -F 1 18 1 5 23 12 -F 1 9 1 8 22 11 -F 1 4 1 11 13 2 -F 1 6 4 8 18 7 -F 1 13 6 5 28 17 -F 1 7 6 8 25 14 -F 1 3 6 11 17 6 -F 1 5 7 11 14 3 -F 1 8 12 8 14 3 -F 1 9 0 5 14 4 -F 1 21 1 5 23 13 -F 1 10 1 8 22 12 -F 1 5 1 9 24 14 -F 1 5 2 5 11 1 -F 1 4 4 5 19 9 -F 1 9 6 5 28 18 -F 1 5 6 11 17 7 -F 1 20 7 5 25 15 -F 1 10 7 8 23 13 -F 1 5 7 11 14 4 -F 1 7 11 5 11 1 -F 1 8 12 5 17 7 -F 1 16 0 5 14 5 -F 1 8 0 8 12 3 -F 1 8 1 5 23 14 -F 1 10 2 5 11 2 -F 1 12 3 5 10 1 -F 1 9 4 5 19 10 -F 1 8 6 5 28 19 -F 1 33 7 0 12 3 -F 1 17 7 5 25 16 -F 1 8 7 8 23 14 -F 1 6 11 5 11 2 -F 1 7 12 5 17 8 -F 1 10 0 5 14 6 -F 1 5 0 8 12 4 -F 1 9 1 5 23 15 -F 1 14 2 0 11 3 -F 1 7 2 5 11 3 -F 1 10 3 5 10 2 -F 1 7 4 5 19 11 -F 1 11 6 5 28 20 -F 1 23 7 0 12 4 -F 1 11 7 5 25 17 -F 1 3 11 5 11 3 -F 1 3 12 5 17 9 -F 1 3 0 2 11 4 -F 1 1 0 5 14 7 -F 1 12 1 2 22 15 -F 1 3 1 5 23 16 -F 1 6 2 5 11 4 -F 1 3 3 5 10 3 -F 1 14 4 2 17 10 -F 1 4 4 5 19 12 -F 1 4 5 2 11 4 -F 1 6 6 2 23 16 -F 1 3 6 5 28 21 -F 1 21 7 2 22 15 -F 1 5 7 5 25 18 -F 1 6 11 2 11 4 -F 1 3 11 5 11 4 -F 1 4 12 2 13 6 -F 1 2 12 5 17 10 -F 1 9 0 2 11 5 -F 1 10 1 2 22 16 -F 1 5 1 3 17 11 -F 1 3 2 5 11 5 -F 1 3 3 5 10 4 -F 1 7 4 2 17 11 -F 1 3 4 3 12 6 -F 1 3 5 2 11 5 -F 1 1 5 3 10 4 -F 1 2 6 2 23 17 -F 1 1 6 3 19 13 -F 1 19 7 2 22 16 -F 1 10 7 3 18 12 -F 1 5 7 5 25 19 -F 1 3 11 2 11 5 -F 1 3 12 2 13 7 -F 1 2 12 3 8 2 -F 1 4 0 3 6 1 -F 1 13 1 2 22 17 -F 1 6 1 3 17 12 -F 1 5 2 3 6 1 -F 1 5 3 2 6 1 -F 1 3 4 3 12 7 -F 1 1 5 3 10 5 -F 1 4 6 3 19 14 -F 1 10 7 3 18 13 -F 1 5 7 9 23 18 -F 1 12 8 2 6 1 -F 1 6 8 3 6 1 -F 1 7 11 3 6 1 -F 1 4 12 3 8 3 -F 1 9 0 3 6 2 -F 1 19 1 3 17 13 -F 1 9 1 9 24 20 -F 1 5 1 12 11 7 -F 1 9 2 3 6 2 -F 1 5 2 12 13 9 -F 1 2 3 12 8 4 -F 1 4 4 12 6 2 -F 1 1 5 12 17 13 -F 1 6 6 9 22 18 -F 1 3 6 12 11 7 -F 1 11 7 9 23 19 -F 1 6 7 10 12 8 -F 1 3 7 12 10 6 -F 1 8 8 3 6 2 -F 1 4 8 5 5 1 -F 1 2 8 12 14 10 -F 1 8 11 3 6 2 -F 1 2 11 12 7 3 -F 1 7 12 9 14 10 -F 1 10 0 9 14 11 -F 1 5 0 10 14 11 -F 1 3 0 11 4 1 -F 1 1 0 12 4 1 -F 1 5 1 12 11 8 -F 1 5 2 12 13 10 -F 1 5 3 12 8 5 -F 1 7 4 9 19 16 -F 1 4 4 12 6 3 -F 1 5 6 12 11 8 -F 1 19 7 0 12 9 -F 1 9 7 9 23 20 -F 1 5 7 12 10 7 -F 1 9 8 9 12 9 -F 1 5 8 12 14 11 -F 1 7 11 9 15 12 -F 1 3 11 12 7 4 -F 1 6 12 9 14 11 -F 1 9 0 9 14 12 -F 1 5 0 11 4 2 -F 1 2 0 12 4 2 -F 1 5 1 0 11 9 -F 1 5 2 0 11 9 -F 1 4 3 0 6 4 -F 1 4 4 0 6 4 -F 1 3 5 0 14 12 -F 1 8 6 0 14 12 -F 1 10 7 0 12 10 -F 1 4 8 0 12 10 -F 1 4 11 0 4 2 -F 1 6 12 0 4 2 -F 1 6 0 4 6 5 -F 1 3 0 12 4 3 -F 1 21 1 4 6 5 -F 1 10 1 9 24 23 -F 1 5 1 10 6 5 -F 1 10 2 4 17 16 -F 1 3 3 4 12 11 -F 1 13 4 0 6 5 -F 1 9 5 4 19 18 -F 1 5 6 4 10 9 -F 1 18 7 4 6 5 -F 1 9 7 6 5 4 -F 1 8 8 4 18 17 -F 1 5 11 0 4 3 -F 1 2 11 4 8 7 -F 1 5 12 0 4 3 -F 1 3 12 4 6 5 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 2 0 -player2 > engine: 0 4 9 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 5 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 2 0 -player2 > engine: 1 4 18 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 1 0 0.01696282572734245 -player2 > engine: 1 9 9 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 2 0 -player2 > engine: 2 4 15 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 1 0 0.07185662694633876 -player2 > engine: 2 9 7 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 2 0 -player2 > engine: 3 4 10 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 1 0 0.07246707613730467 -player2 > engine: 3 9 5 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 2 0 -player2 > engine: 4 4 8 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 2 0 -player2 > engine: 5 4 22 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 2 0 -player2 > engine: 5 8 11 -player2 > engine: comparing 5 and 9, gives 1 0 0.12806974798033835 -player2 > engine: 5 9 6 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 2 0 -player2 > engine: 6 4 5 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 2 0 -player2 > engine: 7 4 12 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 1 0 0.03001903676337727 -player2 > engine: 7 9 6 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 2 0 -player2 > engine: 8 4 8 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0.06056981656335845 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 9 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 2 0 -player2 > engine: 11 4 5 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 5 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 2 0 -player2 > engine: 12 4 2 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 6 3 -P 9.319567 21.808874 2 37 5 -P 14.288424 0.622569 2 30 5 -P 11.865493 5.273785 2 41 3 -P 11.742498 17.157658 2 20 3 -P 4.254093 0.000000 2 35 1 -P 19.353899 22.431443 2 7 1 -P 14.743614 22.324001 2 32 3 -P 8.864377 0.107441 2 12 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 13 5 -P 14.743177 12.694819 2 9 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 103 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 5 6 28 1 -F 2 9 5 6 28 2 -F 2 10 5 6 28 3 -F 2 11 5 7 25 1 -F 2 9 5 7 25 2 -F 2 3 5 1 23 1 -F 2 9 2 7 22 2 -F 2 9 5 7 25 5 -F 2 5 2 7 22 3 -F 2 6 5 7 25 6 -F 2 12 2 7 22 4 -F 2 6 5 7 25 7 -F 2 7 6 8 25 7 -F 2 5 3 7 18 1 -F 2 7 5 7 25 8 -F 2 16 6 3 19 2 -F 2 9 1 8 22 6 -F 2 5 2 7 22 6 -F 2 9 3 7 18 2 -F 2 8 4 8 18 2 -F 2 12 5 7 25 9 -F 2 5 6 8 25 9 -F 2 9 2 7 22 7 -F 2 6 3 7 18 3 -F 2 6 4 8 18 3 -F 2 8 5 7 25 10 -F 2 6 6 8 25 10 -F 2 14 2 7 22 8 -F 2 6 3 7 18 4 -F 2 6 5 7 25 11 -F 2 6 6 8 25 11 -F 1 63 15 3 14 1 -F 2 9 2 7 22 9 -F 2 8 3 7 18 5 -F 2 7 4 8 18 5 -F 2 5 5 7 25 12 -F 2 8 6 8 25 12 -F 2 18 1 5 23 11 -F 2 9 1 8 22 10 -F 2 4 1 11 13 1 -F 2 6 4 8 18 6 -F 2 13 6 5 28 16 -F 2 7 6 8 25 13 -F 2 3 6 11 17 5 -F 2 5 7 11 14 2 -F 2 8 12 8 14 2 -F 2 9 0 5 14 3 -F 2 21 1 5 23 12 -F 2 10 1 8 22 11 -F 2 5 1 9 24 13 -F 2 4 4 5 19 8 -F 2 9 6 5 28 17 -F 2 5 6 11 17 6 -F 2 20 7 5 25 14 -F 2 10 7 8 23 12 -F 2 5 7 11 14 3 -F 2 8 12 5 17 6 -F 2 16 0 5 14 4 -F 2 8 0 8 12 2 -F 2 8 1 5 23 13 -F 2 10 2 5 11 1 -F 2 9 4 5 19 9 -F 2 8 6 5 28 18 -F 2 33 7 0 12 2 -F 2 17 7 5 25 15 -F 2 8 7 8 23 13 -F 2 6 11 5 11 1 -F 2 7 12 5 17 7 -F 2 10 0 5 14 5 -F 2 5 0 8 12 3 -F 2 9 1 5 23 14 -F 2 14 2 0 11 2 -F 2 7 2 5 11 2 -F 2 10 3 5 10 1 -F 2 7 4 5 19 10 -F 2 11 6 5 28 19 -F 2 23 7 0 12 3 -F 2 11 7 5 25 16 -F 2 3 11 5 11 2 -F 2 3 12 5 17 8 -F 2 3 0 2 11 3 -F 2 1 0 5 14 6 -F 2 12 1 2 22 14 -F 2 3 1 5 23 15 -F 2 6 2 5 11 3 -F 2 3 3 5 10 2 -F 2 14 4 2 17 9 -F 2 4 4 5 19 11 -F 2 4 5 2 11 3 -F 2 6 6 2 23 15 -F 2 3 6 5 28 20 -F 2 21 7 2 22 14 -F 2 5 7 5 25 17 -F 2 6 11 2 11 3 -F 2 3 11 5 11 3 -F 2 4 12 2 13 5 -F 2 2 12 5 17 9 -F 2 9 0 2 11 4 -F 2 10 1 2 22 15 -F 2 5 1 3 17 10 -F 2 3 2 5 11 4 -F 2 3 3 5 10 3 -F 2 7 4 2 17 10 -F 2 3 4 3 12 5 -F 2 3 5 2 11 4 -F 2 1 5 3 10 3 -F 2 2 6 2 23 16 -F 2 1 6 3 19 12 -F 2 19 7 2 22 15 -F 2 10 7 3 18 11 -F 2 5 7 5 25 18 -F 2 3 11 2 11 4 -F 2 3 12 2 13 6 -F 2 2 12 3 8 1 -F 2 13 1 2 22 16 -F 2 6 1 3 17 11 -F 2 3 4 3 12 6 -F 2 1 5 3 10 4 -F 2 4 6 3 19 13 -F 2 10 7 3 18 12 -F 2 5 7 9 23 17 -F 2 4 12 3 8 2 -F 2 9 0 3 6 1 -F 2 19 1 3 17 12 -F 2 9 1 9 24 19 -F 2 5 1 12 11 6 -F 2 9 2 3 6 1 -F 2 5 2 12 13 8 -F 2 2 3 12 8 3 -F 2 4 4 12 6 1 -F 2 1 5 12 17 12 -F 2 6 6 9 22 17 -F 2 3 6 12 11 6 -F 2 11 7 9 23 18 -F 2 6 7 10 12 7 -F 2 3 7 12 10 5 -F 2 8 8 3 6 1 -F 2 2 8 12 14 9 -F 2 8 11 3 6 1 -F 2 2 11 12 7 2 -F 2 7 12 9 14 9 -F 2 10 0 9 14 10 -F 2 5 0 10 14 10 -F 2 5 1 12 11 7 -F 2 5 2 12 13 9 -F 2 5 3 12 8 4 -F 2 7 4 9 19 15 -F 2 4 4 12 6 2 -F 2 5 6 12 11 7 -F 2 19 7 0 12 8 -F 2 9 7 9 23 19 -F 2 5 7 12 10 6 -F 2 9 8 9 12 8 -F 2 5 8 12 14 10 -F 2 7 11 9 15 11 -F 2 3 11 12 7 3 -F 2 6 12 9 14 10 -F 2 9 0 9 14 11 -F 2 5 0 11 4 1 -F 2 2 0 12 4 1 -F 2 5 1 0 11 8 -F 2 5 2 0 11 8 -F 2 4 3 0 6 3 -F 2 4 4 0 6 3 -F 2 3 5 0 14 11 -F 2 8 6 0 14 11 -F 2 10 7 0 12 9 -F 2 4 8 0 12 9 -F 2 4 11 0 4 1 -F 2 6 12 0 4 1 -F 2 6 0 4 6 4 -F 2 3 0 12 4 2 -F 2 21 1 4 6 4 -F 2 10 1 9 24 22 -F 2 5 1 10 6 4 -F 2 10 2 4 17 15 -F 2 3 3 4 12 10 -F 2 13 4 0 6 4 -F 2 9 5 4 19 17 -F 2 5 6 4 10 8 -F 2 18 7 4 6 4 -F 2 9 7 6 5 3 -F 2 8 8 4 18 16 -F 2 5 11 0 4 2 -F 2 2 11 4 8 6 -F 2 5 12 0 4 2 -F 2 3 12 4 6 4 -F 2 9 0 4 6 5 -F 2 5 0 11 4 3 -F 2 2 0 12 4 3 -F 2 18 1 4 6 5 -F 2 9 1 9 24 23 -F 2 15 2 4 17 16 -F 2 7 2 9 6 5 -F 2 10 3 4 12 11 -F 2 5 3 9 10 9 -F 2 22 5 4 19 18 -F 2 11 5 8 5 4 -F 2 6 5 9 16 15 -F 2 5 6 4 10 9 -F 2 12 7 4 6 5 -F 2 6 7 9 23 22 -F 2 8 8 4 18 17 -F 2 9 11 0 4 3 -F 2 5 11 4 8 7 -F 2 5 12 0 4 3 -F 2 2 12 4 6 5 -go - -engine > player2: P 11.803996 11.215721 1 6 3 -P 9.319567 21.808874 1 37 5 -P 14.288424 0.622569 1 30 5 -P 11.865493 5.273785 1 41 3 -P 11.742498 17.157658 1 20 3 -P 4.254093 0.000000 1 35 1 -P 19.353899 22.431443 1 7 1 -P 14.743614 22.324001 1 32 3 -P 8.864377 0.107441 1 12 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 13 5 -P 14.743177 12.694819 1 9 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 103 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 5 6 28 1 -F 1 9 5 6 28 2 -F 1 10 5 6 28 3 -F 1 11 5 7 25 1 -F 1 9 5 7 25 2 -F 1 3 5 1 23 1 -F 1 9 2 7 22 2 -F 1 9 5 7 25 5 -F 1 5 2 7 22 3 -F 1 6 5 7 25 6 -F 1 12 2 7 22 4 -F 1 6 5 7 25 7 -F 1 7 6 8 25 7 -F 1 5 3 7 18 1 -F 1 7 5 7 25 8 -F 1 16 6 3 19 2 -F 1 9 1 8 22 6 -F 1 5 2 7 22 6 -F 1 9 3 7 18 2 -F 1 8 4 8 18 2 -F 1 12 5 7 25 9 -F 1 5 6 8 25 9 -F 1 9 2 7 22 7 -F 1 6 3 7 18 3 -F 1 6 4 8 18 3 -F 1 8 5 7 25 10 -F 1 6 6 8 25 10 -F 1 14 2 7 22 8 -F 1 6 3 7 18 4 -F 1 6 5 7 25 11 -F 1 6 6 8 25 11 -F 2 63 15 3 14 1 -F 1 9 2 7 22 9 -F 1 8 3 7 18 5 -F 1 7 4 8 18 5 -F 1 5 5 7 25 12 -F 1 8 6 8 25 12 -F 1 18 1 5 23 11 -F 1 9 1 8 22 10 -F 1 4 1 11 13 1 -F 1 6 4 8 18 6 -F 1 13 6 5 28 16 -F 1 7 6 8 25 13 -F 1 3 6 11 17 5 -F 1 5 7 11 14 2 -F 1 8 12 8 14 2 -F 1 9 0 5 14 3 -F 1 21 1 5 23 12 -F 1 10 1 8 22 11 -F 1 5 1 9 24 13 -F 1 4 4 5 19 8 -F 1 9 6 5 28 17 -F 1 5 6 11 17 6 -F 1 20 7 5 25 14 -F 1 10 7 8 23 12 -F 1 5 7 11 14 3 -F 1 8 12 5 17 6 -F 1 16 0 5 14 4 -F 1 8 0 8 12 2 -F 1 8 1 5 23 13 -F 1 10 2 5 11 1 -F 1 9 4 5 19 9 -F 1 8 6 5 28 18 -F 1 33 7 0 12 2 -F 1 17 7 5 25 15 -F 1 8 7 8 23 13 -F 1 6 11 5 11 1 -F 1 7 12 5 17 7 -F 1 10 0 5 14 5 -F 1 5 0 8 12 3 -F 1 9 1 5 23 14 -F 1 14 2 0 11 2 -F 1 7 2 5 11 2 -F 1 10 3 5 10 1 -F 1 7 4 5 19 10 -F 1 11 6 5 28 19 -F 1 23 7 0 12 3 -F 1 11 7 5 25 16 -F 1 3 11 5 11 2 -F 1 3 12 5 17 8 -F 1 3 0 2 11 3 -F 1 1 0 5 14 6 -F 1 12 1 2 22 14 -F 1 3 1 5 23 15 -F 1 6 2 5 11 3 -F 1 3 3 5 10 2 -F 1 14 4 2 17 9 -F 1 4 4 5 19 11 -F 1 4 5 2 11 3 -F 1 6 6 2 23 15 -F 1 3 6 5 28 20 -F 1 21 7 2 22 14 -F 1 5 7 5 25 17 -F 1 6 11 2 11 3 -F 1 3 11 5 11 3 -F 1 4 12 2 13 5 -F 1 2 12 5 17 9 -F 1 9 0 2 11 4 -F 1 10 1 2 22 15 -F 1 5 1 3 17 10 -F 1 3 2 5 11 4 -F 1 3 3 5 10 3 -F 1 7 4 2 17 10 -F 1 3 4 3 12 5 -F 1 3 5 2 11 4 -F 1 1 5 3 10 3 -F 1 2 6 2 23 16 -F 1 1 6 3 19 12 -F 1 19 7 2 22 15 -F 1 10 7 3 18 11 -F 1 5 7 5 25 18 -F 1 3 11 2 11 4 -F 1 3 12 2 13 6 -F 1 2 12 3 8 1 -F 1 13 1 2 22 16 -F 1 6 1 3 17 11 -F 1 3 4 3 12 6 -F 1 1 5 3 10 4 -F 1 4 6 3 19 13 -F 1 10 7 3 18 12 -F 1 5 7 9 23 17 -F 1 4 12 3 8 2 -F 1 9 0 3 6 1 -F 1 19 1 3 17 12 -F 1 9 1 9 24 19 -F 1 5 1 12 11 6 -F 1 9 2 3 6 1 -F 1 5 2 12 13 8 -F 1 2 3 12 8 3 -F 1 4 4 12 6 1 -F 1 1 5 12 17 12 -F 1 6 6 9 22 17 -F 1 3 6 12 11 6 -F 1 11 7 9 23 18 -F 1 6 7 10 12 7 -F 1 3 7 12 10 5 -F 1 8 8 3 6 1 -F 1 2 8 12 14 9 -F 1 8 11 3 6 1 -F 1 2 11 12 7 2 -F 1 7 12 9 14 9 -F 1 10 0 9 14 10 -F 1 5 0 10 14 10 -F 1 5 1 12 11 7 -F 1 5 2 12 13 9 -F 1 5 3 12 8 4 -F 1 7 4 9 19 15 -F 1 4 4 12 6 2 -F 1 5 6 12 11 7 -F 1 19 7 0 12 8 -F 1 9 7 9 23 19 -F 1 5 7 12 10 6 -F 1 9 8 9 12 8 -F 1 5 8 12 14 10 -F 1 7 11 9 15 11 -F 1 3 11 12 7 3 -F 1 6 12 9 14 10 -F 1 9 0 9 14 11 -F 1 5 0 11 4 1 -F 1 2 0 12 4 1 -F 1 5 1 0 11 8 -F 1 5 2 0 11 8 -F 1 4 3 0 6 3 -F 1 4 4 0 6 3 -F 1 3 5 0 14 11 -F 1 8 6 0 14 11 -F 1 10 7 0 12 9 -F 1 4 8 0 12 9 -F 1 4 11 0 4 1 -F 1 6 12 0 4 1 -F 1 6 0 4 6 4 -F 1 3 0 12 4 2 -F 1 21 1 4 6 4 -F 1 10 1 9 24 22 -F 1 5 1 10 6 4 -F 1 10 2 4 17 15 -F 1 3 3 4 12 10 -F 1 13 4 0 6 4 -F 1 9 5 4 19 17 -F 1 5 6 4 10 8 -F 1 18 7 4 6 4 -F 1 9 7 6 5 3 -F 1 8 8 4 18 16 -F 1 5 11 0 4 2 -F 1 2 11 4 8 6 -F 1 5 12 0 4 2 -F 1 3 12 4 6 4 -F 1 9 0 4 6 5 -F 1 5 0 11 4 3 -F 1 2 0 12 4 3 -F 1 18 1 4 6 5 -F 1 9 1 9 24 23 -F 1 15 2 4 17 16 -F 1 7 2 9 6 5 -F 1 10 3 4 12 11 -F 1 5 3 9 10 9 -F 1 22 5 4 19 18 -F 1 11 5 8 5 4 -F 1 6 5 9 16 15 -F 1 5 6 4 10 9 -F 1 12 7 4 6 5 -F 1 6 7 9 23 22 -F 1 8 8 4 18 17 -F 1 9 11 0 4 3 -F 1 5 11 4 8 7 -F 1 5 12 0 4 3 -F 1 2 12 4 6 5 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 2 0 -player2 > engine: 0 4 3 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 2 0 -player2 > engine: 1 1 18 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 2 0 -player2 > engine: 1 4 9 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 2 0 -player2 > engine: 2 1 15 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 1 0 0.07185662694633876 -player2 > engine: 2 9 7 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 2 0 -player2 > engine: 3 1 20 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 1 0 0.07246707613730467 -player2 > engine: 3 9 10 -player2 > engine: comparing 3 and 10, gives 1 0 0.03635537238221285 -player2 > engine: 3 10 5 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 2 0 -player2 > engine: 4 1 10 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 2 0 -player2 > engine: 4 4 5 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 2 0 -player2 > engine: 5 1 17 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 1 0 0.12806974798033835 -player2 > engine: 5 9 9 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 2 0 -player2 > engine: 7 1 16 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 2 0 -player2 > engine: 7 4 8 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0.03001903676337727 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 2 0 -player2 > engine: 8 1 6 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0.06056981656335845 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 2 0 -player2 > engine: 11 1 6 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 2 0 -player2 > engine: 12 1 4 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 2 0 -player2 > engine: 12 4 2 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 16 3 -P 9.319567 21.808874 2 36 5 -P 14.288424 0.622569 2 13 5 -P 11.865493 5.273785 1 18 3 -P 11.742498 17.157658 2 13 3 -P 4.254093 0.000000 2 36 1 -P 19.353899 22.431443 2 14 1 -P 14.743614 22.324001 2 27 3 -P 8.864377 0.107441 2 9 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 21 5 -P 14.743177 12.694819 2 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 106 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 9 5 6 28 1 -F 2 10 5 6 28 2 -F 2 9 5 7 25 1 -F 2 9 2 7 22 1 -F 2 9 5 7 25 4 -F 2 5 2 7 22 2 -F 2 6 5 7 25 5 -F 2 12 2 7 22 3 -F 2 6 5 7 25 6 -F 2 7 6 8 25 6 -F 2 7 5 7 25 7 -F 2 16 6 3 19 1 -F 2 9 1 8 22 5 -F 2 5 2 7 22 5 -F 2 9 3 7 18 1 -F 2 8 4 8 18 1 -F 2 12 5 7 25 8 -F 2 5 6 8 25 8 -F 2 9 2 7 22 6 -F 2 6 3 7 18 2 -F 2 6 4 8 18 2 -F 2 8 5 7 25 9 -F 2 6 6 8 25 9 -F 2 14 2 7 22 7 -F 2 6 3 7 18 3 -F 2 6 5 7 25 10 -F 2 6 6 8 25 10 -F 2 9 2 7 22 8 -F 2 8 3 7 18 4 -F 2 7 4 8 18 4 -F 2 5 5 7 25 11 -F 2 8 6 8 25 11 -F 2 18 1 5 23 10 -F 2 9 1 8 22 9 -F 2 6 4 8 18 5 -F 2 13 6 5 28 15 -F 2 7 6 8 25 12 -F 2 3 6 11 17 4 -F 2 5 7 11 14 1 -F 2 8 12 8 14 1 -F 2 9 0 5 14 2 -F 2 21 1 5 23 11 -F 2 10 1 8 22 10 -F 2 5 1 9 24 12 -F 2 4 4 5 19 7 -F 2 9 6 5 28 16 -F 2 5 6 11 17 5 -F 2 20 7 5 25 13 -F 2 10 7 8 23 11 -F 2 5 7 11 14 2 -F 2 8 12 5 17 5 -F 2 16 0 5 14 3 -F 2 8 0 8 12 1 -F 2 8 1 5 23 12 -F 2 9 4 5 19 8 -F 2 8 6 5 28 17 -F 2 33 7 0 12 1 -F 2 17 7 5 25 14 -F 2 8 7 8 23 12 -F 2 7 12 5 17 6 -F 2 10 0 5 14 4 -F 2 5 0 8 12 2 -F 2 9 1 5 23 13 -F 2 14 2 0 11 1 -F 2 7 2 5 11 1 -F 2 7 4 5 19 9 -F 2 11 6 5 28 18 -F 2 23 7 0 12 2 -F 2 11 7 5 25 15 -F 2 3 11 5 11 1 -F 2 3 12 5 17 7 -F 2 3 0 2 11 2 -F 2 1 0 5 14 5 -F 2 12 1 2 22 13 -F 2 3 1 5 23 14 -F 2 6 2 5 11 2 -F 2 3 3 5 10 1 -F 2 14 4 2 17 8 -F 2 4 4 5 19 10 -F 2 4 5 2 11 2 -F 2 6 6 2 23 14 -F 2 3 6 5 28 19 -F 2 21 7 2 22 13 -F 2 5 7 5 25 16 -F 2 6 11 2 11 2 -F 2 3 11 5 11 2 -F 2 4 12 2 13 4 -F 2 2 12 5 17 8 -F 2 9 0 2 11 3 -F 2 10 1 2 22 14 -F 2 5 1 3 17 9 -F 2 3 2 5 11 3 -F 2 3 3 5 10 2 -F 2 7 4 2 17 9 -F 2 3 4 3 12 4 -F 2 3 5 2 11 3 -F 2 1 5 3 10 2 -F 2 2 6 2 23 15 -F 2 1 6 3 19 11 -F 2 19 7 2 22 14 -F 2 10 7 3 18 10 -F 2 5 7 5 25 17 -F 2 3 11 2 11 3 -F 2 3 12 2 13 5 -F 2 13 1 2 22 15 -F 2 6 1 3 17 10 -F 2 3 4 3 12 5 -F 2 1 5 3 10 3 -F 2 4 6 3 19 12 -F 2 10 7 3 18 11 -F 2 5 7 9 23 16 -F 2 4 12 3 8 1 -F 2 19 1 3 17 11 -F 2 9 1 9 24 18 -F 2 5 1 12 11 5 -F 2 5 2 12 13 7 -F 2 2 3 12 8 2 -F 2 1 5 12 17 11 -F 2 6 6 9 22 16 -F 2 3 6 12 11 5 -F 2 11 7 9 23 17 -F 2 6 7 10 12 6 -F 2 3 7 12 10 4 -F 2 2 8 12 14 8 -F 2 2 11 12 7 1 -F 2 7 12 9 14 8 -F 2 10 0 9 14 9 -F 2 5 0 10 14 9 -F 2 5 1 12 11 6 -F 2 5 2 12 13 8 -F 2 5 3 12 8 3 -F 2 7 4 9 19 14 -F 2 4 4 12 6 1 -F 2 5 6 12 11 6 -F 2 19 7 0 12 7 -F 2 9 7 9 23 18 -F 2 5 7 12 10 5 -F 2 9 8 9 12 7 -F 2 5 8 12 14 9 -F 2 7 11 9 15 10 -F 2 3 11 12 7 2 -F 2 6 12 9 14 9 -F 2 9 0 9 14 10 -F 2 5 1 0 11 7 -F 2 5 2 0 11 7 -F 2 4 3 0 6 2 -F 2 4 4 0 6 2 -F 2 3 5 0 14 10 -F 2 8 6 0 14 10 -F 2 10 7 0 12 8 -F 2 4 8 0 12 8 -F 2 6 0 4 6 3 -F 2 3 0 12 4 1 -F 2 21 1 4 6 3 -F 2 10 1 9 24 21 -F 2 5 1 10 6 3 -F 2 10 2 4 17 14 -F 2 3 3 4 12 9 -F 2 13 4 0 6 3 -F 2 9 5 4 19 16 -F 2 5 6 4 10 7 -F 2 18 7 4 6 3 -F 2 9 7 6 5 2 -F 2 8 8 4 18 15 -F 2 5 11 0 4 1 -F 2 2 11 4 8 5 -F 2 5 12 0 4 1 -F 2 3 12 4 6 3 -F 2 9 0 4 6 4 -F 2 5 0 11 4 2 -F 2 2 0 12 4 2 -F 2 18 1 4 6 4 -F 2 9 1 9 24 22 -F 2 15 2 4 17 15 -F 2 7 2 9 6 4 -F 2 10 3 4 12 10 -F 2 5 3 9 10 8 -F 2 22 5 4 19 17 -F 2 11 5 8 5 3 -F 2 6 5 9 16 14 -F 2 5 6 4 10 8 -F 2 12 7 4 6 4 -F 2 6 7 9 23 21 -F 2 8 8 4 18 16 -F 2 9 11 0 4 2 -F 2 5 11 4 8 6 -F 2 5 12 0 4 2 -F 2 2 12 4 6 4 -F 2 3 0 4 6 5 -F 2 9 1 4 6 5 -F 2 15 2 1 22 21 -F 2 7 2 9 6 5 -F 2 20 3 1 17 16 -F 2 10 3 9 10 9 -F 2 5 3 10 19 18 -F 2 10 4 1 6 5 -F 2 17 5 1 23 22 -F 2 9 5 9 16 15 -F 2 16 7 1 6 5 -F 2 8 7 4 6 5 -F 2 6 8 1 22 21 -F 2 6 11 1 13 12 -F 2 4 12 1 11 10 -F 2 2 12 4 6 5 -go - -engine > player2: P 11.803996 11.215721 1 16 3 -P 9.319567 21.808874 1 36 5 -P 14.288424 0.622569 1 13 5 -P 11.865493 5.273785 2 18 3 -P 11.742498 17.157658 1 13 3 -P 4.254093 0.000000 1 36 1 -P 19.353899 22.431443 1 14 1 -P 14.743614 22.324001 1 27 3 -P 8.864377 0.107441 1 9 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 21 5 -P 14.743177 12.694819 1 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 106 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 9 5 6 28 1 -F 1 10 5 6 28 2 -F 1 9 5 7 25 1 -F 1 9 2 7 22 1 -F 1 9 5 7 25 4 -F 1 5 2 7 22 2 -F 1 6 5 7 25 5 -F 1 12 2 7 22 3 -F 1 6 5 7 25 6 -F 1 7 6 8 25 6 -F 1 7 5 7 25 7 -F 1 16 6 3 19 1 -F 1 9 1 8 22 5 -F 1 5 2 7 22 5 -F 1 9 3 7 18 1 -F 1 8 4 8 18 1 -F 1 12 5 7 25 8 -F 1 5 6 8 25 8 -F 1 9 2 7 22 6 -F 1 6 3 7 18 2 -F 1 6 4 8 18 2 -F 1 8 5 7 25 9 -F 1 6 6 8 25 9 -F 1 14 2 7 22 7 -F 1 6 3 7 18 3 -F 1 6 5 7 25 10 -F 1 6 6 8 25 10 -F 1 9 2 7 22 8 -F 1 8 3 7 18 4 -F 1 7 4 8 18 4 -F 1 5 5 7 25 11 -F 1 8 6 8 25 11 -F 1 18 1 5 23 10 -F 1 9 1 8 22 9 -F 1 6 4 8 18 5 -F 1 13 6 5 28 15 -F 1 7 6 8 25 12 -F 1 3 6 11 17 4 -F 1 5 7 11 14 1 -F 1 8 12 8 14 1 -F 1 9 0 5 14 2 -F 1 21 1 5 23 11 -F 1 10 1 8 22 10 -F 1 5 1 9 24 12 -F 1 4 4 5 19 7 -F 1 9 6 5 28 16 -F 1 5 6 11 17 5 -F 1 20 7 5 25 13 -F 1 10 7 8 23 11 -F 1 5 7 11 14 2 -F 1 8 12 5 17 5 -F 1 16 0 5 14 3 -F 1 8 0 8 12 1 -F 1 8 1 5 23 12 -F 1 9 4 5 19 8 -F 1 8 6 5 28 17 -F 1 33 7 0 12 1 -F 1 17 7 5 25 14 -F 1 8 7 8 23 12 -F 1 7 12 5 17 6 -F 1 10 0 5 14 4 -F 1 5 0 8 12 2 -F 1 9 1 5 23 13 -F 1 14 2 0 11 1 -F 1 7 2 5 11 1 -F 1 7 4 5 19 9 -F 1 11 6 5 28 18 -F 1 23 7 0 12 2 -F 1 11 7 5 25 15 -F 1 3 11 5 11 1 -F 1 3 12 5 17 7 -F 1 3 0 2 11 2 -F 1 1 0 5 14 5 -F 1 12 1 2 22 13 -F 1 3 1 5 23 14 -F 1 6 2 5 11 2 -F 1 3 3 5 10 1 -F 1 14 4 2 17 8 -F 1 4 4 5 19 10 -F 1 4 5 2 11 2 -F 1 6 6 2 23 14 -F 1 3 6 5 28 19 -F 1 21 7 2 22 13 -F 1 5 7 5 25 16 -F 1 6 11 2 11 2 -F 1 3 11 5 11 2 -F 1 4 12 2 13 4 -F 1 2 12 5 17 8 -F 1 9 0 2 11 3 -F 1 10 1 2 22 14 -F 1 5 1 3 17 9 -F 1 3 2 5 11 3 -F 1 3 3 5 10 2 -F 1 7 4 2 17 9 -F 1 3 4 3 12 4 -F 1 3 5 2 11 3 -F 1 1 5 3 10 2 -F 1 2 6 2 23 15 -F 1 1 6 3 19 11 -F 1 19 7 2 22 14 -F 1 10 7 3 18 10 -F 1 5 7 5 25 17 -F 1 3 11 2 11 3 -F 1 3 12 2 13 5 -F 1 13 1 2 22 15 -F 1 6 1 3 17 10 -F 1 3 4 3 12 5 -F 1 1 5 3 10 3 -F 1 4 6 3 19 12 -F 1 10 7 3 18 11 -F 1 5 7 9 23 16 -F 1 4 12 3 8 1 -F 1 19 1 3 17 11 -F 1 9 1 9 24 18 -F 1 5 1 12 11 5 -F 1 5 2 12 13 7 -F 1 2 3 12 8 2 -F 1 1 5 12 17 11 -F 1 6 6 9 22 16 -F 1 3 6 12 11 5 -F 1 11 7 9 23 17 -F 1 6 7 10 12 6 -F 1 3 7 12 10 4 -F 1 2 8 12 14 8 -F 1 2 11 12 7 1 -F 1 7 12 9 14 8 -F 1 10 0 9 14 9 -F 1 5 0 10 14 9 -F 1 5 1 12 11 6 -F 1 5 2 12 13 8 -F 1 5 3 12 8 3 -F 1 7 4 9 19 14 -F 1 4 4 12 6 1 -F 1 5 6 12 11 6 -F 1 19 7 0 12 7 -F 1 9 7 9 23 18 -F 1 5 7 12 10 5 -F 1 9 8 9 12 7 -F 1 5 8 12 14 9 -F 1 7 11 9 15 10 -F 1 3 11 12 7 2 -F 1 6 12 9 14 9 -F 1 9 0 9 14 10 -F 1 5 1 0 11 7 -F 1 5 2 0 11 7 -F 1 4 3 0 6 2 -F 1 4 4 0 6 2 -F 1 3 5 0 14 10 -F 1 8 6 0 14 10 -F 1 10 7 0 12 8 -F 1 4 8 0 12 8 -F 1 6 0 4 6 3 -F 1 3 0 12 4 1 -F 1 21 1 4 6 3 -F 1 10 1 9 24 21 -F 1 5 1 10 6 3 -F 1 10 2 4 17 14 -F 1 3 3 4 12 9 -F 1 13 4 0 6 3 -F 1 9 5 4 19 16 -F 1 5 6 4 10 7 -F 1 18 7 4 6 3 -F 1 9 7 6 5 2 -F 1 8 8 4 18 15 -F 1 5 11 0 4 1 -F 1 2 11 4 8 5 -F 1 5 12 0 4 1 -F 1 3 12 4 6 3 -F 1 9 0 4 6 4 -F 1 5 0 11 4 2 -F 1 2 0 12 4 2 -F 1 18 1 4 6 4 -F 1 9 1 9 24 22 -F 1 15 2 4 17 15 -F 1 7 2 9 6 4 -F 1 10 3 4 12 10 -F 1 5 3 9 10 8 -F 1 22 5 4 19 17 -F 1 11 5 8 5 3 -F 1 6 5 9 16 14 -F 1 5 6 4 10 8 -F 1 12 7 4 6 4 -F 1 6 7 9 23 21 -F 1 8 8 4 18 16 -F 1 9 11 0 4 2 -F 1 5 11 4 8 6 -F 1 5 12 0 4 2 -F 1 2 12 4 6 4 -F 1 3 0 4 6 5 -F 1 9 1 4 6 5 -F 1 15 2 1 22 21 -F 1 7 2 9 6 5 -F 1 20 3 1 17 16 -F 1 10 3 9 10 9 -F 1 5 3 10 19 18 -F 1 10 4 1 6 5 -F 1 17 5 1 23 22 -F 1 9 5 9 16 15 -F 1 16 7 1 6 5 -F 1 8 7 4 6 5 -F 1 6 8 1 22 21 -F 1 6 11 1 13 12 -F 1 4 12 1 11 10 -F 1 2 12 4 6 5 -go - -player1 > engine: 3 3 9 -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 2 0 -player2 > engine: 0 1 8 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 2 0 -player2 > engine: 1 1 18 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 1 0 0.07172769106024596 -player2 > engine: 1 3 9 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 2 0 -player2 > engine: 2 1 6 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0.22881269671267385 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 2 0 -player2 > engine: 4 1 6 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0.16828628945120064 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 2 0 -player2 > engine: 5 1 18 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 1 0 0.6479533850190566 -player2 > engine: 5 3 9 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 2 0 -player2 > engine: 6 1 7 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0.3205022790791102 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 2 0 -player2 > engine: 7 1 13 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 1 0 0.11566425403838958 -player2 > engine: 7 3 7 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0.03001903676337727 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 2 0 -player2 > engine: 8 1 4 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0.3347412423175552 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0.06056981656335845 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 2 0 -player2 > engine: 11 1 10 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 1 0 0.22313851847325064 -player2 > engine: 11 3 5 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 2 0 -player2 > engine: 12 1 7 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 68 3 -P 9.319567 21.808874 2 32 5 -P 14.288424 0.622569 2 12 5 -P 11.865493 5.273785 1 1 3 -P 11.742498 17.157658 2 10 3 -P 4.254093 0.000000 2 23 1 -P 19.353899 22.431443 2 17 1 -P 14.743614 22.324001 2 37 3 -P 8.864377 0.107441 2 32 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 16 5 -P 14.743177 12.694819 2 21 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 109 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 10 5 6 28 1 -F 2 9 5 7 25 3 -F 2 5 2 7 22 1 -F 2 6 5 7 25 4 -F 2 12 2 7 22 2 -F 2 6 5 7 25 5 -F 2 7 6 8 25 5 -F 2 7 5 7 25 6 -F 2 9 1 8 22 4 -F 2 5 2 7 22 4 -F 2 12 5 7 25 7 -F 2 5 6 8 25 7 -F 2 9 2 7 22 5 -F 2 6 3 7 18 1 -F 2 6 4 8 18 1 -F 2 8 5 7 25 8 -F 2 6 6 8 25 8 -F 2 14 2 7 22 6 -F 2 6 3 7 18 2 -F 2 6 5 7 25 9 -F 2 6 6 8 25 9 -F 2 9 2 7 22 7 -F 2 8 3 7 18 3 -F 2 7 4 8 18 3 -F 2 5 5 7 25 10 -F 2 8 6 8 25 10 -F 2 18 1 5 23 9 -F 2 9 1 8 22 8 -F 2 6 4 8 18 4 -F 2 13 6 5 28 14 -F 2 7 6 8 25 11 -F 2 3 6 11 17 3 -F 2 9 0 5 14 1 -F 2 21 1 5 23 10 -F 2 10 1 8 22 9 -F 2 5 1 9 24 11 -F 2 4 4 5 19 6 -F 2 9 6 5 28 15 -F 2 5 6 11 17 4 -F 2 20 7 5 25 12 -F 2 10 7 8 23 10 -F 2 5 7 11 14 1 -F 2 8 12 5 17 4 -F 2 16 0 5 14 2 -F 2 8 1 5 23 11 -F 2 9 4 5 19 7 -F 2 8 6 5 28 16 -F 2 17 7 5 25 13 -F 2 8 7 8 23 11 -F 2 7 12 5 17 5 -F 2 10 0 5 14 3 -F 2 5 0 8 12 1 -F 2 9 1 5 23 12 -F 2 7 4 5 19 8 -F 2 11 6 5 28 17 -F 2 23 7 0 12 1 -F 2 11 7 5 25 14 -F 2 3 12 5 17 6 -F 2 3 0 2 11 1 -F 2 1 0 5 14 4 -F 2 12 1 2 22 12 -F 2 3 1 5 23 13 -F 2 6 2 5 11 1 -F 2 14 4 2 17 7 -F 2 4 4 5 19 9 -F 2 4 5 2 11 1 -F 2 6 6 2 23 13 -F 2 3 6 5 28 18 -F 2 21 7 2 22 12 -F 2 5 7 5 25 15 -F 2 6 11 2 11 1 -F 2 3 11 5 11 1 -F 2 4 12 2 13 3 -F 2 2 12 5 17 7 -F 2 9 0 2 11 2 -F 2 10 1 2 22 13 -F 2 5 1 3 17 8 -F 2 3 2 5 11 2 -F 2 3 3 5 10 1 -F 2 7 4 2 17 8 -F 2 3 4 3 12 3 -F 2 3 5 2 11 2 -F 2 1 5 3 10 1 -F 2 2 6 2 23 14 -F 2 1 6 3 19 10 -F 2 19 7 2 22 13 -F 2 10 7 3 18 9 -F 2 5 7 5 25 16 -F 2 3 11 2 11 2 -F 2 3 12 2 13 4 -F 2 13 1 2 22 14 -F 2 6 1 3 17 9 -F 2 3 4 3 12 4 -F 2 1 5 3 10 2 -F 2 4 6 3 19 11 -F 2 10 7 3 18 10 -F 2 5 7 9 23 15 -F 2 19 1 3 17 10 -F 2 9 1 9 24 17 -F 2 5 1 12 11 4 -F 2 5 2 12 13 6 -F 2 2 3 12 8 1 -F 2 1 5 12 17 10 -F 2 6 6 9 22 15 -F 2 3 6 12 11 4 -F 2 11 7 9 23 16 -F 2 6 7 10 12 5 -F 2 3 7 12 10 3 -F 2 2 8 12 14 7 -F 2 7 12 9 14 7 -F 2 10 0 9 14 8 -F 2 5 0 10 14 8 -F 2 5 1 12 11 5 -F 2 5 2 12 13 7 -F 2 5 3 12 8 2 -F 2 7 4 9 19 13 -F 2 5 6 12 11 5 -F 2 19 7 0 12 6 -F 2 9 7 9 23 17 -F 2 5 7 12 10 4 -F 2 9 8 9 12 6 -F 2 5 8 12 14 8 -F 2 7 11 9 15 9 -F 2 3 11 12 7 1 -F 2 6 12 9 14 8 -F 2 9 0 9 14 9 -F 2 5 1 0 11 6 -F 2 5 2 0 11 6 -F 2 4 3 0 6 1 -F 2 4 4 0 6 1 -F 2 3 5 0 14 9 -F 2 8 6 0 14 9 -F 2 10 7 0 12 7 -F 2 4 8 0 12 7 -F 2 6 0 4 6 2 -F 2 21 1 4 6 2 -F 2 10 1 9 24 20 -F 2 5 1 10 6 2 -F 2 10 2 4 17 13 -F 2 3 3 4 12 8 -F 2 13 4 0 6 2 -F 2 9 5 4 19 15 -F 2 5 6 4 10 6 -F 2 18 7 4 6 2 -F 2 9 7 6 5 1 -F 2 8 8 4 18 14 -F 2 2 11 4 8 4 -F 2 3 12 4 6 2 -F 2 9 0 4 6 3 -F 2 5 0 11 4 1 -F 2 2 0 12 4 1 -F 2 18 1 4 6 3 -F 2 9 1 9 24 21 -F 2 15 2 4 17 14 -F 2 7 2 9 6 3 -F 2 10 3 4 12 9 -F 2 5 3 9 10 7 -F 2 22 5 4 19 16 -F 2 11 5 8 5 2 -F 2 6 5 9 16 13 -F 2 5 6 4 10 7 -F 2 12 7 4 6 3 -F 2 6 7 9 23 20 -F 2 8 8 4 18 15 -F 2 9 11 0 4 1 -F 2 5 11 4 8 5 -F 2 5 12 0 4 1 -F 2 2 12 4 6 3 -F 2 3 0 4 6 4 -F 2 9 1 4 6 4 -F 2 15 2 1 22 20 -F 2 7 2 9 6 4 -F 2 20 3 1 17 15 -F 2 10 3 9 10 8 -F 2 5 3 10 19 17 -F 2 10 4 1 6 4 -F 2 17 5 1 23 21 -F 2 9 5 9 16 14 -F 2 16 7 1 6 4 -F 2 8 7 4 6 4 -F 2 6 8 1 22 20 -F 2 6 11 1 13 11 -F 2 4 12 1 11 9 -F 2 2 12 4 6 4 -F 2 8 0 1 11 10 -F 2 9 1 3 17 16 -F 2 6 2 1 22 21 -F 2 6 4 1 6 5 -F 2 18 5 1 23 22 -F 2 9 5 3 10 9 -F 2 7 6 1 11 10 -F 2 13 7 1 6 5 -F 2 7 7 3 18 17 -F 2 4 8 1 22 21 -F 2 10 11 1 13 12 -F 2 5 11 3 6 5 -F 2 7 12 1 11 10 -go - -engine > player2: P 11.803996 11.215721 1 68 3 -P 9.319567 21.808874 1 32 5 -P 14.288424 0.622569 1 12 5 -P 11.865493 5.273785 2 1 3 -P 11.742498 17.157658 1 10 3 -P 4.254093 0.000000 1 23 1 -P 19.353899 22.431443 1 17 1 -P 14.743614 22.324001 1 37 3 -P 8.864377 0.107441 1 32 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 16 5 -P 14.743177 12.694819 1 21 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 109 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 10 5 6 28 1 -F 1 9 5 7 25 3 -F 1 5 2 7 22 1 -F 1 6 5 7 25 4 -F 1 12 2 7 22 2 -F 1 6 5 7 25 5 -F 1 7 6 8 25 5 -F 1 7 5 7 25 6 -F 1 9 1 8 22 4 -F 1 5 2 7 22 4 -F 1 12 5 7 25 7 -F 1 5 6 8 25 7 -F 1 9 2 7 22 5 -F 1 6 3 7 18 1 -F 1 6 4 8 18 1 -F 1 8 5 7 25 8 -F 1 6 6 8 25 8 -F 1 14 2 7 22 6 -F 1 6 3 7 18 2 -F 1 6 5 7 25 9 -F 1 6 6 8 25 9 -F 1 9 2 7 22 7 -F 1 8 3 7 18 3 -F 1 7 4 8 18 3 -F 1 5 5 7 25 10 -F 1 8 6 8 25 10 -F 1 18 1 5 23 9 -F 1 9 1 8 22 8 -F 1 6 4 8 18 4 -F 1 13 6 5 28 14 -F 1 7 6 8 25 11 -F 1 3 6 11 17 3 -F 1 9 0 5 14 1 -F 1 21 1 5 23 10 -F 1 10 1 8 22 9 -F 1 5 1 9 24 11 -F 1 4 4 5 19 6 -F 1 9 6 5 28 15 -F 1 5 6 11 17 4 -F 1 20 7 5 25 12 -F 1 10 7 8 23 10 -F 1 5 7 11 14 1 -F 1 8 12 5 17 4 -F 1 16 0 5 14 2 -F 1 8 1 5 23 11 -F 1 9 4 5 19 7 -F 1 8 6 5 28 16 -F 1 17 7 5 25 13 -F 1 8 7 8 23 11 -F 1 7 12 5 17 5 -F 1 10 0 5 14 3 -F 1 5 0 8 12 1 -F 1 9 1 5 23 12 -F 1 7 4 5 19 8 -F 1 11 6 5 28 17 -F 1 23 7 0 12 1 -F 1 11 7 5 25 14 -F 1 3 12 5 17 6 -F 1 3 0 2 11 1 -F 1 1 0 5 14 4 -F 1 12 1 2 22 12 -F 1 3 1 5 23 13 -F 1 6 2 5 11 1 -F 1 14 4 2 17 7 -F 1 4 4 5 19 9 -F 1 4 5 2 11 1 -F 1 6 6 2 23 13 -F 1 3 6 5 28 18 -F 1 21 7 2 22 12 -F 1 5 7 5 25 15 -F 1 6 11 2 11 1 -F 1 3 11 5 11 1 -F 1 4 12 2 13 3 -F 1 2 12 5 17 7 -F 1 9 0 2 11 2 -F 1 10 1 2 22 13 -F 1 5 1 3 17 8 -F 1 3 2 5 11 2 -F 1 3 3 5 10 1 -F 1 7 4 2 17 8 -F 1 3 4 3 12 3 -F 1 3 5 2 11 2 -F 1 1 5 3 10 1 -F 1 2 6 2 23 14 -F 1 1 6 3 19 10 -F 1 19 7 2 22 13 -F 1 10 7 3 18 9 -F 1 5 7 5 25 16 -F 1 3 11 2 11 2 -F 1 3 12 2 13 4 -F 1 13 1 2 22 14 -F 1 6 1 3 17 9 -F 1 3 4 3 12 4 -F 1 1 5 3 10 2 -F 1 4 6 3 19 11 -F 1 10 7 3 18 10 -F 1 5 7 9 23 15 -F 1 19 1 3 17 10 -F 1 9 1 9 24 17 -F 1 5 1 12 11 4 -F 1 5 2 12 13 6 -F 1 2 3 12 8 1 -F 1 1 5 12 17 10 -F 1 6 6 9 22 15 -F 1 3 6 12 11 4 -F 1 11 7 9 23 16 -F 1 6 7 10 12 5 -F 1 3 7 12 10 3 -F 1 2 8 12 14 7 -F 1 7 12 9 14 7 -F 1 10 0 9 14 8 -F 1 5 0 10 14 8 -F 1 5 1 12 11 5 -F 1 5 2 12 13 7 -F 1 5 3 12 8 2 -F 1 7 4 9 19 13 -F 1 5 6 12 11 5 -F 1 19 7 0 12 6 -F 1 9 7 9 23 17 -F 1 5 7 12 10 4 -F 1 9 8 9 12 6 -F 1 5 8 12 14 8 -F 1 7 11 9 15 9 -F 1 3 11 12 7 1 -F 1 6 12 9 14 8 -F 1 9 0 9 14 9 -F 1 5 1 0 11 6 -F 1 5 2 0 11 6 -F 1 4 3 0 6 1 -F 1 4 4 0 6 1 -F 1 3 5 0 14 9 -F 1 8 6 0 14 9 -F 1 10 7 0 12 7 -F 1 4 8 0 12 7 -F 1 6 0 4 6 2 -F 1 21 1 4 6 2 -F 1 10 1 9 24 20 -F 1 5 1 10 6 2 -F 1 10 2 4 17 13 -F 1 3 3 4 12 8 -F 1 13 4 0 6 2 -F 1 9 5 4 19 15 -F 1 5 6 4 10 6 -F 1 18 7 4 6 2 -F 1 9 7 6 5 1 -F 1 8 8 4 18 14 -F 1 2 11 4 8 4 -F 1 3 12 4 6 2 -F 1 9 0 4 6 3 -F 1 5 0 11 4 1 -F 1 2 0 12 4 1 -F 1 18 1 4 6 3 -F 1 9 1 9 24 21 -F 1 15 2 4 17 14 -F 1 7 2 9 6 3 -F 1 10 3 4 12 9 -F 1 5 3 9 10 7 -F 1 22 5 4 19 16 -F 1 11 5 8 5 2 -F 1 6 5 9 16 13 -F 1 5 6 4 10 7 -F 1 12 7 4 6 3 -F 1 6 7 9 23 20 -F 1 8 8 4 18 15 -F 1 9 11 0 4 1 -F 1 5 11 4 8 5 -F 1 5 12 0 4 1 -F 1 2 12 4 6 3 -F 1 3 0 4 6 4 -F 1 9 1 4 6 4 -F 1 15 2 1 22 20 -F 1 7 2 9 6 4 -F 1 20 3 1 17 15 -F 1 10 3 9 10 8 -F 1 5 3 10 19 17 -F 1 10 4 1 6 4 -F 1 17 5 1 23 21 -F 1 9 5 9 16 14 -F 1 16 7 1 6 4 -F 1 8 7 4 6 4 -F 1 6 8 1 22 20 -F 1 6 11 1 13 11 -F 1 4 12 1 11 9 -F 1 2 12 4 6 4 -F 1 8 0 1 11 10 -F 1 9 1 3 17 16 -F 1 6 2 1 22 21 -F 1 6 4 1 6 5 -F 1 18 5 1 23 22 -F 1 9 5 3 10 9 -F 1 7 6 1 11 10 -F 1 13 7 1 6 5 -F 1 7 7 3 18 17 -F 1 4 8 1 22 21 -F 1 10 11 1 13 12 -F 1 5 11 3 6 5 -F 1 7 12 1 11 10 -go - -player1 > engine: 3 1 0 -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 2 0 -player2 > engine: 0 1 34 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 1 0 0.336572607514253 -player2 > engine: 0 3 17 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 1 0 0.05037544889393815 -player2 > engine: 0 9 8 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 2 0 -player2 > engine: 1 1 16 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 1 0 0.07172769106024596 -player2 > engine: 1 3 8 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 1 0 0.22881269671267385 -player2 > engine: 2 3 6 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 2 0 -player2 > engine: 4 1 5 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0.16828628945120064 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 1 0 0.6479533850190566 -player2 > engine: 5 3 11 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 1 0 0.12806974798033835 -player2 > engine: 5 9 6 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 1 0 0.3205022790791102 -player2 > engine: 6 3 8 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 2 0 -player2 > engine: 7 1 18 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 1 0 0.11566425403838958 -player2 > engine: 7 3 9 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0.03001903676337727 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 1 0 0.3347412423175552 -player2 > engine: 8 3 16 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 1 0 0.06056981656335845 -player2 > engine: 8 9 8 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 1 0 0.22313851847325064 -player2 > engine: 11 3 8 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 1 0 0.1507642257922135 -player2 > engine: 12 3 10 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 1 0 0.03070447521228758 -player2 > engine: 12 9 5 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 57 3 -P 9.319567 21.808874 2 29 5 -P 14.288424 0.622569 2 24 5 -P 11.865493 5.273785 1 3 3 -P 11.742498 17.157658 2 8 3 -P 4.254093 0.000000 2 28 1 -P 19.353899 22.431443 2 29 1 -P 14.743614 22.324001 2 24 3 -P 8.864377 0.107441 2 22 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 2 23 5 -P 14.743177 12.694819 2 18 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 112 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 9 5 7 25 2 -F 2 6 5 7 25 3 -F 2 12 2 7 22 1 -F 2 6 5 7 25 4 -F 2 7 6 8 25 4 -F 2 7 5 7 25 5 -F 2 9 1 8 22 3 -F 2 5 2 7 22 3 -F 2 12 5 7 25 6 -F 2 5 6 8 25 6 -F 2 9 2 7 22 4 -F 2 8 5 7 25 7 -F 2 6 6 8 25 7 -F 2 14 2 7 22 5 -F 2 6 3 7 18 1 -F 2 6 5 7 25 8 -F 2 6 6 8 25 8 -F 2 9 2 7 22 6 -F 2 8 3 7 18 2 -F 2 7 4 8 18 2 -F 2 5 5 7 25 9 -F 2 8 6 8 25 9 -F 2 18 1 5 23 8 -F 2 9 1 8 22 7 -F 2 6 4 8 18 3 -F 2 13 6 5 28 13 -F 2 7 6 8 25 10 -F 2 3 6 11 17 2 -F 2 21 1 5 23 9 -F 2 10 1 8 22 8 -F 2 5 1 9 24 10 -F 2 4 4 5 19 5 -F 2 9 6 5 28 14 -F 2 5 6 11 17 3 -F 2 20 7 5 25 11 -F 2 10 7 8 23 9 -F 2 8 12 5 17 3 -F 2 16 0 5 14 1 -F 2 8 1 5 23 10 -F 2 9 4 5 19 6 -F 2 8 6 5 28 15 -F 2 17 7 5 25 12 -F 2 8 7 8 23 10 -F 2 7 12 5 17 4 -F 2 10 0 5 14 2 -F 2 9 1 5 23 11 -F 2 7 4 5 19 7 -F 2 11 6 5 28 16 -F 2 11 7 5 25 13 -F 2 3 12 5 17 5 -F 2 1 0 5 14 3 -F 2 12 1 2 22 11 -F 2 3 1 5 23 12 -F 2 14 4 2 17 6 -F 2 4 4 5 19 8 -F 2 6 6 2 23 12 -F 2 3 6 5 28 17 -F 2 21 7 2 22 11 -F 2 5 7 5 25 14 -F 2 4 12 2 13 2 -F 2 2 12 5 17 6 -F 2 9 0 2 11 1 -F 2 10 1 2 22 12 -F 2 5 1 3 17 7 -F 2 3 2 5 11 1 -F 2 7 4 2 17 7 -F 2 3 4 3 12 2 -F 2 3 5 2 11 1 -F 2 2 6 2 23 13 -F 2 1 6 3 19 9 -F 2 19 7 2 22 12 -F 2 10 7 3 18 8 -F 2 5 7 5 25 15 -F 2 3 11 2 11 1 -F 2 3 12 2 13 3 -F 2 13 1 2 22 13 -F 2 6 1 3 17 8 -F 2 3 4 3 12 3 -F 2 1 5 3 10 1 -F 2 4 6 3 19 10 -F 2 10 7 3 18 9 -F 2 5 7 9 23 14 -F 2 19 1 3 17 9 -F 2 9 1 9 24 16 -F 2 5 1 12 11 3 -F 2 5 2 12 13 5 -F 2 1 5 12 17 9 -F 2 6 6 9 22 14 -F 2 3 6 12 11 3 -F 2 11 7 9 23 15 -F 2 6 7 10 12 4 -F 2 3 7 12 10 2 -F 2 2 8 12 14 6 -F 2 7 12 9 14 6 -F 2 10 0 9 14 7 -F 2 5 0 10 14 7 -F 2 5 1 12 11 4 -F 2 5 2 12 13 6 -F 2 5 3 12 8 1 -F 2 7 4 9 19 12 -F 2 5 6 12 11 4 -F 2 19 7 0 12 5 -F 2 9 7 9 23 16 -F 2 5 7 12 10 3 -F 2 9 8 9 12 5 -F 2 5 8 12 14 7 -F 2 7 11 9 15 8 -F 2 6 12 9 14 7 -F 2 9 0 9 14 8 -F 2 5 1 0 11 5 -F 2 5 2 0 11 5 -F 2 3 5 0 14 8 -F 2 8 6 0 14 8 -F 2 10 7 0 12 6 -F 2 4 8 0 12 6 -F 2 6 0 4 6 1 -F 2 21 1 4 6 1 -F 2 10 1 9 24 19 -F 2 5 1 10 6 1 -F 2 10 2 4 17 12 -F 2 3 3 4 12 7 -F 2 13 4 0 6 1 -F 2 9 5 4 19 14 -F 2 5 6 4 10 5 -F 2 18 7 4 6 1 -F 2 8 8 4 18 13 -F 2 2 11 4 8 3 -F 2 3 12 4 6 1 -F 2 9 0 4 6 2 -F 2 18 1 4 6 2 -F 2 9 1 9 24 20 -F 2 15 2 4 17 13 -F 2 7 2 9 6 2 -F 2 10 3 4 12 8 -F 2 5 3 9 10 6 -F 2 22 5 4 19 15 -F 2 11 5 8 5 1 -F 2 6 5 9 16 12 -F 2 5 6 4 10 6 -F 2 12 7 4 6 2 -F 2 6 7 9 23 19 -F 2 8 8 4 18 14 -F 2 5 11 4 8 4 -F 2 2 12 4 6 2 -F 2 3 0 4 6 3 -F 2 9 1 4 6 3 -F 2 15 2 1 22 19 -F 2 7 2 9 6 3 -F 2 20 3 1 17 14 -F 2 10 3 9 10 7 -F 2 5 3 10 19 16 -F 2 10 4 1 6 3 -F 2 17 5 1 23 20 -F 2 9 5 9 16 13 -F 2 16 7 1 6 3 -F 2 8 7 4 6 3 -F 2 6 8 1 22 19 -F 2 6 11 1 13 10 -F 2 4 12 1 11 8 -F 2 2 12 4 6 3 -F 2 8 0 1 11 9 -F 2 9 1 3 17 15 -F 2 6 2 1 22 20 -F 2 6 4 1 6 4 -F 2 18 5 1 23 21 -F 2 9 5 3 10 8 -F 2 7 6 1 11 9 -F 2 13 7 1 6 4 -F 2 7 7 3 18 16 -F 2 4 8 1 22 20 -F 2 10 11 1 13 11 -F 2 5 11 3 6 4 -F 2 7 12 1 11 9 -F 1 0 3 1 17 16 -F 2 34 0 1 11 10 -F 2 17 0 3 6 5 -F 2 8 0 9 14 13 -F 2 8 1 3 17 16 -F 2 6 2 3 6 5 -F 2 5 4 1 6 5 -F 2 11 5 3 10 9 -F 2 6 5 9 16 15 -F 2 8 6 3 19 18 -F 2 18 7 1 6 5 -F 2 9 7 3 18 17 -F 2 16 8 3 6 5 -F 2 8 8 9 12 11 -F 2 8 11 3 6 5 -F 2 10 12 3 8 7 -F 2 5 12 9 14 13 -go - -engine > player2: P 11.803996 11.215721 1 57 3 -P 9.319567 21.808874 1 29 5 -P 14.288424 0.622569 1 24 5 -P 11.865493 5.273785 2 3 3 -P 11.742498 17.157658 1 8 3 -P 4.254093 0.000000 1 28 1 -P 19.353899 22.431443 1 29 1 -P 14.743614 22.324001 1 24 3 -P 8.864377 0.107441 1 22 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 84 1 -P 8.864814 9.736624 1 23 5 -P 14.743177 12.694819 1 18 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 112 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 9 5 7 25 2 -F 1 6 5 7 25 3 -F 1 12 2 7 22 1 -F 1 6 5 7 25 4 -F 1 7 6 8 25 4 -F 1 7 5 7 25 5 -F 1 9 1 8 22 3 -F 1 5 2 7 22 3 -F 1 12 5 7 25 6 -F 1 5 6 8 25 6 -F 1 9 2 7 22 4 -F 1 8 5 7 25 7 -F 1 6 6 8 25 7 -F 1 14 2 7 22 5 -F 1 6 3 7 18 1 -F 1 6 5 7 25 8 -F 1 6 6 8 25 8 -F 1 9 2 7 22 6 -F 1 8 3 7 18 2 -F 1 7 4 8 18 2 -F 1 5 5 7 25 9 -F 1 8 6 8 25 9 -F 1 18 1 5 23 8 -F 1 9 1 8 22 7 -F 1 6 4 8 18 3 -F 1 13 6 5 28 13 -F 1 7 6 8 25 10 -F 1 3 6 11 17 2 -F 1 21 1 5 23 9 -F 1 10 1 8 22 8 -F 1 5 1 9 24 10 -F 1 4 4 5 19 5 -F 1 9 6 5 28 14 -F 1 5 6 11 17 3 -F 1 20 7 5 25 11 -F 1 10 7 8 23 9 -F 1 8 12 5 17 3 -F 1 16 0 5 14 1 -F 1 8 1 5 23 10 -F 1 9 4 5 19 6 -F 1 8 6 5 28 15 -F 1 17 7 5 25 12 -F 1 8 7 8 23 10 -F 1 7 12 5 17 4 -F 1 10 0 5 14 2 -F 1 9 1 5 23 11 -F 1 7 4 5 19 7 -F 1 11 6 5 28 16 -F 1 11 7 5 25 13 -F 1 3 12 5 17 5 -F 1 1 0 5 14 3 -F 1 12 1 2 22 11 -F 1 3 1 5 23 12 -F 1 14 4 2 17 6 -F 1 4 4 5 19 8 -F 1 6 6 2 23 12 -F 1 3 6 5 28 17 -F 1 21 7 2 22 11 -F 1 5 7 5 25 14 -F 1 4 12 2 13 2 -F 1 2 12 5 17 6 -F 1 9 0 2 11 1 -F 1 10 1 2 22 12 -F 1 5 1 3 17 7 -F 1 3 2 5 11 1 -F 1 7 4 2 17 7 -F 1 3 4 3 12 2 -F 1 3 5 2 11 1 -F 1 2 6 2 23 13 -F 1 1 6 3 19 9 -F 1 19 7 2 22 12 -F 1 10 7 3 18 8 -F 1 5 7 5 25 15 -F 1 3 11 2 11 1 -F 1 3 12 2 13 3 -F 1 13 1 2 22 13 -F 1 6 1 3 17 8 -F 1 3 4 3 12 3 -F 1 1 5 3 10 1 -F 1 4 6 3 19 10 -F 1 10 7 3 18 9 -F 1 5 7 9 23 14 -F 1 19 1 3 17 9 -F 1 9 1 9 24 16 -F 1 5 1 12 11 3 -F 1 5 2 12 13 5 -F 1 1 5 12 17 9 -F 1 6 6 9 22 14 -F 1 3 6 12 11 3 -F 1 11 7 9 23 15 -F 1 6 7 10 12 4 -F 1 3 7 12 10 2 -F 1 2 8 12 14 6 -F 1 7 12 9 14 6 -F 1 10 0 9 14 7 -F 1 5 0 10 14 7 -F 1 5 1 12 11 4 -F 1 5 2 12 13 6 -F 1 5 3 12 8 1 -F 1 7 4 9 19 12 -F 1 5 6 12 11 4 -F 1 19 7 0 12 5 -F 1 9 7 9 23 16 -F 1 5 7 12 10 3 -F 1 9 8 9 12 5 -F 1 5 8 12 14 7 -F 1 7 11 9 15 8 -F 1 6 12 9 14 7 -F 1 9 0 9 14 8 -F 1 5 1 0 11 5 -F 1 5 2 0 11 5 -F 1 3 5 0 14 8 -F 1 8 6 0 14 8 -F 1 10 7 0 12 6 -F 1 4 8 0 12 6 -F 1 6 0 4 6 1 -F 1 21 1 4 6 1 -F 1 10 1 9 24 19 -F 1 5 1 10 6 1 -F 1 10 2 4 17 12 -F 1 3 3 4 12 7 -F 1 13 4 0 6 1 -F 1 9 5 4 19 14 -F 1 5 6 4 10 5 -F 1 18 7 4 6 1 -F 1 8 8 4 18 13 -F 1 2 11 4 8 3 -F 1 3 12 4 6 1 -F 1 9 0 4 6 2 -F 1 18 1 4 6 2 -F 1 9 1 9 24 20 -F 1 15 2 4 17 13 -F 1 7 2 9 6 2 -F 1 10 3 4 12 8 -F 1 5 3 9 10 6 -F 1 22 5 4 19 15 -F 1 11 5 8 5 1 -F 1 6 5 9 16 12 -F 1 5 6 4 10 6 -F 1 12 7 4 6 2 -F 1 6 7 9 23 19 -F 1 8 8 4 18 14 -F 1 5 11 4 8 4 -F 1 2 12 4 6 2 -F 1 3 0 4 6 3 -F 1 9 1 4 6 3 -F 1 15 2 1 22 19 -F 1 7 2 9 6 3 -F 1 20 3 1 17 14 -F 1 10 3 9 10 7 -F 1 5 3 10 19 16 -F 1 10 4 1 6 3 -F 1 17 5 1 23 20 -F 1 9 5 9 16 13 -F 1 16 7 1 6 3 -F 1 8 7 4 6 3 -F 1 6 8 1 22 19 -F 1 6 11 1 13 10 -F 1 4 12 1 11 8 -F 1 2 12 4 6 3 -F 1 8 0 1 11 9 -F 1 9 1 3 17 15 -F 1 6 2 1 22 20 -F 1 6 4 1 6 4 -F 1 18 5 1 23 21 -F 1 9 5 3 10 8 -F 1 7 6 1 11 9 -F 1 13 7 1 6 4 -F 1 7 7 3 18 16 -F 1 4 8 1 22 20 -F 1 10 11 1 13 11 -F 1 5 11 3 6 4 -F 1 7 12 1 11 9 -F 2 0 3 1 17 16 -F 1 34 0 1 11 10 -F 1 17 0 3 6 5 -F 1 8 0 9 14 13 -F 1 8 1 3 17 16 -F 1 6 2 3 6 5 -F 1 5 4 1 6 5 -F 1 11 5 3 10 9 -F 1 6 5 9 16 15 -F 1 8 6 3 19 18 -F 1 18 7 1 6 5 -F 1 9 7 3 18 17 -F 1 16 8 3 6 5 -F 1 8 8 9 12 11 -F 1 8 11 3 6 5 -F 1 10 12 3 8 7 -F 1 5 12 9 14 13 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 28 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 1 0 0.336572607514253 -player2 > engine: 0 3 14 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 2 0 -player2 > engine: 0 6 7 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 4 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 2 0 -player2 > engine: 1 0 14 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 1 0 0.07172769106024596 -player2 > engine: 1 3 7 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 2 0 -player2 > engine: 1 6 4 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 1 0 0.22881269671267385 -player2 > engine: 2 3 12 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 2 0 -player2 > engine: 2 6 6 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0.16828628945120064 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 2 0 -player2 > engine: 4 6 4 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 2 0 -player2 > engine: 5 0 14 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 1 0 0.6479533850190566 -player2 > engine: 5 3 7 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 2 0 -player2 > engine: 5 6 3 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 2 0 -player2 > engine: 6 0 14 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 1 0 0.3205022790791102 -player2 > engine: 6 3 7 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 2 0 -player2 > engine: 6 6 4 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 1 0 0.11566425403838958 -player2 > engine: 7 3 12 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 2 0 -player2 > engine: 7 6 6 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0.03001903676337727 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 1 0 0.3347412423175552 -player2 > engine: 8 3 11 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 2 0 -player2 > engine: 8 6 5 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0.06056981656335845 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 1 0 0.22313851847325064 -player2 > engine: 11 3 11 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 2 0 -player2 > engine: 11 6 6 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 1 0 0.1507642257922135 -player2 > engine: 12 3 9 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 2 0 -player2 > engine: 12 6 4 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 48 3 -P 9.319567 21.808874 2 9 5 -P 14.288424 0.622569 2 26 5 -P 11.865493 5.273785 1 5 3 -P 11.742498 17.157658 2 55 3 -P 4.254093 0.000000 2 24 1 -P 19.353899 22.431443 2 9 1 -P 14.743614 22.324001 2 27 3 -P 8.864377 0.107441 2 20 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 79 1 -P 8.864814 9.736624 2 11 5 -P 14.743177 12.694819 2 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 115 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 9 5 7 25 1 -F 2 6 5 7 25 2 -F 2 6 5 7 25 3 -F 2 7 6 8 25 3 -F 2 7 5 7 25 4 -F 2 9 1 8 22 2 -F 2 5 2 7 22 2 -F 2 12 5 7 25 5 -F 2 5 6 8 25 5 -F 2 9 2 7 22 3 -F 2 8 5 7 25 6 -F 2 6 6 8 25 6 -F 2 14 2 7 22 4 -F 2 6 5 7 25 7 -F 2 6 6 8 25 7 -F 2 9 2 7 22 5 -F 2 8 3 7 18 1 -F 2 7 4 8 18 1 -F 2 5 5 7 25 8 -F 2 8 6 8 25 8 -F 2 18 1 5 23 7 -F 2 9 1 8 22 6 -F 2 6 4 8 18 2 -F 2 13 6 5 28 12 -F 2 7 6 8 25 9 -F 2 3 6 11 17 1 -F 2 21 1 5 23 8 -F 2 10 1 8 22 7 -F 2 5 1 9 24 9 -F 2 4 4 5 19 4 -F 2 9 6 5 28 13 -F 2 5 6 11 17 2 -F 2 20 7 5 25 10 -F 2 10 7 8 23 8 -F 2 8 12 5 17 2 -F 2 8 1 5 23 9 -F 2 9 4 5 19 5 -F 2 8 6 5 28 14 -F 2 17 7 5 25 11 -F 2 8 7 8 23 9 -F 2 7 12 5 17 3 -F 2 10 0 5 14 1 -F 2 9 1 5 23 10 -F 2 7 4 5 19 6 -F 2 11 6 5 28 15 -F 2 11 7 5 25 12 -F 2 3 12 5 17 4 -F 2 1 0 5 14 2 -F 2 12 1 2 22 10 -F 2 3 1 5 23 11 -F 2 14 4 2 17 5 -F 2 4 4 5 19 7 -F 2 6 6 2 23 11 -F 2 3 6 5 28 16 -F 2 21 7 2 22 10 -F 2 5 7 5 25 13 -F 2 4 12 2 13 1 -F 2 2 12 5 17 5 -F 2 10 1 2 22 11 -F 2 5 1 3 17 6 -F 2 7 4 2 17 6 -F 2 3 4 3 12 1 -F 2 2 6 2 23 12 -F 2 1 6 3 19 8 -F 2 19 7 2 22 11 -F 2 10 7 3 18 7 -F 2 5 7 5 25 14 -F 2 3 12 2 13 2 -F 2 13 1 2 22 12 -F 2 6 1 3 17 7 -F 2 3 4 3 12 2 -F 2 4 6 3 19 9 -F 2 10 7 3 18 8 -F 2 5 7 9 23 13 -F 2 19 1 3 17 8 -F 2 9 1 9 24 15 -F 2 5 1 12 11 2 -F 2 5 2 12 13 4 -F 2 1 5 12 17 8 -F 2 6 6 9 22 13 -F 2 3 6 12 11 2 -F 2 11 7 9 23 14 -F 2 6 7 10 12 3 -F 2 3 7 12 10 1 -F 2 2 8 12 14 5 -F 2 7 12 9 14 5 -F 2 10 0 9 14 6 -F 2 5 0 10 14 6 -F 2 5 1 12 11 3 -F 2 5 2 12 13 5 -F 2 7 4 9 19 11 -F 2 5 6 12 11 3 -F 2 19 7 0 12 4 -F 2 9 7 9 23 15 -F 2 5 7 12 10 2 -F 2 9 8 9 12 4 -F 2 5 8 12 14 6 -F 2 7 11 9 15 7 -F 2 6 12 9 14 6 -F 2 9 0 9 14 7 -F 2 5 1 0 11 4 -F 2 5 2 0 11 4 -F 2 3 5 0 14 7 -F 2 8 6 0 14 7 -F 2 10 7 0 12 5 -F 2 4 8 0 12 5 -F 2 10 1 9 24 18 -F 2 10 2 4 17 11 -F 2 3 3 4 12 6 -F 2 9 5 4 19 13 -F 2 5 6 4 10 4 -F 2 8 8 4 18 12 -F 2 2 11 4 8 2 -F 2 9 0 4 6 1 -F 2 18 1 4 6 1 -F 2 9 1 9 24 19 -F 2 15 2 4 17 12 -F 2 7 2 9 6 1 -F 2 10 3 4 12 7 -F 2 5 3 9 10 5 -F 2 22 5 4 19 14 -F 2 6 5 9 16 11 -F 2 5 6 4 10 5 -F 2 12 7 4 6 1 -F 2 6 7 9 23 18 -F 2 8 8 4 18 13 -F 2 5 11 4 8 3 -F 2 2 12 4 6 1 -F 2 3 0 4 6 2 -F 2 9 1 4 6 2 -F 2 15 2 1 22 18 -F 2 7 2 9 6 2 -F 2 20 3 1 17 13 -F 2 10 3 9 10 6 -F 2 5 3 10 19 15 -F 2 10 4 1 6 2 -F 2 17 5 1 23 19 -F 2 9 5 9 16 12 -F 2 16 7 1 6 2 -F 2 8 7 4 6 2 -F 2 6 8 1 22 18 -F 2 6 11 1 13 9 -F 2 4 12 1 11 7 -F 2 2 12 4 6 2 -F 2 8 0 1 11 8 -F 2 9 1 3 17 14 -F 2 6 2 1 22 19 -F 2 6 4 1 6 3 -F 2 18 5 1 23 20 -F 2 9 5 3 10 7 -F 2 7 6 1 11 8 -F 2 13 7 1 6 3 -F 2 7 7 3 18 15 -F 2 4 8 1 22 19 -F 2 10 11 1 13 10 -F 2 5 11 3 6 3 -F 2 7 12 1 11 8 -F 1 0 3 1 17 15 -F 2 34 0 1 11 9 -F 2 17 0 3 6 4 -F 2 8 0 9 14 12 -F 2 8 1 3 17 15 -F 2 6 2 3 6 4 -F 2 5 4 1 6 4 -F 2 11 5 3 10 8 -F 2 6 5 9 16 14 -F 2 8 6 3 19 17 -F 2 18 7 1 6 4 -F 2 9 7 3 18 16 -F 2 16 8 3 6 4 -F 2 8 8 9 12 10 -F 2 8 11 3 6 4 -F 2 10 12 3 8 6 -F 2 5 12 9 14 12 -F 2 14 0 3 6 5 -F 2 7 0 6 14 13 -F 2 4 0 11 4 3 -F 2 14 1 0 11 10 -F 2 7 1 3 17 16 -F 2 4 1 6 11 10 -F 2 12 2 3 6 5 -F 2 6 2 6 23 22 -F 2 4 4 6 10 9 -F 2 14 5 0 14 13 -F 2 7 5 3 10 9 -F 2 3 5 6 28 27 -F 2 14 6 0 14 13 -F 2 7 6 3 19 18 -F 2 12 7 3 18 17 -F 2 6 7 6 5 4 -F 2 11 8 3 6 5 -F 2 5 8 6 25 24 -F 2 11 11 3 6 5 -F 2 6 11 6 17 16 -F 2 9 12 3 8 7 -F 2 4 12 6 11 10 -go - -engine > player2: P 11.803996 11.215721 1 48 3 -P 9.319567 21.808874 1 9 5 -P 14.288424 0.622569 1 26 5 -P 11.865493 5.273785 2 5 3 -P 11.742498 17.157658 1 55 3 -P 4.254093 0.000000 1 24 1 -P 19.353899 22.431443 1 9 1 -P 14.743614 22.324001 1 27 3 -P 8.864377 0.107441 1 20 3 -P 19.854347 0.711934 0 34 1 -P 3.753644 21.719509 0 79 1 -P 8.864814 9.736624 1 11 5 -P 14.743177 12.694819 1 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 115 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 9 5 7 25 1 -F 1 6 5 7 25 2 -F 1 6 5 7 25 3 -F 1 7 6 8 25 3 -F 1 7 5 7 25 4 -F 1 9 1 8 22 2 -F 1 5 2 7 22 2 -F 1 12 5 7 25 5 -F 1 5 6 8 25 5 -F 1 9 2 7 22 3 -F 1 8 5 7 25 6 -F 1 6 6 8 25 6 -F 1 14 2 7 22 4 -F 1 6 5 7 25 7 -F 1 6 6 8 25 7 -F 1 9 2 7 22 5 -F 1 8 3 7 18 1 -F 1 7 4 8 18 1 -F 1 5 5 7 25 8 -F 1 8 6 8 25 8 -F 1 18 1 5 23 7 -F 1 9 1 8 22 6 -F 1 6 4 8 18 2 -F 1 13 6 5 28 12 -F 1 7 6 8 25 9 -F 1 3 6 11 17 1 -F 1 21 1 5 23 8 -F 1 10 1 8 22 7 -F 1 5 1 9 24 9 -F 1 4 4 5 19 4 -F 1 9 6 5 28 13 -F 1 5 6 11 17 2 -F 1 20 7 5 25 10 -F 1 10 7 8 23 8 -F 1 8 12 5 17 2 -F 1 8 1 5 23 9 -F 1 9 4 5 19 5 -F 1 8 6 5 28 14 -F 1 17 7 5 25 11 -F 1 8 7 8 23 9 -F 1 7 12 5 17 3 -F 1 10 0 5 14 1 -F 1 9 1 5 23 10 -F 1 7 4 5 19 6 -F 1 11 6 5 28 15 -F 1 11 7 5 25 12 -F 1 3 12 5 17 4 -F 1 1 0 5 14 2 -F 1 12 1 2 22 10 -F 1 3 1 5 23 11 -F 1 14 4 2 17 5 -F 1 4 4 5 19 7 -F 1 6 6 2 23 11 -F 1 3 6 5 28 16 -F 1 21 7 2 22 10 -F 1 5 7 5 25 13 -F 1 4 12 2 13 1 -F 1 2 12 5 17 5 -F 1 10 1 2 22 11 -F 1 5 1 3 17 6 -F 1 7 4 2 17 6 -F 1 3 4 3 12 1 -F 1 2 6 2 23 12 -F 1 1 6 3 19 8 -F 1 19 7 2 22 11 -F 1 10 7 3 18 7 -F 1 5 7 5 25 14 -F 1 3 12 2 13 2 -F 1 13 1 2 22 12 -F 1 6 1 3 17 7 -F 1 3 4 3 12 2 -F 1 4 6 3 19 9 -F 1 10 7 3 18 8 -F 1 5 7 9 23 13 -F 1 19 1 3 17 8 -F 1 9 1 9 24 15 -F 1 5 1 12 11 2 -F 1 5 2 12 13 4 -F 1 1 5 12 17 8 -F 1 6 6 9 22 13 -F 1 3 6 12 11 2 -F 1 11 7 9 23 14 -F 1 6 7 10 12 3 -F 1 3 7 12 10 1 -F 1 2 8 12 14 5 -F 1 7 12 9 14 5 -F 1 10 0 9 14 6 -F 1 5 0 10 14 6 -F 1 5 1 12 11 3 -F 1 5 2 12 13 5 -F 1 7 4 9 19 11 -F 1 5 6 12 11 3 -F 1 19 7 0 12 4 -F 1 9 7 9 23 15 -F 1 5 7 12 10 2 -F 1 9 8 9 12 4 -F 1 5 8 12 14 6 -F 1 7 11 9 15 7 -F 1 6 12 9 14 6 -F 1 9 0 9 14 7 -F 1 5 1 0 11 4 -F 1 5 2 0 11 4 -F 1 3 5 0 14 7 -F 1 8 6 0 14 7 -F 1 10 7 0 12 5 -F 1 4 8 0 12 5 -F 1 10 1 9 24 18 -F 1 10 2 4 17 11 -F 1 3 3 4 12 6 -F 1 9 5 4 19 13 -F 1 5 6 4 10 4 -F 1 8 8 4 18 12 -F 1 2 11 4 8 2 -F 1 9 0 4 6 1 -F 1 18 1 4 6 1 -F 1 9 1 9 24 19 -F 1 15 2 4 17 12 -F 1 7 2 9 6 1 -F 1 10 3 4 12 7 -F 1 5 3 9 10 5 -F 1 22 5 4 19 14 -F 1 6 5 9 16 11 -F 1 5 6 4 10 5 -F 1 12 7 4 6 1 -F 1 6 7 9 23 18 -F 1 8 8 4 18 13 -F 1 5 11 4 8 3 -F 1 2 12 4 6 1 -F 1 3 0 4 6 2 -F 1 9 1 4 6 2 -F 1 15 2 1 22 18 -F 1 7 2 9 6 2 -F 1 20 3 1 17 13 -F 1 10 3 9 10 6 -F 1 5 3 10 19 15 -F 1 10 4 1 6 2 -F 1 17 5 1 23 19 -F 1 9 5 9 16 12 -F 1 16 7 1 6 2 -F 1 8 7 4 6 2 -F 1 6 8 1 22 18 -F 1 6 11 1 13 9 -F 1 4 12 1 11 7 -F 1 2 12 4 6 2 -F 1 8 0 1 11 8 -F 1 9 1 3 17 14 -F 1 6 2 1 22 19 -F 1 6 4 1 6 3 -F 1 18 5 1 23 20 -F 1 9 5 3 10 7 -F 1 7 6 1 11 8 -F 1 13 7 1 6 3 -F 1 7 7 3 18 15 -F 1 4 8 1 22 19 -F 1 10 11 1 13 10 -F 1 5 11 3 6 3 -F 1 7 12 1 11 8 -F 2 0 3 1 17 15 -F 1 34 0 1 11 9 -F 1 17 0 3 6 4 -F 1 8 0 9 14 12 -F 1 8 1 3 17 15 -F 1 6 2 3 6 4 -F 1 5 4 1 6 4 -F 1 11 5 3 10 8 -F 1 6 5 9 16 14 -F 1 8 6 3 19 17 -F 1 18 7 1 6 4 -F 1 9 7 3 18 16 -F 1 16 8 3 6 4 -F 1 8 8 9 12 10 -F 1 8 11 3 6 4 -F 1 10 12 3 8 6 -F 1 5 12 9 14 12 -F 1 14 0 3 6 5 -F 1 7 0 6 14 13 -F 1 4 0 11 4 3 -F 1 14 1 0 11 10 -F 1 7 1 3 17 16 -F 1 4 1 6 11 10 -F 1 12 2 3 6 5 -F 1 6 2 6 23 22 -F 1 4 4 6 10 9 -F 1 14 5 0 14 13 -F 1 7 5 3 10 9 -F 1 3 5 6 28 27 -F 1 14 6 0 14 13 -F 1 7 6 3 19 18 -F 1 12 7 3 18 17 -F 1 6 7 6 5 4 -F 1 11 8 3 6 5 -F 1 5 8 6 25 24 -F 1 11 11 3 6 5 -F 1 6 11 6 17 16 -F 1 9 12 3 8 7 -F 1 4 12 6 11 10 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 24 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 12 -player2 > engine: comparing 0 and 3, gives 1 0 0.336572607514253 -player2 > engine: 0 3 6 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0.07172769106024596 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 13 -player2 > engine: comparing 2 and 3, gives 1 0 0.22881269671267385 -player2 > engine: 2 3 6 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 4 and 0, gives 0 2 0 -player2 > engine: 4 0 27 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 2 0 -player2 > engine: 4 2 14 -player2 > engine: comparing 4 and 3, gives 1 0 0.16828628945120064 -player2 > engine: 4 3 7 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 2 0 -player2 > engine: 5 2 12 -player2 > engine: comparing 5 and 3, gives 1 0 0.6479533850190566 -player2 > engine: 5 3 6 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0.3205022790791102 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 2 0 -player2 > engine: 6 6 4 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 2 0 -player2 > engine: 7 2 13 -player2 > engine: comparing 7 and 3, gives 1 0 0.11566425403838958 -player2 > engine: 7 3 7 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 2 0 -player2 > engine: 7 6 3 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0.03001903676337727 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 2 0 -player2 > engine: 8 2 10 -player2 > engine: comparing 8 and 3, gives 0 0 0.3347412423175552 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0.06056981656335845 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 5 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 7 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 33 3 -P 9.319567 21.808874 2 14 5 -P 14.288424 0.622569 2 29 5 -P 11.865493 5.273785 1 5 3 -P 11.742498 17.157658 2 51 3 -P 4.254093 0.000000 2 17 1 -P 19.353899 22.431443 2 10 1 -P 14.743614 22.324001 2 24 3 -P 8.864377 0.107441 2 20 3 -P 19.854347 0.711934 0 27 1 -P 3.753644 21.719509 0 79 1 -P 8.864814 9.736624 2 14 5 -P 14.743177 12.694819 2 16 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 118 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 5 7 25 1 -F 2 6 5 7 25 2 -F 2 7 6 8 25 2 -F 2 7 5 7 25 3 -F 2 9 1 8 22 1 -F 2 5 2 7 22 1 -F 2 12 5 7 25 4 -F 2 5 6 8 25 4 -F 2 9 2 7 22 2 -F 2 8 5 7 25 5 -F 2 6 6 8 25 5 -F 2 14 2 7 22 3 -F 2 6 5 7 25 6 -F 2 6 6 8 25 6 -F 2 9 2 7 22 4 -F 2 5 5 7 25 7 -F 2 8 6 8 25 7 -F 2 18 1 5 23 6 -F 2 9 1 8 22 5 -F 2 6 4 8 18 1 -F 2 13 6 5 28 11 -F 2 7 6 8 25 8 -F 2 21 1 5 23 7 -F 2 10 1 8 22 6 -F 2 5 1 9 24 8 -F 2 4 4 5 19 3 -F 2 9 6 5 28 12 -F 2 5 6 11 17 1 -F 2 20 7 5 25 9 -F 2 10 7 8 23 7 -F 2 8 12 5 17 1 -F 2 8 1 5 23 8 -F 2 9 4 5 19 4 -F 2 8 6 5 28 13 -F 2 17 7 5 25 10 -F 2 8 7 8 23 8 -F 2 7 12 5 17 2 -F 2 9 1 5 23 9 -F 2 7 4 5 19 5 -F 2 11 6 5 28 14 -F 2 11 7 5 25 11 -F 2 3 12 5 17 3 -F 2 1 0 5 14 1 -F 2 12 1 2 22 9 -F 2 3 1 5 23 10 -F 2 14 4 2 17 4 -F 2 4 4 5 19 6 -F 2 6 6 2 23 10 -F 2 3 6 5 28 15 -F 2 21 7 2 22 9 -F 2 5 7 5 25 12 -F 2 2 12 5 17 4 -F 2 10 1 2 22 10 -F 2 5 1 3 17 5 -F 2 7 4 2 17 5 -F 2 2 6 2 23 11 -F 2 1 6 3 19 7 -F 2 19 7 2 22 10 -F 2 10 7 3 18 6 -F 2 5 7 5 25 13 -F 2 3 12 2 13 1 -F 2 13 1 2 22 11 -F 2 6 1 3 17 6 -F 2 3 4 3 12 1 -F 2 4 6 3 19 8 -F 2 10 7 3 18 7 -F 2 5 7 9 23 12 -F 2 19 1 3 17 7 -F 2 9 1 9 24 14 -F 2 5 1 12 11 1 -F 2 5 2 12 13 3 -F 2 1 5 12 17 7 -F 2 6 6 9 22 12 -F 2 3 6 12 11 1 -F 2 11 7 9 23 13 -F 2 6 7 10 12 2 -F 2 2 8 12 14 4 -F 2 7 12 9 14 4 -F 2 10 0 9 14 5 -F 2 5 0 10 14 5 -F 2 5 1 12 11 2 -F 2 5 2 12 13 4 -F 2 7 4 9 19 10 -F 2 5 6 12 11 2 -F 2 19 7 0 12 3 -F 2 9 7 9 23 14 -F 2 5 7 12 10 1 -F 2 9 8 9 12 3 -F 2 5 8 12 14 5 -F 2 7 11 9 15 6 -F 2 6 12 9 14 5 -F 2 9 0 9 14 6 -F 2 5 1 0 11 3 -F 2 5 2 0 11 3 -F 2 3 5 0 14 6 -F 2 8 6 0 14 6 -F 2 10 7 0 12 4 -F 2 4 8 0 12 4 -F 2 10 1 9 24 17 -F 2 10 2 4 17 10 -F 2 3 3 4 12 5 -F 2 9 5 4 19 12 -F 2 5 6 4 10 3 -F 2 8 8 4 18 11 -F 2 2 11 4 8 1 -F 2 9 1 9 24 18 -F 2 15 2 4 17 11 -F 2 10 3 4 12 6 -F 2 5 3 9 10 4 -F 2 22 5 4 19 13 -F 2 6 5 9 16 10 -F 2 5 6 4 10 4 -F 2 6 7 9 23 17 -F 2 8 8 4 18 12 -F 2 5 11 4 8 2 -F 2 3 0 4 6 1 -F 2 9 1 4 6 1 -F 2 15 2 1 22 17 -F 2 7 2 9 6 1 -F 2 20 3 1 17 12 -F 2 10 3 9 10 5 -F 2 5 3 10 19 14 -F 2 10 4 1 6 1 -F 2 17 5 1 23 18 -F 2 9 5 9 16 11 -F 2 16 7 1 6 1 -F 2 8 7 4 6 1 -F 2 6 8 1 22 17 -F 2 6 11 1 13 8 -F 2 4 12 1 11 6 -F 2 2 12 4 6 1 -F 2 8 0 1 11 7 -F 2 9 1 3 17 13 -F 2 6 2 1 22 18 -F 2 6 4 1 6 2 -F 2 18 5 1 23 19 -F 2 9 5 3 10 6 -F 2 7 6 1 11 7 -F 2 13 7 1 6 2 -F 2 7 7 3 18 14 -F 2 4 8 1 22 18 -F 2 10 11 1 13 9 -F 2 5 11 3 6 2 -F 2 7 12 1 11 7 -F 1 0 3 1 17 14 -F 2 34 0 1 11 8 -F 2 17 0 3 6 3 -F 2 8 0 9 14 11 -F 2 8 1 3 17 14 -F 2 6 2 3 6 3 -F 2 5 4 1 6 3 -F 2 11 5 3 10 7 -F 2 6 5 9 16 13 -F 2 8 6 3 19 16 -F 2 18 7 1 6 3 -F 2 9 7 3 18 15 -F 2 16 8 3 6 3 -F 2 8 8 9 12 9 -F 2 8 11 3 6 3 -F 2 10 12 3 8 5 -F 2 5 12 9 14 11 -F 2 14 0 3 6 4 -F 2 7 0 6 14 12 -F 2 4 0 11 4 2 -F 2 14 1 0 11 9 -F 2 7 1 3 17 15 -F 2 4 1 6 11 9 -F 2 12 2 3 6 4 -F 2 6 2 6 23 21 -F 2 4 4 6 10 8 -F 2 14 5 0 14 12 -F 2 7 5 3 10 8 -F 2 3 5 6 28 26 -F 2 14 6 0 14 12 -F 2 7 6 3 19 17 -F 2 12 7 3 18 16 -F 2 6 7 6 5 3 -F 2 11 8 3 6 4 -F 2 5 8 6 25 23 -F 2 11 11 3 6 4 -F 2 6 11 6 17 15 -F 2 9 12 3 8 6 -F 2 4 12 6 11 9 -F 2 12 0 2 11 10 -F 2 6 0 3 6 5 -F 2 6 2 3 6 5 -F 2 27 4 0 6 5 -F 2 14 4 2 17 16 -F 2 7 4 3 12 11 -F 2 12 5 2 11 10 -F 2 6 5 3 10 9 -F 2 13 7 2 22 21 -F 2 7 7 3 18 17 -F 2 3 7 6 5 4 -F 2 10 8 2 6 5 -F 2 5 11 0 4 3 -F 2 7 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 33 3 -P 9.319567 21.808874 1 14 5 -P 14.288424 0.622569 1 29 5 -P 11.865493 5.273785 2 5 3 -P 11.742498 17.157658 1 51 3 -P 4.254093 0.000000 1 17 1 -P 19.353899 22.431443 1 10 1 -P 14.743614 22.324001 1 24 3 -P 8.864377 0.107441 1 20 3 -P 19.854347 0.711934 0 27 1 -P 3.753644 21.719509 0 79 1 -P 8.864814 9.736624 1 14 5 -P 14.743177 12.694819 1 16 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 118 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 5 7 25 1 -F 1 6 5 7 25 2 -F 1 7 6 8 25 2 -F 1 7 5 7 25 3 -F 1 9 1 8 22 1 -F 1 5 2 7 22 1 -F 1 12 5 7 25 4 -F 1 5 6 8 25 4 -F 1 9 2 7 22 2 -F 1 8 5 7 25 5 -F 1 6 6 8 25 5 -F 1 14 2 7 22 3 -F 1 6 5 7 25 6 -F 1 6 6 8 25 6 -F 1 9 2 7 22 4 -F 1 5 5 7 25 7 -F 1 8 6 8 25 7 -F 1 18 1 5 23 6 -F 1 9 1 8 22 5 -F 1 6 4 8 18 1 -F 1 13 6 5 28 11 -F 1 7 6 8 25 8 -F 1 21 1 5 23 7 -F 1 10 1 8 22 6 -F 1 5 1 9 24 8 -F 1 4 4 5 19 3 -F 1 9 6 5 28 12 -F 1 5 6 11 17 1 -F 1 20 7 5 25 9 -F 1 10 7 8 23 7 -F 1 8 12 5 17 1 -F 1 8 1 5 23 8 -F 1 9 4 5 19 4 -F 1 8 6 5 28 13 -F 1 17 7 5 25 10 -F 1 8 7 8 23 8 -F 1 7 12 5 17 2 -F 1 9 1 5 23 9 -F 1 7 4 5 19 5 -F 1 11 6 5 28 14 -F 1 11 7 5 25 11 -F 1 3 12 5 17 3 -F 1 1 0 5 14 1 -F 1 12 1 2 22 9 -F 1 3 1 5 23 10 -F 1 14 4 2 17 4 -F 1 4 4 5 19 6 -F 1 6 6 2 23 10 -F 1 3 6 5 28 15 -F 1 21 7 2 22 9 -F 1 5 7 5 25 12 -F 1 2 12 5 17 4 -F 1 10 1 2 22 10 -F 1 5 1 3 17 5 -F 1 7 4 2 17 5 -F 1 2 6 2 23 11 -F 1 1 6 3 19 7 -F 1 19 7 2 22 10 -F 1 10 7 3 18 6 -F 1 5 7 5 25 13 -F 1 3 12 2 13 1 -F 1 13 1 2 22 11 -F 1 6 1 3 17 6 -F 1 3 4 3 12 1 -F 1 4 6 3 19 8 -F 1 10 7 3 18 7 -F 1 5 7 9 23 12 -F 1 19 1 3 17 7 -F 1 9 1 9 24 14 -F 1 5 1 12 11 1 -F 1 5 2 12 13 3 -F 1 1 5 12 17 7 -F 1 6 6 9 22 12 -F 1 3 6 12 11 1 -F 1 11 7 9 23 13 -F 1 6 7 10 12 2 -F 1 2 8 12 14 4 -F 1 7 12 9 14 4 -F 1 10 0 9 14 5 -F 1 5 0 10 14 5 -F 1 5 1 12 11 2 -F 1 5 2 12 13 4 -F 1 7 4 9 19 10 -F 1 5 6 12 11 2 -F 1 19 7 0 12 3 -F 1 9 7 9 23 14 -F 1 5 7 12 10 1 -F 1 9 8 9 12 3 -F 1 5 8 12 14 5 -F 1 7 11 9 15 6 -F 1 6 12 9 14 5 -F 1 9 0 9 14 6 -F 1 5 1 0 11 3 -F 1 5 2 0 11 3 -F 1 3 5 0 14 6 -F 1 8 6 0 14 6 -F 1 10 7 0 12 4 -F 1 4 8 0 12 4 -F 1 10 1 9 24 17 -F 1 10 2 4 17 10 -F 1 3 3 4 12 5 -F 1 9 5 4 19 12 -F 1 5 6 4 10 3 -F 1 8 8 4 18 11 -F 1 2 11 4 8 1 -F 1 9 1 9 24 18 -F 1 15 2 4 17 11 -F 1 10 3 4 12 6 -F 1 5 3 9 10 4 -F 1 22 5 4 19 13 -F 1 6 5 9 16 10 -F 1 5 6 4 10 4 -F 1 6 7 9 23 17 -F 1 8 8 4 18 12 -F 1 5 11 4 8 2 -F 1 3 0 4 6 1 -F 1 9 1 4 6 1 -F 1 15 2 1 22 17 -F 1 7 2 9 6 1 -F 1 20 3 1 17 12 -F 1 10 3 9 10 5 -F 1 5 3 10 19 14 -F 1 10 4 1 6 1 -F 1 17 5 1 23 18 -F 1 9 5 9 16 11 -F 1 16 7 1 6 1 -F 1 8 7 4 6 1 -F 1 6 8 1 22 17 -F 1 6 11 1 13 8 -F 1 4 12 1 11 6 -F 1 2 12 4 6 1 -F 1 8 0 1 11 7 -F 1 9 1 3 17 13 -F 1 6 2 1 22 18 -F 1 6 4 1 6 2 -F 1 18 5 1 23 19 -F 1 9 5 3 10 6 -F 1 7 6 1 11 7 -F 1 13 7 1 6 2 -F 1 7 7 3 18 14 -F 1 4 8 1 22 18 -F 1 10 11 1 13 9 -F 1 5 11 3 6 2 -F 1 7 12 1 11 7 -F 2 0 3 1 17 14 -F 1 34 0 1 11 8 -F 1 17 0 3 6 3 -F 1 8 0 9 14 11 -F 1 8 1 3 17 14 -F 1 6 2 3 6 3 -F 1 5 4 1 6 3 -F 1 11 5 3 10 7 -F 1 6 5 9 16 13 -F 1 8 6 3 19 16 -F 1 18 7 1 6 3 -F 1 9 7 3 18 15 -F 1 16 8 3 6 3 -F 1 8 8 9 12 9 -F 1 8 11 3 6 3 -F 1 10 12 3 8 5 -F 1 5 12 9 14 11 -F 1 14 0 3 6 4 -F 1 7 0 6 14 12 -F 1 4 0 11 4 2 -F 1 14 1 0 11 9 -F 1 7 1 3 17 15 -F 1 4 1 6 11 9 -F 1 12 2 3 6 4 -F 1 6 2 6 23 21 -F 1 4 4 6 10 8 -F 1 14 5 0 14 12 -F 1 7 5 3 10 8 -F 1 3 5 6 28 26 -F 1 14 6 0 14 12 -F 1 7 6 3 19 17 -F 1 12 7 3 18 16 -F 1 6 7 6 5 3 -F 1 11 8 3 6 4 -F 1 5 8 6 25 23 -F 1 11 11 3 6 4 -F 1 6 11 6 17 15 -F 1 9 12 3 8 6 -F 1 4 12 6 11 9 -F 1 12 0 2 11 10 -F 1 6 0 3 6 5 -F 1 6 2 3 6 5 -F 1 27 4 0 6 5 -F 1 14 4 2 17 16 -F 1 7 4 3 12 11 -F 1 12 5 2 11 10 -F 1 6 5 3 10 9 -F 1 13 7 2 22 21 -F 1 7 7 3 18 17 -F 1 3 7 6 5 4 -F 1 10 8 2 6 5 -F 1 5 11 0 4 3 -F 1 7 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 1 0 0.336572607514253 -player2 > engine: 0 3 16 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 1 0 0.05037544889393815 -player2 > engine: 0 9 8 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 1 0 0.07172769106024596 -player2 > engine: 1 3 7 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0.01696282572734245 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 14 -player2 > engine: comparing 2 and 3, gives 1 0 0.22881269671267385 -player2 > engine: 2 3 7 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 2 0 -player2 > engine: 4 2 25 -player2 > engine: comparing 4 and 3, gives 1 0 0.16828628945120064 -player2 > engine: 4 3 13 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 1 0 0.03635537238221285 -player2 > engine: 4 9 6 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 1 0 0.6479533850190566 -player2 > engine: 5 3 8 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0.3205022790791102 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 1 0 0.11566425403838958 -player2 > engine: 7 3 12 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 2 0 -player2 > engine: 7 6 6 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0.03001903676337727 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 2 0 -player2 > engine: 8 2 10 -player2 > engine: comparing 8 and 3, gives 0 0 0.3347412423175552 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0.06056981656335845 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 7 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 8 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0.1507642257922135 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 12 3 -P 9.319567 21.808874 2 38 5 -P 14.288424 0.622569 2 30 5 -P 11.865493 5.273785 1 5 3 -P 11.742498 17.157658 2 34 3 -P 4.254093 0.000000 2 19 1 -P 19.353899 22.431443 2 11 1 -P 14.743614 22.324001 2 20 3 -P 8.864377 0.107441 2 28 3 -P 19.854347 0.711934 0 20 1 -P 3.753644 21.719509 0 79 1 -P 8.864814 9.736624 2 17 5 -P 14.743177 12.694819 2 26 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 121 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 5 7 25 1 -F 2 7 6 8 25 1 -F 2 7 5 7 25 2 -F 2 12 5 7 25 3 -F 2 5 6 8 25 3 -F 2 9 2 7 22 1 -F 2 8 5 7 25 4 -F 2 6 6 8 25 4 -F 2 14 2 7 22 2 -F 2 6 5 7 25 5 -F 2 6 6 8 25 5 -F 2 9 2 7 22 3 -F 2 5 5 7 25 6 -F 2 8 6 8 25 6 -F 2 18 1 5 23 5 -F 2 9 1 8 22 4 -F 2 13 6 5 28 10 -F 2 7 6 8 25 7 -F 2 21 1 5 23 6 -F 2 10 1 8 22 5 -F 2 5 1 9 24 7 -F 2 4 4 5 19 2 -F 2 9 6 5 28 11 -F 2 20 7 5 25 8 -F 2 10 7 8 23 6 -F 2 8 1 5 23 7 -F 2 9 4 5 19 3 -F 2 8 6 5 28 12 -F 2 17 7 5 25 9 -F 2 8 7 8 23 7 -F 2 7 12 5 17 1 -F 2 9 1 5 23 8 -F 2 7 4 5 19 4 -F 2 11 6 5 28 13 -F 2 11 7 5 25 10 -F 2 3 12 5 17 2 -F 2 12 1 2 22 8 -F 2 3 1 5 23 9 -F 2 14 4 2 17 3 -F 2 4 4 5 19 5 -F 2 6 6 2 23 9 -F 2 3 6 5 28 14 -F 2 21 7 2 22 8 -F 2 5 7 5 25 11 -F 2 2 12 5 17 3 -F 2 10 1 2 22 9 -F 2 5 1 3 17 4 -F 2 7 4 2 17 4 -F 2 2 6 2 23 10 -F 2 1 6 3 19 6 -F 2 19 7 2 22 9 -F 2 10 7 3 18 5 -F 2 5 7 5 25 12 -F 2 13 1 2 22 10 -F 2 6 1 3 17 5 -F 2 4 6 3 19 7 -F 2 10 7 3 18 6 -F 2 5 7 9 23 11 -F 2 19 1 3 17 6 -F 2 9 1 9 24 13 -F 2 5 2 12 13 2 -F 2 1 5 12 17 6 -F 2 6 6 9 22 11 -F 2 11 7 9 23 12 -F 2 6 7 10 12 1 -F 2 2 8 12 14 3 -F 2 7 12 9 14 3 -F 2 10 0 9 14 4 -F 2 5 0 10 14 4 -F 2 5 1 12 11 1 -F 2 5 2 12 13 3 -F 2 7 4 9 19 9 -F 2 5 6 12 11 1 -F 2 19 7 0 12 2 -F 2 9 7 9 23 13 -F 2 9 8 9 12 2 -F 2 5 8 12 14 4 -F 2 7 11 9 15 5 -F 2 6 12 9 14 4 -F 2 9 0 9 14 5 -F 2 5 1 0 11 2 -F 2 5 2 0 11 2 -F 2 3 5 0 14 5 -F 2 8 6 0 14 5 -F 2 10 7 0 12 3 -F 2 4 8 0 12 3 -F 2 10 1 9 24 16 -F 2 10 2 4 17 9 -F 2 3 3 4 12 4 -F 2 9 5 4 19 11 -F 2 5 6 4 10 2 -F 2 8 8 4 18 10 -F 2 9 1 9 24 17 -F 2 15 2 4 17 10 -F 2 10 3 4 12 5 -F 2 5 3 9 10 3 -F 2 22 5 4 19 12 -F 2 6 5 9 16 9 -F 2 5 6 4 10 3 -F 2 6 7 9 23 16 -F 2 8 8 4 18 11 -F 2 5 11 4 8 1 -F 2 15 2 1 22 16 -F 2 20 3 1 17 11 -F 2 10 3 9 10 4 -F 2 5 3 10 19 13 -F 2 17 5 1 23 17 -F 2 9 5 9 16 10 -F 2 6 8 1 22 16 -F 2 6 11 1 13 7 -F 2 4 12 1 11 5 -F 2 8 0 1 11 6 -F 2 9 1 3 17 12 -F 2 6 2 1 22 17 -F 2 6 4 1 6 1 -F 2 18 5 1 23 18 -F 2 9 5 3 10 5 -F 2 7 6 1 11 6 -F 2 13 7 1 6 1 -F 2 7 7 3 18 13 -F 2 4 8 1 22 17 -F 2 10 11 1 13 8 -F 2 5 11 3 6 1 -F 2 7 12 1 11 6 -F 1 0 3 1 17 13 -F 2 34 0 1 11 7 -F 2 17 0 3 6 2 -F 2 8 0 9 14 10 -F 2 8 1 3 17 13 -F 2 6 2 3 6 2 -F 2 5 4 1 6 2 -F 2 11 5 3 10 6 -F 2 6 5 9 16 12 -F 2 8 6 3 19 15 -F 2 18 7 1 6 2 -F 2 9 7 3 18 14 -F 2 16 8 3 6 2 -F 2 8 8 9 12 8 -F 2 8 11 3 6 2 -F 2 10 12 3 8 4 -F 2 5 12 9 14 10 -F 2 14 0 3 6 3 -F 2 7 0 6 14 11 -F 2 4 0 11 4 1 -F 2 14 1 0 11 8 -F 2 7 1 3 17 14 -F 2 4 1 6 11 8 -F 2 12 2 3 6 3 -F 2 6 2 6 23 20 -F 2 4 4 6 10 7 -F 2 14 5 0 14 11 -F 2 7 5 3 10 7 -F 2 3 5 6 28 25 -F 2 14 6 0 14 11 -F 2 7 6 3 19 16 -F 2 12 7 3 18 15 -F 2 6 7 6 5 2 -F 2 11 8 3 6 3 -F 2 5 8 6 25 22 -F 2 11 11 3 6 3 -F 2 6 11 6 17 14 -F 2 9 12 3 8 5 -F 2 4 12 6 11 8 -F 2 12 0 2 11 9 -F 2 6 0 3 6 4 -F 2 6 2 3 6 4 -F 2 27 4 0 6 4 -F 2 14 4 2 17 15 -F 2 7 4 3 12 10 -F 2 12 5 2 11 9 -F 2 6 5 3 10 8 -F 2 13 7 2 22 20 -F 2 7 7 3 18 16 -F 2 3 7 6 5 3 -F 2 10 8 2 6 4 -F 2 5 11 0 4 2 -F 2 7 12 0 4 2 -F 2 16 0 3 6 5 -F 2 8 0 9 14 13 -F 2 7 1 3 17 16 -F 2 7 2 3 6 5 -F 2 25 4 2 17 16 -F 2 13 4 3 12 11 -F 2 6 4 9 19 18 -F 2 8 5 3 10 9 -F 2 12 7 3 18 17 -F 2 6 7 6 5 4 -F 2 10 8 2 6 5 -F 2 7 11 0 4 3 -F 2 8 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 12 3 -P 9.319567 21.808874 1 38 5 -P 14.288424 0.622569 1 30 5 -P 11.865493 5.273785 2 5 3 -P 11.742498 17.157658 1 34 3 -P 4.254093 0.000000 1 19 1 -P 19.353899 22.431443 1 11 1 -P 14.743614 22.324001 1 20 3 -P 8.864377 0.107441 1 28 3 -P 19.854347 0.711934 0 20 1 -P 3.753644 21.719509 0 79 1 -P 8.864814 9.736624 1 17 5 -P 14.743177 12.694819 1 26 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 121 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 5 7 25 1 -F 1 7 6 8 25 1 -F 1 7 5 7 25 2 -F 1 12 5 7 25 3 -F 1 5 6 8 25 3 -F 1 9 2 7 22 1 -F 1 8 5 7 25 4 -F 1 6 6 8 25 4 -F 1 14 2 7 22 2 -F 1 6 5 7 25 5 -F 1 6 6 8 25 5 -F 1 9 2 7 22 3 -F 1 5 5 7 25 6 -F 1 8 6 8 25 6 -F 1 18 1 5 23 5 -F 1 9 1 8 22 4 -F 1 13 6 5 28 10 -F 1 7 6 8 25 7 -F 1 21 1 5 23 6 -F 1 10 1 8 22 5 -F 1 5 1 9 24 7 -F 1 4 4 5 19 2 -F 1 9 6 5 28 11 -F 1 20 7 5 25 8 -F 1 10 7 8 23 6 -F 1 8 1 5 23 7 -F 1 9 4 5 19 3 -F 1 8 6 5 28 12 -F 1 17 7 5 25 9 -F 1 8 7 8 23 7 -F 1 7 12 5 17 1 -F 1 9 1 5 23 8 -F 1 7 4 5 19 4 -F 1 11 6 5 28 13 -F 1 11 7 5 25 10 -F 1 3 12 5 17 2 -F 1 12 1 2 22 8 -F 1 3 1 5 23 9 -F 1 14 4 2 17 3 -F 1 4 4 5 19 5 -F 1 6 6 2 23 9 -F 1 3 6 5 28 14 -F 1 21 7 2 22 8 -F 1 5 7 5 25 11 -F 1 2 12 5 17 3 -F 1 10 1 2 22 9 -F 1 5 1 3 17 4 -F 1 7 4 2 17 4 -F 1 2 6 2 23 10 -F 1 1 6 3 19 6 -F 1 19 7 2 22 9 -F 1 10 7 3 18 5 -F 1 5 7 5 25 12 -F 1 13 1 2 22 10 -F 1 6 1 3 17 5 -F 1 4 6 3 19 7 -F 1 10 7 3 18 6 -F 1 5 7 9 23 11 -F 1 19 1 3 17 6 -F 1 9 1 9 24 13 -F 1 5 2 12 13 2 -F 1 1 5 12 17 6 -F 1 6 6 9 22 11 -F 1 11 7 9 23 12 -F 1 6 7 10 12 1 -F 1 2 8 12 14 3 -F 1 7 12 9 14 3 -F 1 10 0 9 14 4 -F 1 5 0 10 14 4 -F 1 5 1 12 11 1 -F 1 5 2 12 13 3 -F 1 7 4 9 19 9 -F 1 5 6 12 11 1 -F 1 19 7 0 12 2 -F 1 9 7 9 23 13 -F 1 9 8 9 12 2 -F 1 5 8 12 14 4 -F 1 7 11 9 15 5 -F 1 6 12 9 14 4 -F 1 9 0 9 14 5 -F 1 5 1 0 11 2 -F 1 5 2 0 11 2 -F 1 3 5 0 14 5 -F 1 8 6 0 14 5 -F 1 10 7 0 12 3 -F 1 4 8 0 12 3 -F 1 10 1 9 24 16 -F 1 10 2 4 17 9 -F 1 3 3 4 12 4 -F 1 9 5 4 19 11 -F 1 5 6 4 10 2 -F 1 8 8 4 18 10 -F 1 9 1 9 24 17 -F 1 15 2 4 17 10 -F 1 10 3 4 12 5 -F 1 5 3 9 10 3 -F 1 22 5 4 19 12 -F 1 6 5 9 16 9 -F 1 5 6 4 10 3 -F 1 6 7 9 23 16 -F 1 8 8 4 18 11 -F 1 5 11 4 8 1 -F 1 15 2 1 22 16 -F 1 20 3 1 17 11 -F 1 10 3 9 10 4 -F 1 5 3 10 19 13 -F 1 17 5 1 23 17 -F 1 9 5 9 16 10 -F 1 6 8 1 22 16 -F 1 6 11 1 13 7 -F 1 4 12 1 11 5 -F 1 8 0 1 11 6 -F 1 9 1 3 17 12 -F 1 6 2 1 22 17 -F 1 6 4 1 6 1 -F 1 18 5 1 23 18 -F 1 9 5 3 10 5 -F 1 7 6 1 11 6 -F 1 13 7 1 6 1 -F 1 7 7 3 18 13 -F 1 4 8 1 22 17 -F 1 10 11 1 13 8 -F 1 5 11 3 6 1 -F 1 7 12 1 11 6 -F 2 0 3 1 17 13 -F 1 34 0 1 11 7 -F 1 17 0 3 6 2 -F 1 8 0 9 14 10 -F 1 8 1 3 17 13 -F 1 6 2 3 6 2 -F 1 5 4 1 6 2 -F 1 11 5 3 10 6 -F 1 6 5 9 16 12 -F 1 8 6 3 19 15 -F 1 18 7 1 6 2 -F 1 9 7 3 18 14 -F 1 16 8 3 6 2 -F 1 8 8 9 12 8 -F 1 8 11 3 6 2 -F 1 10 12 3 8 4 -F 1 5 12 9 14 10 -F 1 14 0 3 6 3 -F 1 7 0 6 14 11 -F 1 4 0 11 4 1 -F 1 14 1 0 11 8 -F 1 7 1 3 17 14 -F 1 4 1 6 11 8 -F 1 12 2 3 6 3 -F 1 6 2 6 23 20 -F 1 4 4 6 10 7 -F 1 14 5 0 14 11 -F 1 7 5 3 10 7 -F 1 3 5 6 28 25 -F 1 14 6 0 14 11 -F 1 7 6 3 19 16 -F 1 12 7 3 18 15 -F 1 6 7 6 5 2 -F 1 11 8 3 6 3 -F 1 5 8 6 25 22 -F 1 11 11 3 6 3 -F 1 6 11 6 17 14 -F 1 9 12 3 8 5 -F 1 4 12 6 11 8 -F 1 12 0 2 11 9 -F 1 6 0 3 6 4 -F 1 6 2 3 6 4 -F 1 27 4 0 6 4 -F 1 14 4 2 17 15 -F 1 7 4 3 12 10 -F 1 12 5 2 11 9 -F 1 6 5 3 10 8 -F 1 13 7 2 22 20 -F 1 7 7 3 18 16 -F 1 3 7 6 5 3 -F 1 10 8 2 6 4 -F 1 5 11 0 4 2 -F 1 7 12 0 4 2 -F 1 16 0 3 6 5 -F 1 8 0 9 14 13 -F 1 7 1 3 17 16 -F 1 7 2 3 6 5 -F 1 25 4 2 17 16 -F 1 13 4 3 12 11 -F 1 6 4 9 19 18 -F 1 8 5 3 10 9 -F 1 12 7 3 18 17 -F 1 6 7 6 5 4 -F 1 10 8 2 6 5 -F 1 7 11 0 4 3 -F 1 8 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 1 0 0.336572607514253 -player2 > engine: 0 3 6 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 1 0 0.07172769106024596 -player2 > engine: 1 3 19 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 1 0 0.01696282572734245 -player2 > engine: 1 9 9 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 2 0 -player2 > engine: 1 11 5 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 15 -player2 > engine: comparing 2 and 3, gives 1 0 0.22881269671267385 -player2 > engine: 2 3 7 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 1 0 0.16828628945120064 -player2 > engine: 4 3 17 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 1 0 0.03635537238221285 -player2 > engine: 4 9 8 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 1 0 0.6479533850190566 -player2 > engine: 5 3 9 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 2 0 -player2 > engine: 5 11 5 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 1 0 0.3205022790791102 -player2 > engine: 6 3 5 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 1 0 0.11566425403838958 -player2 > engine: 7 3 10 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0.03001903676337727 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 2 0 -player2 > engine: 7 11 5 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 1 0 0.3347412423175552 -player2 > engine: 8 3 14 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 1 0 0.06056981656335845 -player2 > engine: 8 9 7 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 8 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0.22313851847325064 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 13 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 1 0 0.1507642257922135 -player2 > engine: 12 3 6 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0.03070447521228758 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 9 3 -P 9.319567 21.808874 2 29 5 -P 14.288424 0.622569 2 28 5 -P 11.865493 5.273785 1 3 3 -P 11.742498 17.157658 2 17 3 -P 4.254093 0.000000 2 13 1 -P 19.353899 22.431443 2 7 1 -P 14.743614 22.324001 2 23 3 -P 8.864377 0.107441 2 17 3 -P 19.854347 0.711934 0 20 1 -P 3.753644 21.719509 0 73 1 -P 8.864814 9.736624 2 18 5 -P 14.743177 12.694819 2 22 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 124 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 7 5 7 25 1 -F 2 12 5 7 25 2 -F 2 5 6 8 25 2 -F 2 8 5 7 25 3 -F 2 6 6 8 25 3 -F 2 14 2 7 22 1 -F 2 6 5 7 25 4 -F 2 6 6 8 25 4 -F 2 9 2 7 22 2 -F 2 5 5 7 25 5 -F 2 8 6 8 25 5 -F 2 18 1 5 23 4 -F 2 9 1 8 22 3 -F 2 13 6 5 28 9 -F 2 7 6 8 25 6 -F 2 21 1 5 23 5 -F 2 10 1 8 22 4 -F 2 5 1 9 24 6 -F 2 4 4 5 19 1 -F 2 9 6 5 28 10 -F 2 20 7 5 25 7 -F 2 10 7 8 23 5 -F 2 8 1 5 23 6 -F 2 9 4 5 19 2 -F 2 8 6 5 28 11 -F 2 17 7 5 25 8 -F 2 8 7 8 23 6 -F 2 9 1 5 23 7 -F 2 7 4 5 19 3 -F 2 11 6 5 28 12 -F 2 11 7 5 25 9 -F 2 3 12 5 17 1 -F 2 12 1 2 22 7 -F 2 3 1 5 23 8 -F 2 14 4 2 17 2 -F 2 4 4 5 19 4 -F 2 6 6 2 23 8 -F 2 3 6 5 28 13 -F 2 21 7 2 22 7 -F 2 5 7 5 25 10 -F 2 2 12 5 17 2 -F 2 10 1 2 22 8 -F 2 5 1 3 17 3 -F 2 7 4 2 17 3 -F 2 2 6 2 23 9 -F 2 1 6 3 19 5 -F 2 19 7 2 22 8 -F 2 10 7 3 18 4 -F 2 5 7 5 25 11 -F 2 13 1 2 22 9 -F 2 6 1 3 17 4 -F 2 4 6 3 19 6 -F 2 10 7 3 18 5 -F 2 5 7 9 23 10 -F 2 19 1 3 17 5 -F 2 9 1 9 24 12 -F 2 5 2 12 13 1 -F 2 1 5 12 17 5 -F 2 6 6 9 22 10 -F 2 11 7 9 23 11 -F 2 2 8 12 14 2 -F 2 7 12 9 14 2 -F 2 10 0 9 14 3 -F 2 5 0 10 14 3 -F 2 5 2 12 13 2 -F 2 7 4 9 19 8 -F 2 19 7 0 12 1 -F 2 9 7 9 23 12 -F 2 9 8 9 12 1 -F 2 5 8 12 14 3 -F 2 7 11 9 15 4 -F 2 6 12 9 14 3 -F 2 9 0 9 14 4 -F 2 5 1 0 11 1 -F 2 5 2 0 11 1 -F 2 3 5 0 14 4 -F 2 8 6 0 14 4 -F 2 10 7 0 12 2 -F 2 4 8 0 12 2 -F 2 10 1 9 24 15 -F 2 10 2 4 17 8 -F 2 3 3 4 12 3 -F 2 9 5 4 19 10 -F 2 5 6 4 10 1 -F 2 8 8 4 18 9 -F 2 9 1 9 24 16 -F 2 15 2 4 17 9 -F 2 10 3 4 12 4 -F 2 5 3 9 10 2 -F 2 22 5 4 19 11 -F 2 6 5 9 16 8 -F 2 5 6 4 10 2 -F 2 6 7 9 23 15 -F 2 8 8 4 18 10 -F 2 15 2 1 22 15 -F 2 20 3 1 17 10 -F 2 10 3 9 10 3 -F 2 5 3 10 19 12 -F 2 17 5 1 23 16 -F 2 9 5 9 16 9 -F 2 6 8 1 22 15 -F 2 6 11 1 13 6 -F 2 4 12 1 11 4 -F 2 8 0 1 11 5 -F 2 9 1 3 17 11 -F 2 6 2 1 22 16 -F 2 18 5 1 23 17 -F 2 9 5 3 10 4 -F 2 7 6 1 11 5 -F 2 7 7 3 18 12 -F 2 4 8 1 22 16 -F 2 10 11 1 13 7 -F 2 7 12 1 11 5 -F 1 0 3 1 17 12 -F 2 34 0 1 11 6 -F 2 17 0 3 6 1 -F 2 8 0 9 14 9 -F 2 8 1 3 17 12 -F 2 6 2 3 6 1 -F 2 5 4 1 6 1 -F 2 11 5 3 10 5 -F 2 6 5 9 16 11 -F 2 8 6 3 19 14 -F 2 18 7 1 6 1 -F 2 9 7 3 18 13 -F 2 16 8 3 6 1 -F 2 8 8 9 12 7 -F 2 8 11 3 6 1 -F 2 10 12 3 8 3 -F 2 5 12 9 14 9 -F 2 14 0 3 6 2 -F 2 7 0 6 14 10 -F 2 14 1 0 11 7 -F 2 7 1 3 17 13 -F 2 4 1 6 11 7 -F 2 12 2 3 6 2 -F 2 6 2 6 23 19 -F 2 4 4 6 10 6 -F 2 14 5 0 14 10 -F 2 7 5 3 10 6 -F 2 3 5 6 28 24 -F 2 14 6 0 14 10 -F 2 7 6 3 19 15 -F 2 12 7 3 18 14 -F 2 6 7 6 5 1 -F 2 11 8 3 6 2 -F 2 5 8 6 25 21 -F 2 11 11 3 6 2 -F 2 6 11 6 17 13 -F 2 9 12 3 8 4 -F 2 4 12 6 11 7 -F 2 12 0 2 11 8 -F 2 6 0 3 6 3 -F 2 6 2 3 6 3 -F 2 27 4 0 6 3 -F 2 14 4 2 17 14 -F 2 7 4 3 12 9 -F 2 12 5 2 11 8 -F 2 6 5 3 10 7 -F 2 13 7 2 22 19 -F 2 7 7 3 18 15 -F 2 3 7 6 5 2 -F 2 10 8 2 6 3 -F 2 5 11 0 4 1 -F 2 7 12 0 4 1 -F 2 16 0 3 6 4 -F 2 8 0 9 14 12 -F 2 7 1 3 17 15 -F 2 7 2 3 6 4 -F 2 25 4 2 17 15 -F 2 13 4 3 12 10 -F 2 6 4 9 19 17 -F 2 8 5 3 10 8 -F 2 12 7 3 18 16 -F 2 6 7 6 5 3 -F 2 10 8 2 6 4 -F 2 7 11 0 4 2 -F 2 8 12 0 4 2 -F 2 6 0 3 6 5 -F 2 19 1 3 17 16 -F 2 9 1 9 24 23 -F 2 5 1 11 13 12 -F 2 7 2 3 6 5 -F 2 17 4 3 12 11 -F 2 8 4 9 19 18 -F 2 9 5 3 10 9 -F 2 5 5 11 11 10 -F 2 5 6 3 19 18 -F 2 10 7 3 18 17 -F 2 5 7 11 14 13 -F 2 14 8 3 6 5 -F 2 7 8 9 12 11 -F 2 8 11 0 4 3 -F 2 13 12 0 4 3 -F 2 6 12 3 8 7 -go - -engine > player2: P 11.803996 11.215721 1 9 3 -P 9.319567 21.808874 1 29 5 -P 14.288424 0.622569 1 28 5 -P 11.865493 5.273785 2 3 3 -P 11.742498 17.157658 1 17 3 -P 4.254093 0.000000 1 13 1 -P 19.353899 22.431443 1 7 1 -P 14.743614 22.324001 1 23 3 -P 8.864377 0.107441 1 17 3 -P 19.854347 0.711934 0 20 1 -P 3.753644 21.719509 0 73 1 -P 8.864814 9.736624 1 18 5 -P 14.743177 12.694819 1 22 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 124 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 7 5 7 25 1 -F 1 12 5 7 25 2 -F 1 5 6 8 25 2 -F 1 8 5 7 25 3 -F 1 6 6 8 25 3 -F 1 14 2 7 22 1 -F 1 6 5 7 25 4 -F 1 6 6 8 25 4 -F 1 9 2 7 22 2 -F 1 5 5 7 25 5 -F 1 8 6 8 25 5 -F 1 18 1 5 23 4 -F 1 9 1 8 22 3 -F 1 13 6 5 28 9 -F 1 7 6 8 25 6 -F 1 21 1 5 23 5 -F 1 10 1 8 22 4 -F 1 5 1 9 24 6 -F 1 4 4 5 19 1 -F 1 9 6 5 28 10 -F 1 20 7 5 25 7 -F 1 10 7 8 23 5 -F 1 8 1 5 23 6 -F 1 9 4 5 19 2 -F 1 8 6 5 28 11 -F 1 17 7 5 25 8 -F 1 8 7 8 23 6 -F 1 9 1 5 23 7 -F 1 7 4 5 19 3 -F 1 11 6 5 28 12 -F 1 11 7 5 25 9 -F 1 3 12 5 17 1 -F 1 12 1 2 22 7 -F 1 3 1 5 23 8 -F 1 14 4 2 17 2 -F 1 4 4 5 19 4 -F 1 6 6 2 23 8 -F 1 3 6 5 28 13 -F 1 21 7 2 22 7 -F 1 5 7 5 25 10 -F 1 2 12 5 17 2 -F 1 10 1 2 22 8 -F 1 5 1 3 17 3 -F 1 7 4 2 17 3 -F 1 2 6 2 23 9 -F 1 1 6 3 19 5 -F 1 19 7 2 22 8 -F 1 10 7 3 18 4 -F 1 5 7 5 25 11 -F 1 13 1 2 22 9 -F 1 6 1 3 17 4 -F 1 4 6 3 19 6 -F 1 10 7 3 18 5 -F 1 5 7 9 23 10 -F 1 19 1 3 17 5 -F 1 9 1 9 24 12 -F 1 5 2 12 13 1 -F 1 1 5 12 17 5 -F 1 6 6 9 22 10 -F 1 11 7 9 23 11 -F 1 2 8 12 14 2 -F 1 7 12 9 14 2 -F 1 10 0 9 14 3 -F 1 5 0 10 14 3 -F 1 5 2 12 13 2 -F 1 7 4 9 19 8 -F 1 19 7 0 12 1 -F 1 9 7 9 23 12 -F 1 9 8 9 12 1 -F 1 5 8 12 14 3 -F 1 7 11 9 15 4 -F 1 6 12 9 14 3 -F 1 9 0 9 14 4 -F 1 5 1 0 11 1 -F 1 5 2 0 11 1 -F 1 3 5 0 14 4 -F 1 8 6 0 14 4 -F 1 10 7 0 12 2 -F 1 4 8 0 12 2 -F 1 10 1 9 24 15 -F 1 10 2 4 17 8 -F 1 3 3 4 12 3 -F 1 9 5 4 19 10 -F 1 5 6 4 10 1 -F 1 8 8 4 18 9 -F 1 9 1 9 24 16 -F 1 15 2 4 17 9 -F 1 10 3 4 12 4 -F 1 5 3 9 10 2 -F 1 22 5 4 19 11 -F 1 6 5 9 16 8 -F 1 5 6 4 10 2 -F 1 6 7 9 23 15 -F 1 8 8 4 18 10 -F 1 15 2 1 22 15 -F 1 20 3 1 17 10 -F 1 10 3 9 10 3 -F 1 5 3 10 19 12 -F 1 17 5 1 23 16 -F 1 9 5 9 16 9 -F 1 6 8 1 22 15 -F 1 6 11 1 13 6 -F 1 4 12 1 11 4 -F 1 8 0 1 11 5 -F 1 9 1 3 17 11 -F 1 6 2 1 22 16 -F 1 18 5 1 23 17 -F 1 9 5 3 10 4 -F 1 7 6 1 11 5 -F 1 7 7 3 18 12 -F 1 4 8 1 22 16 -F 1 10 11 1 13 7 -F 1 7 12 1 11 5 -F 2 0 3 1 17 12 -F 1 34 0 1 11 6 -F 1 17 0 3 6 1 -F 1 8 0 9 14 9 -F 1 8 1 3 17 12 -F 1 6 2 3 6 1 -F 1 5 4 1 6 1 -F 1 11 5 3 10 5 -F 1 6 5 9 16 11 -F 1 8 6 3 19 14 -F 1 18 7 1 6 1 -F 1 9 7 3 18 13 -F 1 16 8 3 6 1 -F 1 8 8 9 12 7 -F 1 8 11 3 6 1 -F 1 10 12 3 8 3 -F 1 5 12 9 14 9 -F 1 14 0 3 6 2 -F 1 7 0 6 14 10 -F 1 14 1 0 11 7 -F 1 7 1 3 17 13 -F 1 4 1 6 11 7 -F 1 12 2 3 6 2 -F 1 6 2 6 23 19 -F 1 4 4 6 10 6 -F 1 14 5 0 14 10 -F 1 7 5 3 10 6 -F 1 3 5 6 28 24 -F 1 14 6 0 14 10 -F 1 7 6 3 19 15 -F 1 12 7 3 18 14 -F 1 6 7 6 5 1 -F 1 11 8 3 6 2 -F 1 5 8 6 25 21 -F 1 11 11 3 6 2 -F 1 6 11 6 17 13 -F 1 9 12 3 8 4 -F 1 4 12 6 11 7 -F 1 12 0 2 11 8 -F 1 6 0 3 6 3 -F 1 6 2 3 6 3 -F 1 27 4 0 6 3 -F 1 14 4 2 17 14 -F 1 7 4 3 12 9 -F 1 12 5 2 11 8 -F 1 6 5 3 10 7 -F 1 13 7 2 22 19 -F 1 7 7 3 18 15 -F 1 3 7 6 5 2 -F 1 10 8 2 6 3 -F 1 5 11 0 4 1 -F 1 7 12 0 4 1 -F 1 16 0 3 6 4 -F 1 8 0 9 14 12 -F 1 7 1 3 17 15 -F 1 7 2 3 6 4 -F 1 25 4 2 17 15 -F 1 13 4 3 12 10 -F 1 6 4 9 19 17 -F 1 8 5 3 10 8 -F 1 12 7 3 18 16 -F 1 6 7 6 5 3 -F 1 10 8 2 6 4 -F 1 7 11 0 4 2 -F 1 8 12 0 4 2 -F 1 6 0 3 6 5 -F 1 19 1 3 17 16 -F 1 9 1 9 24 23 -F 1 5 1 11 13 12 -F 1 7 2 3 6 5 -F 1 17 4 3 12 11 -F 1 8 4 9 19 18 -F 1 9 5 3 10 9 -F 1 5 5 11 11 10 -F 1 5 6 3 19 18 -F 1 10 7 3 18 17 -F 1 5 7 11 14 13 -F 1 14 8 3 6 5 -F 1 7 8 9 12 11 -F 1 8 11 0 4 3 -F 1 13 12 0 4 3 -F 1 6 12 3 8 7 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0.336572607514253 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0.05037544889393815 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 4 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 1 0 0.07172769106024596 -player2 > engine: 1 3 14 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 1 0 0.01696282572734245 -player2 > engine: 1 9 7 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 2 0 -player2 > engine: 1 11 4 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 1 0 0.22881269671267385 -player2 > engine: 2 3 14 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 1 0 0.07185662694633876 -player2 > engine: 2 9 7 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 2 0 -player2 > engine: 2 11 3 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 1 0 0.16828628945120064 -player2 > engine: 4 3 8 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 2 0 -player2 > engine: 4 11 4 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 1 0 0.6479533850190566 -player2 > engine: 5 3 6 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0.12806974798033835 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 2 0 -player2 > engine: 5 11 3 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0.3205022790791102 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0.09205867890315732 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 2 0 -player2 > engine: 6 11 3 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 1 0 0.11566425403838958 -player2 > engine: 7 3 11 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 1 0 0.03001903676337727 -player2 > engine: 7 9 6 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 2 0 -player2 > engine: 7 11 3 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 1 0 0.3347412423175552 -player2 > engine: 8 3 8 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0.06056981656335845 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 2 0 -player2 > engine: 8 11 4 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 1 0 0.22313851847325064 -player2 > engine: 11 3 9 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0.028128945542033604 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 2 0 -player2 > engine: 11 11 4 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 1 0 0.1507642257922135 -player2 > engine: 12 3 11 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 1 0 0.03070447521228758 -player2 > engine: 12 9 5 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 2 0 -player2 > engine: 12 11 3 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 49 3 -P 9.319567 21.808874 2 32 5 -P 14.288424 0.622569 2 9 5 -P 11.865493 5.273785 2 41 3 -P 11.742498 17.157658 2 13 3 -P 4.254093 0.000000 2 12 1 -P 19.353899 22.431443 2 11 1 -P 14.743614 22.324001 2 27 3 -P 8.864377 0.107441 2 8 3 -P 19.854347 0.711934 0 11 1 -P 3.753644 21.719509 0 73 1 -P 8.864814 9.736624 2 14 5 -P 14.743177 12.694819 2 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 127 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 12 5 7 25 1 -F 2 5 6 8 25 1 -F 2 8 5 7 25 2 -F 2 6 6 8 25 2 -F 2 6 5 7 25 3 -F 2 6 6 8 25 3 -F 2 9 2 7 22 1 -F 2 5 5 7 25 4 -F 2 8 6 8 25 4 -F 2 18 1 5 23 3 -F 2 9 1 8 22 2 -F 2 13 6 5 28 8 -F 2 7 6 8 25 5 -F 2 21 1 5 23 4 -F 2 10 1 8 22 3 -F 2 5 1 9 24 5 -F 2 9 6 5 28 9 -F 2 20 7 5 25 6 -F 2 10 7 8 23 4 -F 2 8 1 5 23 5 -F 2 9 4 5 19 1 -F 2 8 6 5 28 10 -F 2 17 7 5 25 7 -F 2 8 7 8 23 5 -F 2 9 1 5 23 6 -F 2 7 4 5 19 2 -F 2 11 6 5 28 11 -F 2 11 7 5 25 8 -F 2 12 1 2 22 6 -F 2 3 1 5 23 7 -F 2 14 4 2 17 1 -F 2 4 4 5 19 3 -F 2 6 6 2 23 7 -F 2 3 6 5 28 12 -F 2 21 7 2 22 6 -F 2 5 7 5 25 9 -F 2 2 12 5 17 1 -F 2 10 1 2 22 7 -F 2 5 1 3 17 2 -F 2 7 4 2 17 2 -F 2 2 6 2 23 8 -F 2 1 6 3 19 4 -F 2 19 7 2 22 7 -F 2 10 7 3 18 3 -F 2 5 7 5 25 10 -F 2 13 1 2 22 8 -F 2 6 1 3 17 3 -F 2 4 6 3 19 5 -F 2 10 7 3 18 4 -F 2 5 7 9 23 9 -F 2 19 1 3 17 4 -F 2 9 1 9 24 11 -F 2 1 5 12 17 4 -F 2 6 6 9 22 9 -F 2 11 7 9 23 10 -F 2 2 8 12 14 1 -F 2 7 12 9 14 1 -F 2 10 0 9 14 2 -F 2 5 0 10 14 2 -F 2 5 2 12 13 1 -F 2 7 4 9 19 7 -F 2 9 7 9 23 11 -F 2 5 8 12 14 2 -F 2 7 11 9 15 3 -F 2 6 12 9 14 2 -F 2 9 0 9 14 3 -F 2 3 5 0 14 3 -F 2 8 6 0 14 3 -F 2 10 7 0 12 1 -F 2 4 8 0 12 1 -F 2 10 1 9 24 14 -F 2 10 2 4 17 7 -F 2 3 3 4 12 2 -F 2 9 5 4 19 9 -F 2 8 8 4 18 8 -F 2 9 1 9 24 15 -F 2 15 2 4 17 8 -F 2 10 3 4 12 3 -F 2 5 3 9 10 1 -F 2 22 5 4 19 10 -F 2 6 5 9 16 7 -F 2 5 6 4 10 1 -F 2 6 7 9 23 14 -F 2 8 8 4 18 9 -F 2 15 2 1 22 14 -F 2 20 3 1 17 9 -F 2 10 3 9 10 2 -F 2 5 3 10 19 11 -F 2 17 5 1 23 15 -F 2 9 5 9 16 8 -F 2 6 8 1 22 14 -F 2 6 11 1 13 5 -F 2 4 12 1 11 3 -F 2 8 0 1 11 4 -F 2 9 1 3 17 10 -F 2 6 2 1 22 15 -F 2 18 5 1 23 16 -F 2 9 5 3 10 3 -F 2 7 6 1 11 4 -F 2 7 7 3 18 11 -F 2 4 8 1 22 15 -F 2 10 11 1 13 6 -F 2 7 12 1 11 4 -F 1 0 3 1 17 11 -F 2 34 0 1 11 5 -F 2 8 0 9 14 8 -F 2 8 1 3 17 11 -F 2 11 5 3 10 4 -F 2 6 5 9 16 10 -F 2 8 6 3 19 13 -F 2 9 7 3 18 12 -F 2 8 8 9 12 6 -F 2 10 12 3 8 2 -F 2 5 12 9 14 8 -F 2 14 0 3 6 1 -F 2 7 0 6 14 9 -F 2 14 1 0 11 6 -F 2 7 1 3 17 12 -F 2 4 1 6 11 6 -F 2 12 2 3 6 1 -F 2 6 2 6 23 18 -F 2 4 4 6 10 5 -F 2 14 5 0 14 9 -F 2 7 5 3 10 5 -F 2 3 5 6 28 23 -F 2 14 6 0 14 9 -F 2 7 6 3 19 14 -F 2 12 7 3 18 13 -F 2 11 8 3 6 1 -F 2 5 8 6 25 20 -F 2 11 11 3 6 1 -F 2 6 11 6 17 12 -F 2 9 12 3 8 3 -F 2 4 12 6 11 6 -F 2 12 0 2 11 7 -F 2 6 0 3 6 2 -F 2 6 2 3 6 2 -F 2 27 4 0 6 2 -F 2 14 4 2 17 13 -F 2 7 4 3 12 8 -F 2 12 5 2 11 7 -F 2 6 5 3 10 6 -F 2 13 7 2 22 18 -F 2 7 7 3 18 14 -F 2 3 7 6 5 1 -F 2 10 8 2 6 2 -F 2 16 0 3 6 3 -F 2 8 0 9 14 11 -F 2 7 1 3 17 14 -F 2 7 2 3 6 3 -F 2 25 4 2 17 14 -F 2 13 4 3 12 9 -F 2 6 4 9 19 16 -F 2 8 5 3 10 7 -F 2 12 7 3 18 15 -F 2 6 7 6 5 2 -F 2 10 8 2 6 3 -F 2 7 11 0 4 1 -F 2 8 12 0 4 1 -F 2 6 0 3 6 4 -F 2 19 1 3 17 15 -F 2 9 1 9 24 22 -F 2 5 1 11 13 11 -F 2 7 2 3 6 4 -F 2 17 4 3 12 10 -F 2 8 4 9 19 17 -F 2 9 5 3 10 8 -F 2 5 5 11 11 9 -F 2 5 6 3 19 17 -F 2 10 7 3 18 16 -F 2 5 7 11 14 12 -F 2 14 8 3 6 4 -F 2 7 8 9 12 10 -F 2 8 11 0 4 2 -F 2 13 12 0 4 2 -F 2 6 12 3 8 6 -F 2 4 0 11 4 3 -F 2 14 1 3 17 16 -F 2 7 1 9 24 23 -F 2 4 1 11 13 12 -F 2 14 2 3 6 5 -F 2 7 2 9 6 5 -F 2 3 2 11 11 10 -F 2 8 4 3 12 11 -F 2 4 4 11 8 7 -F 2 6 5 3 10 9 -F 2 3 5 11 11 10 -F 2 3 6 11 17 16 -F 2 11 7 3 18 17 -F 2 6 7 9 23 22 -F 2 3 7 11 14 13 -F 2 8 8 3 6 5 -F 2 4 8 11 10 9 -F 2 9 11 3 6 5 -F 2 11 12 3 8 7 -F 2 5 12 9 14 13 -F 2 3 12 11 7 6 -go - -engine > player2: P 11.803996 11.215721 1 49 3 -P 9.319567 21.808874 1 32 5 -P 14.288424 0.622569 1 9 5 -P 11.865493 5.273785 1 41 3 -P 11.742498 17.157658 1 13 3 -P 4.254093 0.000000 1 12 1 -P 19.353899 22.431443 1 11 1 -P 14.743614 22.324001 1 27 3 -P 8.864377 0.107441 1 8 3 -P 19.854347 0.711934 0 11 1 -P 3.753644 21.719509 0 73 1 -P 8.864814 9.736624 1 14 5 -P 14.743177 12.694819 1 13 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 127 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 12 5 7 25 1 -F 1 5 6 8 25 1 -F 1 8 5 7 25 2 -F 1 6 6 8 25 2 -F 1 6 5 7 25 3 -F 1 6 6 8 25 3 -F 1 9 2 7 22 1 -F 1 5 5 7 25 4 -F 1 8 6 8 25 4 -F 1 18 1 5 23 3 -F 1 9 1 8 22 2 -F 1 13 6 5 28 8 -F 1 7 6 8 25 5 -F 1 21 1 5 23 4 -F 1 10 1 8 22 3 -F 1 5 1 9 24 5 -F 1 9 6 5 28 9 -F 1 20 7 5 25 6 -F 1 10 7 8 23 4 -F 1 8 1 5 23 5 -F 1 9 4 5 19 1 -F 1 8 6 5 28 10 -F 1 17 7 5 25 7 -F 1 8 7 8 23 5 -F 1 9 1 5 23 6 -F 1 7 4 5 19 2 -F 1 11 6 5 28 11 -F 1 11 7 5 25 8 -F 1 12 1 2 22 6 -F 1 3 1 5 23 7 -F 1 14 4 2 17 1 -F 1 4 4 5 19 3 -F 1 6 6 2 23 7 -F 1 3 6 5 28 12 -F 1 21 7 2 22 6 -F 1 5 7 5 25 9 -F 1 2 12 5 17 1 -F 1 10 1 2 22 7 -F 1 5 1 3 17 2 -F 1 7 4 2 17 2 -F 1 2 6 2 23 8 -F 1 1 6 3 19 4 -F 1 19 7 2 22 7 -F 1 10 7 3 18 3 -F 1 5 7 5 25 10 -F 1 13 1 2 22 8 -F 1 6 1 3 17 3 -F 1 4 6 3 19 5 -F 1 10 7 3 18 4 -F 1 5 7 9 23 9 -F 1 19 1 3 17 4 -F 1 9 1 9 24 11 -F 1 1 5 12 17 4 -F 1 6 6 9 22 9 -F 1 11 7 9 23 10 -F 1 2 8 12 14 1 -F 1 7 12 9 14 1 -F 1 10 0 9 14 2 -F 1 5 0 10 14 2 -F 1 5 2 12 13 1 -F 1 7 4 9 19 7 -F 1 9 7 9 23 11 -F 1 5 8 12 14 2 -F 1 7 11 9 15 3 -F 1 6 12 9 14 2 -F 1 9 0 9 14 3 -F 1 3 5 0 14 3 -F 1 8 6 0 14 3 -F 1 10 7 0 12 1 -F 1 4 8 0 12 1 -F 1 10 1 9 24 14 -F 1 10 2 4 17 7 -F 1 3 3 4 12 2 -F 1 9 5 4 19 9 -F 1 8 8 4 18 8 -F 1 9 1 9 24 15 -F 1 15 2 4 17 8 -F 1 10 3 4 12 3 -F 1 5 3 9 10 1 -F 1 22 5 4 19 10 -F 1 6 5 9 16 7 -F 1 5 6 4 10 1 -F 1 6 7 9 23 14 -F 1 8 8 4 18 9 -F 1 15 2 1 22 14 -F 1 20 3 1 17 9 -F 1 10 3 9 10 2 -F 1 5 3 10 19 11 -F 1 17 5 1 23 15 -F 1 9 5 9 16 8 -F 1 6 8 1 22 14 -F 1 6 11 1 13 5 -F 1 4 12 1 11 3 -F 1 8 0 1 11 4 -F 1 9 1 3 17 10 -F 1 6 2 1 22 15 -F 1 18 5 1 23 16 -F 1 9 5 3 10 3 -F 1 7 6 1 11 4 -F 1 7 7 3 18 11 -F 1 4 8 1 22 15 -F 1 10 11 1 13 6 -F 1 7 12 1 11 4 -F 2 0 3 1 17 11 -F 1 34 0 1 11 5 -F 1 8 0 9 14 8 -F 1 8 1 3 17 11 -F 1 11 5 3 10 4 -F 1 6 5 9 16 10 -F 1 8 6 3 19 13 -F 1 9 7 3 18 12 -F 1 8 8 9 12 6 -F 1 10 12 3 8 2 -F 1 5 12 9 14 8 -F 1 14 0 3 6 1 -F 1 7 0 6 14 9 -F 1 14 1 0 11 6 -F 1 7 1 3 17 12 -F 1 4 1 6 11 6 -F 1 12 2 3 6 1 -F 1 6 2 6 23 18 -F 1 4 4 6 10 5 -F 1 14 5 0 14 9 -F 1 7 5 3 10 5 -F 1 3 5 6 28 23 -F 1 14 6 0 14 9 -F 1 7 6 3 19 14 -F 1 12 7 3 18 13 -F 1 11 8 3 6 1 -F 1 5 8 6 25 20 -F 1 11 11 3 6 1 -F 1 6 11 6 17 12 -F 1 9 12 3 8 3 -F 1 4 12 6 11 6 -F 1 12 0 2 11 7 -F 1 6 0 3 6 2 -F 1 6 2 3 6 2 -F 1 27 4 0 6 2 -F 1 14 4 2 17 13 -F 1 7 4 3 12 8 -F 1 12 5 2 11 7 -F 1 6 5 3 10 6 -F 1 13 7 2 22 18 -F 1 7 7 3 18 14 -F 1 3 7 6 5 1 -F 1 10 8 2 6 2 -F 1 16 0 3 6 3 -F 1 8 0 9 14 11 -F 1 7 1 3 17 14 -F 1 7 2 3 6 3 -F 1 25 4 2 17 14 -F 1 13 4 3 12 9 -F 1 6 4 9 19 16 -F 1 8 5 3 10 7 -F 1 12 7 3 18 15 -F 1 6 7 6 5 2 -F 1 10 8 2 6 3 -F 1 7 11 0 4 1 -F 1 8 12 0 4 1 -F 1 6 0 3 6 4 -F 1 19 1 3 17 15 -F 1 9 1 9 24 22 -F 1 5 1 11 13 11 -F 1 7 2 3 6 4 -F 1 17 4 3 12 10 -F 1 8 4 9 19 17 -F 1 9 5 3 10 8 -F 1 5 5 11 11 9 -F 1 5 6 3 19 17 -F 1 10 7 3 18 16 -F 1 5 7 11 14 12 -F 1 14 8 3 6 4 -F 1 7 8 9 12 10 -F 1 8 11 0 4 2 -F 1 13 12 0 4 2 -F 1 6 12 3 8 6 -F 1 4 0 11 4 3 -F 1 14 1 3 17 16 -F 1 7 1 9 24 23 -F 1 4 1 11 13 12 -F 1 14 2 3 6 5 -F 1 7 2 9 6 5 -F 1 3 2 11 11 10 -F 1 8 4 3 12 11 -F 1 4 4 11 8 7 -F 1 6 5 3 10 9 -F 1 3 5 11 11 10 -F 1 3 6 11 17 16 -F 1 11 7 3 18 17 -F 1 6 7 9 23 22 -F 1 3 7 11 14 13 -F 1 8 8 3 6 5 -F 1 4 8 11 10 9 -F 1 9 11 3 6 5 -F 1 11 12 3 8 7 -F 1 5 12 9 14 13 -F 1 3 12 11 7 6 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 2 0 -player2 > engine: 0 4 24 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 2 0 -player2 > engine: 0 6 12 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 1 0 0.05037544889393815 -player2 > engine: 0 9 6 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 3 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 2 0 -player2 > engine: 1 1 16 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 1 0 0.01696282572734245 -player2 > engine: 1 9 8 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0.07185662694633876 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 2 0 -player2 > engine: 3 4 20 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 2 0 -player2 > engine: 3 6 10 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 1 0 0.07246707613730467 -player2 > engine: 3 9 5 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 2 0 -player2 > engine: 4 1 6 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0.03635537238221285 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 1 0 0.12806974798033835 -player2 > engine: 5 9 6 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 1 0 0.09205867890315732 -player2 > engine: 6 9 5 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 2 0 -player2 > engine: 7 1 13 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 1 0 0.03001903676337727 -player2 > engine: 7 9 7 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0.06056981656335845 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 1 0 0.028128945542033604 -player2 > engine: 11 9 7 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 1 0 0.03070447521228758 -player2 > engine: 12 9 6 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 36 3 -P 9.319567 21.808874 2 29 5 -P 14.288424 0.622569 2 28 5 -P 11.865493 5.273785 2 57 3 -P 11.742498 17.157658 2 15 3 -P 4.254093 0.000000 2 18 1 -P 19.353899 22.431443 2 10 1 -P 14.743614 22.324001 2 31 3 -P 8.864377 0.107441 2 16 3 -P 19.854347 0.711934 2 1 1 -P 3.753644 21.719509 0 73 1 -P 8.864814 9.736624 2 12 5 -P 14.743177 12.694819 2 19 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 130 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 8 5 7 25 1 -F 2 6 6 8 25 1 -F 2 6 5 7 25 2 -F 2 6 6 8 25 2 -F 2 5 5 7 25 3 -F 2 8 6 8 25 3 -F 2 18 1 5 23 2 -F 2 9 1 8 22 1 -F 2 13 6 5 28 7 -F 2 7 6 8 25 4 -F 2 21 1 5 23 3 -F 2 10 1 8 22 2 -F 2 5 1 9 24 4 -F 2 9 6 5 28 8 -F 2 20 7 5 25 5 -F 2 10 7 8 23 3 -F 2 8 1 5 23 4 -F 2 8 6 5 28 9 -F 2 17 7 5 25 6 -F 2 8 7 8 23 4 -F 2 9 1 5 23 5 -F 2 7 4 5 19 1 -F 2 11 6 5 28 10 -F 2 11 7 5 25 7 -F 2 12 1 2 22 5 -F 2 3 1 5 23 6 -F 2 4 4 5 19 2 -F 2 6 6 2 23 6 -F 2 3 6 5 28 11 -F 2 21 7 2 22 5 -F 2 5 7 5 25 8 -F 2 10 1 2 22 6 -F 2 5 1 3 17 1 -F 2 7 4 2 17 1 -F 2 2 6 2 23 7 -F 2 1 6 3 19 3 -F 2 19 7 2 22 6 -F 2 10 7 3 18 2 -F 2 5 7 5 25 9 -F 2 13 1 2 22 7 -F 2 6 1 3 17 2 -F 2 4 6 3 19 4 -F 2 10 7 3 18 3 -F 2 5 7 9 23 8 -F 2 19 1 3 17 3 -F 2 9 1 9 24 10 -F 2 1 5 12 17 3 -F 2 6 6 9 22 8 -F 2 11 7 9 23 9 -F 2 10 0 9 14 1 -F 2 5 0 10 14 1 -F 2 7 4 9 19 6 -F 2 9 7 9 23 10 -F 2 5 8 12 14 1 -F 2 7 11 9 15 2 -F 2 6 12 9 14 1 -F 2 9 0 9 14 2 -F 2 3 5 0 14 2 -F 2 8 6 0 14 2 -F 2 10 1 9 24 13 -F 2 10 2 4 17 6 -F 2 3 3 4 12 1 -F 2 9 5 4 19 8 -F 2 8 8 4 18 7 -F 2 9 1 9 24 14 -F 2 15 2 4 17 7 -F 2 10 3 4 12 2 -F 2 22 5 4 19 9 -F 2 6 5 9 16 6 -F 2 6 7 9 23 13 -F 2 8 8 4 18 8 -F 2 15 2 1 22 13 -F 2 20 3 1 17 8 -F 2 10 3 9 10 1 -F 2 5 3 10 19 10 -F 2 17 5 1 23 14 -F 2 9 5 9 16 7 -F 2 6 8 1 22 13 -F 2 6 11 1 13 4 -F 2 4 12 1 11 2 -F 2 8 0 1 11 3 -F 2 9 1 3 17 9 -F 2 6 2 1 22 14 -F 2 18 5 1 23 15 -F 2 9 5 3 10 2 -F 2 7 6 1 11 3 -F 2 7 7 3 18 10 -F 2 4 8 1 22 14 -F 2 10 11 1 13 5 -F 2 7 12 1 11 3 -F 1 0 3 1 17 10 -F 2 34 0 1 11 4 -F 2 8 0 9 14 7 -F 2 8 1 3 17 10 -F 2 11 5 3 10 3 -F 2 6 5 9 16 9 -F 2 8 6 3 19 12 -F 2 9 7 3 18 11 -F 2 8 8 9 12 5 -F 2 10 12 3 8 1 -F 2 5 12 9 14 7 -F 2 7 0 6 14 8 -F 2 14 1 0 11 5 -F 2 7 1 3 17 11 -F 2 4 1 6 11 5 -F 2 6 2 6 23 17 -F 2 4 4 6 10 4 -F 2 14 5 0 14 8 -F 2 7 5 3 10 4 -F 2 3 5 6 28 22 -F 2 14 6 0 14 8 -F 2 7 6 3 19 13 -F 2 12 7 3 18 12 -F 2 5 8 6 25 19 -F 2 6 11 6 17 11 -F 2 9 12 3 8 2 -F 2 4 12 6 11 5 -F 2 12 0 2 11 6 -F 2 6 0 3 6 1 -F 2 6 2 3 6 1 -F 2 27 4 0 6 1 -F 2 14 4 2 17 12 -F 2 7 4 3 12 7 -F 2 12 5 2 11 6 -F 2 6 5 3 10 5 -F 2 13 7 2 22 17 -F 2 7 7 3 18 13 -F 2 10 8 2 6 1 -F 2 16 0 3 6 2 -F 2 8 0 9 14 10 -F 2 7 1 3 17 13 -F 2 7 2 3 6 2 -F 2 25 4 2 17 13 -F 2 13 4 3 12 8 -F 2 6 4 9 19 15 -F 2 8 5 3 10 6 -F 2 12 7 3 18 14 -F 2 6 7 6 5 1 -F 2 10 8 2 6 2 -F 2 6 0 3 6 3 -F 2 19 1 3 17 14 -F 2 9 1 9 24 21 -F 2 5 1 11 13 10 -F 2 7 2 3 6 3 -F 2 17 4 3 12 9 -F 2 8 4 9 19 16 -F 2 9 5 3 10 7 -F 2 5 5 11 11 8 -F 2 5 6 3 19 16 -F 2 10 7 3 18 15 -F 2 5 7 11 14 11 -F 2 14 8 3 6 3 -F 2 7 8 9 12 9 -F 2 8 11 0 4 1 -F 2 13 12 0 4 1 -F 2 6 12 3 8 5 -F 2 4 0 11 4 2 -F 2 14 1 3 17 15 -F 2 7 1 9 24 22 -F 2 4 1 11 13 11 -F 2 14 2 3 6 4 -F 2 7 2 9 6 4 -F 2 3 2 11 11 9 -F 2 8 4 3 12 10 -F 2 4 4 11 8 6 -F 2 6 5 3 10 8 -F 2 3 5 11 11 9 -F 2 3 6 11 17 15 -F 2 11 7 3 18 16 -F 2 6 7 9 23 21 -F 2 3 7 11 14 12 -F 2 8 8 3 6 4 -F 2 4 8 11 10 8 -F 2 9 11 3 6 4 -F 2 11 12 3 8 6 -F 2 5 12 9 14 12 -F 2 3 12 11 7 5 -F 2 24 0 4 6 5 -F 2 12 0 6 14 13 -F 2 6 0 9 14 13 -F 2 3 0 11 4 3 -F 2 8 1 9 24 23 -F 2 20 3 4 12 11 -F 2 10 3 6 19 18 -F 2 5 3 9 10 9 -F 2 6 4 1 6 5 -F 2 6 5 9 16 15 -F 2 5 6 9 22 21 -F 2 13 7 1 6 5 -F 2 7 7 9 23 22 -F 2 7 11 9 15 14 -F 2 6 12 9 14 13 -go - -engine > player2: P 11.803996 11.215721 1 36 3 -P 9.319567 21.808874 1 29 5 -P 14.288424 0.622569 1 28 5 -P 11.865493 5.273785 1 57 3 -P 11.742498 17.157658 1 15 3 -P 4.254093 0.000000 1 18 1 -P 19.353899 22.431443 1 10 1 -P 14.743614 22.324001 1 31 3 -P 8.864377 0.107441 1 16 3 -P 19.854347 0.711934 1 1 1 -P 3.753644 21.719509 0 73 1 -P 8.864814 9.736624 1 12 5 -P 14.743177 12.694819 1 19 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 130 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 8 5 7 25 1 -F 1 6 6 8 25 1 -F 1 6 5 7 25 2 -F 1 6 6 8 25 2 -F 1 5 5 7 25 3 -F 1 8 6 8 25 3 -F 1 18 1 5 23 2 -F 1 9 1 8 22 1 -F 1 13 6 5 28 7 -F 1 7 6 8 25 4 -F 1 21 1 5 23 3 -F 1 10 1 8 22 2 -F 1 5 1 9 24 4 -F 1 9 6 5 28 8 -F 1 20 7 5 25 5 -F 1 10 7 8 23 3 -F 1 8 1 5 23 4 -F 1 8 6 5 28 9 -F 1 17 7 5 25 6 -F 1 8 7 8 23 4 -F 1 9 1 5 23 5 -F 1 7 4 5 19 1 -F 1 11 6 5 28 10 -F 1 11 7 5 25 7 -F 1 12 1 2 22 5 -F 1 3 1 5 23 6 -F 1 4 4 5 19 2 -F 1 6 6 2 23 6 -F 1 3 6 5 28 11 -F 1 21 7 2 22 5 -F 1 5 7 5 25 8 -F 1 10 1 2 22 6 -F 1 5 1 3 17 1 -F 1 7 4 2 17 1 -F 1 2 6 2 23 7 -F 1 1 6 3 19 3 -F 1 19 7 2 22 6 -F 1 10 7 3 18 2 -F 1 5 7 5 25 9 -F 1 13 1 2 22 7 -F 1 6 1 3 17 2 -F 1 4 6 3 19 4 -F 1 10 7 3 18 3 -F 1 5 7 9 23 8 -F 1 19 1 3 17 3 -F 1 9 1 9 24 10 -F 1 1 5 12 17 3 -F 1 6 6 9 22 8 -F 1 11 7 9 23 9 -F 1 10 0 9 14 1 -F 1 5 0 10 14 1 -F 1 7 4 9 19 6 -F 1 9 7 9 23 10 -F 1 5 8 12 14 1 -F 1 7 11 9 15 2 -F 1 6 12 9 14 1 -F 1 9 0 9 14 2 -F 1 3 5 0 14 2 -F 1 8 6 0 14 2 -F 1 10 1 9 24 13 -F 1 10 2 4 17 6 -F 1 3 3 4 12 1 -F 1 9 5 4 19 8 -F 1 8 8 4 18 7 -F 1 9 1 9 24 14 -F 1 15 2 4 17 7 -F 1 10 3 4 12 2 -F 1 22 5 4 19 9 -F 1 6 5 9 16 6 -F 1 6 7 9 23 13 -F 1 8 8 4 18 8 -F 1 15 2 1 22 13 -F 1 20 3 1 17 8 -F 1 10 3 9 10 1 -F 1 5 3 10 19 10 -F 1 17 5 1 23 14 -F 1 9 5 9 16 7 -F 1 6 8 1 22 13 -F 1 6 11 1 13 4 -F 1 4 12 1 11 2 -F 1 8 0 1 11 3 -F 1 9 1 3 17 9 -F 1 6 2 1 22 14 -F 1 18 5 1 23 15 -F 1 9 5 3 10 2 -F 1 7 6 1 11 3 -F 1 7 7 3 18 10 -F 1 4 8 1 22 14 -F 1 10 11 1 13 5 -F 1 7 12 1 11 3 -F 2 0 3 1 17 10 -F 1 34 0 1 11 4 -F 1 8 0 9 14 7 -F 1 8 1 3 17 10 -F 1 11 5 3 10 3 -F 1 6 5 9 16 9 -F 1 8 6 3 19 12 -F 1 9 7 3 18 11 -F 1 8 8 9 12 5 -F 1 10 12 3 8 1 -F 1 5 12 9 14 7 -F 1 7 0 6 14 8 -F 1 14 1 0 11 5 -F 1 7 1 3 17 11 -F 1 4 1 6 11 5 -F 1 6 2 6 23 17 -F 1 4 4 6 10 4 -F 1 14 5 0 14 8 -F 1 7 5 3 10 4 -F 1 3 5 6 28 22 -F 1 14 6 0 14 8 -F 1 7 6 3 19 13 -F 1 12 7 3 18 12 -F 1 5 8 6 25 19 -F 1 6 11 6 17 11 -F 1 9 12 3 8 2 -F 1 4 12 6 11 5 -F 1 12 0 2 11 6 -F 1 6 0 3 6 1 -F 1 6 2 3 6 1 -F 1 27 4 0 6 1 -F 1 14 4 2 17 12 -F 1 7 4 3 12 7 -F 1 12 5 2 11 6 -F 1 6 5 3 10 5 -F 1 13 7 2 22 17 -F 1 7 7 3 18 13 -F 1 10 8 2 6 1 -F 1 16 0 3 6 2 -F 1 8 0 9 14 10 -F 1 7 1 3 17 13 -F 1 7 2 3 6 2 -F 1 25 4 2 17 13 -F 1 13 4 3 12 8 -F 1 6 4 9 19 15 -F 1 8 5 3 10 6 -F 1 12 7 3 18 14 -F 1 6 7 6 5 1 -F 1 10 8 2 6 2 -F 1 6 0 3 6 3 -F 1 19 1 3 17 14 -F 1 9 1 9 24 21 -F 1 5 1 11 13 10 -F 1 7 2 3 6 3 -F 1 17 4 3 12 9 -F 1 8 4 9 19 16 -F 1 9 5 3 10 7 -F 1 5 5 11 11 8 -F 1 5 6 3 19 16 -F 1 10 7 3 18 15 -F 1 5 7 11 14 11 -F 1 14 8 3 6 3 -F 1 7 8 9 12 9 -F 1 8 11 0 4 1 -F 1 13 12 0 4 1 -F 1 6 12 3 8 5 -F 1 4 0 11 4 2 -F 1 14 1 3 17 15 -F 1 7 1 9 24 22 -F 1 4 1 11 13 11 -F 1 14 2 3 6 4 -F 1 7 2 9 6 4 -F 1 3 2 11 11 9 -F 1 8 4 3 12 10 -F 1 4 4 11 8 6 -F 1 6 5 3 10 8 -F 1 3 5 11 11 9 -F 1 3 6 11 17 15 -F 1 11 7 3 18 16 -F 1 6 7 9 23 21 -F 1 3 7 11 14 12 -F 1 8 8 3 6 4 -F 1 4 8 11 10 8 -F 1 9 11 3 6 4 -F 1 11 12 3 8 6 -F 1 5 12 9 14 12 -F 1 3 12 11 7 5 -F 1 24 0 4 6 5 -F 1 12 0 6 14 13 -F 1 6 0 9 14 13 -F 1 3 0 11 4 3 -F 1 8 1 9 24 23 -F 1 20 3 4 12 11 -F 1 10 3 6 19 18 -F 1 5 3 9 10 9 -F 1 6 4 1 6 5 -F 1 6 5 9 16 15 -F 1 5 6 9 22 21 -F 1 13 7 1 6 5 -F 1 7 7 9 23 22 -F 1 7 11 9 15 14 -F 1 6 12 9 14 13 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 2 0 -player2 > engine: 0 4 18 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 1 0 0.05037544355714904 -player2 > engine: 0 10 9 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 4 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 2 0 -player2 > engine: 1 4 14 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 1 0 0.07185662694633879 -player2 > engine: 1 10 7 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 2 0 -player2 > engine: 2 4 14 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 1 0 0.016962825727342454 -player2 > engine: 2 10 7 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 2 0 -player2 > engine: 3 2 28 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 2 0 -player2 > engine: 3 4 14 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 1 0 0.03635537238221285 -player2 > engine: 3 10 7 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 1 0 0.0724670761373047 -player2 > engine: 4 10 7 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 1 0 0.0920586788055475 -player2 > engine: 5 10 9 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 2 0 -player2 > engine: 7 4 15 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 2 0 -player2 > engine: 7 6 8 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 1 0 0.030019035447943272 -player2 > engine: 8 10 8 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0.0755631693383152 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 1 0 0.030704475212287592 -player2 > engine: 11 10 6 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 1 0 0.02812894554203361 -player2 > engine: 12 10 9 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 56 3 -P 9.319567 21.808874 2 13 5 -P 14.288424 0.622569 2 29 5 -P 11.865493 5.273785 2 38 3 -P 11.742498 17.157658 2 14 3 -P 4.254093 0.000000 2 17 1 -P 19.353899 22.431443 2 17 1 -P 14.743614 22.324001 2 19 3 -P 8.864377 0.107441 2 26 3 -P 19.854347 0.711934 2 28 1 -P 3.753644 21.719509 0 68 1 -P 8.864814 9.736624 2 11 5 -P 14.743177 12.694819 2 20 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 133 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 5 7 25 1 -F 2 6 6 8 25 1 -F 2 5 5 7 25 2 -F 2 8 6 8 25 2 -F 2 18 1 5 23 1 -F 2 13 6 5 28 6 -F 2 7 6 8 25 3 -F 2 21 1 5 23 2 -F 2 10 1 8 22 1 -F 2 5 1 9 24 3 -F 2 9 6 5 28 7 -F 2 20 7 5 25 4 -F 2 10 7 8 23 2 -F 2 8 1 5 23 3 -F 2 8 6 5 28 8 -F 2 17 7 5 25 5 -F 2 8 7 8 23 3 -F 2 9 1 5 23 4 -F 2 11 6 5 28 9 -F 2 11 7 5 25 6 -F 2 12 1 2 22 4 -F 2 3 1 5 23 5 -F 2 4 4 5 19 1 -F 2 6 6 2 23 5 -F 2 3 6 5 28 10 -F 2 21 7 2 22 4 -F 2 5 7 5 25 7 -F 2 10 1 2 22 5 -F 2 2 6 2 23 6 -F 2 1 6 3 19 2 -F 2 19 7 2 22 5 -F 2 10 7 3 18 1 -F 2 5 7 5 25 8 -F 2 13 1 2 22 6 -F 2 6 1 3 17 1 -F 2 4 6 3 19 3 -F 2 10 7 3 18 2 -F 2 5 7 9 23 7 -F 2 19 1 3 17 2 -F 2 9 1 9 24 9 -F 2 1 5 12 17 2 -F 2 6 6 9 22 7 -F 2 11 7 9 23 8 -F 2 7 4 9 19 5 -F 2 9 7 9 23 9 -F 2 7 11 9 15 1 -F 2 9 0 9 14 1 -F 2 3 5 0 14 1 -F 2 8 6 0 14 1 -F 2 10 1 9 24 12 -F 2 10 2 4 17 5 -F 2 9 5 4 19 7 -F 2 8 8 4 18 6 -F 2 9 1 9 24 13 -F 2 15 2 4 17 6 -F 2 10 3 4 12 1 -F 2 22 5 4 19 8 -F 2 6 5 9 16 5 -F 2 6 7 9 23 12 -F 2 8 8 4 18 7 -F 2 15 2 1 22 12 -F 2 20 3 1 17 7 -F 2 5 3 10 19 9 -F 2 17 5 1 23 13 -F 2 9 5 9 16 6 -F 2 6 8 1 22 12 -F 2 6 11 1 13 3 -F 2 4 12 1 11 1 -F 2 8 0 1 11 2 -F 2 9 1 3 17 8 -F 2 6 2 1 22 13 -F 2 18 5 1 23 14 -F 2 9 5 3 10 1 -F 2 7 6 1 11 2 -F 2 7 7 3 18 9 -F 2 4 8 1 22 13 -F 2 10 11 1 13 4 -F 2 7 12 1 11 2 -F 1 0 3 1 17 9 -F 2 34 0 1 11 3 -F 2 8 0 9 14 6 -F 2 8 1 3 17 9 -F 2 11 5 3 10 2 -F 2 6 5 9 16 8 -F 2 8 6 3 19 11 -F 2 9 7 3 18 10 -F 2 8 8 9 12 4 -F 2 5 12 9 14 6 -F 2 7 0 6 14 7 -F 2 14 1 0 11 4 -F 2 7 1 3 17 10 -F 2 4 1 6 11 4 -F 2 6 2 6 23 16 -F 2 4 4 6 10 3 -F 2 14 5 0 14 7 -F 2 7 5 3 10 3 -F 2 3 5 6 28 21 -F 2 14 6 0 14 7 -F 2 7 6 3 19 12 -F 2 12 7 3 18 11 -F 2 5 8 6 25 18 -F 2 6 11 6 17 10 -F 2 9 12 3 8 1 -F 2 4 12 6 11 4 -F 2 12 0 2 11 5 -F 2 14 4 2 17 11 -F 2 7 4 3 12 6 -F 2 12 5 2 11 5 -F 2 6 5 3 10 4 -F 2 13 7 2 22 16 -F 2 7 7 3 18 12 -F 2 16 0 3 6 1 -F 2 8 0 9 14 9 -F 2 7 1 3 17 12 -F 2 7 2 3 6 1 -F 2 25 4 2 17 12 -F 2 13 4 3 12 7 -F 2 6 4 9 19 14 -F 2 8 5 3 10 5 -F 2 12 7 3 18 13 -F 2 10 8 2 6 1 -F 2 6 0 3 6 2 -F 2 19 1 3 17 13 -F 2 9 1 9 24 20 -F 2 5 1 11 13 9 -F 2 7 2 3 6 2 -F 2 17 4 3 12 8 -F 2 8 4 9 19 15 -F 2 9 5 3 10 6 -F 2 5 5 11 11 7 -F 2 5 6 3 19 15 -F 2 10 7 3 18 14 -F 2 5 7 11 14 10 -F 2 14 8 3 6 2 -F 2 7 8 9 12 8 -F 2 6 12 3 8 4 -F 2 4 0 11 4 1 -F 2 14 1 3 17 14 -F 2 7 1 9 24 21 -F 2 4 1 11 13 10 -F 2 14 2 3 6 3 -F 2 7 2 9 6 3 -F 2 3 2 11 11 8 -F 2 8 4 3 12 9 -F 2 4 4 11 8 5 -F 2 6 5 3 10 7 -F 2 3 5 11 11 8 -F 2 3 6 11 17 14 -F 2 11 7 3 18 15 -F 2 6 7 9 23 20 -F 2 3 7 11 14 11 -F 2 8 8 3 6 3 -F 2 4 8 11 10 7 -F 2 9 11 3 6 3 -F 2 11 12 3 8 5 -F 2 5 12 9 14 11 -F 2 3 12 11 7 4 -F 2 24 0 4 6 4 -F 2 12 0 6 14 12 -F 2 6 0 9 14 12 -F 2 3 0 11 4 2 -F 2 8 1 9 24 22 -F 2 20 3 4 12 10 -F 2 10 3 6 19 17 -F 2 5 3 9 10 8 -F 2 6 4 1 6 4 -F 2 6 5 9 16 14 -F 2 5 6 9 22 20 -F 2 13 7 1 6 4 -F 2 7 7 9 23 21 -F 2 7 11 9 15 13 -F 2 6 12 9 14 12 -F 2 18 0 4 6 5 -F 2 9 0 10 14 13 -F 2 4 0 11 4 3 -F 2 14 1 4 6 5 -F 2 7 1 10 6 5 -F 2 14 2 4 17 16 -F 2 7 2 10 24 23 -F 2 28 3 2 6 5 -F 2 14 3 4 12 11 -F 2 7 3 10 19 18 -F 2 7 4 10 10 9 -F 2 9 5 10 22 21 -F 2 15 7 4 6 5 -F 2 8 7 6 5 4 -F 2 8 8 10 23 22 -F 2 6 11 10 14 13 -F 2 9 12 10 15 14 -go - -engine > player2: P 11.803996 11.215721 1 56 3 -P 9.319567 21.808874 1 13 5 -P 14.288424 0.622569 1 29 5 -P 11.865493 5.273785 1 38 3 -P 11.742498 17.157658 1 14 3 -P 4.254093 0.000000 1 17 1 -P 19.353899 22.431443 1 17 1 -P 14.743614 22.324001 1 19 3 -P 8.864377 0.107441 1 26 3 -P 19.854347 0.711934 1 28 1 -P 3.753644 21.719509 0 68 1 -P 8.864814 9.736624 1 11 5 -P 14.743177 12.694819 1 20 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 133 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 5 7 25 1 -F 1 6 6 8 25 1 -F 1 5 5 7 25 2 -F 1 8 6 8 25 2 -F 1 18 1 5 23 1 -F 1 13 6 5 28 6 -F 1 7 6 8 25 3 -F 1 21 1 5 23 2 -F 1 10 1 8 22 1 -F 1 5 1 9 24 3 -F 1 9 6 5 28 7 -F 1 20 7 5 25 4 -F 1 10 7 8 23 2 -F 1 8 1 5 23 3 -F 1 8 6 5 28 8 -F 1 17 7 5 25 5 -F 1 8 7 8 23 3 -F 1 9 1 5 23 4 -F 1 11 6 5 28 9 -F 1 11 7 5 25 6 -F 1 12 1 2 22 4 -F 1 3 1 5 23 5 -F 1 4 4 5 19 1 -F 1 6 6 2 23 5 -F 1 3 6 5 28 10 -F 1 21 7 2 22 4 -F 1 5 7 5 25 7 -F 1 10 1 2 22 5 -F 1 2 6 2 23 6 -F 1 1 6 3 19 2 -F 1 19 7 2 22 5 -F 1 10 7 3 18 1 -F 1 5 7 5 25 8 -F 1 13 1 2 22 6 -F 1 6 1 3 17 1 -F 1 4 6 3 19 3 -F 1 10 7 3 18 2 -F 1 5 7 9 23 7 -F 1 19 1 3 17 2 -F 1 9 1 9 24 9 -F 1 1 5 12 17 2 -F 1 6 6 9 22 7 -F 1 11 7 9 23 8 -F 1 7 4 9 19 5 -F 1 9 7 9 23 9 -F 1 7 11 9 15 1 -F 1 9 0 9 14 1 -F 1 3 5 0 14 1 -F 1 8 6 0 14 1 -F 1 10 1 9 24 12 -F 1 10 2 4 17 5 -F 1 9 5 4 19 7 -F 1 8 8 4 18 6 -F 1 9 1 9 24 13 -F 1 15 2 4 17 6 -F 1 10 3 4 12 1 -F 1 22 5 4 19 8 -F 1 6 5 9 16 5 -F 1 6 7 9 23 12 -F 1 8 8 4 18 7 -F 1 15 2 1 22 12 -F 1 20 3 1 17 7 -F 1 5 3 10 19 9 -F 1 17 5 1 23 13 -F 1 9 5 9 16 6 -F 1 6 8 1 22 12 -F 1 6 11 1 13 3 -F 1 4 12 1 11 1 -F 1 8 0 1 11 2 -F 1 9 1 3 17 8 -F 1 6 2 1 22 13 -F 1 18 5 1 23 14 -F 1 9 5 3 10 1 -F 1 7 6 1 11 2 -F 1 7 7 3 18 9 -F 1 4 8 1 22 13 -F 1 10 11 1 13 4 -F 1 7 12 1 11 2 -F 2 0 3 1 17 9 -F 1 34 0 1 11 3 -F 1 8 0 9 14 6 -F 1 8 1 3 17 9 -F 1 11 5 3 10 2 -F 1 6 5 9 16 8 -F 1 8 6 3 19 11 -F 1 9 7 3 18 10 -F 1 8 8 9 12 4 -F 1 5 12 9 14 6 -F 1 7 0 6 14 7 -F 1 14 1 0 11 4 -F 1 7 1 3 17 10 -F 1 4 1 6 11 4 -F 1 6 2 6 23 16 -F 1 4 4 6 10 3 -F 1 14 5 0 14 7 -F 1 7 5 3 10 3 -F 1 3 5 6 28 21 -F 1 14 6 0 14 7 -F 1 7 6 3 19 12 -F 1 12 7 3 18 11 -F 1 5 8 6 25 18 -F 1 6 11 6 17 10 -F 1 9 12 3 8 1 -F 1 4 12 6 11 4 -F 1 12 0 2 11 5 -F 1 14 4 2 17 11 -F 1 7 4 3 12 6 -F 1 12 5 2 11 5 -F 1 6 5 3 10 4 -F 1 13 7 2 22 16 -F 1 7 7 3 18 12 -F 1 16 0 3 6 1 -F 1 8 0 9 14 9 -F 1 7 1 3 17 12 -F 1 7 2 3 6 1 -F 1 25 4 2 17 12 -F 1 13 4 3 12 7 -F 1 6 4 9 19 14 -F 1 8 5 3 10 5 -F 1 12 7 3 18 13 -F 1 10 8 2 6 1 -F 1 6 0 3 6 2 -F 1 19 1 3 17 13 -F 1 9 1 9 24 20 -F 1 5 1 11 13 9 -F 1 7 2 3 6 2 -F 1 17 4 3 12 8 -F 1 8 4 9 19 15 -F 1 9 5 3 10 6 -F 1 5 5 11 11 7 -F 1 5 6 3 19 15 -F 1 10 7 3 18 14 -F 1 5 7 11 14 10 -F 1 14 8 3 6 2 -F 1 7 8 9 12 8 -F 1 6 12 3 8 4 -F 1 4 0 11 4 1 -F 1 14 1 3 17 14 -F 1 7 1 9 24 21 -F 1 4 1 11 13 10 -F 1 14 2 3 6 3 -F 1 7 2 9 6 3 -F 1 3 2 11 11 8 -F 1 8 4 3 12 9 -F 1 4 4 11 8 5 -F 1 6 5 3 10 7 -F 1 3 5 11 11 8 -F 1 3 6 11 17 14 -F 1 11 7 3 18 15 -F 1 6 7 9 23 20 -F 1 3 7 11 14 11 -F 1 8 8 3 6 3 -F 1 4 8 11 10 7 -F 1 9 11 3 6 3 -F 1 11 12 3 8 5 -F 1 5 12 9 14 11 -F 1 3 12 11 7 4 -F 1 24 0 4 6 4 -F 1 12 0 6 14 12 -F 1 6 0 9 14 12 -F 1 3 0 11 4 2 -F 1 8 1 9 24 22 -F 1 20 3 4 12 10 -F 1 10 3 6 19 17 -F 1 5 3 9 10 8 -F 1 6 4 1 6 4 -F 1 6 5 9 16 14 -F 1 5 6 9 22 20 -F 1 13 7 1 6 4 -F 1 7 7 9 23 21 -F 1 7 11 9 15 13 -F 1 6 12 9 14 12 -F 1 18 0 4 6 5 -F 1 9 0 10 14 13 -F 1 4 0 11 4 3 -F 1 14 1 4 6 5 -F 1 7 1 10 6 5 -F 1 14 2 4 17 16 -F 1 7 2 10 24 23 -F 1 28 3 2 6 5 -F 1 14 3 4 12 11 -F 1 7 3 10 19 18 -F 1 7 4 10 10 9 -F 1 9 5 10 22 21 -F 1 15 7 4 6 5 -F 1 8 7 6 5 4 -F 1 8 8 10 23 22 -F 1 6 11 10 14 13 -F 1 9 12 10 15 14 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 28 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 2 0 -player2 > engine: 0 4 14 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 1 0 0.05037544355714904 -player2 > engine: 0 10 7 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 3 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 1 0 0.07185662694633879 -player2 > engine: 1 10 6 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 2 0 -player2 > engine: 1 12 3 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 14 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 1 0 0.016962825727342454 -player2 > engine: 2 10 7 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 2 0 -player2 > engine: 2 12 4 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 2 0 -player2 > engine: 3 0 19 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 1 0 0.03635537238221285 -player2 > engine: 3 10 9 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 2 0 -player2 > engine: 3 12 5 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 1 0 0.0724670761373047 -player2 > engine: 4 10 7 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 2 0 -player2 > engine: 4 12 3 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 1 0 0.0920586788055475 -player2 > engine: 5 10 8 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 2 0 -player2 > engine: 5 12 4 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 2 0 -player2 > engine: 6 6 8 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 2 0 -player2 > engine: 6 12 4 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 2 0 -player2 > engine: 7 6 9 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 2 0 -player2 > engine: 7 12 5 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 2 0 -player2 > engine: 8 2 13 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 1 0 0.030019035447943272 -player2 > engine: 8 10 6 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 2 0 -player2 > engine: 8 12 3 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 2 0 -player2 > engine: 9 2 14 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 1 0 0.0755631693383152 -player2 > engine: 9 10 7 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 2 0 -player2 > engine: 9 12 3 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 1 0 0.030704475212287592 -player2 > engine: 11 10 5 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 2 0 -player2 > engine: 11 12 3 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 1 0 0.02812894554203361 -player2 > engine: 12 10 10 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 5 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 46 3 -P 9.319567 21.808874 2 13 5 -P 14.288424 0.622569 2 33 5 -P 11.865493 5.273785 2 65 3 -P 11.742498 17.157658 2 17 3 -P 4.254093 0.000000 2 28 1 -P 19.353899 22.431443 2 14 1 -P 14.743614 22.324001 2 14 3 -P 8.864377 0.107441 2 23 3 -P 19.854347 0.711934 2 21 1 -P 3.753644 21.719509 0 68 1 -P 8.864814 9.736624 2 12 5 -P 14.743177 12.694819 2 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 136 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 5 7 25 1 -F 2 8 6 8 25 1 -F 2 13 6 5 28 5 -F 2 7 6 8 25 2 -F 2 21 1 5 23 1 -F 2 5 1 9 24 2 -F 2 9 6 5 28 6 -F 2 20 7 5 25 3 -F 2 10 7 8 23 1 -F 2 8 1 5 23 2 -F 2 8 6 5 28 7 -F 2 17 7 5 25 4 -F 2 8 7 8 23 2 -F 2 9 1 5 23 3 -F 2 11 6 5 28 8 -F 2 11 7 5 25 5 -F 2 12 1 2 22 3 -F 2 3 1 5 23 4 -F 2 6 6 2 23 4 -F 2 3 6 5 28 9 -F 2 21 7 2 22 3 -F 2 5 7 5 25 6 -F 2 10 1 2 22 4 -F 2 2 6 2 23 5 -F 2 1 6 3 19 1 -F 2 19 7 2 22 4 -F 2 5 7 5 25 7 -F 2 13 1 2 22 5 -F 2 4 6 3 19 2 -F 2 10 7 3 18 1 -F 2 5 7 9 23 6 -F 2 19 1 3 17 1 -F 2 9 1 9 24 8 -F 2 1 5 12 17 1 -F 2 6 6 9 22 6 -F 2 11 7 9 23 7 -F 2 7 4 9 19 4 -F 2 9 7 9 23 8 -F 2 10 1 9 24 11 -F 2 10 2 4 17 4 -F 2 9 5 4 19 6 -F 2 8 8 4 18 5 -F 2 9 1 9 24 12 -F 2 15 2 4 17 5 -F 2 22 5 4 19 7 -F 2 6 5 9 16 4 -F 2 6 7 9 23 11 -F 2 8 8 4 18 6 -F 2 15 2 1 22 11 -F 2 20 3 1 17 6 -F 2 5 3 10 19 8 -F 2 17 5 1 23 12 -F 2 9 5 9 16 5 -F 2 6 8 1 22 11 -F 2 6 11 1 13 2 -F 2 8 0 1 11 1 -F 2 9 1 3 17 7 -F 2 6 2 1 22 12 -F 2 18 5 1 23 13 -F 2 7 6 1 11 1 -F 2 7 7 3 18 8 -F 2 4 8 1 22 12 -F 2 10 11 1 13 3 -F 2 7 12 1 11 1 -F 1 0 3 1 17 8 -F 2 34 0 1 11 2 -F 2 8 0 9 14 5 -F 2 8 1 3 17 8 -F 2 11 5 3 10 1 -F 2 6 5 9 16 7 -F 2 8 6 3 19 10 -F 2 9 7 3 18 9 -F 2 8 8 9 12 3 -F 2 5 12 9 14 5 -F 2 7 0 6 14 6 -F 2 14 1 0 11 3 -F 2 7 1 3 17 9 -F 2 4 1 6 11 3 -F 2 6 2 6 23 15 -F 2 4 4 6 10 2 -F 2 14 5 0 14 6 -F 2 7 5 3 10 2 -F 2 3 5 6 28 20 -F 2 14 6 0 14 6 -F 2 7 6 3 19 11 -F 2 12 7 3 18 10 -F 2 5 8 6 25 17 -F 2 6 11 6 17 9 -F 2 4 12 6 11 3 -F 2 12 0 2 11 4 -F 2 14 4 2 17 10 -F 2 7 4 3 12 5 -F 2 12 5 2 11 4 -F 2 6 5 3 10 3 -F 2 13 7 2 22 15 -F 2 7 7 3 18 11 -F 2 8 0 9 14 8 -F 2 7 1 3 17 11 -F 2 25 4 2 17 11 -F 2 13 4 3 12 6 -F 2 6 4 9 19 13 -F 2 8 5 3 10 4 -F 2 12 7 3 18 12 -F 2 6 0 3 6 1 -F 2 19 1 3 17 12 -F 2 9 1 9 24 19 -F 2 5 1 11 13 8 -F 2 7 2 3 6 1 -F 2 17 4 3 12 7 -F 2 8 4 9 19 14 -F 2 9 5 3 10 5 -F 2 5 5 11 11 6 -F 2 5 6 3 19 14 -F 2 10 7 3 18 13 -F 2 5 7 11 14 9 -F 2 14 8 3 6 1 -F 2 7 8 9 12 7 -F 2 6 12 3 8 3 -F 2 14 1 3 17 13 -F 2 7 1 9 24 20 -F 2 4 1 11 13 9 -F 2 14 2 3 6 2 -F 2 7 2 9 6 2 -F 2 3 2 11 11 7 -F 2 8 4 3 12 8 -F 2 4 4 11 8 4 -F 2 6 5 3 10 6 -F 2 3 5 11 11 7 -F 2 3 6 11 17 13 -F 2 11 7 3 18 14 -F 2 6 7 9 23 19 -F 2 3 7 11 14 10 -F 2 8 8 3 6 2 -F 2 4 8 11 10 6 -F 2 9 11 3 6 2 -F 2 11 12 3 8 4 -F 2 5 12 9 14 10 -F 2 3 12 11 7 3 -F 2 24 0 4 6 3 -F 2 12 0 6 14 11 -F 2 6 0 9 14 11 -F 2 3 0 11 4 1 -F 2 8 1 9 24 21 -F 2 20 3 4 12 9 -F 2 10 3 6 19 16 -F 2 5 3 9 10 7 -F 2 6 4 1 6 3 -F 2 6 5 9 16 13 -F 2 5 6 9 22 19 -F 2 13 7 1 6 3 -F 2 7 7 9 23 20 -F 2 7 11 9 15 12 -F 2 6 12 9 14 11 -F 2 18 0 4 6 4 -F 2 9 0 10 14 12 -F 2 4 0 11 4 2 -F 2 14 1 4 6 4 -F 2 7 1 10 6 4 -F 2 14 2 4 17 15 -F 2 7 2 10 24 22 -F 2 28 3 2 6 4 -F 2 14 3 4 12 10 -F 2 7 3 10 19 17 -F 2 7 4 10 10 8 -F 2 9 5 10 22 20 -F 2 15 7 4 6 4 -F 2 8 7 6 5 3 -F 2 8 8 10 23 21 -F 2 6 11 10 14 12 -F 2 9 12 10 15 13 -F 2 14 0 4 6 5 -F 2 7 0 10 14 13 -F 2 3 0 12 4 3 -F 2 6 1 10 6 5 -F 2 3 1 12 11 10 -F 2 7 2 10 24 23 -F 2 4 2 12 13 12 -F 2 19 3 0 6 5 -F 2 9 3 10 19 18 -F 2 5 3 12 8 7 -F 2 7 4 10 10 9 -F 2 3 4 12 6 5 -F 2 8 5 10 22 21 -F 2 4 5 12 17 16 -F 2 4 6 12 11 10 -F 2 9 7 6 5 4 -F 2 5 7 12 10 9 -F 2 13 8 2 6 5 -F 2 6 8 10 23 22 -F 2 3 8 12 14 13 -F 2 14 9 2 6 5 -F 2 7 9 10 27 26 -F 2 3 9 12 14 13 -F 2 5 11 10 14 13 -F 2 3 11 12 7 6 -F 2 10 12 10 15 14 -go - -engine > player2: P 11.803996 11.215721 1 46 3 -P 9.319567 21.808874 1 13 5 -P 14.288424 0.622569 1 33 5 -P 11.865493 5.273785 1 65 3 -P 11.742498 17.157658 1 17 3 -P 4.254093 0.000000 1 28 1 -P 19.353899 22.431443 1 14 1 -P 14.743614 22.324001 1 14 3 -P 8.864377 0.107441 1 23 3 -P 19.854347 0.711934 1 21 1 -P 3.753644 21.719509 0 68 1 -P 8.864814 9.736624 1 12 5 -P 14.743177 12.694819 1 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 136 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 5 7 25 1 -F 1 8 6 8 25 1 -F 1 13 6 5 28 5 -F 1 7 6 8 25 2 -F 1 21 1 5 23 1 -F 1 5 1 9 24 2 -F 1 9 6 5 28 6 -F 1 20 7 5 25 3 -F 1 10 7 8 23 1 -F 1 8 1 5 23 2 -F 1 8 6 5 28 7 -F 1 17 7 5 25 4 -F 1 8 7 8 23 2 -F 1 9 1 5 23 3 -F 1 11 6 5 28 8 -F 1 11 7 5 25 5 -F 1 12 1 2 22 3 -F 1 3 1 5 23 4 -F 1 6 6 2 23 4 -F 1 3 6 5 28 9 -F 1 21 7 2 22 3 -F 1 5 7 5 25 6 -F 1 10 1 2 22 4 -F 1 2 6 2 23 5 -F 1 1 6 3 19 1 -F 1 19 7 2 22 4 -F 1 5 7 5 25 7 -F 1 13 1 2 22 5 -F 1 4 6 3 19 2 -F 1 10 7 3 18 1 -F 1 5 7 9 23 6 -F 1 19 1 3 17 1 -F 1 9 1 9 24 8 -F 1 1 5 12 17 1 -F 1 6 6 9 22 6 -F 1 11 7 9 23 7 -F 1 7 4 9 19 4 -F 1 9 7 9 23 8 -F 1 10 1 9 24 11 -F 1 10 2 4 17 4 -F 1 9 5 4 19 6 -F 1 8 8 4 18 5 -F 1 9 1 9 24 12 -F 1 15 2 4 17 5 -F 1 22 5 4 19 7 -F 1 6 5 9 16 4 -F 1 6 7 9 23 11 -F 1 8 8 4 18 6 -F 1 15 2 1 22 11 -F 1 20 3 1 17 6 -F 1 5 3 10 19 8 -F 1 17 5 1 23 12 -F 1 9 5 9 16 5 -F 1 6 8 1 22 11 -F 1 6 11 1 13 2 -F 1 8 0 1 11 1 -F 1 9 1 3 17 7 -F 1 6 2 1 22 12 -F 1 18 5 1 23 13 -F 1 7 6 1 11 1 -F 1 7 7 3 18 8 -F 1 4 8 1 22 12 -F 1 10 11 1 13 3 -F 1 7 12 1 11 1 -F 2 0 3 1 17 8 -F 1 34 0 1 11 2 -F 1 8 0 9 14 5 -F 1 8 1 3 17 8 -F 1 11 5 3 10 1 -F 1 6 5 9 16 7 -F 1 8 6 3 19 10 -F 1 9 7 3 18 9 -F 1 8 8 9 12 3 -F 1 5 12 9 14 5 -F 1 7 0 6 14 6 -F 1 14 1 0 11 3 -F 1 7 1 3 17 9 -F 1 4 1 6 11 3 -F 1 6 2 6 23 15 -F 1 4 4 6 10 2 -F 1 14 5 0 14 6 -F 1 7 5 3 10 2 -F 1 3 5 6 28 20 -F 1 14 6 0 14 6 -F 1 7 6 3 19 11 -F 1 12 7 3 18 10 -F 1 5 8 6 25 17 -F 1 6 11 6 17 9 -F 1 4 12 6 11 3 -F 1 12 0 2 11 4 -F 1 14 4 2 17 10 -F 1 7 4 3 12 5 -F 1 12 5 2 11 4 -F 1 6 5 3 10 3 -F 1 13 7 2 22 15 -F 1 7 7 3 18 11 -F 1 8 0 9 14 8 -F 1 7 1 3 17 11 -F 1 25 4 2 17 11 -F 1 13 4 3 12 6 -F 1 6 4 9 19 13 -F 1 8 5 3 10 4 -F 1 12 7 3 18 12 -F 1 6 0 3 6 1 -F 1 19 1 3 17 12 -F 1 9 1 9 24 19 -F 1 5 1 11 13 8 -F 1 7 2 3 6 1 -F 1 17 4 3 12 7 -F 1 8 4 9 19 14 -F 1 9 5 3 10 5 -F 1 5 5 11 11 6 -F 1 5 6 3 19 14 -F 1 10 7 3 18 13 -F 1 5 7 11 14 9 -F 1 14 8 3 6 1 -F 1 7 8 9 12 7 -F 1 6 12 3 8 3 -F 1 14 1 3 17 13 -F 1 7 1 9 24 20 -F 1 4 1 11 13 9 -F 1 14 2 3 6 2 -F 1 7 2 9 6 2 -F 1 3 2 11 11 7 -F 1 8 4 3 12 8 -F 1 4 4 11 8 4 -F 1 6 5 3 10 6 -F 1 3 5 11 11 7 -F 1 3 6 11 17 13 -F 1 11 7 3 18 14 -F 1 6 7 9 23 19 -F 1 3 7 11 14 10 -F 1 8 8 3 6 2 -F 1 4 8 11 10 6 -F 1 9 11 3 6 2 -F 1 11 12 3 8 4 -F 1 5 12 9 14 10 -F 1 3 12 11 7 3 -F 1 24 0 4 6 3 -F 1 12 0 6 14 11 -F 1 6 0 9 14 11 -F 1 3 0 11 4 1 -F 1 8 1 9 24 21 -F 1 20 3 4 12 9 -F 1 10 3 6 19 16 -F 1 5 3 9 10 7 -F 1 6 4 1 6 3 -F 1 6 5 9 16 13 -F 1 5 6 9 22 19 -F 1 13 7 1 6 3 -F 1 7 7 9 23 20 -F 1 7 11 9 15 12 -F 1 6 12 9 14 11 -F 1 18 0 4 6 4 -F 1 9 0 10 14 12 -F 1 4 0 11 4 2 -F 1 14 1 4 6 4 -F 1 7 1 10 6 4 -F 1 14 2 4 17 15 -F 1 7 2 10 24 22 -F 1 28 3 2 6 4 -F 1 14 3 4 12 10 -F 1 7 3 10 19 17 -F 1 7 4 10 10 8 -F 1 9 5 10 22 20 -F 1 15 7 4 6 4 -F 1 8 7 6 5 3 -F 1 8 8 10 23 21 -F 1 6 11 10 14 12 -F 1 9 12 10 15 13 -F 1 14 0 4 6 5 -F 1 7 0 10 14 13 -F 1 3 0 12 4 3 -F 1 6 1 10 6 5 -F 1 3 1 12 11 10 -F 1 7 2 10 24 23 -F 1 4 2 12 13 12 -F 1 19 3 0 6 5 -F 1 9 3 10 19 18 -F 1 5 3 12 8 7 -F 1 7 4 10 10 9 -F 1 3 4 12 6 5 -F 1 8 5 10 22 21 -F 1 4 5 12 17 16 -F 1 4 6 12 11 10 -F 1 9 7 6 5 4 -F 1 5 7 12 10 9 -F 1 13 8 2 6 5 -F 1 6 8 10 23 22 -F 1 3 8 12 14 13 -F 1 14 9 2 6 5 -F 1 7 9 10 27 26 -F 1 3 9 12 14 13 -F 1 5 11 10 14 13 -F 1 3 11 12 7 6 -F 1 10 12 10 15 14 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 23 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 2 0 -player2 > engine: 0 7 11 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 1 0 0.05037544355714904 -player2 > engine: 0 10 6 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 3 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 2 0 -player2 > engine: 1 7 6 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 2 0 -player2 > engine: 2 0 16 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 2 0 -player2 > engine: 2 7 8 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 2 0 -player2 > engine: 3 0 32 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 2 0 -player2 > engine: 3 7 16 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 1 0 0.03635537238221285 -player2 > engine: 3 10 8 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 2 0 -player2 > engine: 4 7 8 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 2 0 -player2 > engine: 5 7 14 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 1 0 0.0920586788055475 -player2 > engine: 5 10 7 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 2 0 -player2 > engine: 6 7 7 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 2 0 -player2 > engine: 7 6 7 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 2 0 -player2 > engine: 8 7 11 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 1 0 0.030019035447943272 -player2 > engine: 8 10 6 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 2 0 -player2 > engine: 9 7 10 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 1 0 0.0755631693383152 -player2 > engine: 9 10 5 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 6 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 7 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 29 3 -P 9.319567 21.808874 2 34 5 -P 14.288424 0.622569 2 14 5 -P 11.865493 5.273785 2 80 3 -P 11.742498 17.157658 2 12 3 -P 4.254093 0.000000 2 29 1 -P 19.353899 22.431443 2 8 1 -P 14.743614 22.324001 2 15 3 -P 8.864377 0.107441 2 27 3 -P 19.854347 0.711934 2 7 1 -P 3.753644 21.719509 0 68 1 -P 8.864814 9.736624 2 14 5 -P 14.743177 12.694819 2 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 139 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 13 6 5 28 4 -F 2 7 6 8 25 1 -F 2 5 1 9 24 1 -F 2 9 6 5 28 5 -F 2 20 7 5 25 2 -F 2 8 1 5 23 1 -F 2 8 6 5 28 6 -F 2 17 7 5 25 3 -F 2 8 7 8 23 1 -F 2 9 1 5 23 2 -F 2 11 6 5 28 7 -F 2 11 7 5 25 4 -F 2 12 1 2 22 2 -F 2 3 1 5 23 3 -F 2 6 6 2 23 3 -F 2 3 6 5 28 8 -F 2 21 7 2 22 2 -F 2 5 7 5 25 5 -F 2 10 1 2 22 3 -F 2 2 6 2 23 4 -F 2 19 7 2 22 3 -F 2 5 7 5 25 6 -F 2 13 1 2 22 4 -F 2 4 6 3 19 1 -F 2 5 7 9 23 5 -F 2 9 1 9 24 7 -F 2 6 6 9 22 5 -F 2 11 7 9 23 6 -F 2 7 4 9 19 3 -F 2 9 7 9 23 7 -F 2 10 1 9 24 10 -F 2 10 2 4 17 3 -F 2 9 5 4 19 5 -F 2 8 8 4 18 4 -F 2 9 1 9 24 11 -F 2 15 2 4 17 4 -F 2 22 5 4 19 6 -F 2 6 5 9 16 3 -F 2 6 7 9 23 10 -F 2 8 8 4 18 5 -F 2 15 2 1 22 10 -F 2 20 3 1 17 5 -F 2 5 3 10 19 7 -F 2 17 5 1 23 11 -F 2 9 5 9 16 4 -F 2 6 8 1 22 10 -F 2 6 11 1 13 1 -F 2 9 1 3 17 6 -F 2 6 2 1 22 11 -F 2 18 5 1 23 12 -F 2 7 7 3 18 7 -F 2 4 8 1 22 11 -F 2 10 11 1 13 2 -F 1 0 3 1 17 7 -F 2 34 0 1 11 1 -F 2 8 0 9 14 4 -F 2 8 1 3 17 7 -F 2 6 5 9 16 6 -F 2 8 6 3 19 9 -F 2 9 7 3 18 8 -F 2 8 8 9 12 2 -F 2 5 12 9 14 4 -F 2 7 0 6 14 5 -F 2 14 1 0 11 2 -F 2 7 1 3 17 8 -F 2 4 1 6 11 2 -F 2 6 2 6 23 14 -F 2 4 4 6 10 1 -F 2 14 5 0 14 5 -F 2 7 5 3 10 1 -F 2 3 5 6 28 19 -F 2 14 6 0 14 5 -F 2 7 6 3 19 10 -F 2 12 7 3 18 9 -F 2 5 8 6 25 16 -F 2 6 11 6 17 8 -F 2 4 12 6 11 2 -F 2 12 0 2 11 3 -F 2 14 4 2 17 9 -F 2 7 4 3 12 4 -F 2 12 5 2 11 3 -F 2 6 5 3 10 2 -F 2 13 7 2 22 14 -F 2 7 7 3 18 10 -F 2 8 0 9 14 7 -F 2 7 1 3 17 10 -F 2 25 4 2 17 10 -F 2 13 4 3 12 5 -F 2 6 4 9 19 12 -F 2 8 5 3 10 3 -F 2 12 7 3 18 11 -F 2 19 1 3 17 11 -F 2 9 1 9 24 18 -F 2 5 1 11 13 7 -F 2 17 4 3 12 6 -F 2 8 4 9 19 13 -F 2 9 5 3 10 4 -F 2 5 5 11 11 5 -F 2 5 6 3 19 13 -F 2 10 7 3 18 12 -F 2 5 7 11 14 8 -F 2 7 8 9 12 6 -F 2 6 12 3 8 2 -F 2 14 1 3 17 12 -F 2 7 1 9 24 19 -F 2 4 1 11 13 8 -F 2 14 2 3 6 1 -F 2 7 2 9 6 1 -F 2 3 2 11 11 6 -F 2 8 4 3 12 7 -F 2 4 4 11 8 3 -F 2 6 5 3 10 5 -F 2 3 5 11 11 6 -F 2 3 6 11 17 12 -F 2 11 7 3 18 13 -F 2 6 7 9 23 18 -F 2 3 7 11 14 9 -F 2 8 8 3 6 1 -F 2 4 8 11 10 5 -F 2 9 11 3 6 1 -F 2 11 12 3 8 3 -F 2 5 12 9 14 9 -F 2 3 12 11 7 2 -F 2 24 0 4 6 2 -F 2 12 0 6 14 10 -F 2 6 0 9 14 10 -F 2 8 1 9 24 20 -F 2 20 3 4 12 8 -F 2 10 3 6 19 15 -F 2 5 3 9 10 6 -F 2 6 4 1 6 2 -F 2 6 5 9 16 12 -F 2 5 6 9 22 18 -F 2 13 7 1 6 2 -F 2 7 7 9 23 19 -F 2 7 11 9 15 11 -F 2 6 12 9 14 10 -F 2 18 0 4 6 3 -F 2 9 0 10 14 11 -F 2 4 0 11 4 1 -F 2 14 1 4 6 3 -F 2 7 1 10 6 3 -F 2 14 2 4 17 14 -F 2 7 2 10 24 21 -F 2 28 3 2 6 3 -F 2 14 3 4 12 9 -F 2 7 3 10 19 16 -F 2 7 4 10 10 7 -F 2 9 5 10 22 19 -F 2 15 7 4 6 3 -F 2 8 7 6 5 2 -F 2 8 8 10 23 20 -F 2 6 11 10 14 11 -F 2 9 12 10 15 12 -F 2 14 0 4 6 4 -F 2 7 0 10 14 12 -F 2 3 0 12 4 2 -F 2 6 1 10 6 4 -F 2 3 1 12 11 9 -F 2 7 2 10 24 22 -F 2 4 2 12 13 11 -F 2 19 3 0 6 4 -F 2 9 3 10 19 17 -F 2 5 3 12 8 6 -F 2 7 4 10 10 8 -F 2 3 4 12 6 4 -F 2 8 5 10 22 20 -F 2 4 5 12 17 15 -F 2 4 6 12 11 9 -F 2 9 7 6 5 3 -F 2 5 7 12 10 8 -F 2 13 8 2 6 4 -F 2 6 8 10 23 21 -F 2 3 8 12 14 12 -F 2 14 9 2 6 4 -F 2 7 9 10 27 25 -F 2 3 9 12 14 12 -F 2 5 11 10 14 12 -F 2 3 11 12 7 5 -F 2 10 12 10 15 13 -F 2 11 0 7 12 11 -F 2 6 0 10 14 13 -F 2 3 0 12 4 3 -F 2 6 1 7 6 5 -F 2 16 2 0 11 10 -F 2 8 2 7 22 21 -F 2 32 3 0 6 5 -F 2 16 3 7 18 17 -F 2 8 3 10 19 18 -F 2 8 4 7 6 5 -F 2 14 5 7 25 24 -F 2 7 5 10 22 21 -F 2 7 6 7 5 4 -F 2 7 7 6 5 4 -F 2 11 8 7 23 22 -F 2 6 8 10 23 22 -F 2 10 9 7 23 22 -F 2 5 9 10 27 26 -F 2 6 11 0 4 3 -F 2 7 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 29 3 -P 9.319567 21.808874 1 34 5 -P 14.288424 0.622569 1 14 5 -P 11.865493 5.273785 1 80 3 -P 11.742498 17.157658 1 12 3 -P 4.254093 0.000000 1 29 1 -P 19.353899 22.431443 1 8 1 -P 14.743614 22.324001 1 15 3 -P 8.864377 0.107441 1 27 3 -P 19.854347 0.711934 1 7 1 -P 3.753644 21.719509 0 68 1 -P 8.864814 9.736624 1 14 5 -P 14.743177 12.694819 1 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 139 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 13 6 5 28 4 -F 1 7 6 8 25 1 -F 1 5 1 9 24 1 -F 1 9 6 5 28 5 -F 1 20 7 5 25 2 -F 1 8 1 5 23 1 -F 1 8 6 5 28 6 -F 1 17 7 5 25 3 -F 1 8 7 8 23 1 -F 1 9 1 5 23 2 -F 1 11 6 5 28 7 -F 1 11 7 5 25 4 -F 1 12 1 2 22 2 -F 1 3 1 5 23 3 -F 1 6 6 2 23 3 -F 1 3 6 5 28 8 -F 1 21 7 2 22 2 -F 1 5 7 5 25 5 -F 1 10 1 2 22 3 -F 1 2 6 2 23 4 -F 1 19 7 2 22 3 -F 1 5 7 5 25 6 -F 1 13 1 2 22 4 -F 1 4 6 3 19 1 -F 1 5 7 9 23 5 -F 1 9 1 9 24 7 -F 1 6 6 9 22 5 -F 1 11 7 9 23 6 -F 1 7 4 9 19 3 -F 1 9 7 9 23 7 -F 1 10 1 9 24 10 -F 1 10 2 4 17 3 -F 1 9 5 4 19 5 -F 1 8 8 4 18 4 -F 1 9 1 9 24 11 -F 1 15 2 4 17 4 -F 1 22 5 4 19 6 -F 1 6 5 9 16 3 -F 1 6 7 9 23 10 -F 1 8 8 4 18 5 -F 1 15 2 1 22 10 -F 1 20 3 1 17 5 -F 1 5 3 10 19 7 -F 1 17 5 1 23 11 -F 1 9 5 9 16 4 -F 1 6 8 1 22 10 -F 1 6 11 1 13 1 -F 1 9 1 3 17 6 -F 1 6 2 1 22 11 -F 1 18 5 1 23 12 -F 1 7 7 3 18 7 -F 1 4 8 1 22 11 -F 1 10 11 1 13 2 -F 2 0 3 1 17 7 -F 1 34 0 1 11 1 -F 1 8 0 9 14 4 -F 1 8 1 3 17 7 -F 1 6 5 9 16 6 -F 1 8 6 3 19 9 -F 1 9 7 3 18 8 -F 1 8 8 9 12 2 -F 1 5 12 9 14 4 -F 1 7 0 6 14 5 -F 1 14 1 0 11 2 -F 1 7 1 3 17 8 -F 1 4 1 6 11 2 -F 1 6 2 6 23 14 -F 1 4 4 6 10 1 -F 1 14 5 0 14 5 -F 1 7 5 3 10 1 -F 1 3 5 6 28 19 -F 1 14 6 0 14 5 -F 1 7 6 3 19 10 -F 1 12 7 3 18 9 -F 1 5 8 6 25 16 -F 1 6 11 6 17 8 -F 1 4 12 6 11 2 -F 1 12 0 2 11 3 -F 1 14 4 2 17 9 -F 1 7 4 3 12 4 -F 1 12 5 2 11 3 -F 1 6 5 3 10 2 -F 1 13 7 2 22 14 -F 1 7 7 3 18 10 -F 1 8 0 9 14 7 -F 1 7 1 3 17 10 -F 1 25 4 2 17 10 -F 1 13 4 3 12 5 -F 1 6 4 9 19 12 -F 1 8 5 3 10 3 -F 1 12 7 3 18 11 -F 1 19 1 3 17 11 -F 1 9 1 9 24 18 -F 1 5 1 11 13 7 -F 1 17 4 3 12 6 -F 1 8 4 9 19 13 -F 1 9 5 3 10 4 -F 1 5 5 11 11 5 -F 1 5 6 3 19 13 -F 1 10 7 3 18 12 -F 1 5 7 11 14 8 -F 1 7 8 9 12 6 -F 1 6 12 3 8 2 -F 1 14 1 3 17 12 -F 1 7 1 9 24 19 -F 1 4 1 11 13 8 -F 1 14 2 3 6 1 -F 1 7 2 9 6 1 -F 1 3 2 11 11 6 -F 1 8 4 3 12 7 -F 1 4 4 11 8 3 -F 1 6 5 3 10 5 -F 1 3 5 11 11 6 -F 1 3 6 11 17 12 -F 1 11 7 3 18 13 -F 1 6 7 9 23 18 -F 1 3 7 11 14 9 -F 1 8 8 3 6 1 -F 1 4 8 11 10 5 -F 1 9 11 3 6 1 -F 1 11 12 3 8 3 -F 1 5 12 9 14 9 -F 1 3 12 11 7 2 -F 1 24 0 4 6 2 -F 1 12 0 6 14 10 -F 1 6 0 9 14 10 -F 1 8 1 9 24 20 -F 1 20 3 4 12 8 -F 1 10 3 6 19 15 -F 1 5 3 9 10 6 -F 1 6 4 1 6 2 -F 1 6 5 9 16 12 -F 1 5 6 9 22 18 -F 1 13 7 1 6 2 -F 1 7 7 9 23 19 -F 1 7 11 9 15 11 -F 1 6 12 9 14 10 -F 1 18 0 4 6 3 -F 1 9 0 10 14 11 -F 1 4 0 11 4 1 -F 1 14 1 4 6 3 -F 1 7 1 10 6 3 -F 1 14 2 4 17 14 -F 1 7 2 10 24 21 -F 1 28 3 2 6 3 -F 1 14 3 4 12 9 -F 1 7 3 10 19 16 -F 1 7 4 10 10 7 -F 1 9 5 10 22 19 -F 1 15 7 4 6 3 -F 1 8 7 6 5 2 -F 1 8 8 10 23 20 -F 1 6 11 10 14 11 -F 1 9 12 10 15 12 -F 1 14 0 4 6 4 -F 1 7 0 10 14 12 -F 1 3 0 12 4 2 -F 1 6 1 10 6 4 -F 1 3 1 12 11 9 -F 1 7 2 10 24 22 -F 1 4 2 12 13 11 -F 1 19 3 0 6 4 -F 1 9 3 10 19 17 -F 1 5 3 12 8 6 -F 1 7 4 10 10 8 -F 1 3 4 12 6 4 -F 1 8 5 10 22 20 -F 1 4 5 12 17 15 -F 1 4 6 12 11 9 -F 1 9 7 6 5 3 -F 1 5 7 12 10 8 -F 1 13 8 2 6 4 -F 1 6 8 10 23 21 -F 1 3 8 12 14 12 -F 1 14 9 2 6 4 -F 1 7 9 10 27 25 -F 1 3 9 12 14 12 -F 1 5 11 10 14 12 -F 1 3 11 12 7 5 -F 1 10 12 10 15 13 -F 1 11 0 7 12 11 -F 1 6 0 10 14 13 -F 1 3 0 12 4 3 -F 1 6 1 7 6 5 -F 1 16 2 0 11 10 -F 1 8 2 7 22 21 -F 1 32 3 0 6 5 -F 1 16 3 7 18 17 -F 1 8 3 10 19 18 -F 1 8 4 7 6 5 -F 1 14 5 7 25 24 -F 1 7 5 10 22 21 -F 1 7 6 7 5 4 -F 1 7 7 6 5 4 -F 1 11 8 7 23 22 -F 1 6 8 10 23 22 -F 1 10 9 7 23 22 -F 1 5 9 10 27 26 -F 1 6 11 0 4 3 -F 1 7 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 2 0 -player2 > engine: 0 7 14 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 1 0 0.05037544355714904 -player2 > engine: 0 10 7 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 4 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 2 0 -player2 > engine: 1 7 17 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 1 0 0.07185662694633879 -player2 > engine: 1 10 8 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 1 0 0.016962825727342454 -player2 > engine: 2 10 7 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 2 0 -player2 > engine: 3 0 40 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 2 0 -player2 > engine: 3 7 20 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 1 0 0.03635537238221285 -player2 > engine: 3 10 10 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 2 0 -player2 > engine: 4 7 6 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 2 0 -player2 > engine: 5 7 14 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 1 0 0.0920586788055475 -player2 > engine: 5 10 7 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 2 0 -player2 > engine: 6 7 4 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 2 0 -player2 > engine: 7 7 7 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 2 0 -player2 > engine: 8 7 13 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 1 0 0.030019035447943272 -player2 > engine: 8 10 7 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0.0755631693383152 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 7 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 7 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 7 3 -P 9.319567 21.808874 2 54 5 -P 14.288424 0.622569 2 12 5 -P 11.865493 5.273785 2 55 3 -P 11.742498 17.157658 2 9 3 -P 4.254093 0.000000 2 17 1 -P 19.353899 22.431443 2 9 1 -P 14.743614 22.324001 2 18 3 -P 8.864377 0.107441 2 25 3 -P 19.854347 0.711934 2 20 1 -P 3.753644 21.719509 0 68 1 -P 8.864814 9.736624 2 16 5 -P 14.743177 12.694819 2 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 142 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 13 6 5 28 3 -F 2 9 6 5 28 4 -F 2 20 7 5 25 1 -F 2 8 6 5 28 5 -F 2 17 7 5 25 2 -F 2 9 1 5 23 1 -F 2 11 6 5 28 6 -F 2 11 7 5 25 3 -F 2 12 1 2 22 1 -F 2 3 1 5 23 2 -F 2 6 6 2 23 2 -F 2 3 6 5 28 7 -F 2 21 7 2 22 1 -F 2 5 7 5 25 4 -F 2 10 1 2 22 2 -F 2 2 6 2 23 3 -F 2 19 7 2 22 2 -F 2 5 7 5 25 5 -F 2 13 1 2 22 3 -F 2 5 7 9 23 4 -F 2 9 1 9 24 6 -F 2 6 6 9 22 4 -F 2 11 7 9 23 5 -F 2 7 4 9 19 2 -F 2 9 7 9 23 6 -F 2 10 1 9 24 9 -F 2 10 2 4 17 2 -F 2 9 5 4 19 4 -F 2 8 8 4 18 3 -F 2 9 1 9 24 10 -F 2 15 2 4 17 3 -F 2 22 5 4 19 5 -F 2 6 5 9 16 2 -F 2 6 7 9 23 9 -F 2 8 8 4 18 4 -F 2 15 2 1 22 9 -F 2 20 3 1 17 4 -F 2 5 3 10 19 6 -F 2 17 5 1 23 10 -F 2 9 5 9 16 3 -F 2 6 8 1 22 9 -F 2 9 1 3 17 5 -F 2 6 2 1 22 10 -F 2 18 5 1 23 11 -F 2 7 7 3 18 6 -F 2 4 8 1 22 10 -F 2 10 11 1 13 1 -F 1 0 3 1 17 6 -F 2 8 0 9 14 3 -F 2 8 1 3 17 6 -F 2 6 5 9 16 5 -F 2 8 6 3 19 8 -F 2 9 7 3 18 7 -F 2 8 8 9 12 1 -F 2 5 12 9 14 3 -F 2 7 0 6 14 4 -F 2 14 1 0 11 1 -F 2 7 1 3 17 7 -F 2 4 1 6 11 1 -F 2 6 2 6 23 13 -F 2 14 5 0 14 4 -F 2 3 5 6 28 18 -F 2 14 6 0 14 4 -F 2 7 6 3 19 9 -F 2 12 7 3 18 8 -F 2 5 8 6 25 15 -F 2 6 11 6 17 7 -F 2 4 12 6 11 1 -F 2 12 0 2 11 2 -F 2 14 4 2 17 8 -F 2 7 4 3 12 3 -F 2 12 5 2 11 2 -F 2 6 5 3 10 1 -F 2 13 7 2 22 13 -F 2 7 7 3 18 9 -F 2 8 0 9 14 6 -F 2 7 1 3 17 9 -F 2 25 4 2 17 9 -F 2 13 4 3 12 4 -F 2 6 4 9 19 11 -F 2 8 5 3 10 2 -F 2 12 7 3 18 10 -F 2 19 1 3 17 10 -F 2 9 1 9 24 17 -F 2 5 1 11 13 6 -F 2 17 4 3 12 5 -F 2 8 4 9 19 12 -F 2 9 5 3 10 3 -F 2 5 5 11 11 4 -F 2 5 6 3 19 12 -F 2 10 7 3 18 11 -F 2 5 7 11 14 7 -F 2 7 8 9 12 5 -F 2 6 12 3 8 1 -F 2 14 1 3 17 11 -F 2 7 1 9 24 18 -F 2 4 1 11 13 7 -F 2 3 2 11 11 5 -F 2 8 4 3 12 6 -F 2 4 4 11 8 2 -F 2 6 5 3 10 4 -F 2 3 5 11 11 5 -F 2 3 6 11 17 11 -F 2 11 7 3 18 12 -F 2 6 7 9 23 17 -F 2 3 7 11 14 8 -F 2 4 8 11 10 4 -F 2 11 12 3 8 2 -F 2 5 12 9 14 8 -F 2 3 12 11 7 1 -F 2 24 0 4 6 1 -F 2 12 0 6 14 9 -F 2 6 0 9 14 9 -F 2 8 1 9 24 19 -F 2 20 3 4 12 7 -F 2 10 3 6 19 14 -F 2 5 3 9 10 5 -F 2 6 4 1 6 1 -F 2 6 5 9 16 11 -F 2 5 6 9 22 17 -F 2 13 7 1 6 1 -F 2 7 7 9 23 18 -F 2 7 11 9 15 10 -F 2 6 12 9 14 9 -F 2 18 0 4 6 2 -F 2 9 0 10 14 10 -F 2 14 1 4 6 2 -F 2 7 1 10 6 2 -F 2 14 2 4 17 13 -F 2 7 2 10 24 20 -F 2 28 3 2 6 2 -F 2 14 3 4 12 8 -F 2 7 3 10 19 15 -F 2 7 4 10 10 6 -F 2 9 5 10 22 18 -F 2 15 7 4 6 2 -F 2 8 7 6 5 1 -F 2 8 8 10 23 19 -F 2 6 11 10 14 10 -F 2 9 12 10 15 11 -F 2 14 0 4 6 3 -F 2 7 0 10 14 11 -F 2 3 0 12 4 1 -F 2 6 1 10 6 3 -F 2 3 1 12 11 8 -F 2 7 2 10 24 21 -F 2 4 2 12 13 10 -F 2 19 3 0 6 3 -F 2 9 3 10 19 16 -F 2 5 3 12 8 5 -F 2 7 4 10 10 7 -F 2 3 4 12 6 3 -F 2 8 5 10 22 19 -F 2 4 5 12 17 14 -F 2 4 6 12 11 8 -F 2 9 7 6 5 2 -F 2 5 7 12 10 7 -F 2 13 8 2 6 3 -F 2 6 8 10 23 20 -F 2 3 8 12 14 11 -F 2 14 9 2 6 3 -F 2 7 9 10 27 24 -F 2 3 9 12 14 11 -F 2 5 11 10 14 11 -F 2 3 11 12 7 4 -F 2 10 12 10 15 12 -F 2 11 0 7 12 10 -F 2 6 0 10 14 12 -F 2 3 0 12 4 2 -F 2 6 1 7 6 4 -F 2 16 2 0 11 9 -F 2 8 2 7 22 20 -F 2 32 3 0 6 4 -F 2 16 3 7 18 16 -F 2 8 3 10 19 17 -F 2 8 4 7 6 4 -F 2 14 5 7 25 23 -F 2 7 5 10 22 20 -F 2 7 6 7 5 3 -F 2 7 7 6 5 3 -F 2 11 8 7 23 21 -F 2 6 8 10 23 21 -F 2 10 9 7 23 21 -F 2 5 9 10 27 25 -F 2 6 11 0 4 2 -F 2 7 12 0 4 2 -F 2 14 0 7 12 11 -F 2 7 0 10 14 13 -F 2 4 0 12 4 3 -F 2 17 1 7 6 5 -F 2 8 1 10 6 5 -F 2 7 2 10 24 23 -F 2 40 3 0 6 5 -F 2 20 3 7 18 17 -F 2 10 3 10 19 18 -F 2 6 4 7 6 5 -F 2 14 5 7 25 24 -F 2 7 5 10 22 21 -F 2 4 6 7 5 4 -F 2 13 8 7 23 22 -F 2 7 8 10 23 22 -F 2 7 11 0 4 3 -F 2 7 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 7 3 -P 9.319567 21.808874 1 54 5 -P 14.288424 0.622569 1 12 5 -P 11.865493 5.273785 1 55 3 -P 11.742498 17.157658 1 9 3 -P 4.254093 0.000000 1 17 1 -P 19.353899 22.431443 1 9 1 -P 14.743614 22.324001 1 18 3 -P 8.864377 0.107441 1 25 3 -P 19.854347 0.711934 1 20 1 -P 3.753644 21.719509 0 68 1 -P 8.864814 9.736624 1 16 5 -P 14.743177 12.694819 1 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 142 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 13 6 5 28 3 -F 1 9 6 5 28 4 -F 1 20 7 5 25 1 -F 1 8 6 5 28 5 -F 1 17 7 5 25 2 -F 1 9 1 5 23 1 -F 1 11 6 5 28 6 -F 1 11 7 5 25 3 -F 1 12 1 2 22 1 -F 1 3 1 5 23 2 -F 1 6 6 2 23 2 -F 1 3 6 5 28 7 -F 1 21 7 2 22 1 -F 1 5 7 5 25 4 -F 1 10 1 2 22 2 -F 1 2 6 2 23 3 -F 1 19 7 2 22 2 -F 1 5 7 5 25 5 -F 1 13 1 2 22 3 -F 1 5 7 9 23 4 -F 1 9 1 9 24 6 -F 1 6 6 9 22 4 -F 1 11 7 9 23 5 -F 1 7 4 9 19 2 -F 1 9 7 9 23 6 -F 1 10 1 9 24 9 -F 1 10 2 4 17 2 -F 1 9 5 4 19 4 -F 1 8 8 4 18 3 -F 1 9 1 9 24 10 -F 1 15 2 4 17 3 -F 1 22 5 4 19 5 -F 1 6 5 9 16 2 -F 1 6 7 9 23 9 -F 1 8 8 4 18 4 -F 1 15 2 1 22 9 -F 1 20 3 1 17 4 -F 1 5 3 10 19 6 -F 1 17 5 1 23 10 -F 1 9 5 9 16 3 -F 1 6 8 1 22 9 -F 1 9 1 3 17 5 -F 1 6 2 1 22 10 -F 1 18 5 1 23 11 -F 1 7 7 3 18 6 -F 1 4 8 1 22 10 -F 1 10 11 1 13 1 -F 2 0 3 1 17 6 -F 1 8 0 9 14 3 -F 1 8 1 3 17 6 -F 1 6 5 9 16 5 -F 1 8 6 3 19 8 -F 1 9 7 3 18 7 -F 1 8 8 9 12 1 -F 1 5 12 9 14 3 -F 1 7 0 6 14 4 -F 1 14 1 0 11 1 -F 1 7 1 3 17 7 -F 1 4 1 6 11 1 -F 1 6 2 6 23 13 -F 1 14 5 0 14 4 -F 1 3 5 6 28 18 -F 1 14 6 0 14 4 -F 1 7 6 3 19 9 -F 1 12 7 3 18 8 -F 1 5 8 6 25 15 -F 1 6 11 6 17 7 -F 1 4 12 6 11 1 -F 1 12 0 2 11 2 -F 1 14 4 2 17 8 -F 1 7 4 3 12 3 -F 1 12 5 2 11 2 -F 1 6 5 3 10 1 -F 1 13 7 2 22 13 -F 1 7 7 3 18 9 -F 1 8 0 9 14 6 -F 1 7 1 3 17 9 -F 1 25 4 2 17 9 -F 1 13 4 3 12 4 -F 1 6 4 9 19 11 -F 1 8 5 3 10 2 -F 1 12 7 3 18 10 -F 1 19 1 3 17 10 -F 1 9 1 9 24 17 -F 1 5 1 11 13 6 -F 1 17 4 3 12 5 -F 1 8 4 9 19 12 -F 1 9 5 3 10 3 -F 1 5 5 11 11 4 -F 1 5 6 3 19 12 -F 1 10 7 3 18 11 -F 1 5 7 11 14 7 -F 1 7 8 9 12 5 -F 1 6 12 3 8 1 -F 1 14 1 3 17 11 -F 1 7 1 9 24 18 -F 1 4 1 11 13 7 -F 1 3 2 11 11 5 -F 1 8 4 3 12 6 -F 1 4 4 11 8 2 -F 1 6 5 3 10 4 -F 1 3 5 11 11 5 -F 1 3 6 11 17 11 -F 1 11 7 3 18 12 -F 1 6 7 9 23 17 -F 1 3 7 11 14 8 -F 1 4 8 11 10 4 -F 1 11 12 3 8 2 -F 1 5 12 9 14 8 -F 1 3 12 11 7 1 -F 1 24 0 4 6 1 -F 1 12 0 6 14 9 -F 1 6 0 9 14 9 -F 1 8 1 9 24 19 -F 1 20 3 4 12 7 -F 1 10 3 6 19 14 -F 1 5 3 9 10 5 -F 1 6 4 1 6 1 -F 1 6 5 9 16 11 -F 1 5 6 9 22 17 -F 1 13 7 1 6 1 -F 1 7 7 9 23 18 -F 1 7 11 9 15 10 -F 1 6 12 9 14 9 -F 1 18 0 4 6 2 -F 1 9 0 10 14 10 -F 1 14 1 4 6 2 -F 1 7 1 10 6 2 -F 1 14 2 4 17 13 -F 1 7 2 10 24 20 -F 1 28 3 2 6 2 -F 1 14 3 4 12 8 -F 1 7 3 10 19 15 -F 1 7 4 10 10 6 -F 1 9 5 10 22 18 -F 1 15 7 4 6 2 -F 1 8 7 6 5 1 -F 1 8 8 10 23 19 -F 1 6 11 10 14 10 -F 1 9 12 10 15 11 -F 1 14 0 4 6 3 -F 1 7 0 10 14 11 -F 1 3 0 12 4 1 -F 1 6 1 10 6 3 -F 1 3 1 12 11 8 -F 1 7 2 10 24 21 -F 1 4 2 12 13 10 -F 1 19 3 0 6 3 -F 1 9 3 10 19 16 -F 1 5 3 12 8 5 -F 1 7 4 10 10 7 -F 1 3 4 12 6 3 -F 1 8 5 10 22 19 -F 1 4 5 12 17 14 -F 1 4 6 12 11 8 -F 1 9 7 6 5 2 -F 1 5 7 12 10 7 -F 1 13 8 2 6 3 -F 1 6 8 10 23 20 -F 1 3 8 12 14 11 -F 1 14 9 2 6 3 -F 1 7 9 10 27 24 -F 1 3 9 12 14 11 -F 1 5 11 10 14 11 -F 1 3 11 12 7 4 -F 1 10 12 10 15 12 -F 1 11 0 7 12 10 -F 1 6 0 10 14 12 -F 1 3 0 12 4 2 -F 1 6 1 7 6 4 -F 1 16 2 0 11 9 -F 1 8 2 7 22 20 -F 1 32 3 0 6 4 -F 1 16 3 7 18 16 -F 1 8 3 10 19 17 -F 1 8 4 7 6 4 -F 1 14 5 7 25 23 -F 1 7 5 10 22 20 -F 1 7 6 7 5 3 -F 1 7 7 6 5 3 -F 1 11 8 7 23 21 -F 1 6 8 10 23 21 -F 1 10 9 7 23 21 -F 1 5 9 10 27 25 -F 1 6 11 0 4 2 -F 1 7 12 0 4 2 -F 1 14 0 7 12 11 -F 1 7 0 10 14 13 -F 1 4 0 12 4 3 -F 1 17 1 7 6 5 -F 1 8 1 10 6 5 -F 1 7 2 10 24 23 -F 1 40 3 0 6 5 -F 1 20 3 7 18 17 -F 1 10 3 10 19 18 -F 1 6 4 7 6 5 -F 1 14 5 7 25 24 -F 1 7 5 10 22 21 -F 1 4 6 7 5 4 -F 1 13 8 7 23 22 -F 1 7 8 10 23 22 -F 1 7 11 0 4 3 -F 1 7 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 2 0 -player2 > engine: 0 8 3 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 2 0 -player2 > engine: 1 7 27 -player2 > engine: comparing 1 and 8, gives 0 2 0 -player2 > engine: 1 8 13 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 1 0 0.07185662694633879 -player2 > engine: 1 10 7 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 2 0 -player2 > engine: 2 8 6 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 2 0 -player2 > engine: 3 7 27 -player2 > engine: comparing 3 and 8, gives 0 2 0 -player2 > engine: 3 8 14 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 1 0 0.03635537238221285 -player2 > engine: 3 10 7 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 2 0 -player2 > engine: 4 8 4 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 2 0 -player2 > engine: 5 8 8 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 2 0 -player2 > engine: 6 7 4 -player2 > engine: comparing 6 and 8, gives 0 2 0 -player2 > engine: 6 8 2 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 2 0 -player2 > engine: 7 7 9 -player2 > engine: comparing 7 and 8, gives 0 2 0 -player2 > engine: 7 8 4 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 2 0 -player2 > engine: 8 8 12 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 1 0 0.030019035447943272 -player2 > engine: 8 10 6 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 2 0 -player2 > engine: 9 8 10 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0.0755631693383152 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 2 0 -player2 > engine: 11 8 8 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 2 0 -player2 > engine: 12 8 6 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 21 3 -P 9.319567 21.808874 2 41 5 -P 14.288424 0.622569 2 44 5 -P 11.865493 5.273785 2 22 3 -P 11.742498 17.157658 2 32 3 -P 4.254093 0.000000 2 39 1 -P 19.353899 22.431443 2 20 1 -P 14.743614 22.324001 2 17 3 -P 8.864377 0.107441 2 22 3 -P 19.854347 0.711934 2 19 1 -P 3.753644 21.719509 0 68 1 -P 8.864814 9.736624 2 16 5 -P 14.743177 12.694819 2 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 145 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 13 6 5 28 2 -F 2 9 6 5 28 3 -F 2 8 6 5 28 4 -F 2 17 7 5 25 1 -F 2 11 6 5 28 5 -F 2 11 7 5 25 2 -F 2 3 1 5 23 1 -F 2 6 6 2 23 1 -F 2 3 6 5 28 6 -F 2 5 7 5 25 3 -F 2 10 1 2 22 1 -F 2 2 6 2 23 2 -F 2 19 7 2 22 1 -F 2 5 7 5 25 4 -F 2 13 1 2 22 2 -F 2 5 7 9 23 3 -F 2 9 1 9 24 5 -F 2 6 6 9 22 3 -F 2 11 7 9 23 4 -F 2 7 4 9 19 1 -F 2 9 7 9 23 5 -F 2 10 1 9 24 8 -F 2 10 2 4 17 1 -F 2 9 5 4 19 3 -F 2 8 8 4 18 2 -F 2 9 1 9 24 9 -F 2 15 2 4 17 2 -F 2 22 5 4 19 4 -F 2 6 5 9 16 1 -F 2 6 7 9 23 8 -F 2 8 8 4 18 3 -F 2 15 2 1 22 8 -F 2 20 3 1 17 3 -F 2 5 3 10 19 5 -F 2 17 5 1 23 9 -F 2 9 5 9 16 2 -F 2 6 8 1 22 8 -F 2 9 1 3 17 4 -F 2 6 2 1 22 9 -F 2 18 5 1 23 10 -F 2 7 7 3 18 5 -F 2 4 8 1 22 9 -F 1 0 3 1 17 5 -F 2 8 0 9 14 2 -F 2 8 1 3 17 5 -F 2 6 5 9 16 4 -F 2 8 6 3 19 7 -F 2 9 7 3 18 6 -F 2 5 12 9 14 2 -F 2 7 0 6 14 3 -F 2 7 1 3 17 6 -F 2 6 2 6 23 12 -F 2 14 5 0 14 3 -F 2 3 5 6 28 17 -F 2 14 6 0 14 3 -F 2 7 6 3 19 8 -F 2 12 7 3 18 7 -F 2 5 8 6 25 14 -F 2 6 11 6 17 6 -F 2 12 0 2 11 1 -F 2 14 4 2 17 7 -F 2 7 4 3 12 2 -F 2 12 5 2 11 1 -F 2 13 7 2 22 12 -F 2 7 7 3 18 8 -F 2 8 0 9 14 5 -F 2 7 1 3 17 8 -F 2 25 4 2 17 8 -F 2 13 4 3 12 3 -F 2 6 4 9 19 10 -F 2 8 5 3 10 1 -F 2 12 7 3 18 9 -F 2 19 1 3 17 9 -F 2 9 1 9 24 16 -F 2 5 1 11 13 5 -F 2 17 4 3 12 4 -F 2 8 4 9 19 11 -F 2 9 5 3 10 2 -F 2 5 5 11 11 3 -F 2 5 6 3 19 11 -F 2 10 7 3 18 10 -F 2 5 7 11 14 6 -F 2 7 8 9 12 4 -F 2 14 1 3 17 10 -F 2 7 1 9 24 17 -F 2 4 1 11 13 6 -F 2 3 2 11 11 4 -F 2 8 4 3 12 5 -F 2 4 4 11 8 1 -F 2 6 5 3 10 3 -F 2 3 5 11 11 4 -F 2 3 6 11 17 10 -F 2 11 7 3 18 11 -F 2 6 7 9 23 16 -F 2 3 7 11 14 7 -F 2 4 8 11 10 3 -F 2 11 12 3 8 1 -F 2 5 12 9 14 7 -F 2 12 0 6 14 8 -F 2 6 0 9 14 8 -F 2 8 1 9 24 18 -F 2 20 3 4 12 6 -F 2 10 3 6 19 13 -F 2 5 3 9 10 4 -F 2 6 5 9 16 10 -F 2 5 6 9 22 16 -F 2 7 7 9 23 17 -F 2 7 11 9 15 9 -F 2 6 12 9 14 8 -F 2 18 0 4 6 1 -F 2 9 0 10 14 9 -F 2 14 1 4 6 1 -F 2 7 1 10 6 1 -F 2 14 2 4 17 12 -F 2 7 2 10 24 19 -F 2 28 3 2 6 1 -F 2 14 3 4 12 7 -F 2 7 3 10 19 14 -F 2 7 4 10 10 5 -F 2 9 5 10 22 17 -F 2 15 7 4 6 1 -F 2 8 8 10 23 18 -F 2 6 11 10 14 9 -F 2 9 12 10 15 10 -F 2 14 0 4 6 2 -F 2 7 0 10 14 10 -F 2 6 1 10 6 2 -F 2 3 1 12 11 7 -F 2 7 2 10 24 20 -F 2 4 2 12 13 9 -F 2 19 3 0 6 2 -F 2 9 3 10 19 15 -F 2 5 3 12 8 4 -F 2 7 4 10 10 6 -F 2 3 4 12 6 2 -F 2 8 5 10 22 18 -F 2 4 5 12 17 13 -F 2 4 6 12 11 7 -F 2 9 7 6 5 1 -F 2 5 7 12 10 6 -F 2 13 8 2 6 2 -F 2 6 8 10 23 19 -F 2 3 8 12 14 10 -F 2 14 9 2 6 2 -F 2 7 9 10 27 23 -F 2 3 9 12 14 10 -F 2 5 11 10 14 10 -F 2 3 11 12 7 3 -F 2 10 12 10 15 11 -F 2 11 0 7 12 9 -F 2 6 0 10 14 11 -F 2 3 0 12 4 1 -F 2 6 1 7 6 3 -F 2 16 2 0 11 8 -F 2 8 2 7 22 19 -F 2 32 3 0 6 3 -F 2 16 3 7 18 15 -F 2 8 3 10 19 16 -F 2 8 4 7 6 3 -F 2 14 5 7 25 22 -F 2 7 5 10 22 19 -F 2 7 6 7 5 2 -F 2 7 7 6 5 2 -F 2 11 8 7 23 20 -F 2 6 8 10 23 20 -F 2 10 9 7 23 20 -F 2 5 9 10 27 24 -F 2 6 11 0 4 1 -F 2 7 12 0 4 1 -F 2 14 0 7 12 10 -F 2 7 0 10 14 12 -F 2 4 0 12 4 2 -F 2 17 1 7 6 4 -F 2 8 1 10 6 4 -F 2 7 2 10 24 22 -F 2 40 3 0 6 4 -F 2 20 3 7 18 16 -F 2 10 3 10 19 17 -F 2 6 4 7 6 4 -F 2 14 5 7 25 23 -F 2 7 5 10 22 20 -F 2 4 6 7 5 3 -F 2 13 8 7 23 21 -F 2 7 8 10 23 21 -F 2 7 11 0 4 2 -F 2 7 12 0 4 2 -F 2 3 0 8 12 11 -F 2 27 1 7 6 5 -F 2 13 1 8 22 21 -F 2 7 1 10 6 5 -F 2 6 2 8 6 5 -F 2 27 3 7 18 17 -F 2 14 3 8 6 5 -F 2 7 3 10 19 18 -F 2 4 4 8 18 17 -F 2 8 5 8 5 4 -F 2 4 6 7 5 4 -F 2 2 6 8 25 24 -F 2 4 7 8 23 22 -F 2 6 8 10 23 22 -F 2 10 9 8 12 11 -F 2 8 11 8 10 9 -F 2 6 12 8 14 13 -go - -engine > player2: P 11.803996 11.215721 1 21 3 -P 9.319567 21.808874 1 41 5 -P 14.288424 0.622569 1 44 5 -P 11.865493 5.273785 1 22 3 -P 11.742498 17.157658 1 32 3 -P 4.254093 0.000000 1 39 1 -P 19.353899 22.431443 1 20 1 -P 14.743614 22.324001 1 17 3 -P 8.864377 0.107441 1 22 3 -P 19.854347 0.711934 1 19 1 -P 3.753644 21.719509 0 68 1 -P 8.864814 9.736624 1 16 5 -P 14.743177 12.694819 1 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 145 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 13 6 5 28 2 -F 1 9 6 5 28 3 -F 1 8 6 5 28 4 -F 1 17 7 5 25 1 -F 1 11 6 5 28 5 -F 1 11 7 5 25 2 -F 1 3 1 5 23 1 -F 1 6 6 2 23 1 -F 1 3 6 5 28 6 -F 1 5 7 5 25 3 -F 1 10 1 2 22 1 -F 1 2 6 2 23 2 -F 1 19 7 2 22 1 -F 1 5 7 5 25 4 -F 1 13 1 2 22 2 -F 1 5 7 9 23 3 -F 1 9 1 9 24 5 -F 1 6 6 9 22 3 -F 1 11 7 9 23 4 -F 1 7 4 9 19 1 -F 1 9 7 9 23 5 -F 1 10 1 9 24 8 -F 1 10 2 4 17 1 -F 1 9 5 4 19 3 -F 1 8 8 4 18 2 -F 1 9 1 9 24 9 -F 1 15 2 4 17 2 -F 1 22 5 4 19 4 -F 1 6 5 9 16 1 -F 1 6 7 9 23 8 -F 1 8 8 4 18 3 -F 1 15 2 1 22 8 -F 1 20 3 1 17 3 -F 1 5 3 10 19 5 -F 1 17 5 1 23 9 -F 1 9 5 9 16 2 -F 1 6 8 1 22 8 -F 1 9 1 3 17 4 -F 1 6 2 1 22 9 -F 1 18 5 1 23 10 -F 1 7 7 3 18 5 -F 1 4 8 1 22 9 -F 2 0 3 1 17 5 -F 1 8 0 9 14 2 -F 1 8 1 3 17 5 -F 1 6 5 9 16 4 -F 1 8 6 3 19 7 -F 1 9 7 3 18 6 -F 1 5 12 9 14 2 -F 1 7 0 6 14 3 -F 1 7 1 3 17 6 -F 1 6 2 6 23 12 -F 1 14 5 0 14 3 -F 1 3 5 6 28 17 -F 1 14 6 0 14 3 -F 1 7 6 3 19 8 -F 1 12 7 3 18 7 -F 1 5 8 6 25 14 -F 1 6 11 6 17 6 -F 1 12 0 2 11 1 -F 1 14 4 2 17 7 -F 1 7 4 3 12 2 -F 1 12 5 2 11 1 -F 1 13 7 2 22 12 -F 1 7 7 3 18 8 -F 1 8 0 9 14 5 -F 1 7 1 3 17 8 -F 1 25 4 2 17 8 -F 1 13 4 3 12 3 -F 1 6 4 9 19 10 -F 1 8 5 3 10 1 -F 1 12 7 3 18 9 -F 1 19 1 3 17 9 -F 1 9 1 9 24 16 -F 1 5 1 11 13 5 -F 1 17 4 3 12 4 -F 1 8 4 9 19 11 -F 1 9 5 3 10 2 -F 1 5 5 11 11 3 -F 1 5 6 3 19 11 -F 1 10 7 3 18 10 -F 1 5 7 11 14 6 -F 1 7 8 9 12 4 -F 1 14 1 3 17 10 -F 1 7 1 9 24 17 -F 1 4 1 11 13 6 -F 1 3 2 11 11 4 -F 1 8 4 3 12 5 -F 1 4 4 11 8 1 -F 1 6 5 3 10 3 -F 1 3 5 11 11 4 -F 1 3 6 11 17 10 -F 1 11 7 3 18 11 -F 1 6 7 9 23 16 -F 1 3 7 11 14 7 -F 1 4 8 11 10 3 -F 1 11 12 3 8 1 -F 1 5 12 9 14 7 -F 1 12 0 6 14 8 -F 1 6 0 9 14 8 -F 1 8 1 9 24 18 -F 1 20 3 4 12 6 -F 1 10 3 6 19 13 -F 1 5 3 9 10 4 -F 1 6 5 9 16 10 -F 1 5 6 9 22 16 -F 1 7 7 9 23 17 -F 1 7 11 9 15 9 -F 1 6 12 9 14 8 -F 1 18 0 4 6 1 -F 1 9 0 10 14 9 -F 1 14 1 4 6 1 -F 1 7 1 10 6 1 -F 1 14 2 4 17 12 -F 1 7 2 10 24 19 -F 1 28 3 2 6 1 -F 1 14 3 4 12 7 -F 1 7 3 10 19 14 -F 1 7 4 10 10 5 -F 1 9 5 10 22 17 -F 1 15 7 4 6 1 -F 1 8 8 10 23 18 -F 1 6 11 10 14 9 -F 1 9 12 10 15 10 -F 1 14 0 4 6 2 -F 1 7 0 10 14 10 -F 1 6 1 10 6 2 -F 1 3 1 12 11 7 -F 1 7 2 10 24 20 -F 1 4 2 12 13 9 -F 1 19 3 0 6 2 -F 1 9 3 10 19 15 -F 1 5 3 12 8 4 -F 1 7 4 10 10 6 -F 1 3 4 12 6 2 -F 1 8 5 10 22 18 -F 1 4 5 12 17 13 -F 1 4 6 12 11 7 -F 1 9 7 6 5 1 -F 1 5 7 12 10 6 -F 1 13 8 2 6 2 -F 1 6 8 10 23 19 -F 1 3 8 12 14 10 -F 1 14 9 2 6 2 -F 1 7 9 10 27 23 -F 1 3 9 12 14 10 -F 1 5 11 10 14 10 -F 1 3 11 12 7 3 -F 1 10 12 10 15 11 -F 1 11 0 7 12 9 -F 1 6 0 10 14 11 -F 1 3 0 12 4 1 -F 1 6 1 7 6 3 -F 1 16 2 0 11 8 -F 1 8 2 7 22 19 -F 1 32 3 0 6 3 -F 1 16 3 7 18 15 -F 1 8 3 10 19 16 -F 1 8 4 7 6 3 -F 1 14 5 7 25 22 -F 1 7 5 10 22 19 -F 1 7 6 7 5 2 -F 1 7 7 6 5 2 -F 1 11 8 7 23 20 -F 1 6 8 10 23 20 -F 1 10 9 7 23 20 -F 1 5 9 10 27 24 -F 1 6 11 0 4 1 -F 1 7 12 0 4 1 -F 1 14 0 7 12 10 -F 1 7 0 10 14 12 -F 1 4 0 12 4 2 -F 1 17 1 7 6 4 -F 1 8 1 10 6 4 -F 1 7 2 10 24 22 -F 1 40 3 0 6 4 -F 1 20 3 7 18 16 -F 1 10 3 10 19 17 -F 1 6 4 7 6 4 -F 1 14 5 7 25 23 -F 1 7 5 10 22 20 -F 1 4 6 7 5 3 -F 1 13 8 7 23 21 -F 1 7 8 10 23 21 -F 1 7 11 0 4 2 -F 1 7 12 0 4 2 -F 1 3 0 8 12 11 -F 1 27 1 7 6 5 -F 1 13 1 8 22 21 -F 1 7 1 10 6 5 -F 1 6 2 8 6 5 -F 1 27 3 7 18 17 -F 1 14 3 8 6 5 -F 1 7 3 10 19 18 -F 1 4 4 8 18 17 -F 1 8 5 8 5 4 -F 1 4 6 7 5 4 -F 1 2 6 8 25 24 -F 1 4 7 8 23 22 -F 1 6 8 10 23 22 -F 1 10 9 8 12 11 -F 1 8 11 8 10 9 -F 1 6 12 8 14 13 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 2 0 -player2 > engine: 0 8 10 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 1 0 0.05037544355714904 -player2 > engine: 0 10 5 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 2 0 -player2 > engine: 1 8 20 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 1 0 0.07185662694633879 -player2 > engine: 1 10 10 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 1 0 0.05549243454274729 -player2 > engine: 1 13 5 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 2 0 -player2 > engine: 2 1 22 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 2 0 -player2 > engine: 2 8 11 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 1 0 0.016962825727342454 -player2 > engine: 2 10 5 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 2 0 -player2 > engine: 3 8 11 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 1 0 0.03635537238221285 -player2 > engine: 3 10 5 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 2 0 -player2 > engine: 4 8 16 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 1 0 0.0724670761373047 -player2 > engine: 4 10 8 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 2 0 -player2 > engine: 5 8 19 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 1 0 0.0920586788055475 -player2 > engine: 5 10 10 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 2 0 -player2 > engine: 6 7 10 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 1 0 0.06056981686559169 -player2 > engine: 7 10 8 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 2 0 -player2 > engine: 8 8 11 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 1 0 0.030019035447943272 -player2 > engine: 8 10 5 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 2 0 -player2 > engine: 9 8 9 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0.0755631693383152 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 1 0 0.030704475212287592 -player2 > engine: 11 10 8 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 1 0 0.02812894554203361 -player2 > engine: 12 10 7 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 22 3 -P 9.319567 21.808874 2 11 5 -P 14.288424 0.622569 2 98 5 -P 11.865493 5.273785 2 28 3 -P 11.742498 17.157658 2 68 3 -P 4.254093 0.000000 2 31 1 -P 19.353899 22.431443 2 20 1 -P 14.743614 22.324001 2 12 3 -P 8.864377 0.107441 2 20 3 -P 19.854347 0.711934 2 24 1 -P 3.753644 21.719509 0 61 1 -P 8.864814 9.736624 2 17 5 -P 14.743177 12.694819 2 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 148 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 13 6 5 28 1 -F 2 9 6 5 28 2 -F 2 8 6 5 28 3 -F 2 11 6 5 28 4 -F 2 11 7 5 25 1 -F 2 3 6 5 28 5 -F 2 5 7 5 25 2 -F 2 2 6 2 23 1 -F 2 5 7 5 25 3 -F 2 13 1 2 22 1 -F 2 5 7 9 23 2 -F 2 9 1 9 24 4 -F 2 6 6 9 22 2 -F 2 11 7 9 23 3 -F 2 9 7 9 23 4 -F 2 10 1 9 24 7 -F 2 9 5 4 19 2 -F 2 8 8 4 18 1 -F 2 9 1 9 24 8 -F 2 15 2 4 17 1 -F 2 22 5 4 19 3 -F 2 6 7 9 23 7 -F 2 8 8 4 18 2 -F 2 15 2 1 22 7 -F 2 20 3 1 17 2 -F 2 5 3 10 19 4 -F 2 17 5 1 23 8 -F 2 9 5 9 16 1 -F 2 6 8 1 22 7 -F 2 9 1 3 17 3 -F 2 6 2 1 22 8 -F 2 18 5 1 23 9 -F 2 7 7 3 18 4 -F 2 4 8 1 22 8 -F 1 0 3 1 17 4 -F 2 8 0 9 14 1 -F 2 8 1 3 17 4 -F 2 6 5 9 16 3 -F 2 8 6 3 19 6 -F 2 9 7 3 18 5 -F 2 5 12 9 14 1 -F 2 7 0 6 14 2 -F 2 7 1 3 17 5 -F 2 6 2 6 23 11 -F 2 14 5 0 14 2 -F 2 3 5 6 28 16 -F 2 14 6 0 14 2 -F 2 7 6 3 19 7 -F 2 12 7 3 18 6 -F 2 5 8 6 25 13 -F 2 6 11 6 17 5 -F 2 14 4 2 17 6 -F 2 7 4 3 12 1 -F 2 13 7 2 22 11 -F 2 7 7 3 18 7 -F 2 8 0 9 14 4 -F 2 7 1 3 17 7 -F 2 25 4 2 17 7 -F 2 13 4 3 12 2 -F 2 6 4 9 19 9 -F 2 12 7 3 18 8 -F 2 19 1 3 17 8 -F 2 9 1 9 24 15 -F 2 5 1 11 13 4 -F 2 17 4 3 12 3 -F 2 8 4 9 19 10 -F 2 9 5 3 10 1 -F 2 5 5 11 11 2 -F 2 5 6 3 19 10 -F 2 10 7 3 18 9 -F 2 5 7 11 14 5 -F 2 7 8 9 12 3 -F 2 14 1 3 17 9 -F 2 7 1 9 24 16 -F 2 4 1 11 13 5 -F 2 3 2 11 11 3 -F 2 8 4 3 12 4 -F 2 6 5 3 10 2 -F 2 3 5 11 11 3 -F 2 3 6 11 17 9 -F 2 11 7 3 18 10 -F 2 6 7 9 23 15 -F 2 3 7 11 14 6 -F 2 4 8 11 10 2 -F 2 5 12 9 14 6 -F 2 12 0 6 14 7 -F 2 6 0 9 14 7 -F 2 8 1 9 24 17 -F 2 20 3 4 12 5 -F 2 10 3 6 19 12 -F 2 5 3 9 10 3 -F 2 6 5 9 16 9 -F 2 5 6 9 22 15 -F 2 7 7 9 23 16 -F 2 7 11 9 15 8 -F 2 6 12 9 14 7 -F 2 9 0 10 14 8 -F 2 14 2 4 17 11 -F 2 7 2 10 24 18 -F 2 14 3 4 12 6 -F 2 7 3 10 19 13 -F 2 7 4 10 10 4 -F 2 9 5 10 22 16 -F 2 8 8 10 23 17 -F 2 6 11 10 14 8 -F 2 9 12 10 15 9 -F 2 14 0 4 6 1 -F 2 7 0 10 14 9 -F 2 6 1 10 6 1 -F 2 3 1 12 11 6 -F 2 7 2 10 24 19 -F 2 4 2 12 13 8 -F 2 19 3 0 6 1 -F 2 9 3 10 19 14 -F 2 5 3 12 8 3 -F 2 7 4 10 10 5 -F 2 3 4 12 6 1 -F 2 8 5 10 22 17 -F 2 4 5 12 17 12 -F 2 4 6 12 11 6 -F 2 5 7 12 10 5 -F 2 13 8 2 6 1 -F 2 6 8 10 23 18 -F 2 3 8 12 14 9 -F 2 14 9 2 6 1 -F 2 7 9 10 27 22 -F 2 3 9 12 14 9 -F 2 5 11 10 14 9 -F 2 3 11 12 7 2 -F 2 10 12 10 15 10 -F 2 11 0 7 12 8 -F 2 6 0 10 14 10 -F 2 6 1 7 6 2 -F 2 16 2 0 11 7 -F 2 8 2 7 22 18 -F 2 32 3 0 6 2 -F 2 16 3 7 18 14 -F 2 8 3 10 19 15 -F 2 8 4 7 6 2 -F 2 14 5 7 25 21 -F 2 7 5 10 22 18 -F 2 7 6 7 5 1 -F 2 7 7 6 5 1 -F 2 11 8 7 23 19 -F 2 6 8 10 23 19 -F 2 10 9 7 23 19 -F 2 5 9 10 27 23 -F 2 14 0 7 12 9 -F 2 7 0 10 14 11 -F 2 4 0 12 4 1 -F 2 17 1 7 6 3 -F 2 8 1 10 6 3 -F 2 7 2 10 24 21 -F 2 40 3 0 6 3 -F 2 20 3 7 18 15 -F 2 10 3 10 19 16 -F 2 6 4 7 6 3 -F 2 14 5 7 25 22 -F 2 7 5 10 22 19 -F 2 4 6 7 5 2 -F 2 13 8 7 23 20 -F 2 7 8 10 23 20 -F 2 7 11 0 4 1 -F 2 7 12 0 4 1 -F 2 3 0 8 12 10 -F 2 27 1 7 6 4 -F 2 13 1 8 22 20 -F 2 7 1 10 6 4 -F 2 6 2 8 6 4 -F 2 27 3 7 18 16 -F 2 14 3 8 6 4 -F 2 7 3 10 19 17 -F 2 4 4 8 18 16 -F 2 8 5 8 5 3 -F 2 4 6 7 5 3 -F 2 2 6 8 25 23 -F 2 4 7 8 23 21 -F 2 6 8 10 23 21 -F 2 10 9 8 12 10 -F 2 8 11 8 10 8 -F 2 6 12 8 14 12 -F 2 10 0 8 12 11 -F 2 5 0 10 14 13 -F 2 20 1 8 22 21 -F 2 10 1 10 6 5 -F 2 5 1 13 15 14 -F 2 22 2 1 22 21 -F 2 11 2 8 6 5 -F 2 5 2 10 24 23 -F 2 11 3 8 6 5 -F 2 5 3 10 19 18 -F 2 16 4 8 18 17 -F 2 8 4 10 10 9 -F 2 19 5 8 5 4 -F 2 10 5 10 22 21 -F 2 10 6 7 5 4 -F 2 8 7 10 12 11 -F 2 5 8 10 23 22 -F 2 9 9 8 12 11 -F 2 8 11 10 14 13 -F 2 7 12 10 15 14 -go - -engine > player2: P 11.803996 11.215721 1 22 3 -P 9.319567 21.808874 1 11 5 -P 14.288424 0.622569 1 98 5 -P 11.865493 5.273785 1 28 3 -P 11.742498 17.157658 1 68 3 -P 4.254093 0.000000 1 31 1 -P 19.353899 22.431443 1 20 1 -P 14.743614 22.324001 1 12 3 -P 8.864377 0.107441 1 20 3 -P 19.854347 0.711934 1 24 1 -P 3.753644 21.719509 0 61 1 -P 8.864814 9.736624 1 17 5 -P 14.743177 12.694819 1 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 148 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 13 6 5 28 1 -F 1 9 6 5 28 2 -F 1 8 6 5 28 3 -F 1 11 6 5 28 4 -F 1 11 7 5 25 1 -F 1 3 6 5 28 5 -F 1 5 7 5 25 2 -F 1 2 6 2 23 1 -F 1 5 7 5 25 3 -F 1 13 1 2 22 1 -F 1 5 7 9 23 2 -F 1 9 1 9 24 4 -F 1 6 6 9 22 2 -F 1 11 7 9 23 3 -F 1 9 7 9 23 4 -F 1 10 1 9 24 7 -F 1 9 5 4 19 2 -F 1 8 8 4 18 1 -F 1 9 1 9 24 8 -F 1 15 2 4 17 1 -F 1 22 5 4 19 3 -F 1 6 7 9 23 7 -F 1 8 8 4 18 2 -F 1 15 2 1 22 7 -F 1 20 3 1 17 2 -F 1 5 3 10 19 4 -F 1 17 5 1 23 8 -F 1 9 5 9 16 1 -F 1 6 8 1 22 7 -F 1 9 1 3 17 3 -F 1 6 2 1 22 8 -F 1 18 5 1 23 9 -F 1 7 7 3 18 4 -F 1 4 8 1 22 8 -F 2 0 3 1 17 4 -F 1 8 0 9 14 1 -F 1 8 1 3 17 4 -F 1 6 5 9 16 3 -F 1 8 6 3 19 6 -F 1 9 7 3 18 5 -F 1 5 12 9 14 1 -F 1 7 0 6 14 2 -F 1 7 1 3 17 5 -F 1 6 2 6 23 11 -F 1 14 5 0 14 2 -F 1 3 5 6 28 16 -F 1 14 6 0 14 2 -F 1 7 6 3 19 7 -F 1 12 7 3 18 6 -F 1 5 8 6 25 13 -F 1 6 11 6 17 5 -F 1 14 4 2 17 6 -F 1 7 4 3 12 1 -F 1 13 7 2 22 11 -F 1 7 7 3 18 7 -F 1 8 0 9 14 4 -F 1 7 1 3 17 7 -F 1 25 4 2 17 7 -F 1 13 4 3 12 2 -F 1 6 4 9 19 9 -F 1 12 7 3 18 8 -F 1 19 1 3 17 8 -F 1 9 1 9 24 15 -F 1 5 1 11 13 4 -F 1 17 4 3 12 3 -F 1 8 4 9 19 10 -F 1 9 5 3 10 1 -F 1 5 5 11 11 2 -F 1 5 6 3 19 10 -F 1 10 7 3 18 9 -F 1 5 7 11 14 5 -F 1 7 8 9 12 3 -F 1 14 1 3 17 9 -F 1 7 1 9 24 16 -F 1 4 1 11 13 5 -F 1 3 2 11 11 3 -F 1 8 4 3 12 4 -F 1 6 5 3 10 2 -F 1 3 5 11 11 3 -F 1 3 6 11 17 9 -F 1 11 7 3 18 10 -F 1 6 7 9 23 15 -F 1 3 7 11 14 6 -F 1 4 8 11 10 2 -F 1 5 12 9 14 6 -F 1 12 0 6 14 7 -F 1 6 0 9 14 7 -F 1 8 1 9 24 17 -F 1 20 3 4 12 5 -F 1 10 3 6 19 12 -F 1 5 3 9 10 3 -F 1 6 5 9 16 9 -F 1 5 6 9 22 15 -F 1 7 7 9 23 16 -F 1 7 11 9 15 8 -F 1 6 12 9 14 7 -F 1 9 0 10 14 8 -F 1 14 2 4 17 11 -F 1 7 2 10 24 18 -F 1 14 3 4 12 6 -F 1 7 3 10 19 13 -F 1 7 4 10 10 4 -F 1 9 5 10 22 16 -F 1 8 8 10 23 17 -F 1 6 11 10 14 8 -F 1 9 12 10 15 9 -F 1 14 0 4 6 1 -F 1 7 0 10 14 9 -F 1 6 1 10 6 1 -F 1 3 1 12 11 6 -F 1 7 2 10 24 19 -F 1 4 2 12 13 8 -F 1 19 3 0 6 1 -F 1 9 3 10 19 14 -F 1 5 3 12 8 3 -F 1 7 4 10 10 5 -F 1 3 4 12 6 1 -F 1 8 5 10 22 17 -F 1 4 5 12 17 12 -F 1 4 6 12 11 6 -F 1 5 7 12 10 5 -F 1 13 8 2 6 1 -F 1 6 8 10 23 18 -F 1 3 8 12 14 9 -F 1 14 9 2 6 1 -F 1 7 9 10 27 22 -F 1 3 9 12 14 9 -F 1 5 11 10 14 9 -F 1 3 11 12 7 2 -F 1 10 12 10 15 10 -F 1 11 0 7 12 8 -F 1 6 0 10 14 10 -F 1 6 1 7 6 2 -F 1 16 2 0 11 7 -F 1 8 2 7 22 18 -F 1 32 3 0 6 2 -F 1 16 3 7 18 14 -F 1 8 3 10 19 15 -F 1 8 4 7 6 2 -F 1 14 5 7 25 21 -F 1 7 5 10 22 18 -F 1 7 6 7 5 1 -F 1 7 7 6 5 1 -F 1 11 8 7 23 19 -F 1 6 8 10 23 19 -F 1 10 9 7 23 19 -F 1 5 9 10 27 23 -F 1 14 0 7 12 9 -F 1 7 0 10 14 11 -F 1 4 0 12 4 1 -F 1 17 1 7 6 3 -F 1 8 1 10 6 3 -F 1 7 2 10 24 21 -F 1 40 3 0 6 3 -F 1 20 3 7 18 15 -F 1 10 3 10 19 16 -F 1 6 4 7 6 3 -F 1 14 5 7 25 22 -F 1 7 5 10 22 19 -F 1 4 6 7 5 2 -F 1 13 8 7 23 20 -F 1 7 8 10 23 20 -F 1 7 11 0 4 1 -F 1 7 12 0 4 1 -F 1 3 0 8 12 10 -F 1 27 1 7 6 4 -F 1 13 1 8 22 20 -F 1 7 1 10 6 4 -F 1 6 2 8 6 4 -F 1 27 3 7 18 16 -F 1 14 3 8 6 4 -F 1 7 3 10 19 17 -F 1 4 4 8 18 16 -F 1 8 5 8 5 3 -F 1 4 6 7 5 3 -F 1 2 6 8 25 23 -F 1 4 7 8 23 21 -F 1 6 8 10 23 21 -F 1 10 9 8 12 10 -F 1 8 11 8 10 8 -F 1 6 12 8 14 12 -F 1 10 0 8 12 11 -F 1 5 0 10 14 13 -F 1 20 1 8 22 21 -F 1 10 1 10 6 5 -F 1 5 1 13 15 14 -F 1 22 2 1 22 21 -F 1 11 2 8 6 5 -F 1 5 2 10 24 23 -F 1 11 3 8 6 5 -F 1 5 3 10 19 18 -F 1 16 4 8 18 17 -F 1 8 4 10 10 9 -F 1 19 5 8 5 4 -F 1 10 5 10 22 21 -F 1 10 6 7 5 4 -F 1 8 7 10 12 11 -F 1 5 8 10 23 22 -F 1 9 9 8 12 11 -F 1 8 11 10 14 13 -F 1 7 12 10 15 14 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 1 0 0.05037544355714904 -player2 > engine: 0 10 11 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 5 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 1 0 0.07185662694633879 -player2 > engine: 1 10 5 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 2 0 -player2 > engine: 2 1 49 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 2 0 -player2 > engine: 2 6 24 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 2 0 -player2 > engine: 2 8 12 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 1 0 0.016962825727342454 -player2 > engine: 2 10 6 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 2 0 -player2 > engine: 3 8 14 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 1 0 0.03635537238221285 -player2 > engine: 3 10 7 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 2 0 -player2 > engine: 4 1 34 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 2 0 -player2 > engine: 4 6 17 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 1 0 0.0724670761373047 -player2 > engine: 4 10 8 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 2 0 -player2 > engine: 5 6 15 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 2 0 -player2 > engine: 5 8 8 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 1 0 0.1280697397879352 -player2 > engine: 6 10 10 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 1 0 0.06056981686559169 -player2 > engine: 7 10 6 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 2 0 -player2 > engine: 8 8 10 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 1 0 0.0755631693383152 -player2 > engine: 9 10 12 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 1 0 0.17957565458240535 -player2 > engine: 9 13 6 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 1 0 0.030704475212287592 -player2 > engine: 11 10 8 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 1 0 0.02812894554203361 -player2 > engine: 12 10 7 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 42 3 -P 9.319567 21.808874 2 11 5 -P 14.288424 0.622569 2 54 5 -P 11.865493 5.273785 2 26 3 -P 11.742498 17.157658 2 49 3 -P 4.254093 0.000000 2 33 1 -P 19.353899 22.431443 2 18 1 -P 14.743614 22.324001 2 16 3 -P 8.864377 0.107441 2 23 3 -P 19.854347 0.711934 2 29 1 -P 3.753644 21.719509 0 55 1 -P 8.864814 9.736624 2 14 5 -P 14.743177 12.694819 2 20 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 151 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 9 6 5 28 1 -F 2 8 6 5 28 2 -F 2 11 6 5 28 3 -F 2 3 6 5 28 4 -F 2 5 7 5 25 1 -F 2 5 7 5 25 2 -F 2 5 7 9 23 1 -F 2 9 1 9 24 3 -F 2 6 6 9 22 1 -F 2 11 7 9 23 2 -F 2 9 7 9 23 3 -F 2 10 1 9 24 6 -F 2 9 5 4 19 1 -F 2 9 1 9 24 7 -F 2 22 5 4 19 2 -F 2 6 7 9 23 6 -F 2 8 8 4 18 1 -F 2 15 2 1 22 6 -F 2 20 3 1 17 1 -F 2 5 3 10 19 3 -F 2 17 5 1 23 7 -F 2 6 8 1 22 6 -F 2 9 1 3 17 2 -F 2 6 2 1 22 7 -F 2 18 5 1 23 8 -F 2 7 7 3 18 3 -F 2 4 8 1 22 7 -F 1 0 3 1 17 3 -F 2 8 1 3 17 3 -F 2 6 5 9 16 2 -F 2 8 6 3 19 5 -F 2 9 7 3 18 4 -F 2 7 0 6 14 1 -F 2 7 1 3 17 4 -F 2 6 2 6 23 10 -F 2 14 5 0 14 1 -F 2 3 5 6 28 15 -F 2 14 6 0 14 1 -F 2 7 6 3 19 6 -F 2 12 7 3 18 5 -F 2 5 8 6 25 12 -F 2 6 11 6 17 4 -F 2 14 4 2 17 5 -F 2 13 7 2 22 10 -F 2 7 7 3 18 6 -F 2 8 0 9 14 3 -F 2 7 1 3 17 6 -F 2 25 4 2 17 6 -F 2 13 4 3 12 1 -F 2 6 4 9 19 8 -F 2 12 7 3 18 7 -F 2 19 1 3 17 7 -F 2 9 1 9 24 14 -F 2 5 1 11 13 3 -F 2 17 4 3 12 2 -F 2 8 4 9 19 9 -F 2 5 5 11 11 1 -F 2 5 6 3 19 9 -F 2 10 7 3 18 8 -F 2 5 7 11 14 4 -F 2 7 8 9 12 2 -F 2 14 1 3 17 8 -F 2 7 1 9 24 15 -F 2 4 1 11 13 4 -F 2 3 2 11 11 2 -F 2 8 4 3 12 3 -F 2 6 5 3 10 1 -F 2 3 5 11 11 2 -F 2 3 6 11 17 8 -F 2 11 7 3 18 9 -F 2 6 7 9 23 14 -F 2 3 7 11 14 5 -F 2 4 8 11 10 1 -F 2 5 12 9 14 5 -F 2 12 0 6 14 6 -F 2 6 0 9 14 6 -F 2 8 1 9 24 16 -F 2 20 3 4 12 4 -F 2 10 3 6 19 11 -F 2 5 3 9 10 2 -F 2 6 5 9 16 8 -F 2 5 6 9 22 14 -F 2 7 7 9 23 15 -F 2 7 11 9 15 7 -F 2 6 12 9 14 6 -F 2 9 0 10 14 7 -F 2 14 2 4 17 10 -F 2 7 2 10 24 17 -F 2 14 3 4 12 5 -F 2 7 3 10 19 12 -F 2 7 4 10 10 3 -F 2 9 5 10 22 15 -F 2 8 8 10 23 16 -F 2 6 11 10 14 7 -F 2 9 12 10 15 8 -F 2 7 0 10 14 8 -F 2 3 1 12 11 5 -F 2 7 2 10 24 18 -F 2 4 2 12 13 7 -F 2 9 3 10 19 13 -F 2 5 3 12 8 2 -F 2 7 4 10 10 4 -F 2 8 5 10 22 16 -F 2 4 5 12 17 11 -F 2 4 6 12 11 5 -F 2 5 7 12 10 4 -F 2 6 8 10 23 17 -F 2 3 8 12 14 8 -F 2 7 9 10 27 21 -F 2 3 9 12 14 8 -F 2 5 11 10 14 8 -F 2 3 11 12 7 1 -F 2 10 12 10 15 9 -F 2 11 0 7 12 7 -F 2 6 0 10 14 9 -F 2 6 1 7 6 1 -F 2 16 2 0 11 6 -F 2 8 2 7 22 17 -F 2 32 3 0 6 1 -F 2 16 3 7 18 13 -F 2 8 3 10 19 14 -F 2 8 4 7 6 1 -F 2 14 5 7 25 20 -F 2 7 5 10 22 17 -F 2 11 8 7 23 18 -F 2 6 8 10 23 18 -F 2 10 9 7 23 18 -F 2 5 9 10 27 22 -F 2 14 0 7 12 8 -F 2 7 0 10 14 10 -F 2 17 1 7 6 2 -F 2 8 1 10 6 2 -F 2 7 2 10 24 20 -F 2 40 3 0 6 2 -F 2 20 3 7 18 14 -F 2 10 3 10 19 15 -F 2 6 4 7 6 2 -F 2 14 5 7 25 21 -F 2 7 5 10 22 18 -F 2 4 6 7 5 1 -F 2 13 8 7 23 19 -F 2 7 8 10 23 19 -F 2 3 0 8 12 9 -F 2 27 1 7 6 3 -F 2 13 1 8 22 19 -F 2 7 1 10 6 3 -F 2 6 2 8 6 3 -F 2 27 3 7 18 15 -F 2 14 3 8 6 3 -F 2 7 3 10 19 16 -F 2 4 4 8 18 15 -F 2 8 5 8 5 2 -F 2 4 6 7 5 2 -F 2 2 6 8 25 22 -F 2 4 7 8 23 20 -F 2 6 8 10 23 20 -F 2 10 9 8 12 9 -F 2 8 11 8 10 7 -F 2 6 12 8 14 11 -F 2 10 0 8 12 10 -F 2 5 0 10 14 12 -F 2 20 1 8 22 20 -F 2 10 1 10 6 4 -F 2 5 1 13 15 13 -F 2 22 2 1 22 20 -F 2 11 2 8 6 4 -F 2 5 2 10 24 22 -F 2 11 3 8 6 4 -F 2 5 3 10 19 17 -F 2 16 4 8 18 16 -F 2 8 4 10 10 8 -F 2 19 5 8 5 3 -F 2 10 5 10 22 20 -F 2 10 6 7 5 3 -F 2 8 7 10 12 10 -F 2 5 8 10 23 21 -F 2 9 9 8 12 10 -F 2 8 11 10 14 12 -F 2 7 12 10 15 13 -F 2 11 0 10 14 13 -F 2 5 0 11 4 3 -F 2 5 1 10 6 5 -F 2 49 2 1 22 21 -F 2 24 2 6 23 22 -F 2 12 2 8 6 5 -F 2 6 2 10 24 23 -F 2 14 3 8 6 5 -F 2 7 3 10 19 18 -F 2 34 4 1 6 5 -F 2 17 4 6 10 9 -F 2 8 4 10 10 9 -F 2 15 5 6 28 27 -F 2 8 5 8 5 4 -F 2 10 6 10 16 15 -F 2 6 7 10 12 11 -F 2 12 9 10 27 26 -F 2 6 9 13 23 22 -F 2 8 11 10 14 13 -F 2 7 12 10 15 14 -go - -engine > player2: P 11.803996 11.215721 1 42 3 -P 9.319567 21.808874 1 11 5 -P 14.288424 0.622569 1 54 5 -P 11.865493 5.273785 1 26 3 -P 11.742498 17.157658 1 49 3 -P 4.254093 0.000000 1 33 1 -P 19.353899 22.431443 1 18 1 -P 14.743614 22.324001 1 16 3 -P 8.864377 0.107441 1 23 3 -P 19.854347 0.711934 1 29 1 -P 3.753644 21.719509 0 55 1 -P 8.864814 9.736624 1 14 5 -P 14.743177 12.694819 1 20 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 151 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 9 6 5 28 1 -F 1 8 6 5 28 2 -F 1 11 6 5 28 3 -F 1 3 6 5 28 4 -F 1 5 7 5 25 1 -F 1 5 7 5 25 2 -F 1 5 7 9 23 1 -F 1 9 1 9 24 3 -F 1 6 6 9 22 1 -F 1 11 7 9 23 2 -F 1 9 7 9 23 3 -F 1 10 1 9 24 6 -F 1 9 5 4 19 1 -F 1 9 1 9 24 7 -F 1 22 5 4 19 2 -F 1 6 7 9 23 6 -F 1 8 8 4 18 1 -F 1 15 2 1 22 6 -F 1 20 3 1 17 1 -F 1 5 3 10 19 3 -F 1 17 5 1 23 7 -F 1 6 8 1 22 6 -F 1 9 1 3 17 2 -F 1 6 2 1 22 7 -F 1 18 5 1 23 8 -F 1 7 7 3 18 3 -F 1 4 8 1 22 7 -F 2 0 3 1 17 3 -F 1 8 1 3 17 3 -F 1 6 5 9 16 2 -F 1 8 6 3 19 5 -F 1 9 7 3 18 4 -F 1 7 0 6 14 1 -F 1 7 1 3 17 4 -F 1 6 2 6 23 10 -F 1 14 5 0 14 1 -F 1 3 5 6 28 15 -F 1 14 6 0 14 1 -F 1 7 6 3 19 6 -F 1 12 7 3 18 5 -F 1 5 8 6 25 12 -F 1 6 11 6 17 4 -F 1 14 4 2 17 5 -F 1 13 7 2 22 10 -F 1 7 7 3 18 6 -F 1 8 0 9 14 3 -F 1 7 1 3 17 6 -F 1 25 4 2 17 6 -F 1 13 4 3 12 1 -F 1 6 4 9 19 8 -F 1 12 7 3 18 7 -F 1 19 1 3 17 7 -F 1 9 1 9 24 14 -F 1 5 1 11 13 3 -F 1 17 4 3 12 2 -F 1 8 4 9 19 9 -F 1 5 5 11 11 1 -F 1 5 6 3 19 9 -F 1 10 7 3 18 8 -F 1 5 7 11 14 4 -F 1 7 8 9 12 2 -F 1 14 1 3 17 8 -F 1 7 1 9 24 15 -F 1 4 1 11 13 4 -F 1 3 2 11 11 2 -F 1 8 4 3 12 3 -F 1 6 5 3 10 1 -F 1 3 5 11 11 2 -F 1 3 6 11 17 8 -F 1 11 7 3 18 9 -F 1 6 7 9 23 14 -F 1 3 7 11 14 5 -F 1 4 8 11 10 1 -F 1 5 12 9 14 5 -F 1 12 0 6 14 6 -F 1 6 0 9 14 6 -F 1 8 1 9 24 16 -F 1 20 3 4 12 4 -F 1 10 3 6 19 11 -F 1 5 3 9 10 2 -F 1 6 5 9 16 8 -F 1 5 6 9 22 14 -F 1 7 7 9 23 15 -F 1 7 11 9 15 7 -F 1 6 12 9 14 6 -F 1 9 0 10 14 7 -F 1 14 2 4 17 10 -F 1 7 2 10 24 17 -F 1 14 3 4 12 5 -F 1 7 3 10 19 12 -F 1 7 4 10 10 3 -F 1 9 5 10 22 15 -F 1 8 8 10 23 16 -F 1 6 11 10 14 7 -F 1 9 12 10 15 8 -F 1 7 0 10 14 8 -F 1 3 1 12 11 5 -F 1 7 2 10 24 18 -F 1 4 2 12 13 7 -F 1 9 3 10 19 13 -F 1 5 3 12 8 2 -F 1 7 4 10 10 4 -F 1 8 5 10 22 16 -F 1 4 5 12 17 11 -F 1 4 6 12 11 5 -F 1 5 7 12 10 4 -F 1 6 8 10 23 17 -F 1 3 8 12 14 8 -F 1 7 9 10 27 21 -F 1 3 9 12 14 8 -F 1 5 11 10 14 8 -F 1 3 11 12 7 1 -F 1 10 12 10 15 9 -F 1 11 0 7 12 7 -F 1 6 0 10 14 9 -F 1 6 1 7 6 1 -F 1 16 2 0 11 6 -F 1 8 2 7 22 17 -F 1 32 3 0 6 1 -F 1 16 3 7 18 13 -F 1 8 3 10 19 14 -F 1 8 4 7 6 1 -F 1 14 5 7 25 20 -F 1 7 5 10 22 17 -F 1 11 8 7 23 18 -F 1 6 8 10 23 18 -F 1 10 9 7 23 18 -F 1 5 9 10 27 22 -F 1 14 0 7 12 8 -F 1 7 0 10 14 10 -F 1 17 1 7 6 2 -F 1 8 1 10 6 2 -F 1 7 2 10 24 20 -F 1 40 3 0 6 2 -F 1 20 3 7 18 14 -F 1 10 3 10 19 15 -F 1 6 4 7 6 2 -F 1 14 5 7 25 21 -F 1 7 5 10 22 18 -F 1 4 6 7 5 1 -F 1 13 8 7 23 19 -F 1 7 8 10 23 19 -F 1 3 0 8 12 9 -F 1 27 1 7 6 3 -F 1 13 1 8 22 19 -F 1 7 1 10 6 3 -F 1 6 2 8 6 3 -F 1 27 3 7 18 15 -F 1 14 3 8 6 3 -F 1 7 3 10 19 16 -F 1 4 4 8 18 15 -F 1 8 5 8 5 2 -F 1 4 6 7 5 2 -F 1 2 6 8 25 22 -F 1 4 7 8 23 20 -F 1 6 8 10 23 20 -F 1 10 9 8 12 9 -F 1 8 11 8 10 7 -F 1 6 12 8 14 11 -F 1 10 0 8 12 10 -F 1 5 0 10 14 12 -F 1 20 1 8 22 20 -F 1 10 1 10 6 4 -F 1 5 1 13 15 13 -F 1 22 2 1 22 20 -F 1 11 2 8 6 4 -F 1 5 2 10 24 22 -F 1 11 3 8 6 4 -F 1 5 3 10 19 17 -F 1 16 4 8 18 16 -F 1 8 4 10 10 8 -F 1 19 5 8 5 3 -F 1 10 5 10 22 20 -F 1 10 6 7 5 3 -F 1 8 7 10 12 10 -F 1 5 8 10 23 21 -F 1 9 9 8 12 10 -F 1 8 11 10 14 12 -F 1 7 12 10 15 13 -F 1 11 0 10 14 13 -F 1 5 0 11 4 3 -F 1 5 1 10 6 5 -F 1 49 2 1 22 21 -F 1 24 2 6 23 22 -F 1 12 2 8 6 5 -F 1 6 2 10 24 23 -F 1 14 3 8 6 5 -F 1 7 3 10 19 18 -F 1 34 4 1 6 5 -F 1 17 4 6 10 9 -F 1 8 4 10 10 9 -F 1 15 5 6 28 27 -F 1 8 5 8 5 4 -F 1 10 6 10 16 15 -F 1 6 7 10 12 11 -F 1 12 9 10 27 26 -F 1 6 9 13 23 22 -F 1 8 11 10 14 13 -F 1 7 12 10 15 14 -go - -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 2 0 -player2 > engine: 0 1 21 -player1 > engine: go -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 10 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 1 0 0.05037544355714904 -player2 > engine: 0 10 5 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 2 0 -player2 > engine: 1 2 5 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 2 0 -player2 > engine: 2 1 27 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 13 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 1 0 0.016962825727342454 -player2 > engine: 2 10 7 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 2 0 -player2 > engine: 3 2 13 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 1 0 0.03635537238221285 -player2 > engine: 3 10 6 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 2 0 -player2 > engine: 4 1 24 -player2 > engine: comparing 4 and 2, gives 0 2 0 -player2 > engine: 4 2 12 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 1 0 0.0724670761373047 -player2 > engine: 4 10 6 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 2 0 -player2 > engine: 5 2 16 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 1 0 0.0920586788055475 -player2 > engine: 5 10 8 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 2 0 -player2 > engine: 6 2 9 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 2 0 -player2 > engine: 7 2 8 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 2 0 -player2 > engine: 8 2 11 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 1 0 0.030019035447943272 -player2 > engine: 8 10 6 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 2 0 -player2 > engine: 9 2 14 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 1 0 0.0755631693383152 -player2 > engine: 9 10 7 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 7 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 10 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 69 3 -P 9.319567 21.808874 2 31 5 -P 14.288424 0.622569 2 25 5 -P 11.865493 5.273785 2 29 3 -P 11.742498 17.157658 2 27 3 -P 4.254093 0.000000 2 24 1 -P 19.353899 22.431443 2 17 1 -P 14.743614 22.324001 2 29 3 -P 8.864377 0.107441 2 9 3 -P 19.854347 0.711934 2 20 1 -P 3.753644 21.719509 0 55 1 -P 8.864814 9.736624 2 21 5 -P 14.743177 12.694819 2 18 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 154 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 8 6 5 28 1 -F 2 11 6 5 28 2 -F 2 3 6 5 28 3 -F 2 5 7 5 25 1 -F 2 9 1 9 24 2 -F 2 11 7 9 23 1 -F 2 9 7 9 23 2 -F 2 10 1 9 24 5 -F 2 9 1 9 24 6 -F 2 22 5 4 19 1 -F 2 6 7 9 23 5 -F 2 15 2 1 22 5 -F 2 5 3 10 19 2 -F 2 17 5 1 23 6 -F 2 6 8 1 22 5 -F 2 9 1 3 17 1 -F 2 6 2 1 22 6 -F 2 18 5 1 23 7 -F 2 7 7 3 18 2 -F 2 4 8 1 22 6 -F 1 0 3 1 17 2 -F 2 8 1 3 17 2 -F 2 6 5 9 16 1 -F 2 8 6 3 19 4 -F 2 9 7 3 18 3 -F 2 7 1 3 17 3 -F 2 6 2 6 23 9 -F 2 3 5 6 28 14 -F 2 7 6 3 19 5 -F 2 12 7 3 18 4 -F 2 5 8 6 25 11 -F 2 6 11 6 17 3 -F 2 14 4 2 17 4 -F 2 13 7 2 22 9 -F 2 7 7 3 18 5 -F 2 8 0 9 14 2 -F 2 7 1 3 17 5 -F 2 25 4 2 17 5 -F 2 6 4 9 19 7 -F 2 12 7 3 18 6 -F 2 19 1 3 17 6 -F 2 9 1 9 24 13 -F 2 5 1 11 13 2 -F 2 17 4 3 12 1 -F 2 8 4 9 19 8 -F 2 5 6 3 19 8 -F 2 10 7 3 18 7 -F 2 5 7 11 14 3 -F 2 7 8 9 12 1 -F 2 14 1 3 17 7 -F 2 7 1 9 24 14 -F 2 4 1 11 13 3 -F 2 3 2 11 11 1 -F 2 8 4 3 12 2 -F 2 3 5 11 11 1 -F 2 3 6 11 17 7 -F 2 11 7 3 18 8 -F 2 6 7 9 23 13 -F 2 3 7 11 14 4 -F 2 5 12 9 14 4 -F 2 12 0 6 14 5 -F 2 6 0 9 14 5 -F 2 8 1 9 24 15 -F 2 20 3 4 12 3 -F 2 10 3 6 19 10 -F 2 5 3 9 10 1 -F 2 6 5 9 16 7 -F 2 5 6 9 22 13 -F 2 7 7 9 23 14 -F 2 7 11 9 15 6 -F 2 6 12 9 14 5 -F 2 9 0 10 14 6 -F 2 14 2 4 17 9 -F 2 7 2 10 24 16 -F 2 14 3 4 12 4 -F 2 7 3 10 19 11 -F 2 7 4 10 10 2 -F 2 9 5 10 22 14 -F 2 8 8 10 23 15 -F 2 6 11 10 14 6 -F 2 9 12 10 15 7 -F 2 7 0 10 14 7 -F 2 3 1 12 11 4 -F 2 7 2 10 24 17 -F 2 4 2 12 13 6 -F 2 9 3 10 19 12 -F 2 5 3 12 8 1 -F 2 7 4 10 10 3 -F 2 8 5 10 22 15 -F 2 4 5 12 17 10 -F 2 4 6 12 11 4 -F 2 5 7 12 10 3 -F 2 6 8 10 23 16 -F 2 3 8 12 14 7 -F 2 7 9 10 27 20 -F 2 3 9 12 14 7 -F 2 5 11 10 14 7 -F 2 10 12 10 15 8 -F 2 11 0 7 12 6 -F 2 6 0 10 14 8 -F 2 16 2 0 11 5 -F 2 8 2 7 22 16 -F 2 16 3 7 18 12 -F 2 8 3 10 19 13 -F 2 14 5 7 25 19 -F 2 7 5 10 22 16 -F 2 11 8 7 23 17 -F 2 6 8 10 23 17 -F 2 10 9 7 23 17 -F 2 5 9 10 27 21 -F 2 14 0 7 12 7 -F 2 7 0 10 14 9 -F 2 17 1 7 6 1 -F 2 8 1 10 6 1 -F 2 7 2 10 24 19 -F 2 40 3 0 6 1 -F 2 20 3 7 18 13 -F 2 10 3 10 19 14 -F 2 6 4 7 6 1 -F 2 14 5 7 25 20 -F 2 7 5 10 22 17 -F 2 13 8 7 23 18 -F 2 7 8 10 23 18 -F 2 3 0 8 12 8 -F 2 27 1 7 6 2 -F 2 13 1 8 22 18 -F 2 7 1 10 6 2 -F 2 6 2 8 6 2 -F 2 27 3 7 18 14 -F 2 14 3 8 6 2 -F 2 7 3 10 19 15 -F 2 4 4 8 18 14 -F 2 8 5 8 5 1 -F 2 4 6 7 5 1 -F 2 2 6 8 25 21 -F 2 4 7 8 23 19 -F 2 6 8 10 23 19 -F 2 10 9 8 12 8 -F 2 8 11 8 10 6 -F 2 6 12 8 14 10 -F 2 10 0 8 12 9 -F 2 5 0 10 14 11 -F 2 20 1 8 22 19 -F 2 10 1 10 6 3 -F 2 5 1 13 15 12 -F 2 22 2 1 22 19 -F 2 11 2 8 6 3 -F 2 5 2 10 24 21 -F 2 11 3 8 6 3 -F 2 5 3 10 19 16 -F 2 16 4 8 18 15 -F 2 8 4 10 10 7 -F 2 19 5 8 5 2 -F 2 10 5 10 22 19 -F 2 10 6 7 5 2 -F 2 8 7 10 12 9 -F 2 5 8 10 23 20 -F 2 9 9 8 12 9 -F 2 8 11 10 14 11 -F 2 7 12 10 15 12 -F 2 11 0 10 14 12 -F 2 5 0 11 4 2 -F 2 5 1 10 6 4 -F 2 49 2 1 22 20 -F 2 24 2 6 23 21 -F 2 12 2 8 6 4 -F 2 6 2 10 24 22 -F 2 14 3 8 6 4 -F 2 7 3 10 19 17 -F 2 34 4 1 6 4 -F 2 17 4 6 10 8 -F 2 8 4 10 10 8 -F 2 15 5 6 28 26 -F 2 8 5 8 5 3 -F 2 10 6 10 16 14 -F 2 6 7 10 12 10 -F 2 12 9 10 27 25 -F 2 6 9 13 23 21 -F 2 8 11 10 14 12 -F 2 7 12 10 15 13 -F 2 21 0 1 11 10 -F 2 10 0 2 11 10 -F 2 5 0 10 14 13 -F 2 5 1 2 22 21 -F 2 27 2 1 22 21 -F 2 7 2 10 24 23 -F 2 13 3 2 6 5 -F 2 6 3 10 19 18 -F 2 24 4 1 6 5 -F 2 12 4 2 17 16 -F 2 6 4 10 10 9 -F 2 16 5 2 11 10 -F 2 8 5 10 22 21 -F 2 9 6 2 23 22 -F 2 8 7 2 22 21 -F 2 11 8 2 6 5 -F 2 6 8 10 23 22 -F 2 14 9 2 6 5 -F 2 7 9 10 27 26 -F 2 7 11 2 11 10 -F 2 10 12 2 13 12 -go - -engine > player2: P 11.803996 11.215721 1 69 3 -P 9.319567 21.808874 1 31 5 -P 14.288424 0.622569 1 25 5 -P 11.865493 5.273785 1 29 3 -P 11.742498 17.157658 1 27 3 -P 4.254093 0.000000 1 24 1 -P 19.353899 22.431443 1 17 1 -P 14.743614 22.324001 1 29 3 -P 8.864377 0.107441 1 9 3 -P 19.854347 0.711934 1 20 1 -P 3.753644 21.719509 0 55 1 -P 8.864814 9.736624 1 21 5 -P 14.743177 12.694819 1 18 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 154 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 8 6 5 28 1 -F 1 11 6 5 28 2 -F 1 3 6 5 28 3 -F 1 5 7 5 25 1 -F 1 9 1 9 24 2 -F 1 11 7 9 23 1 -F 1 9 7 9 23 2 -F 1 10 1 9 24 5 -F 1 9 1 9 24 6 -F 1 22 5 4 19 1 -F 1 6 7 9 23 5 -F 1 15 2 1 22 5 -F 1 5 3 10 19 2 -F 1 17 5 1 23 6 -F 1 6 8 1 22 5 -F 1 9 1 3 17 1 -F 1 6 2 1 22 6 -F 1 18 5 1 23 7 -F 1 7 7 3 18 2 -F 1 4 8 1 22 6 -F 2 0 3 1 17 2 -F 1 8 1 3 17 2 -F 1 6 5 9 16 1 -F 1 8 6 3 19 4 -F 1 9 7 3 18 3 -F 1 7 1 3 17 3 -F 1 6 2 6 23 9 -F 1 3 5 6 28 14 -F 1 7 6 3 19 5 -F 1 12 7 3 18 4 -F 1 5 8 6 25 11 -F 1 6 11 6 17 3 -F 1 14 4 2 17 4 -F 1 13 7 2 22 9 -F 1 7 7 3 18 5 -F 1 8 0 9 14 2 -F 1 7 1 3 17 5 -F 1 25 4 2 17 5 -F 1 6 4 9 19 7 -F 1 12 7 3 18 6 -F 1 19 1 3 17 6 -F 1 9 1 9 24 13 -F 1 5 1 11 13 2 -F 1 17 4 3 12 1 -F 1 8 4 9 19 8 -F 1 5 6 3 19 8 -F 1 10 7 3 18 7 -F 1 5 7 11 14 3 -F 1 7 8 9 12 1 -F 1 14 1 3 17 7 -F 1 7 1 9 24 14 -F 1 4 1 11 13 3 -F 1 3 2 11 11 1 -F 1 8 4 3 12 2 -F 1 3 5 11 11 1 -F 1 3 6 11 17 7 -F 1 11 7 3 18 8 -F 1 6 7 9 23 13 -F 1 3 7 11 14 4 -F 1 5 12 9 14 4 -F 1 12 0 6 14 5 -F 1 6 0 9 14 5 -F 1 8 1 9 24 15 -F 1 20 3 4 12 3 -F 1 10 3 6 19 10 -F 1 5 3 9 10 1 -F 1 6 5 9 16 7 -F 1 5 6 9 22 13 -F 1 7 7 9 23 14 -F 1 7 11 9 15 6 -F 1 6 12 9 14 5 -F 1 9 0 10 14 6 -F 1 14 2 4 17 9 -F 1 7 2 10 24 16 -F 1 14 3 4 12 4 -F 1 7 3 10 19 11 -F 1 7 4 10 10 2 -F 1 9 5 10 22 14 -F 1 8 8 10 23 15 -F 1 6 11 10 14 6 -F 1 9 12 10 15 7 -F 1 7 0 10 14 7 -F 1 3 1 12 11 4 -F 1 7 2 10 24 17 -F 1 4 2 12 13 6 -F 1 9 3 10 19 12 -F 1 5 3 12 8 1 -F 1 7 4 10 10 3 -F 1 8 5 10 22 15 -F 1 4 5 12 17 10 -F 1 4 6 12 11 4 -F 1 5 7 12 10 3 -F 1 6 8 10 23 16 -F 1 3 8 12 14 7 -F 1 7 9 10 27 20 -F 1 3 9 12 14 7 -F 1 5 11 10 14 7 -F 1 10 12 10 15 8 -F 1 11 0 7 12 6 -F 1 6 0 10 14 8 -F 1 16 2 0 11 5 -F 1 8 2 7 22 16 -F 1 16 3 7 18 12 -F 1 8 3 10 19 13 -F 1 14 5 7 25 19 -F 1 7 5 10 22 16 -F 1 11 8 7 23 17 -F 1 6 8 10 23 17 -F 1 10 9 7 23 17 -F 1 5 9 10 27 21 -F 1 14 0 7 12 7 -F 1 7 0 10 14 9 -F 1 17 1 7 6 1 -F 1 8 1 10 6 1 -F 1 7 2 10 24 19 -F 1 40 3 0 6 1 -F 1 20 3 7 18 13 -F 1 10 3 10 19 14 -F 1 6 4 7 6 1 -F 1 14 5 7 25 20 -F 1 7 5 10 22 17 -F 1 13 8 7 23 18 -F 1 7 8 10 23 18 -F 1 3 0 8 12 8 -F 1 27 1 7 6 2 -F 1 13 1 8 22 18 -F 1 7 1 10 6 2 -F 1 6 2 8 6 2 -F 1 27 3 7 18 14 -F 1 14 3 8 6 2 -F 1 7 3 10 19 15 -F 1 4 4 8 18 14 -F 1 8 5 8 5 1 -F 1 4 6 7 5 1 -F 1 2 6 8 25 21 -F 1 4 7 8 23 19 -F 1 6 8 10 23 19 -F 1 10 9 8 12 8 -F 1 8 11 8 10 6 -F 1 6 12 8 14 10 -F 1 10 0 8 12 9 -F 1 5 0 10 14 11 -F 1 20 1 8 22 19 -F 1 10 1 10 6 3 -F 1 5 1 13 15 12 -F 1 22 2 1 22 19 -F 1 11 2 8 6 3 -F 1 5 2 10 24 21 -F 1 11 3 8 6 3 -F 1 5 3 10 19 16 -F 1 16 4 8 18 15 -F 1 8 4 10 10 7 -F 1 19 5 8 5 2 -F 1 10 5 10 22 19 -F 1 10 6 7 5 2 -F 1 8 7 10 12 9 -F 1 5 8 10 23 20 -F 1 9 9 8 12 9 -F 1 8 11 10 14 11 -F 1 7 12 10 15 12 -F 1 11 0 10 14 12 -F 1 5 0 11 4 2 -F 1 5 1 10 6 4 -F 1 49 2 1 22 20 -F 1 24 2 6 23 21 -F 1 12 2 8 6 4 -F 1 6 2 10 24 22 -F 1 14 3 8 6 4 -F 1 7 3 10 19 17 -F 1 34 4 1 6 4 -F 1 17 4 6 10 8 -F 1 8 4 10 10 8 -F 1 15 5 6 28 26 -F 1 8 5 8 5 3 -F 1 10 6 10 16 14 -F 1 6 7 10 12 10 -F 1 12 9 10 27 25 -F 1 6 9 13 23 21 -F 1 8 11 10 14 12 -F 1 7 12 10 15 13 -F 1 21 0 1 11 10 -F 1 10 0 2 11 10 -F 1 5 0 10 14 13 -F 1 5 1 2 22 21 -F 1 27 2 1 22 21 -F 1 7 2 10 24 23 -F 1 13 3 2 6 5 -F 1 6 3 10 19 18 -F 1 24 4 1 6 5 -F 1 12 4 2 17 16 -F 1 6 4 10 10 9 -F 1 16 5 2 11 10 -F 1 8 5 10 22 21 -F 1 9 6 2 23 22 -F 1 8 7 2 22 21 -F 1 11 8 2 6 5 -F 1 6 8 10 23 22 -F 1 14 9 2 6 5 -F 1 7 9 10 27 26 -F 1 7 11 2 11 10 -F 1 10 12 2 13 12 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 34 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 2 0 -player2 > engine: 0 6 17 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 1 0 0.05037544355714904 -player2 > engine: 0 10 9 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 2 0 -player2 > engine: 1 1 15 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 2 0 -player2 > engine: 1 6 8 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 12 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 1 0 0.016962825727342454 -player2 > engine: 2 10 6 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 2 0 -player2 > engine: 3 2 14 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 2 0 -player2 > engine: 3 6 7 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0.03635537238221285 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 2 0 -player2 > engine: 4 1 13 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 2 0 -player2 > engine: 4 6 7 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 2 0 -player2 > engine: 5 6 12 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 1 0 0.0920586788055475 -player2 > engine: 5 10 6 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 2 0 -player2 > engine: 6 6 8 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 2 0 -player2 > engine: 7 1 14 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 2 0 -player2 > engine: 7 6 7 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 2 0 -player2 > engine: 8 2 4 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 2 0 -player2 > engine: 9 2 10 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0.0755631693383152 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 2 0 -player2 > engine: 11 6 10 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 1 0 0.030704475212287592 -player2 > engine: 11 10 5 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 2 0 -player2 > engine: 12 6 9 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 52 3 -P 9.319567 21.808874 2 28 5 -P 14.288424 0.622569 2 24 5 -P 11.865493 5.273785 2 37 3 -P 11.742498 17.157658 2 32 3 -P 4.254093 0.000000 2 20 1 -P 19.353899 22.431443 2 18 1 -P 14.743614 22.324001 2 38 3 -P 8.864377 0.107441 2 16 3 -P 19.854347 0.711934 2 40 1 -P 3.753644 21.719509 0 47 1 -P 8.864814 9.736624 2 17 5 -P 14.743177 12.694819 2 19 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 157 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 11 6 5 28 1 -F 2 3 6 5 28 2 -F 2 9 1 9 24 1 -F 2 9 7 9 23 1 -F 2 10 1 9 24 4 -F 2 9 1 9 24 5 -F 2 6 7 9 23 4 -F 2 15 2 1 22 4 -F 2 5 3 10 19 1 -F 2 17 5 1 23 5 -F 2 6 8 1 22 4 -F 2 6 2 1 22 5 -F 2 18 5 1 23 6 -F 2 7 7 3 18 1 -F 2 4 8 1 22 5 -F 1 0 3 1 17 1 -F 2 8 1 3 17 1 -F 2 8 6 3 19 3 -F 2 9 7 3 18 2 -F 2 7 1 3 17 2 -F 2 6 2 6 23 8 -F 2 3 5 6 28 13 -F 2 7 6 3 19 4 -F 2 12 7 3 18 3 -F 2 5 8 6 25 10 -F 2 6 11 6 17 2 -F 2 14 4 2 17 3 -F 2 13 7 2 22 8 -F 2 7 7 3 18 4 -F 2 8 0 9 14 1 -F 2 7 1 3 17 4 -F 2 25 4 2 17 4 -F 2 6 4 9 19 6 -F 2 12 7 3 18 5 -F 2 19 1 3 17 5 -F 2 9 1 9 24 12 -F 2 5 1 11 13 1 -F 2 8 4 9 19 7 -F 2 5 6 3 19 7 -F 2 10 7 3 18 6 -F 2 5 7 11 14 2 -F 2 14 1 3 17 6 -F 2 7 1 9 24 13 -F 2 4 1 11 13 2 -F 2 8 4 3 12 1 -F 2 3 6 11 17 6 -F 2 11 7 3 18 7 -F 2 6 7 9 23 12 -F 2 3 7 11 14 3 -F 2 5 12 9 14 3 -F 2 12 0 6 14 4 -F 2 6 0 9 14 4 -F 2 8 1 9 24 14 -F 2 20 3 4 12 2 -F 2 10 3 6 19 9 -F 2 6 5 9 16 6 -F 2 5 6 9 22 12 -F 2 7 7 9 23 13 -F 2 7 11 9 15 5 -F 2 6 12 9 14 4 -F 2 9 0 10 14 5 -F 2 14 2 4 17 8 -F 2 7 2 10 24 15 -F 2 14 3 4 12 3 -F 2 7 3 10 19 10 -F 2 7 4 10 10 1 -F 2 9 5 10 22 13 -F 2 8 8 10 23 14 -F 2 6 11 10 14 5 -F 2 9 12 10 15 6 -F 2 7 0 10 14 6 -F 2 3 1 12 11 3 -F 2 7 2 10 24 16 -F 2 4 2 12 13 5 -F 2 9 3 10 19 11 -F 2 7 4 10 10 2 -F 2 8 5 10 22 14 -F 2 4 5 12 17 9 -F 2 4 6 12 11 3 -F 2 5 7 12 10 2 -F 2 6 8 10 23 15 -F 2 3 8 12 14 6 -F 2 7 9 10 27 19 -F 2 3 9 12 14 6 -F 2 5 11 10 14 6 -F 2 10 12 10 15 7 -F 2 11 0 7 12 5 -F 2 6 0 10 14 7 -F 2 16 2 0 11 4 -F 2 8 2 7 22 15 -F 2 16 3 7 18 11 -F 2 8 3 10 19 12 -F 2 14 5 7 25 18 -F 2 7 5 10 22 15 -F 2 11 8 7 23 16 -F 2 6 8 10 23 16 -F 2 10 9 7 23 16 -F 2 5 9 10 27 20 -F 2 14 0 7 12 6 -F 2 7 0 10 14 8 -F 2 7 2 10 24 18 -F 2 20 3 7 18 12 -F 2 10 3 10 19 13 -F 2 14 5 7 25 19 -F 2 7 5 10 22 16 -F 2 13 8 7 23 17 -F 2 7 8 10 23 17 -F 2 3 0 8 12 7 -F 2 27 1 7 6 1 -F 2 13 1 8 22 17 -F 2 7 1 10 6 1 -F 2 6 2 8 6 1 -F 2 27 3 7 18 13 -F 2 14 3 8 6 1 -F 2 7 3 10 19 14 -F 2 4 4 8 18 13 -F 2 2 6 8 25 20 -F 2 4 7 8 23 18 -F 2 6 8 10 23 18 -F 2 10 9 8 12 7 -F 2 8 11 8 10 5 -F 2 6 12 8 14 9 -F 2 10 0 8 12 8 -F 2 5 0 10 14 10 -F 2 20 1 8 22 18 -F 2 10 1 10 6 2 -F 2 5 1 13 15 11 -F 2 22 2 1 22 18 -F 2 11 2 8 6 2 -F 2 5 2 10 24 20 -F 2 11 3 8 6 2 -F 2 5 3 10 19 15 -F 2 16 4 8 18 14 -F 2 8 4 10 10 6 -F 2 19 5 8 5 1 -F 2 10 5 10 22 18 -F 2 10 6 7 5 1 -F 2 8 7 10 12 8 -F 2 5 8 10 23 19 -F 2 9 9 8 12 8 -F 2 8 11 10 14 10 -F 2 7 12 10 15 11 -F 2 11 0 10 14 11 -F 2 5 0 11 4 1 -F 2 5 1 10 6 3 -F 2 49 2 1 22 19 -F 2 24 2 6 23 20 -F 2 12 2 8 6 3 -F 2 6 2 10 24 21 -F 2 14 3 8 6 3 -F 2 7 3 10 19 16 -F 2 34 4 1 6 3 -F 2 17 4 6 10 7 -F 2 8 4 10 10 7 -F 2 15 5 6 28 25 -F 2 8 5 8 5 2 -F 2 10 6 10 16 13 -F 2 6 7 10 12 9 -F 2 12 9 10 27 24 -F 2 6 9 13 23 20 -F 2 8 11 10 14 11 -F 2 7 12 10 15 12 -F 2 21 0 1 11 9 -F 2 10 0 2 11 9 -F 2 5 0 10 14 12 -F 2 5 1 2 22 20 -F 2 27 2 1 22 20 -F 2 7 2 10 24 22 -F 2 13 3 2 6 4 -F 2 6 3 10 19 17 -F 2 24 4 1 6 4 -F 2 12 4 2 17 15 -F 2 6 4 10 10 8 -F 2 16 5 2 11 9 -F 2 8 5 10 22 20 -F 2 9 6 2 23 21 -F 2 8 7 2 22 20 -F 2 11 8 2 6 4 -F 2 6 8 10 23 21 -F 2 14 9 2 6 4 -F 2 7 9 10 27 25 -F 2 7 11 2 11 9 -F 2 10 12 2 13 11 -F 2 34 0 2 11 10 -F 2 17 0 6 14 13 -F 2 9 0 10 14 13 -F 2 8 1 6 11 10 -F 2 6 2 10 24 23 -F 2 14 3 2 6 5 -F 2 7 3 6 19 18 -F 2 13 4 1 6 5 -F 2 7 4 6 10 9 -F 2 12 5 6 28 27 -F 2 6 5 10 22 21 -F 2 14 7 1 6 5 -F 2 7 7 6 5 4 -F 2 4 8 2 6 5 -F 2 10 9 2 6 5 -F 2 10 11 6 17 16 -F 2 5 11 10 14 13 -F 2 9 12 6 11 10 -go - -engine > player2: P 11.803996 11.215721 1 52 3 -P 9.319567 21.808874 1 28 5 -P 14.288424 0.622569 1 24 5 -P 11.865493 5.273785 1 37 3 -P 11.742498 17.157658 1 32 3 -P 4.254093 0.000000 1 20 1 -P 19.353899 22.431443 1 18 1 -P 14.743614 22.324001 1 38 3 -P 8.864377 0.107441 1 16 3 -P 19.854347 0.711934 1 40 1 -P 3.753644 21.719509 0 47 1 -P 8.864814 9.736624 1 17 5 -P 14.743177 12.694819 1 19 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 157 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 11 6 5 28 1 -F 1 3 6 5 28 2 -F 1 9 1 9 24 1 -F 1 9 7 9 23 1 -F 1 10 1 9 24 4 -F 1 9 1 9 24 5 -F 1 6 7 9 23 4 -F 1 15 2 1 22 4 -F 1 5 3 10 19 1 -F 1 17 5 1 23 5 -F 1 6 8 1 22 4 -F 1 6 2 1 22 5 -F 1 18 5 1 23 6 -F 1 7 7 3 18 1 -F 1 4 8 1 22 5 -F 2 0 3 1 17 1 -F 1 8 1 3 17 1 -F 1 8 6 3 19 3 -F 1 9 7 3 18 2 -F 1 7 1 3 17 2 -F 1 6 2 6 23 8 -F 1 3 5 6 28 13 -F 1 7 6 3 19 4 -F 1 12 7 3 18 3 -F 1 5 8 6 25 10 -F 1 6 11 6 17 2 -F 1 14 4 2 17 3 -F 1 13 7 2 22 8 -F 1 7 7 3 18 4 -F 1 8 0 9 14 1 -F 1 7 1 3 17 4 -F 1 25 4 2 17 4 -F 1 6 4 9 19 6 -F 1 12 7 3 18 5 -F 1 19 1 3 17 5 -F 1 9 1 9 24 12 -F 1 5 1 11 13 1 -F 1 8 4 9 19 7 -F 1 5 6 3 19 7 -F 1 10 7 3 18 6 -F 1 5 7 11 14 2 -F 1 14 1 3 17 6 -F 1 7 1 9 24 13 -F 1 4 1 11 13 2 -F 1 8 4 3 12 1 -F 1 3 6 11 17 6 -F 1 11 7 3 18 7 -F 1 6 7 9 23 12 -F 1 3 7 11 14 3 -F 1 5 12 9 14 3 -F 1 12 0 6 14 4 -F 1 6 0 9 14 4 -F 1 8 1 9 24 14 -F 1 20 3 4 12 2 -F 1 10 3 6 19 9 -F 1 6 5 9 16 6 -F 1 5 6 9 22 12 -F 1 7 7 9 23 13 -F 1 7 11 9 15 5 -F 1 6 12 9 14 4 -F 1 9 0 10 14 5 -F 1 14 2 4 17 8 -F 1 7 2 10 24 15 -F 1 14 3 4 12 3 -F 1 7 3 10 19 10 -F 1 7 4 10 10 1 -F 1 9 5 10 22 13 -F 1 8 8 10 23 14 -F 1 6 11 10 14 5 -F 1 9 12 10 15 6 -F 1 7 0 10 14 6 -F 1 3 1 12 11 3 -F 1 7 2 10 24 16 -F 1 4 2 12 13 5 -F 1 9 3 10 19 11 -F 1 7 4 10 10 2 -F 1 8 5 10 22 14 -F 1 4 5 12 17 9 -F 1 4 6 12 11 3 -F 1 5 7 12 10 2 -F 1 6 8 10 23 15 -F 1 3 8 12 14 6 -F 1 7 9 10 27 19 -F 1 3 9 12 14 6 -F 1 5 11 10 14 6 -F 1 10 12 10 15 7 -F 1 11 0 7 12 5 -F 1 6 0 10 14 7 -F 1 16 2 0 11 4 -F 1 8 2 7 22 15 -F 1 16 3 7 18 11 -F 1 8 3 10 19 12 -F 1 14 5 7 25 18 -F 1 7 5 10 22 15 -F 1 11 8 7 23 16 -F 1 6 8 10 23 16 -F 1 10 9 7 23 16 -F 1 5 9 10 27 20 -F 1 14 0 7 12 6 -F 1 7 0 10 14 8 -F 1 7 2 10 24 18 -F 1 20 3 7 18 12 -F 1 10 3 10 19 13 -F 1 14 5 7 25 19 -F 1 7 5 10 22 16 -F 1 13 8 7 23 17 -F 1 7 8 10 23 17 -F 1 3 0 8 12 7 -F 1 27 1 7 6 1 -F 1 13 1 8 22 17 -F 1 7 1 10 6 1 -F 1 6 2 8 6 1 -F 1 27 3 7 18 13 -F 1 14 3 8 6 1 -F 1 7 3 10 19 14 -F 1 4 4 8 18 13 -F 1 2 6 8 25 20 -F 1 4 7 8 23 18 -F 1 6 8 10 23 18 -F 1 10 9 8 12 7 -F 1 8 11 8 10 5 -F 1 6 12 8 14 9 -F 1 10 0 8 12 8 -F 1 5 0 10 14 10 -F 1 20 1 8 22 18 -F 1 10 1 10 6 2 -F 1 5 1 13 15 11 -F 1 22 2 1 22 18 -F 1 11 2 8 6 2 -F 1 5 2 10 24 20 -F 1 11 3 8 6 2 -F 1 5 3 10 19 15 -F 1 16 4 8 18 14 -F 1 8 4 10 10 6 -F 1 19 5 8 5 1 -F 1 10 5 10 22 18 -F 1 10 6 7 5 1 -F 1 8 7 10 12 8 -F 1 5 8 10 23 19 -F 1 9 9 8 12 8 -F 1 8 11 10 14 10 -F 1 7 12 10 15 11 -F 1 11 0 10 14 11 -F 1 5 0 11 4 1 -F 1 5 1 10 6 3 -F 1 49 2 1 22 19 -F 1 24 2 6 23 20 -F 1 12 2 8 6 3 -F 1 6 2 10 24 21 -F 1 14 3 8 6 3 -F 1 7 3 10 19 16 -F 1 34 4 1 6 3 -F 1 17 4 6 10 7 -F 1 8 4 10 10 7 -F 1 15 5 6 28 25 -F 1 8 5 8 5 2 -F 1 10 6 10 16 13 -F 1 6 7 10 12 9 -F 1 12 9 10 27 24 -F 1 6 9 13 23 20 -F 1 8 11 10 14 11 -F 1 7 12 10 15 12 -F 1 21 0 1 11 9 -F 1 10 0 2 11 9 -F 1 5 0 10 14 12 -F 1 5 1 2 22 20 -F 1 27 2 1 22 20 -F 1 7 2 10 24 22 -F 1 13 3 2 6 4 -F 1 6 3 10 19 17 -F 1 24 4 1 6 4 -F 1 12 4 2 17 15 -F 1 6 4 10 10 8 -F 1 16 5 2 11 9 -F 1 8 5 10 22 20 -F 1 9 6 2 23 21 -F 1 8 7 2 22 20 -F 1 11 8 2 6 4 -F 1 6 8 10 23 21 -F 1 14 9 2 6 4 -F 1 7 9 10 27 25 -F 1 7 11 2 11 9 -F 1 10 12 2 13 11 -F 1 34 0 2 11 10 -F 1 17 0 6 14 13 -F 1 9 0 10 14 13 -F 1 8 1 6 11 10 -F 1 6 2 10 24 23 -F 1 14 3 2 6 5 -F 1 7 3 6 19 18 -F 1 13 4 1 6 5 -F 1 7 4 6 10 9 -F 1 12 5 6 28 27 -F 1 6 5 10 22 21 -F 1 14 7 1 6 5 -F 1 7 7 6 5 4 -F 1 4 8 2 6 5 -F 1 10 9 2 6 5 -F 1 10 11 6 17 16 -F 1 5 11 10 14 13 -F 1 9 12 6 11 10 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 26 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 1 0 0.05037544355714904 -player2 > engine: 0 10 13 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 6 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 1 0 0.07185662694633879 -player2 > engine: 1 10 14 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 1 0 0.05549243454274729 -player2 > engine: 1 13 7 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 1 0 0.016962825727342454 -player2 > engine: 2 10 12 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 1 0 0.04558863060331812 -player2 > engine: 2 13 6 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 2 0 -player2 > engine: 3 0 18 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 1 0 0.03635537238221285 -player2 > engine: 3 10 9 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 2 0 -player2 > engine: 4 0 16 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 1 0 0.0724670761373047 -player2 > engine: 4 10 8 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 1 0 0.0920586788055475 -player2 > engine: 5 10 10 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 2 0 -player2 > engine: 6 6 9 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 2 0 -player2 > engine: 7 0 19 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 2 0 -player2 > engine: 7 6 9 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 1 0 0.030019035447943272 -player2 > engine: 8 10 8 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 2 0 -player2 > engine: 9 0 20 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 1 0 0.0755631693383152 -player2 > engine: 9 10 10 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 8 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 9 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 36 3 -P 9.319567 21.808874 2 12 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 2 36 3 -P 11.742498 17.157658 2 11 3 -P 4.254093 0.000000 2 22 1 -P 19.353899 22.431443 2 19 1 -P 14.743614 22.324001 2 50 3 -P 8.864377 0.107441 2 50 3 -P 19.854347 0.711934 2 37 1 -P 3.753644 21.719509 0 28 1 -P 8.864814 9.736624 2 24 5 -P 14.743177 12.694819 2 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 160 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 3 6 5 28 1 -F 2 10 1 9 24 3 -F 2 9 1 9 24 4 -F 2 6 7 9 23 3 -F 2 15 2 1 22 3 -F 2 17 5 1 23 4 -F 2 6 8 1 22 3 -F 2 6 2 1 22 4 -F 2 18 5 1 23 5 -F 2 4 8 1 22 4 -F 2 8 6 3 19 2 -F 2 9 7 3 18 1 -F 2 7 1 3 17 1 -F 2 6 2 6 23 7 -F 2 3 5 6 28 12 -F 2 7 6 3 19 3 -F 2 12 7 3 18 2 -F 2 5 8 6 25 9 -F 2 6 11 6 17 1 -F 2 14 4 2 17 2 -F 2 13 7 2 22 7 -F 2 7 7 3 18 3 -F 2 7 1 3 17 3 -F 2 25 4 2 17 3 -F 2 6 4 9 19 5 -F 2 12 7 3 18 4 -F 2 19 1 3 17 4 -F 2 9 1 9 24 11 -F 2 8 4 9 19 6 -F 2 5 6 3 19 6 -F 2 10 7 3 18 5 -F 2 5 7 11 14 1 -F 2 14 1 3 17 5 -F 2 7 1 9 24 12 -F 2 4 1 11 13 1 -F 2 3 6 11 17 5 -F 2 11 7 3 18 6 -F 2 6 7 9 23 11 -F 2 3 7 11 14 2 -F 2 5 12 9 14 2 -F 2 12 0 6 14 3 -F 2 6 0 9 14 3 -F 2 8 1 9 24 13 -F 2 20 3 4 12 1 -F 2 10 3 6 19 8 -F 2 6 5 9 16 5 -F 2 5 6 9 22 11 -F 2 7 7 9 23 12 -F 2 7 11 9 15 4 -F 2 6 12 9 14 3 -F 2 9 0 10 14 4 -F 2 14 2 4 17 7 -F 2 7 2 10 24 14 -F 2 14 3 4 12 2 -F 2 7 3 10 19 9 -F 2 9 5 10 22 12 -F 2 8 8 10 23 13 -F 2 6 11 10 14 4 -F 2 9 12 10 15 5 -F 2 7 0 10 14 5 -F 2 3 1 12 11 2 -F 2 7 2 10 24 15 -F 2 4 2 12 13 4 -F 2 9 3 10 19 10 -F 2 7 4 10 10 1 -F 2 8 5 10 22 13 -F 2 4 5 12 17 8 -F 2 4 6 12 11 2 -F 2 5 7 12 10 1 -F 2 6 8 10 23 14 -F 2 3 8 12 14 5 -F 2 7 9 10 27 18 -F 2 3 9 12 14 5 -F 2 5 11 10 14 5 -F 2 10 12 10 15 6 -F 2 11 0 7 12 4 -F 2 6 0 10 14 6 -F 2 16 2 0 11 3 -F 2 8 2 7 22 14 -F 2 16 3 7 18 10 -F 2 8 3 10 19 11 -F 2 14 5 7 25 17 -F 2 7 5 10 22 14 -F 2 11 8 7 23 15 -F 2 6 8 10 23 15 -F 2 10 9 7 23 15 -F 2 5 9 10 27 19 -F 2 14 0 7 12 5 -F 2 7 0 10 14 7 -F 2 7 2 10 24 17 -F 2 20 3 7 18 11 -F 2 10 3 10 19 12 -F 2 14 5 7 25 18 -F 2 7 5 10 22 15 -F 2 13 8 7 23 16 -F 2 7 8 10 23 16 -F 2 3 0 8 12 6 -F 2 13 1 8 22 16 -F 2 27 3 7 18 12 -F 2 7 3 10 19 13 -F 2 4 4 8 18 12 -F 2 2 6 8 25 19 -F 2 4 7 8 23 17 -F 2 6 8 10 23 17 -F 2 10 9 8 12 6 -F 2 8 11 8 10 4 -F 2 6 12 8 14 8 -F 2 10 0 8 12 7 -F 2 5 0 10 14 9 -F 2 20 1 8 22 17 -F 2 10 1 10 6 1 -F 2 5 1 13 15 10 -F 2 22 2 1 22 17 -F 2 11 2 8 6 1 -F 2 5 2 10 24 19 -F 2 11 3 8 6 1 -F 2 5 3 10 19 14 -F 2 16 4 8 18 13 -F 2 8 4 10 10 5 -F 2 10 5 10 22 17 -F 2 8 7 10 12 7 -F 2 5 8 10 23 18 -F 2 9 9 8 12 7 -F 2 8 11 10 14 9 -F 2 7 12 10 15 10 -F 2 11 0 10 14 10 -F 2 5 1 10 6 2 -F 2 49 2 1 22 18 -F 2 24 2 6 23 19 -F 2 12 2 8 6 2 -F 2 6 2 10 24 20 -F 2 14 3 8 6 2 -F 2 7 3 10 19 15 -F 2 34 4 1 6 2 -F 2 17 4 6 10 6 -F 2 8 4 10 10 6 -F 2 15 5 6 28 24 -F 2 8 5 8 5 1 -F 2 10 6 10 16 12 -F 2 6 7 10 12 8 -F 2 12 9 10 27 23 -F 2 6 9 13 23 19 -F 2 8 11 10 14 10 -F 2 7 12 10 15 11 -F 2 21 0 1 11 8 -F 2 10 0 2 11 8 -F 2 5 0 10 14 11 -F 2 5 1 2 22 19 -F 2 27 2 1 22 19 -F 2 7 2 10 24 21 -F 2 13 3 2 6 3 -F 2 6 3 10 19 16 -F 2 24 4 1 6 3 -F 2 12 4 2 17 14 -F 2 6 4 10 10 7 -F 2 16 5 2 11 8 -F 2 8 5 10 22 19 -F 2 9 6 2 23 20 -F 2 8 7 2 22 19 -F 2 11 8 2 6 3 -F 2 6 8 10 23 20 -F 2 14 9 2 6 3 -F 2 7 9 10 27 24 -F 2 7 11 2 11 8 -F 2 10 12 2 13 10 -F 2 34 0 2 11 9 -F 2 17 0 6 14 12 -F 2 9 0 10 14 12 -F 2 8 1 6 11 9 -F 2 6 2 10 24 22 -F 2 14 3 2 6 4 -F 2 7 3 6 19 17 -F 2 13 4 1 6 4 -F 2 7 4 6 10 8 -F 2 12 5 6 28 26 -F 2 6 5 10 22 20 -F 2 14 7 1 6 4 -F 2 7 7 6 5 3 -F 2 4 8 2 6 4 -F 2 10 9 2 6 4 -F 2 10 11 6 17 15 -F 2 5 11 10 14 12 -F 2 9 12 6 11 9 -F 2 13 0 10 14 13 -F 2 6 0 12 4 3 -F 2 14 1 10 6 5 -F 2 7 1 13 15 14 -F 2 12 2 10 24 23 -F 2 6 2 13 18 17 -F 2 18 3 0 6 5 -F 2 9 3 10 19 18 -F 2 16 4 0 6 5 -F 2 8 4 10 10 9 -F 2 10 5 10 22 21 -F 2 19 7 0 12 11 -F 2 9 7 6 5 4 -F 2 8 8 10 23 22 -F 2 20 9 0 14 13 -F 2 10 9 10 27 26 -F 2 8 11 0 4 3 -F 2 9 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 36 3 -P 9.319567 21.808874 1 12 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 1 36 3 -P 11.742498 17.157658 1 11 3 -P 4.254093 0.000000 1 22 1 -P 19.353899 22.431443 1 19 1 -P 14.743614 22.324001 1 50 3 -P 8.864377 0.107441 1 50 3 -P 19.854347 0.711934 1 37 1 -P 3.753644 21.719509 0 28 1 -P 8.864814 9.736624 1 24 5 -P 14.743177 12.694819 1 15 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 160 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 3 6 5 28 1 -F 1 10 1 9 24 3 -F 1 9 1 9 24 4 -F 1 6 7 9 23 3 -F 1 15 2 1 22 3 -F 1 17 5 1 23 4 -F 1 6 8 1 22 3 -F 1 6 2 1 22 4 -F 1 18 5 1 23 5 -F 1 4 8 1 22 4 -F 1 8 6 3 19 2 -F 1 9 7 3 18 1 -F 1 7 1 3 17 1 -F 1 6 2 6 23 7 -F 1 3 5 6 28 12 -F 1 7 6 3 19 3 -F 1 12 7 3 18 2 -F 1 5 8 6 25 9 -F 1 6 11 6 17 1 -F 1 14 4 2 17 2 -F 1 13 7 2 22 7 -F 1 7 7 3 18 3 -F 1 7 1 3 17 3 -F 1 25 4 2 17 3 -F 1 6 4 9 19 5 -F 1 12 7 3 18 4 -F 1 19 1 3 17 4 -F 1 9 1 9 24 11 -F 1 8 4 9 19 6 -F 1 5 6 3 19 6 -F 1 10 7 3 18 5 -F 1 5 7 11 14 1 -F 1 14 1 3 17 5 -F 1 7 1 9 24 12 -F 1 4 1 11 13 1 -F 1 3 6 11 17 5 -F 1 11 7 3 18 6 -F 1 6 7 9 23 11 -F 1 3 7 11 14 2 -F 1 5 12 9 14 2 -F 1 12 0 6 14 3 -F 1 6 0 9 14 3 -F 1 8 1 9 24 13 -F 1 20 3 4 12 1 -F 1 10 3 6 19 8 -F 1 6 5 9 16 5 -F 1 5 6 9 22 11 -F 1 7 7 9 23 12 -F 1 7 11 9 15 4 -F 1 6 12 9 14 3 -F 1 9 0 10 14 4 -F 1 14 2 4 17 7 -F 1 7 2 10 24 14 -F 1 14 3 4 12 2 -F 1 7 3 10 19 9 -F 1 9 5 10 22 12 -F 1 8 8 10 23 13 -F 1 6 11 10 14 4 -F 1 9 12 10 15 5 -F 1 7 0 10 14 5 -F 1 3 1 12 11 2 -F 1 7 2 10 24 15 -F 1 4 2 12 13 4 -F 1 9 3 10 19 10 -F 1 7 4 10 10 1 -F 1 8 5 10 22 13 -F 1 4 5 12 17 8 -F 1 4 6 12 11 2 -F 1 5 7 12 10 1 -F 1 6 8 10 23 14 -F 1 3 8 12 14 5 -F 1 7 9 10 27 18 -F 1 3 9 12 14 5 -F 1 5 11 10 14 5 -F 1 10 12 10 15 6 -F 1 11 0 7 12 4 -F 1 6 0 10 14 6 -F 1 16 2 0 11 3 -F 1 8 2 7 22 14 -F 1 16 3 7 18 10 -F 1 8 3 10 19 11 -F 1 14 5 7 25 17 -F 1 7 5 10 22 14 -F 1 11 8 7 23 15 -F 1 6 8 10 23 15 -F 1 10 9 7 23 15 -F 1 5 9 10 27 19 -F 1 14 0 7 12 5 -F 1 7 0 10 14 7 -F 1 7 2 10 24 17 -F 1 20 3 7 18 11 -F 1 10 3 10 19 12 -F 1 14 5 7 25 18 -F 1 7 5 10 22 15 -F 1 13 8 7 23 16 -F 1 7 8 10 23 16 -F 1 3 0 8 12 6 -F 1 13 1 8 22 16 -F 1 27 3 7 18 12 -F 1 7 3 10 19 13 -F 1 4 4 8 18 12 -F 1 2 6 8 25 19 -F 1 4 7 8 23 17 -F 1 6 8 10 23 17 -F 1 10 9 8 12 6 -F 1 8 11 8 10 4 -F 1 6 12 8 14 8 -F 1 10 0 8 12 7 -F 1 5 0 10 14 9 -F 1 20 1 8 22 17 -F 1 10 1 10 6 1 -F 1 5 1 13 15 10 -F 1 22 2 1 22 17 -F 1 11 2 8 6 1 -F 1 5 2 10 24 19 -F 1 11 3 8 6 1 -F 1 5 3 10 19 14 -F 1 16 4 8 18 13 -F 1 8 4 10 10 5 -F 1 10 5 10 22 17 -F 1 8 7 10 12 7 -F 1 5 8 10 23 18 -F 1 9 9 8 12 7 -F 1 8 11 10 14 9 -F 1 7 12 10 15 10 -F 1 11 0 10 14 10 -F 1 5 1 10 6 2 -F 1 49 2 1 22 18 -F 1 24 2 6 23 19 -F 1 12 2 8 6 2 -F 1 6 2 10 24 20 -F 1 14 3 8 6 2 -F 1 7 3 10 19 15 -F 1 34 4 1 6 2 -F 1 17 4 6 10 6 -F 1 8 4 10 10 6 -F 1 15 5 6 28 24 -F 1 8 5 8 5 1 -F 1 10 6 10 16 12 -F 1 6 7 10 12 8 -F 1 12 9 10 27 23 -F 1 6 9 13 23 19 -F 1 8 11 10 14 10 -F 1 7 12 10 15 11 -F 1 21 0 1 11 8 -F 1 10 0 2 11 8 -F 1 5 0 10 14 11 -F 1 5 1 2 22 19 -F 1 27 2 1 22 19 -F 1 7 2 10 24 21 -F 1 13 3 2 6 3 -F 1 6 3 10 19 16 -F 1 24 4 1 6 3 -F 1 12 4 2 17 14 -F 1 6 4 10 10 7 -F 1 16 5 2 11 8 -F 1 8 5 10 22 19 -F 1 9 6 2 23 20 -F 1 8 7 2 22 19 -F 1 11 8 2 6 3 -F 1 6 8 10 23 20 -F 1 14 9 2 6 3 -F 1 7 9 10 27 24 -F 1 7 11 2 11 8 -F 1 10 12 2 13 10 -F 1 34 0 2 11 9 -F 1 17 0 6 14 12 -F 1 9 0 10 14 12 -F 1 8 1 6 11 9 -F 1 6 2 10 24 22 -F 1 14 3 2 6 4 -F 1 7 3 6 19 17 -F 1 13 4 1 6 4 -F 1 7 4 6 10 8 -F 1 12 5 6 28 26 -F 1 6 5 10 22 20 -F 1 14 7 1 6 4 -F 1 7 7 6 5 3 -F 1 4 8 2 6 4 -F 1 10 9 2 6 4 -F 1 10 11 6 17 15 -F 1 5 11 10 14 12 -F 1 9 12 6 11 9 -F 1 13 0 10 14 13 -F 1 6 0 12 4 3 -F 1 14 1 10 6 5 -F 1 7 1 13 15 14 -F 1 12 2 10 24 23 -F 1 6 2 13 18 17 -F 1 18 3 0 6 5 -F 1 9 3 10 19 18 -F 1 16 4 0 6 5 -F 1 8 4 10 10 9 -F 1 10 5 10 22 21 -F 1 19 7 0 12 11 -F 1 9 7 6 5 4 -F 1 8 8 10 23 22 -F 1 20 9 0 14 13 -F 1 10 9 10 27 26 -F 1 8 11 0 4 3 -F 1 9 12 0 4 3 -go - -player1 > engine: 15 4 80 -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 2 0 -player2 > engine: 0 5 18 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 1 0 0.05037544355714904 -player2 > engine: 0 10 9 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 2 0 -player2 > engine: 1 5 6 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 2 0 -player2 > engine: 1 7 3 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 2 0 -player2 > engine: 2 5 5 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0.016962825727342454 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 2 0 -player2 > engine: 3 5 18 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 1 0 0.03635537238221285 -player2 > engine: 3 10 9 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 2 0 -player2 > engine: 4 5 5 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 2 0 -player2 > engine: 4 7 3 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0.0724670761373047 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 2 0 -player2 > engine: 5 5 11 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 1 0 0.0920586788055475 -player2 > engine: 5 10 5 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 2 0 -player2 > engine: 6 5 9 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 2 0 -player2 > engine: 6 7 5 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 2 0 -player2 > engine: 7 5 25 -player2 > engine: comparing 7 and 6, gives 0 2 0 -player2 > engine: 7 6 12 -player2 > engine: comparing 7 and 7, gives 0 2 0 -player2 > engine: 7 7 6 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 2 0 -player2 > engine: 8 5 25 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 2 0 -player2 > engine: 8 7 12 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 1 0 0.030019035447943272 -player2 > engine: 8 10 6 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 2 0 -player2 > engine: 9 5 18 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 1 0 0.0755631693383152 -player2 > engine: 9 10 9 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 12 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 2 0 -player2 > engine: 11 5 6 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 7 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 2 0 -player2 > engine: 12 5 4 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 12 3 -P 9.319567 21.808874 2 8 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 2 28 3 -P 11.742498 17.157658 2 26 3 -P 4.254093 0.000000 2 21 1 -P 19.353899 22.431443 2 12 1 -P 14.743614 22.324001 2 16 3 -P 8.864377 0.107441 2 40 3 -P 19.854347 0.711934 2 11 1 -P 3.753644 21.719509 0 11 1 -P 8.864814 9.736624 2 20 5 -P 14.743177 12.694819 2 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 83 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 10 1 9 24 2 -F 2 9 1 9 24 3 -F 2 6 7 9 23 2 -F 2 15 2 1 22 2 -F 2 17 5 1 23 3 -F 2 6 8 1 22 2 -F 2 6 2 1 22 3 -F 2 18 5 1 23 4 -F 2 4 8 1 22 3 -F 2 8 6 3 19 1 -F 2 6 2 6 23 6 -F 2 3 5 6 28 11 -F 2 7 6 3 19 2 -F 2 12 7 3 18 1 -F 2 5 8 6 25 8 -F 2 14 4 2 17 1 -F 2 13 7 2 22 6 -F 2 7 7 3 18 2 -F 2 7 1 3 17 2 -F 2 25 4 2 17 2 -F 2 6 4 9 19 4 -F 2 12 7 3 18 3 -F 2 19 1 3 17 3 -F 2 9 1 9 24 10 -F 2 8 4 9 19 5 -F 2 5 6 3 19 5 -F 2 10 7 3 18 4 -F 2 14 1 3 17 4 -F 2 7 1 9 24 11 -F 2 3 6 11 17 4 -F 2 11 7 3 18 5 -F 2 6 7 9 23 10 -F 2 3 7 11 14 1 -F 2 5 12 9 14 1 -F 2 12 0 6 14 2 -F 2 6 0 9 14 2 -F 2 8 1 9 24 12 -F 2 10 3 6 19 7 -F 2 6 5 9 16 4 -F 2 5 6 9 22 10 -F 2 7 7 9 23 11 -F 2 7 11 9 15 3 -F 2 6 12 9 14 2 -F 2 9 0 10 14 3 -F 2 14 2 4 17 6 -F 2 7 2 10 24 13 -F 2 14 3 4 12 1 -F 2 7 3 10 19 8 -F 2 9 5 10 22 11 -F 2 8 8 10 23 12 -F 2 6 11 10 14 3 -F 2 9 12 10 15 4 -F 2 7 0 10 14 4 -F 2 3 1 12 11 1 -F 2 7 2 10 24 14 -F 2 4 2 12 13 3 -F 2 9 3 10 19 9 -F 2 8 5 10 22 12 -F 2 4 5 12 17 7 -F 2 4 6 12 11 1 -F 2 6 8 10 23 13 -F 2 3 8 12 14 4 -F 2 7 9 10 27 17 -F 2 3 9 12 14 4 -F 2 5 11 10 14 4 -F 2 10 12 10 15 5 -F 2 11 0 7 12 3 -F 2 6 0 10 14 5 -F 2 16 2 0 11 2 -F 2 8 2 7 22 13 -F 2 16 3 7 18 9 -F 2 8 3 10 19 10 -F 2 14 5 7 25 16 -F 2 7 5 10 22 13 -F 2 11 8 7 23 14 -F 2 6 8 10 23 14 -F 2 10 9 7 23 14 -F 2 5 9 10 27 18 -F 2 14 0 7 12 4 -F 2 7 0 10 14 6 -F 2 7 2 10 24 16 -F 2 20 3 7 18 10 -F 2 10 3 10 19 11 -F 2 14 5 7 25 17 -F 2 7 5 10 22 14 -F 2 13 8 7 23 15 -F 2 7 8 10 23 15 -F 2 3 0 8 12 5 -F 2 13 1 8 22 15 -F 2 27 3 7 18 11 -F 2 7 3 10 19 12 -F 2 4 4 8 18 11 -F 2 2 6 8 25 18 -F 2 4 7 8 23 16 -F 2 6 8 10 23 16 -F 2 10 9 8 12 5 -F 2 8 11 8 10 3 -F 2 6 12 8 14 7 -F 2 10 0 8 12 6 -F 2 5 0 10 14 8 -F 2 20 1 8 22 16 -F 2 5 1 13 15 9 -F 2 22 2 1 22 16 -F 2 5 2 10 24 18 -F 2 5 3 10 19 13 -F 2 16 4 8 18 12 -F 2 8 4 10 10 4 -F 2 10 5 10 22 16 -F 2 8 7 10 12 6 -F 2 5 8 10 23 17 -F 2 9 9 8 12 6 -F 2 8 11 10 14 8 -F 2 7 12 10 15 9 -F 2 11 0 10 14 9 -F 2 5 1 10 6 1 -F 2 49 2 1 22 17 -F 2 24 2 6 23 18 -F 2 12 2 8 6 1 -F 2 6 2 10 24 19 -F 2 14 3 8 6 1 -F 2 7 3 10 19 14 -F 2 34 4 1 6 1 -F 2 17 4 6 10 5 -F 2 8 4 10 10 5 -F 2 15 5 6 28 23 -F 2 10 6 10 16 11 -F 2 6 7 10 12 7 -F 2 12 9 10 27 22 -F 2 6 9 13 23 18 -F 2 8 11 10 14 9 -F 2 7 12 10 15 10 -F 2 21 0 1 11 7 -F 2 10 0 2 11 7 -F 2 5 0 10 14 10 -F 2 5 1 2 22 18 -F 2 27 2 1 22 18 -F 2 7 2 10 24 20 -F 2 13 3 2 6 2 -F 2 6 3 10 19 15 -F 2 24 4 1 6 2 -F 2 12 4 2 17 13 -F 2 6 4 10 10 6 -F 2 16 5 2 11 7 -F 2 8 5 10 22 18 -F 2 9 6 2 23 19 -F 2 8 7 2 22 18 -F 2 11 8 2 6 2 -F 2 6 8 10 23 19 -F 2 14 9 2 6 2 -F 2 7 9 10 27 23 -F 2 7 11 2 11 7 -F 2 10 12 2 13 9 -F 2 34 0 2 11 8 -F 2 17 0 6 14 11 -F 2 9 0 10 14 11 -F 2 8 1 6 11 8 -F 2 6 2 10 24 21 -F 2 14 3 2 6 3 -F 2 7 3 6 19 16 -F 2 13 4 1 6 3 -F 2 7 4 6 10 7 -F 2 12 5 6 28 25 -F 2 6 5 10 22 19 -F 2 14 7 1 6 3 -F 2 7 7 6 5 2 -F 2 4 8 2 6 3 -F 2 10 9 2 6 3 -F 2 10 11 6 17 14 -F 2 5 11 10 14 11 -F 2 9 12 6 11 8 -F 2 13 0 10 14 12 -F 2 6 0 12 4 2 -F 2 14 1 10 6 4 -F 2 7 1 13 15 13 -F 2 12 2 10 24 22 -F 2 6 2 13 18 16 -F 2 18 3 0 6 4 -F 2 9 3 10 19 17 -F 2 16 4 0 6 4 -F 2 8 4 10 10 8 -F 2 10 5 10 22 20 -F 2 19 7 0 12 10 -F 2 9 7 6 5 3 -F 2 8 8 10 23 21 -F 2 20 9 0 14 12 -F 2 10 9 10 27 25 -F 2 8 11 0 4 2 -F 2 9 12 0 4 2 -F 1 80 15 4 9 8 -F 2 18 0 5 14 13 -F 2 9 0 10 14 13 -F 2 6 1 5 23 22 -F 2 3 1 7 6 5 -F 2 5 2 5 11 10 -F 2 18 3 5 10 9 -F 2 9 3 10 19 18 -F 2 5 4 5 19 18 -F 2 3 4 7 6 5 -F 2 5 5 10 22 21 -F 2 9 6 5 28 27 -F 2 5 6 7 5 4 -F 2 25 7 5 25 24 -F 2 12 7 6 5 4 -F 2 25 8 5 5 4 -F 2 12 8 7 23 22 -F 2 6 8 10 23 22 -F 2 18 9 5 16 15 -F 2 9 9 10 27 26 -F 2 12 11 0 4 3 -F 2 6 11 5 11 10 -F 2 7 12 0 4 3 -F 2 4 12 5 17 16 -go - -engine > player2: P 11.803996 11.215721 1 12 3 -P 9.319567 21.808874 1 8 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 1 28 3 -P 11.742498 17.157658 1 26 3 -P 4.254093 0.000000 1 21 1 -P 19.353899 22.431443 1 12 1 -P 14.743614 22.324001 1 16 3 -P 8.864377 0.107441 1 40 3 -P 19.854347 0.711934 1 11 1 -P 3.753644 21.719509 0 11 1 -P 8.864814 9.736624 1 20 5 -P 14.743177 12.694819 1 14 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 83 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 10 1 9 24 2 -F 1 9 1 9 24 3 -F 1 6 7 9 23 2 -F 1 15 2 1 22 2 -F 1 17 5 1 23 3 -F 1 6 8 1 22 2 -F 1 6 2 1 22 3 -F 1 18 5 1 23 4 -F 1 4 8 1 22 3 -F 1 8 6 3 19 1 -F 1 6 2 6 23 6 -F 1 3 5 6 28 11 -F 1 7 6 3 19 2 -F 1 12 7 3 18 1 -F 1 5 8 6 25 8 -F 1 14 4 2 17 1 -F 1 13 7 2 22 6 -F 1 7 7 3 18 2 -F 1 7 1 3 17 2 -F 1 25 4 2 17 2 -F 1 6 4 9 19 4 -F 1 12 7 3 18 3 -F 1 19 1 3 17 3 -F 1 9 1 9 24 10 -F 1 8 4 9 19 5 -F 1 5 6 3 19 5 -F 1 10 7 3 18 4 -F 1 14 1 3 17 4 -F 1 7 1 9 24 11 -F 1 3 6 11 17 4 -F 1 11 7 3 18 5 -F 1 6 7 9 23 10 -F 1 3 7 11 14 1 -F 1 5 12 9 14 1 -F 1 12 0 6 14 2 -F 1 6 0 9 14 2 -F 1 8 1 9 24 12 -F 1 10 3 6 19 7 -F 1 6 5 9 16 4 -F 1 5 6 9 22 10 -F 1 7 7 9 23 11 -F 1 7 11 9 15 3 -F 1 6 12 9 14 2 -F 1 9 0 10 14 3 -F 1 14 2 4 17 6 -F 1 7 2 10 24 13 -F 1 14 3 4 12 1 -F 1 7 3 10 19 8 -F 1 9 5 10 22 11 -F 1 8 8 10 23 12 -F 1 6 11 10 14 3 -F 1 9 12 10 15 4 -F 1 7 0 10 14 4 -F 1 3 1 12 11 1 -F 1 7 2 10 24 14 -F 1 4 2 12 13 3 -F 1 9 3 10 19 9 -F 1 8 5 10 22 12 -F 1 4 5 12 17 7 -F 1 4 6 12 11 1 -F 1 6 8 10 23 13 -F 1 3 8 12 14 4 -F 1 7 9 10 27 17 -F 1 3 9 12 14 4 -F 1 5 11 10 14 4 -F 1 10 12 10 15 5 -F 1 11 0 7 12 3 -F 1 6 0 10 14 5 -F 1 16 2 0 11 2 -F 1 8 2 7 22 13 -F 1 16 3 7 18 9 -F 1 8 3 10 19 10 -F 1 14 5 7 25 16 -F 1 7 5 10 22 13 -F 1 11 8 7 23 14 -F 1 6 8 10 23 14 -F 1 10 9 7 23 14 -F 1 5 9 10 27 18 -F 1 14 0 7 12 4 -F 1 7 0 10 14 6 -F 1 7 2 10 24 16 -F 1 20 3 7 18 10 -F 1 10 3 10 19 11 -F 1 14 5 7 25 17 -F 1 7 5 10 22 14 -F 1 13 8 7 23 15 -F 1 7 8 10 23 15 -F 1 3 0 8 12 5 -F 1 13 1 8 22 15 -F 1 27 3 7 18 11 -F 1 7 3 10 19 12 -F 1 4 4 8 18 11 -F 1 2 6 8 25 18 -F 1 4 7 8 23 16 -F 1 6 8 10 23 16 -F 1 10 9 8 12 5 -F 1 8 11 8 10 3 -F 1 6 12 8 14 7 -F 1 10 0 8 12 6 -F 1 5 0 10 14 8 -F 1 20 1 8 22 16 -F 1 5 1 13 15 9 -F 1 22 2 1 22 16 -F 1 5 2 10 24 18 -F 1 5 3 10 19 13 -F 1 16 4 8 18 12 -F 1 8 4 10 10 4 -F 1 10 5 10 22 16 -F 1 8 7 10 12 6 -F 1 5 8 10 23 17 -F 1 9 9 8 12 6 -F 1 8 11 10 14 8 -F 1 7 12 10 15 9 -F 1 11 0 10 14 9 -F 1 5 1 10 6 1 -F 1 49 2 1 22 17 -F 1 24 2 6 23 18 -F 1 12 2 8 6 1 -F 1 6 2 10 24 19 -F 1 14 3 8 6 1 -F 1 7 3 10 19 14 -F 1 34 4 1 6 1 -F 1 17 4 6 10 5 -F 1 8 4 10 10 5 -F 1 15 5 6 28 23 -F 1 10 6 10 16 11 -F 1 6 7 10 12 7 -F 1 12 9 10 27 22 -F 1 6 9 13 23 18 -F 1 8 11 10 14 9 -F 1 7 12 10 15 10 -F 1 21 0 1 11 7 -F 1 10 0 2 11 7 -F 1 5 0 10 14 10 -F 1 5 1 2 22 18 -F 1 27 2 1 22 18 -F 1 7 2 10 24 20 -F 1 13 3 2 6 2 -F 1 6 3 10 19 15 -F 1 24 4 1 6 2 -F 1 12 4 2 17 13 -F 1 6 4 10 10 6 -F 1 16 5 2 11 7 -F 1 8 5 10 22 18 -F 1 9 6 2 23 19 -F 1 8 7 2 22 18 -F 1 11 8 2 6 2 -F 1 6 8 10 23 19 -F 1 14 9 2 6 2 -F 1 7 9 10 27 23 -F 1 7 11 2 11 7 -F 1 10 12 2 13 9 -F 1 34 0 2 11 8 -F 1 17 0 6 14 11 -F 1 9 0 10 14 11 -F 1 8 1 6 11 8 -F 1 6 2 10 24 21 -F 1 14 3 2 6 3 -F 1 7 3 6 19 16 -F 1 13 4 1 6 3 -F 1 7 4 6 10 7 -F 1 12 5 6 28 25 -F 1 6 5 10 22 19 -F 1 14 7 1 6 3 -F 1 7 7 6 5 2 -F 1 4 8 2 6 3 -F 1 10 9 2 6 3 -F 1 10 11 6 17 14 -F 1 5 11 10 14 11 -F 1 9 12 6 11 8 -F 1 13 0 10 14 12 -F 1 6 0 12 4 2 -F 1 14 1 10 6 4 -F 1 7 1 13 15 13 -F 1 12 2 10 24 22 -F 1 6 2 13 18 16 -F 1 18 3 0 6 4 -F 1 9 3 10 19 17 -F 1 16 4 0 6 4 -F 1 8 4 10 10 8 -F 1 10 5 10 22 20 -F 1 19 7 0 12 10 -F 1 9 7 6 5 3 -F 1 8 8 10 23 21 -F 1 20 9 0 14 12 -F 1 10 9 10 27 25 -F 1 8 11 0 4 2 -F 1 9 12 0 4 2 -F 2 80 15 4 9 8 -F 1 18 0 5 14 13 -F 1 9 0 10 14 13 -F 1 6 1 5 23 22 -F 1 3 1 7 6 5 -F 1 5 2 5 11 10 -F 1 18 3 5 10 9 -F 1 9 3 10 19 18 -F 1 5 4 5 19 18 -F 1 3 4 7 6 5 -F 1 5 5 10 22 21 -F 1 9 6 5 28 27 -F 1 5 6 7 5 4 -F 1 25 7 5 25 24 -F 1 12 7 6 5 4 -F 1 25 8 5 5 4 -F 1 12 8 7 23 22 -F 1 6 8 10 23 22 -F 1 18 9 5 16 15 -F 1 9 9 10 27 26 -F 1 12 11 0 4 3 -F 1 6 11 5 11 10 -F 1 7 12 0 4 3 -F 1 4 12 5 17 16 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 1 0 0.05037544355714904 -player2 > engine: 0 10 6 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0.07185662694633879 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 1 0 0.016962825727342454 -player2 > engine: 2 10 5 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 1 0 0.03635537238221285 -player2 > engine: 3 10 14 -player2 > engine: comparing 3 and 11, gives 0 2 0 -player2 > engine: 3 11 7 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 2 0 -player2 > engine: 4 7 13 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 1 0 0.0724670761373047 -player2 > engine: 4 10 6 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 2 0 -player2 > engine: 5 5 10 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 1 0 0.0920586788055475 -player2 > engine: 5 10 5 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 2 0 -player2 > engine: 6 7 6 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 1 0 0.06056981686559169 -player2 > engine: 7 10 8 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 2 0 -player2 > engine: 8 4 20 -player2 > engine: comparing 8 and 5, gives 0 2 0 -player2 > engine: 8 5 10 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 1 0 0.0755631693383152 -player2 > engine: 9 10 5 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 10 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 2 0 -player2 > engine: 11 11 5 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 7 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 9 3 -P 9.319567 21.808874 2 47 5 -P 14.288424 0.622569 2 25 5 -P 11.865493 5.273785 2 30 3 -P 11.742498 17.157658 2 24 3 -P 4.254093 0.000000 2 17 1 -P 19.353899 22.431443 2 7 1 -P 14.743614 22.324001 2 11 3 -P 8.864377 0.107441 2 39 3 -P 19.854347 0.711934 2 12 1 -P 3.753644 21.719509 0 6 1 -P 8.864814 9.736624 2 18 5 -P 14.743177 12.694819 2 19 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 86 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 10 1 9 24 1 -F 2 9 1 9 24 2 -F 2 6 7 9 23 1 -F 2 15 2 1 22 1 -F 2 17 5 1 23 2 -F 2 6 8 1 22 1 -F 2 6 2 1 22 2 -F 2 18 5 1 23 3 -F 2 4 8 1 22 2 -F 2 6 2 6 23 5 -F 2 3 5 6 28 10 -F 2 7 6 3 19 1 -F 2 5 8 6 25 7 -F 2 13 7 2 22 5 -F 2 7 7 3 18 1 -F 2 7 1 3 17 1 -F 2 25 4 2 17 1 -F 2 6 4 9 19 3 -F 2 12 7 3 18 2 -F 2 19 1 3 17 2 -F 2 9 1 9 24 9 -F 2 8 4 9 19 4 -F 2 5 6 3 19 4 -F 2 10 7 3 18 3 -F 2 14 1 3 17 3 -F 2 7 1 9 24 10 -F 2 3 6 11 17 3 -F 2 11 7 3 18 4 -F 2 6 7 9 23 9 -F 2 12 0 6 14 1 -F 2 6 0 9 14 1 -F 2 8 1 9 24 11 -F 2 10 3 6 19 6 -F 2 6 5 9 16 3 -F 2 5 6 9 22 9 -F 2 7 7 9 23 10 -F 2 7 11 9 15 2 -F 2 6 12 9 14 1 -F 2 9 0 10 14 2 -F 2 14 2 4 17 5 -F 2 7 2 10 24 12 -F 2 7 3 10 19 7 -F 2 9 5 10 22 10 -F 2 8 8 10 23 11 -F 2 6 11 10 14 2 -F 2 9 12 10 15 3 -F 2 7 0 10 14 3 -F 2 7 2 10 24 13 -F 2 4 2 12 13 2 -F 2 9 3 10 19 8 -F 2 8 5 10 22 11 -F 2 4 5 12 17 6 -F 2 6 8 10 23 12 -F 2 3 8 12 14 3 -F 2 7 9 10 27 16 -F 2 3 9 12 14 3 -F 2 5 11 10 14 3 -F 2 10 12 10 15 4 -F 2 11 0 7 12 2 -F 2 6 0 10 14 4 -F 2 16 2 0 11 1 -F 2 8 2 7 22 12 -F 2 16 3 7 18 8 -F 2 8 3 10 19 9 -F 2 14 5 7 25 15 -F 2 7 5 10 22 12 -F 2 11 8 7 23 13 -F 2 6 8 10 23 13 -F 2 10 9 7 23 13 -F 2 5 9 10 27 17 -F 2 14 0 7 12 3 -F 2 7 0 10 14 5 -F 2 7 2 10 24 15 -F 2 20 3 7 18 9 -F 2 10 3 10 19 10 -F 2 14 5 7 25 16 -F 2 7 5 10 22 13 -F 2 13 8 7 23 14 -F 2 7 8 10 23 14 -F 2 3 0 8 12 4 -F 2 13 1 8 22 14 -F 2 27 3 7 18 10 -F 2 7 3 10 19 11 -F 2 4 4 8 18 10 -F 2 2 6 8 25 17 -F 2 4 7 8 23 15 -F 2 6 8 10 23 15 -F 2 10 9 8 12 4 -F 2 8 11 8 10 2 -F 2 6 12 8 14 6 -F 2 10 0 8 12 5 -F 2 5 0 10 14 7 -F 2 20 1 8 22 15 -F 2 5 1 13 15 8 -F 2 22 2 1 22 15 -F 2 5 2 10 24 17 -F 2 5 3 10 19 12 -F 2 16 4 8 18 11 -F 2 8 4 10 10 3 -F 2 10 5 10 22 15 -F 2 8 7 10 12 5 -F 2 5 8 10 23 16 -F 2 9 9 8 12 5 -F 2 8 11 10 14 7 -F 2 7 12 10 15 8 -F 2 11 0 10 14 8 -F 2 49 2 1 22 16 -F 2 24 2 6 23 17 -F 2 6 2 10 24 18 -F 2 7 3 10 19 13 -F 2 17 4 6 10 4 -F 2 8 4 10 10 4 -F 2 15 5 6 28 22 -F 2 10 6 10 16 10 -F 2 6 7 10 12 6 -F 2 12 9 10 27 21 -F 2 6 9 13 23 17 -F 2 8 11 10 14 8 -F 2 7 12 10 15 9 -F 2 21 0 1 11 6 -F 2 10 0 2 11 6 -F 2 5 0 10 14 9 -F 2 5 1 2 22 17 -F 2 27 2 1 22 17 -F 2 7 2 10 24 19 -F 2 13 3 2 6 1 -F 2 6 3 10 19 14 -F 2 24 4 1 6 1 -F 2 12 4 2 17 12 -F 2 6 4 10 10 5 -F 2 16 5 2 11 6 -F 2 8 5 10 22 17 -F 2 9 6 2 23 18 -F 2 8 7 2 22 17 -F 2 11 8 2 6 1 -F 2 6 8 10 23 18 -F 2 14 9 2 6 1 -F 2 7 9 10 27 22 -F 2 7 11 2 11 6 -F 2 10 12 2 13 8 -F 2 34 0 2 11 7 -F 2 17 0 6 14 10 -F 2 9 0 10 14 10 -F 2 8 1 6 11 7 -F 2 6 2 10 24 20 -F 2 14 3 2 6 2 -F 2 7 3 6 19 15 -F 2 13 4 1 6 2 -F 2 7 4 6 10 6 -F 2 12 5 6 28 24 -F 2 6 5 10 22 18 -F 2 14 7 1 6 2 -F 2 7 7 6 5 1 -F 2 4 8 2 6 2 -F 2 10 9 2 6 2 -F 2 10 11 6 17 13 -F 2 5 11 10 14 10 -F 2 9 12 6 11 7 -F 2 13 0 10 14 11 -F 2 6 0 12 4 1 -F 2 14 1 10 6 3 -F 2 7 1 13 15 12 -F 2 12 2 10 24 21 -F 2 6 2 13 18 15 -F 2 18 3 0 6 3 -F 2 9 3 10 19 16 -F 2 16 4 0 6 3 -F 2 8 4 10 10 7 -F 2 10 5 10 22 19 -F 2 19 7 0 12 9 -F 2 9 7 6 5 2 -F 2 8 8 10 23 20 -F 2 20 9 0 14 11 -F 2 10 9 10 27 24 -F 2 8 11 0 4 1 -F 2 9 12 0 4 1 -F 1 80 15 4 9 7 -F 2 18 0 5 14 12 -F 2 9 0 10 14 12 -F 2 6 1 5 23 21 -F 2 3 1 7 6 4 -F 2 5 2 5 11 9 -F 2 18 3 5 10 8 -F 2 9 3 10 19 17 -F 2 5 4 5 19 17 -F 2 3 4 7 6 4 -F 2 5 5 10 22 20 -F 2 9 6 5 28 26 -F 2 5 6 7 5 3 -F 2 25 7 5 25 23 -F 2 12 7 6 5 3 -F 2 25 8 5 5 3 -F 2 12 8 7 23 21 -F 2 6 8 10 23 21 -F 2 18 9 5 16 14 -F 2 9 9 10 27 25 -F 2 12 11 0 4 2 -F 2 6 11 5 11 9 -F 2 7 12 0 4 2 -F 2 4 12 5 17 15 -F 2 6 0 10 14 13 -F 2 5 2 10 24 23 -F 2 14 3 10 19 18 -F 2 7 3 11 6 5 -F 2 13 4 7 6 5 -F 2 6 4 10 10 9 -F 2 5 5 10 22 21 -F 2 6 6 7 5 4 -F 2 8 7 10 12 11 -F 2 20 8 4 18 17 -F 2 10 8 5 5 4 -F 2 5 9 10 27 26 -F 2 10 11 0 4 3 -F 2 7 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 9 3 -P 9.319567 21.808874 1 47 5 -P 14.288424 0.622569 1 25 5 -P 11.865493 5.273785 1 30 3 -P 11.742498 17.157658 1 24 3 -P 4.254093 0.000000 1 17 1 -P 19.353899 22.431443 1 7 1 -P 14.743614 22.324001 1 11 3 -P 8.864377 0.107441 1 39 3 -P 19.854347 0.711934 1 12 1 -P 3.753644 21.719509 0 6 1 -P 8.864814 9.736624 1 18 5 -P 14.743177 12.694819 1 19 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 86 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 10 1 9 24 1 -F 1 9 1 9 24 2 -F 1 6 7 9 23 1 -F 1 15 2 1 22 1 -F 1 17 5 1 23 2 -F 1 6 8 1 22 1 -F 1 6 2 1 22 2 -F 1 18 5 1 23 3 -F 1 4 8 1 22 2 -F 1 6 2 6 23 5 -F 1 3 5 6 28 10 -F 1 7 6 3 19 1 -F 1 5 8 6 25 7 -F 1 13 7 2 22 5 -F 1 7 7 3 18 1 -F 1 7 1 3 17 1 -F 1 25 4 2 17 1 -F 1 6 4 9 19 3 -F 1 12 7 3 18 2 -F 1 19 1 3 17 2 -F 1 9 1 9 24 9 -F 1 8 4 9 19 4 -F 1 5 6 3 19 4 -F 1 10 7 3 18 3 -F 1 14 1 3 17 3 -F 1 7 1 9 24 10 -F 1 3 6 11 17 3 -F 1 11 7 3 18 4 -F 1 6 7 9 23 9 -F 1 12 0 6 14 1 -F 1 6 0 9 14 1 -F 1 8 1 9 24 11 -F 1 10 3 6 19 6 -F 1 6 5 9 16 3 -F 1 5 6 9 22 9 -F 1 7 7 9 23 10 -F 1 7 11 9 15 2 -F 1 6 12 9 14 1 -F 1 9 0 10 14 2 -F 1 14 2 4 17 5 -F 1 7 2 10 24 12 -F 1 7 3 10 19 7 -F 1 9 5 10 22 10 -F 1 8 8 10 23 11 -F 1 6 11 10 14 2 -F 1 9 12 10 15 3 -F 1 7 0 10 14 3 -F 1 7 2 10 24 13 -F 1 4 2 12 13 2 -F 1 9 3 10 19 8 -F 1 8 5 10 22 11 -F 1 4 5 12 17 6 -F 1 6 8 10 23 12 -F 1 3 8 12 14 3 -F 1 7 9 10 27 16 -F 1 3 9 12 14 3 -F 1 5 11 10 14 3 -F 1 10 12 10 15 4 -F 1 11 0 7 12 2 -F 1 6 0 10 14 4 -F 1 16 2 0 11 1 -F 1 8 2 7 22 12 -F 1 16 3 7 18 8 -F 1 8 3 10 19 9 -F 1 14 5 7 25 15 -F 1 7 5 10 22 12 -F 1 11 8 7 23 13 -F 1 6 8 10 23 13 -F 1 10 9 7 23 13 -F 1 5 9 10 27 17 -F 1 14 0 7 12 3 -F 1 7 0 10 14 5 -F 1 7 2 10 24 15 -F 1 20 3 7 18 9 -F 1 10 3 10 19 10 -F 1 14 5 7 25 16 -F 1 7 5 10 22 13 -F 1 13 8 7 23 14 -F 1 7 8 10 23 14 -F 1 3 0 8 12 4 -F 1 13 1 8 22 14 -F 1 27 3 7 18 10 -F 1 7 3 10 19 11 -F 1 4 4 8 18 10 -F 1 2 6 8 25 17 -F 1 4 7 8 23 15 -F 1 6 8 10 23 15 -F 1 10 9 8 12 4 -F 1 8 11 8 10 2 -F 1 6 12 8 14 6 -F 1 10 0 8 12 5 -F 1 5 0 10 14 7 -F 1 20 1 8 22 15 -F 1 5 1 13 15 8 -F 1 22 2 1 22 15 -F 1 5 2 10 24 17 -F 1 5 3 10 19 12 -F 1 16 4 8 18 11 -F 1 8 4 10 10 3 -F 1 10 5 10 22 15 -F 1 8 7 10 12 5 -F 1 5 8 10 23 16 -F 1 9 9 8 12 5 -F 1 8 11 10 14 7 -F 1 7 12 10 15 8 -F 1 11 0 10 14 8 -F 1 49 2 1 22 16 -F 1 24 2 6 23 17 -F 1 6 2 10 24 18 -F 1 7 3 10 19 13 -F 1 17 4 6 10 4 -F 1 8 4 10 10 4 -F 1 15 5 6 28 22 -F 1 10 6 10 16 10 -F 1 6 7 10 12 6 -F 1 12 9 10 27 21 -F 1 6 9 13 23 17 -F 1 8 11 10 14 8 -F 1 7 12 10 15 9 -F 1 21 0 1 11 6 -F 1 10 0 2 11 6 -F 1 5 0 10 14 9 -F 1 5 1 2 22 17 -F 1 27 2 1 22 17 -F 1 7 2 10 24 19 -F 1 13 3 2 6 1 -F 1 6 3 10 19 14 -F 1 24 4 1 6 1 -F 1 12 4 2 17 12 -F 1 6 4 10 10 5 -F 1 16 5 2 11 6 -F 1 8 5 10 22 17 -F 1 9 6 2 23 18 -F 1 8 7 2 22 17 -F 1 11 8 2 6 1 -F 1 6 8 10 23 18 -F 1 14 9 2 6 1 -F 1 7 9 10 27 22 -F 1 7 11 2 11 6 -F 1 10 12 2 13 8 -F 1 34 0 2 11 7 -F 1 17 0 6 14 10 -F 1 9 0 10 14 10 -F 1 8 1 6 11 7 -F 1 6 2 10 24 20 -F 1 14 3 2 6 2 -F 1 7 3 6 19 15 -F 1 13 4 1 6 2 -F 1 7 4 6 10 6 -F 1 12 5 6 28 24 -F 1 6 5 10 22 18 -F 1 14 7 1 6 2 -F 1 7 7 6 5 1 -F 1 4 8 2 6 2 -F 1 10 9 2 6 2 -F 1 10 11 6 17 13 -F 1 5 11 10 14 10 -F 1 9 12 6 11 7 -F 1 13 0 10 14 11 -F 1 6 0 12 4 1 -F 1 14 1 10 6 3 -F 1 7 1 13 15 12 -F 1 12 2 10 24 21 -F 1 6 2 13 18 15 -F 1 18 3 0 6 3 -F 1 9 3 10 19 16 -F 1 16 4 0 6 3 -F 1 8 4 10 10 7 -F 1 10 5 10 22 19 -F 1 19 7 0 12 9 -F 1 9 7 6 5 2 -F 1 8 8 10 23 20 -F 1 20 9 0 14 11 -F 1 10 9 10 27 24 -F 1 8 11 0 4 1 -F 1 9 12 0 4 1 -F 2 80 15 4 9 7 -F 1 18 0 5 14 12 -F 1 9 0 10 14 12 -F 1 6 1 5 23 21 -F 1 3 1 7 6 4 -F 1 5 2 5 11 9 -F 1 18 3 5 10 8 -F 1 9 3 10 19 17 -F 1 5 4 5 19 17 -F 1 3 4 7 6 4 -F 1 5 5 10 22 20 -F 1 9 6 5 28 26 -F 1 5 6 7 5 3 -F 1 25 7 5 25 23 -F 1 12 7 6 5 3 -F 1 25 8 5 5 3 -F 1 12 8 7 23 21 -F 1 6 8 10 23 21 -F 1 18 9 5 16 14 -F 1 9 9 10 27 25 -F 1 12 11 0 4 2 -F 1 6 11 5 11 9 -F 1 7 12 0 4 2 -F 1 4 12 5 17 15 -F 1 6 0 10 14 13 -F 1 5 2 10 24 23 -F 1 14 3 10 19 18 -F 1 7 3 11 6 5 -F 1 13 4 7 6 5 -F 1 6 4 10 10 9 -F 1 5 5 10 22 21 -F 1 6 6 7 5 4 -F 1 8 7 10 12 11 -F 1 20 8 4 18 17 -F 1 10 8 5 5 4 -F 1 5 9 10 27 26 -F 1 10 11 0 4 3 -F 1 7 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 2 0 -player2 > engine: 0 4 4 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0.05037544355714904 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 2 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 2 0 -player2 > engine: 1 4 23 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 1 0 0.07185662694633879 -player2 > engine: 1 10 12 -player2 > engine: comparing 1 and 11, gives 0 2 0 -player2 > engine: 1 11 6 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 2 0 -player2 > engine: 2 4 12 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 1 0 0.016962825727342454 -player2 > engine: 2 10 6 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 2 0 -player2 > engine: 3 4 15 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 1 0 0.03635537238221285 -player2 > engine: 3 10 7 -player2 > engine: comparing 3 and 11, gives 0 2 0 -player2 > engine: 3 11 4 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 2 0 -player2 > engine: 4 4 12 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 1 0 0.0724670761373047 -player2 > engine: 4 10 6 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 2 0 -player2 > engine: 5 4 8 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 2 0 -player2 > engine: 5 11 4 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 2 0 -player2 > engine: 6 4 3 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0.1280697397879352 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 2 0 -player2 > engine: 7 4 5 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 2 0 -player2 > engine: 8 4 19 -player2 > engine: comparing 8 and 5, gives 0 2 0 -player2 > engine: 8 5 10 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 2 0 -player2 > engine: 8 11 5 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 2 0 -player2 > engine: 9 4 6 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0.0755631693383152 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 2 0 -player2 > engine: 11 4 9 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0.030704475212287592 -player2 > engine: comparing 11 and 11, gives 0 2 0 -player2 > engine: 11 11 4 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 2 0 -player2 > engine: 12 4 9 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 2 0 -player2 > engine: 12 11 5 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 39 3 -P 9.319567 21.808874 2 56 5 -P 14.288424 0.622569 2 75 5 -P 11.865493 5.273785 2 28 3 -P 11.742498 17.157658 2 21 3 -P 4.254093 0.000000 2 6 1 -P 19.353899 22.431443 2 24 1 -P 14.743614 22.324001 2 9 3 -P 8.864377 0.107441 2 8 3 -P 19.854347 0.711934 2 35 1 -P 3.753644 21.719509 0 6 1 -P 8.864814 9.736624 2 14 5 -P 14.743177 12.694819 2 16 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 89 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 9 1 9 24 1 -F 2 17 5 1 23 1 -F 2 6 2 1 22 1 -F 2 18 5 1 23 2 -F 2 4 8 1 22 1 -F 2 6 2 6 23 4 -F 2 3 5 6 28 9 -F 2 5 8 6 25 6 -F 2 13 7 2 22 4 -F 2 6 4 9 19 2 -F 2 12 7 3 18 1 -F 2 19 1 3 17 1 -F 2 9 1 9 24 8 -F 2 8 4 9 19 3 -F 2 5 6 3 19 3 -F 2 10 7 3 18 2 -F 2 14 1 3 17 2 -F 2 7 1 9 24 9 -F 2 3 6 11 17 2 -F 2 11 7 3 18 3 -F 2 6 7 9 23 8 -F 2 8 1 9 24 10 -F 2 10 3 6 19 5 -F 2 6 5 9 16 2 -F 2 5 6 9 22 8 -F 2 7 7 9 23 9 -F 2 7 11 9 15 1 -F 2 9 0 10 14 1 -F 2 14 2 4 17 4 -F 2 7 2 10 24 11 -F 2 7 3 10 19 6 -F 2 9 5 10 22 9 -F 2 8 8 10 23 10 -F 2 6 11 10 14 1 -F 2 9 12 10 15 2 -F 2 7 0 10 14 2 -F 2 7 2 10 24 12 -F 2 4 2 12 13 1 -F 2 9 3 10 19 7 -F 2 8 5 10 22 10 -F 2 4 5 12 17 5 -F 2 6 8 10 23 11 -F 2 3 8 12 14 2 -F 2 7 9 10 27 15 -F 2 3 9 12 14 2 -F 2 5 11 10 14 2 -F 2 10 12 10 15 3 -F 2 11 0 7 12 1 -F 2 6 0 10 14 3 -F 2 8 2 7 22 11 -F 2 16 3 7 18 7 -F 2 8 3 10 19 8 -F 2 14 5 7 25 14 -F 2 7 5 10 22 11 -F 2 11 8 7 23 12 -F 2 6 8 10 23 12 -F 2 10 9 7 23 12 -F 2 5 9 10 27 16 -F 2 14 0 7 12 2 -F 2 7 0 10 14 4 -F 2 7 2 10 24 14 -F 2 20 3 7 18 8 -F 2 10 3 10 19 9 -F 2 14 5 7 25 15 -F 2 7 5 10 22 12 -F 2 13 8 7 23 13 -F 2 7 8 10 23 13 -F 2 3 0 8 12 3 -F 2 13 1 8 22 13 -F 2 27 3 7 18 9 -F 2 7 3 10 19 10 -F 2 4 4 8 18 9 -F 2 2 6 8 25 16 -F 2 4 7 8 23 14 -F 2 6 8 10 23 14 -F 2 10 9 8 12 3 -F 2 8 11 8 10 1 -F 2 6 12 8 14 5 -F 2 10 0 8 12 4 -F 2 5 0 10 14 6 -F 2 20 1 8 22 14 -F 2 5 1 13 15 7 -F 2 22 2 1 22 14 -F 2 5 2 10 24 16 -F 2 5 3 10 19 11 -F 2 16 4 8 18 10 -F 2 8 4 10 10 2 -F 2 10 5 10 22 14 -F 2 8 7 10 12 4 -F 2 5 8 10 23 15 -F 2 9 9 8 12 4 -F 2 8 11 10 14 6 -F 2 7 12 10 15 7 -F 2 11 0 10 14 7 -F 2 49 2 1 22 15 -F 2 24 2 6 23 16 -F 2 6 2 10 24 17 -F 2 7 3 10 19 12 -F 2 17 4 6 10 3 -F 2 8 4 10 10 3 -F 2 15 5 6 28 21 -F 2 10 6 10 16 9 -F 2 6 7 10 12 5 -F 2 12 9 10 27 20 -F 2 6 9 13 23 16 -F 2 8 11 10 14 7 -F 2 7 12 10 15 8 -F 2 21 0 1 11 5 -F 2 10 0 2 11 5 -F 2 5 0 10 14 8 -F 2 5 1 2 22 16 -F 2 27 2 1 22 16 -F 2 7 2 10 24 18 -F 2 6 3 10 19 13 -F 2 12 4 2 17 11 -F 2 6 4 10 10 4 -F 2 16 5 2 11 5 -F 2 8 5 10 22 16 -F 2 9 6 2 23 17 -F 2 8 7 2 22 16 -F 2 6 8 10 23 17 -F 2 7 9 10 27 21 -F 2 7 11 2 11 5 -F 2 10 12 2 13 7 -F 2 34 0 2 11 6 -F 2 17 0 6 14 9 -F 2 9 0 10 14 9 -F 2 8 1 6 11 6 -F 2 6 2 10 24 19 -F 2 14 3 2 6 1 -F 2 7 3 6 19 14 -F 2 13 4 1 6 1 -F 2 7 4 6 10 5 -F 2 12 5 6 28 23 -F 2 6 5 10 22 17 -F 2 14 7 1 6 1 -F 2 4 8 2 6 1 -F 2 10 9 2 6 1 -F 2 10 11 6 17 12 -F 2 5 11 10 14 9 -F 2 9 12 6 11 6 -F 2 13 0 10 14 10 -F 2 14 1 10 6 2 -F 2 7 1 13 15 11 -F 2 12 2 10 24 20 -F 2 6 2 13 18 14 -F 2 18 3 0 6 2 -F 2 9 3 10 19 15 -F 2 16 4 0 6 2 -F 2 8 4 10 10 6 -F 2 10 5 10 22 18 -F 2 19 7 0 12 8 -F 2 9 7 6 5 1 -F 2 8 8 10 23 19 -F 2 20 9 0 14 10 -F 2 10 9 10 27 23 -F 1 80 15 4 9 6 -F 2 18 0 5 14 11 -F 2 9 0 10 14 11 -F 2 6 1 5 23 20 -F 2 3 1 7 6 3 -F 2 5 2 5 11 8 -F 2 18 3 5 10 7 -F 2 9 3 10 19 16 -F 2 5 4 5 19 16 -F 2 3 4 7 6 3 -F 2 5 5 10 22 19 -F 2 9 6 5 28 25 -F 2 5 6 7 5 2 -F 2 25 7 5 25 22 -F 2 12 7 6 5 2 -F 2 25 8 5 5 2 -F 2 12 8 7 23 20 -F 2 6 8 10 23 20 -F 2 18 9 5 16 13 -F 2 9 9 10 27 24 -F 2 12 11 0 4 1 -F 2 6 11 5 11 8 -F 2 7 12 0 4 1 -F 2 4 12 5 17 14 -F 2 6 0 10 14 12 -F 2 5 2 10 24 22 -F 2 14 3 10 19 17 -F 2 7 3 11 6 4 -F 2 13 4 7 6 4 -F 2 6 4 10 10 8 -F 2 5 5 10 22 20 -F 2 6 6 7 5 3 -F 2 8 7 10 12 10 -F 2 20 8 4 18 16 -F 2 10 8 5 5 3 -F 2 5 9 10 27 25 -F 2 10 11 0 4 2 -F 2 7 12 0 4 2 -F 2 4 0 4 6 5 -F 2 2 0 11 4 3 -F 2 23 1 4 6 5 -F 2 12 1 10 6 5 -F 2 6 1 11 13 12 -F 2 12 2 4 17 16 -F 2 6 2 10 24 23 -F 2 15 3 4 12 11 -F 2 7 3 10 19 18 -F 2 4 3 11 6 5 -F 2 6 4 10 10 9 -F 2 8 5 4 19 18 -F 2 4 5 11 11 10 -F 2 3 6 4 10 9 -F 2 5 7 4 6 5 -F 2 19 8 4 18 17 -F 2 10 8 5 5 4 -F 2 5 8 11 10 9 -F 2 6 9 4 19 18 -F 2 9 11 4 8 7 -F 2 9 12 4 6 5 -F 2 5 12 11 7 6 -go - -engine > player2: P 11.803996 11.215721 1 39 3 -P 9.319567 21.808874 1 56 5 -P 14.288424 0.622569 1 75 5 -P 11.865493 5.273785 1 28 3 -P 11.742498 17.157658 1 21 3 -P 4.254093 0.000000 1 6 1 -P 19.353899 22.431443 1 24 1 -P 14.743614 22.324001 1 9 3 -P 8.864377 0.107441 1 8 3 -P 19.854347 0.711934 1 35 1 -P 3.753644 21.719509 0 6 1 -P 8.864814 9.736624 1 14 5 -P 14.743177 12.694819 1 16 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 89 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 9 1 9 24 1 -F 1 17 5 1 23 1 -F 1 6 2 1 22 1 -F 1 18 5 1 23 2 -F 1 4 8 1 22 1 -F 1 6 2 6 23 4 -F 1 3 5 6 28 9 -F 1 5 8 6 25 6 -F 1 13 7 2 22 4 -F 1 6 4 9 19 2 -F 1 12 7 3 18 1 -F 1 19 1 3 17 1 -F 1 9 1 9 24 8 -F 1 8 4 9 19 3 -F 1 5 6 3 19 3 -F 1 10 7 3 18 2 -F 1 14 1 3 17 2 -F 1 7 1 9 24 9 -F 1 3 6 11 17 2 -F 1 11 7 3 18 3 -F 1 6 7 9 23 8 -F 1 8 1 9 24 10 -F 1 10 3 6 19 5 -F 1 6 5 9 16 2 -F 1 5 6 9 22 8 -F 1 7 7 9 23 9 -F 1 7 11 9 15 1 -F 1 9 0 10 14 1 -F 1 14 2 4 17 4 -F 1 7 2 10 24 11 -F 1 7 3 10 19 6 -F 1 9 5 10 22 9 -F 1 8 8 10 23 10 -F 1 6 11 10 14 1 -F 1 9 12 10 15 2 -F 1 7 0 10 14 2 -F 1 7 2 10 24 12 -F 1 4 2 12 13 1 -F 1 9 3 10 19 7 -F 1 8 5 10 22 10 -F 1 4 5 12 17 5 -F 1 6 8 10 23 11 -F 1 3 8 12 14 2 -F 1 7 9 10 27 15 -F 1 3 9 12 14 2 -F 1 5 11 10 14 2 -F 1 10 12 10 15 3 -F 1 11 0 7 12 1 -F 1 6 0 10 14 3 -F 1 8 2 7 22 11 -F 1 16 3 7 18 7 -F 1 8 3 10 19 8 -F 1 14 5 7 25 14 -F 1 7 5 10 22 11 -F 1 11 8 7 23 12 -F 1 6 8 10 23 12 -F 1 10 9 7 23 12 -F 1 5 9 10 27 16 -F 1 14 0 7 12 2 -F 1 7 0 10 14 4 -F 1 7 2 10 24 14 -F 1 20 3 7 18 8 -F 1 10 3 10 19 9 -F 1 14 5 7 25 15 -F 1 7 5 10 22 12 -F 1 13 8 7 23 13 -F 1 7 8 10 23 13 -F 1 3 0 8 12 3 -F 1 13 1 8 22 13 -F 1 27 3 7 18 9 -F 1 7 3 10 19 10 -F 1 4 4 8 18 9 -F 1 2 6 8 25 16 -F 1 4 7 8 23 14 -F 1 6 8 10 23 14 -F 1 10 9 8 12 3 -F 1 8 11 8 10 1 -F 1 6 12 8 14 5 -F 1 10 0 8 12 4 -F 1 5 0 10 14 6 -F 1 20 1 8 22 14 -F 1 5 1 13 15 7 -F 1 22 2 1 22 14 -F 1 5 2 10 24 16 -F 1 5 3 10 19 11 -F 1 16 4 8 18 10 -F 1 8 4 10 10 2 -F 1 10 5 10 22 14 -F 1 8 7 10 12 4 -F 1 5 8 10 23 15 -F 1 9 9 8 12 4 -F 1 8 11 10 14 6 -F 1 7 12 10 15 7 -F 1 11 0 10 14 7 -F 1 49 2 1 22 15 -F 1 24 2 6 23 16 -F 1 6 2 10 24 17 -F 1 7 3 10 19 12 -F 1 17 4 6 10 3 -F 1 8 4 10 10 3 -F 1 15 5 6 28 21 -F 1 10 6 10 16 9 -F 1 6 7 10 12 5 -F 1 12 9 10 27 20 -F 1 6 9 13 23 16 -F 1 8 11 10 14 7 -F 1 7 12 10 15 8 -F 1 21 0 1 11 5 -F 1 10 0 2 11 5 -F 1 5 0 10 14 8 -F 1 5 1 2 22 16 -F 1 27 2 1 22 16 -F 1 7 2 10 24 18 -F 1 6 3 10 19 13 -F 1 12 4 2 17 11 -F 1 6 4 10 10 4 -F 1 16 5 2 11 5 -F 1 8 5 10 22 16 -F 1 9 6 2 23 17 -F 1 8 7 2 22 16 -F 1 6 8 10 23 17 -F 1 7 9 10 27 21 -F 1 7 11 2 11 5 -F 1 10 12 2 13 7 -F 1 34 0 2 11 6 -F 1 17 0 6 14 9 -F 1 9 0 10 14 9 -F 1 8 1 6 11 6 -F 1 6 2 10 24 19 -F 1 14 3 2 6 1 -F 1 7 3 6 19 14 -F 1 13 4 1 6 1 -F 1 7 4 6 10 5 -F 1 12 5 6 28 23 -F 1 6 5 10 22 17 -F 1 14 7 1 6 1 -F 1 4 8 2 6 1 -F 1 10 9 2 6 1 -F 1 10 11 6 17 12 -F 1 5 11 10 14 9 -F 1 9 12 6 11 6 -F 1 13 0 10 14 10 -F 1 14 1 10 6 2 -F 1 7 1 13 15 11 -F 1 12 2 10 24 20 -F 1 6 2 13 18 14 -F 1 18 3 0 6 2 -F 1 9 3 10 19 15 -F 1 16 4 0 6 2 -F 1 8 4 10 10 6 -F 1 10 5 10 22 18 -F 1 19 7 0 12 8 -F 1 9 7 6 5 1 -F 1 8 8 10 23 19 -F 1 20 9 0 14 10 -F 1 10 9 10 27 23 -F 2 80 15 4 9 6 -F 1 18 0 5 14 11 -F 1 9 0 10 14 11 -F 1 6 1 5 23 20 -F 1 3 1 7 6 3 -F 1 5 2 5 11 8 -F 1 18 3 5 10 7 -F 1 9 3 10 19 16 -F 1 5 4 5 19 16 -F 1 3 4 7 6 3 -F 1 5 5 10 22 19 -F 1 9 6 5 28 25 -F 1 5 6 7 5 2 -F 1 25 7 5 25 22 -F 1 12 7 6 5 2 -F 1 25 8 5 5 2 -F 1 12 8 7 23 20 -F 1 6 8 10 23 20 -F 1 18 9 5 16 13 -F 1 9 9 10 27 24 -F 1 12 11 0 4 1 -F 1 6 11 5 11 8 -F 1 7 12 0 4 1 -F 1 4 12 5 17 14 -F 1 6 0 10 14 12 -F 1 5 2 10 24 22 -F 1 14 3 10 19 17 -F 1 7 3 11 6 4 -F 1 13 4 7 6 4 -F 1 6 4 10 10 8 -F 1 5 5 10 22 20 -F 1 6 6 7 5 3 -F 1 8 7 10 12 10 -F 1 20 8 4 18 16 -F 1 10 8 5 5 3 -F 1 5 9 10 27 25 -F 1 10 11 0 4 2 -F 1 7 12 0 4 2 -F 1 4 0 4 6 5 -F 1 2 0 11 4 3 -F 1 23 1 4 6 5 -F 1 12 1 10 6 5 -F 1 6 1 11 13 12 -F 1 12 2 4 17 16 -F 1 6 2 10 24 23 -F 1 15 3 4 12 11 -F 1 7 3 10 19 18 -F 1 4 3 11 6 5 -F 1 6 4 10 10 9 -F 1 8 5 4 19 18 -F 1 4 5 11 11 10 -F 1 3 6 4 10 9 -F 1 5 7 4 6 5 -F 1 19 8 4 18 17 -F 1 10 8 5 5 4 -F 1 5 8 11 10 9 -F 1 6 9 4 19 18 -F 1 9 11 4 8 7 -F 1 9 12 4 6 5 -F 1 5 12 11 7 6 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 2 0 -player2 > engine: 0 4 19 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 1 0 0.05037544355714904 -player2 > engine: 0 10 10 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 5 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 2 0 -player2 > engine: 1 4 28 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 1 0 0.07185662694633879 -player2 > engine: 1 10 14 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 1 0 0.05549243454274729 -player2 > engine: 1 13 7 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 37 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 2 0 -player2 > engine: 2 4 19 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 1 0 0.016962825727342454 -player2 > engine: 2 10 9 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 1 0 0.03635537238221285 -player2 > engine: 3 10 14 -player2 > engine: comparing 3 and 11, gives 0 2 0 -player2 > engine: 3 11 7 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 2 0 -player2 > engine: 4 4 10 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 1 0 0.0724670761373047 -player2 > engine: 4 10 5 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0.0920586788055475 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 1 0 0.1280697397879352 -player2 > engine: 6 10 12 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 1 0 0.17718658046128033 -player2 > engine: 6 13 6 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 2 0 -player2 > engine: 7 4 4 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0.06056981686559169 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0.030019035447943272 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 2 0 -player2 > engine: 9 4 17 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 1 0 0.0755631693383152 -player2 > engine: 9 10 9 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 1 0 0.030704475212287592 -player2 > engine: 11 10 7 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 2 0 -player2 > engine: 12 4 8 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0.02812894554203361 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 27 3 -P 9.319567 21.808874 2 66 5 -P 14.288424 0.622569 2 80 5 -P 11.865493 5.273785 2 41 3 -P 11.742498 17.157658 2 19 3 -P 4.254093 0.000000 2 7 1 -P 19.353899 22.431443 2 16 1 -P 14.743614 22.324001 2 19 3 -P 8.864377 0.107441 2 19 3 -P 19.854347 0.711934 2 26 1 -P 3.753644 21.719509 2 9 1 -P 8.864814 9.736624 2 12 5 -P 14.743177 12.694819 2 17 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 92 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 18 5 1 23 1 -F 2 6 2 6 23 3 -F 2 3 5 6 28 8 -F 2 5 8 6 25 5 -F 2 13 7 2 22 3 -F 2 6 4 9 19 1 -F 2 9 1 9 24 7 -F 2 8 4 9 19 2 -F 2 5 6 3 19 2 -F 2 10 7 3 18 1 -F 2 14 1 3 17 1 -F 2 7 1 9 24 8 -F 2 3 6 11 17 1 -F 2 11 7 3 18 2 -F 2 6 7 9 23 7 -F 2 8 1 9 24 9 -F 2 10 3 6 19 4 -F 2 6 5 9 16 1 -F 2 5 6 9 22 7 -F 2 7 7 9 23 8 -F 2 14 2 4 17 3 -F 2 7 2 10 24 10 -F 2 7 3 10 19 5 -F 2 9 5 10 22 8 -F 2 8 8 10 23 9 -F 2 9 12 10 15 1 -F 2 7 0 10 14 1 -F 2 7 2 10 24 11 -F 2 9 3 10 19 6 -F 2 8 5 10 22 9 -F 2 4 5 12 17 4 -F 2 6 8 10 23 10 -F 2 3 8 12 14 1 -F 2 7 9 10 27 14 -F 2 3 9 12 14 1 -F 2 5 11 10 14 1 -F 2 10 12 10 15 2 -F 2 6 0 10 14 2 -F 2 8 2 7 22 10 -F 2 16 3 7 18 6 -F 2 8 3 10 19 7 -F 2 14 5 7 25 13 -F 2 7 5 10 22 10 -F 2 11 8 7 23 11 -F 2 6 8 10 23 11 -F 2 10 9 7 23 11 -F 2 5 9 10 27 15 -F 2 14 0 7 12 1 -F 2 7 0 10 14 3 -F 2 7 2 10 24 13 -F 2 20 3 7 18 7 -F 2 10 3 10 19 8 -F 2 14 5 7 25 14 -F 2 7 5 10 22 11 -F 2 13 8 7 23 12 -F 2 7 8 10 23 12 -F 2 3 0 8 12 2 -F 2 13 1 8 22 12 -F 2 27 3 7 18 8 -F 2 7 3 10 19 9 -F 2 4 4 8 18 8 -F 2 2 6 8 25 15 -F 2 4 7 8 23 13 -F 2 6 8 10 23 13 -F 2 10 9 8 12 2 -F 2 6 12 8 14 4 -F 2 10 0 8 12 3 -F 2 5 0 10 14 5 -F 2 20 1 8 22 13 -F 2 5 1 13 15 6 -F 2 22 2 1 22 13 -F 2 5 2 10 24 15 -F 2 5 3 10 19 10 -F 2 16 4 8 18 9 -F 2 8 4 10 10 1 -F 2 10 5 10 22 13 -F 2 8 7 10 12 3 -F 2 5 8 10 23 14 -F 2 9 9 8 12 3 -F 2 8 11 10 14 5 -F 2 7 12 10 15 6 -F 2 11 0 10 14 6 -F 2 49 2 1 22 14 -F 2 24 2 6 23 15 -F 2 6 2 10 24 16 -F 2 7 3 10 19 11 -F 2 17 4 6 10 2 -F 2 8 4 10 10 2 -F 2 15 5 6 28 20 -F 2 10 6 10 16 8 -F 2 6 7 10 12 4 -F 2 12 9 10 27 19 -F 2 6 9 13 23 15 -F 2 8 11 10 14 6 -F 2 7 12 10 15 7 -F 2 21 0 1 11 4 -F 2 10 0 2 11 4 -F 2 5 0 10 14 7 -F 2 5 1 2 22 15 -F 2 27 2 1 22 15 -F 2 7 2 10 24 17 -F 2 6 3 10 19 12 -F 2 12 4 2 17 10 -F 2 6 4 10 10 3 -F 2 16 5 2 11 4 -F 2 8 5 10 22 15 -F 2 9 6 2 23 16 -F 2 8 7 2 22 15 -F 2 6 8 10 23 16 -F 2 7 9 10 27 20 -F 2 7 11 2 11 4 -F 2 10 12 2 13 6 -F 2 34 0 2 11 5 -F 2 17 0 6 14 8 -F 2 9 0 10 14 8 -F 2 8 1 6 11 5 -F 2 6 2 10 24 18 -F 2 7 3 6 19 13 -F 2 7 4 6 10 4 -F 2 12 5 6 28 22 -F 2 6 5 10 22 16 -F 2 10 11 6 17 11 -F 2 5 11 10 14 8 -F 2 9 12 6 11 5 -F 2 13 0 10 14 9 -F 2 14 1 10 6 1 -F 2 7 1 13 15 10 -F 2 12 2 10 24 19 -F 2 6 2 13 18 13 -F 2 18 3 0 6 1 -F 2 9 3 10 19 14 -F 2 16 4 0 6 1 -F 2 8 4 10 10 5 -F 2 10 5 10 22 17 -F 2 19 7 0 12 7 -F 2 8 8 10 23 18 -F 2 20 9 0 14 9 -F 2 10 9 10 27 22 -F 1 80 15 4 9 5 -F 2 18 0 5 14 10 -F 2 9 0 10 14 10 -F 2 6 1 5 23 19 -F 2 3 1 7 6 2 -F 2 5 2 5 11 7 -F 2 18 3 5 10 6 -F 2 9 3 10 19 15 -F 2 5 4 5 19 15 -F 2 3 4 7 6 2 -F 2 5 5 10 22 18 -F 2 9 6 5 28 24 -F 2 5 6 7 5 1 -F 2 25 7 5 25 21 -F 2 12 7 6 5 1 -F 2 25 8 5 5 1 -F 2 12 8 7 23 19 -F 2 6 8 10 23 19 -F 2 18 9 5 16 12 -F 2 9 9 10 27 23 -F 2 6 11 5 11 7 -F 2 4 12 5 17 13 -F 2 6 0 10 14 11 -F 2 5 2 10 24 21 -F 2 14 3 10 19 16 -F 2 7 3 11 6 3 -F 2 13 4 7 6 3 -F 2 6 4 10 10 7 -F 2 5 5 10 22 19 -F 2 6 6 7 5 2 -F 2 8 7 10 12 9 -F 2 20 8 4 18 15 -F 2 10 8 5 5 2 -F 2 5 9 10 27 24 -F 2 10 11 0 4 1 -F 2 7 12 0 4 1 -F 2 4 0 4 6 4 -F 2 2 0 11 4 2 -F 2 23 1 4 6 4 -F 2 12 1 10 6 4 -F 2 6 1 11 13 11 -F 2 12 2 4 17 15 -F 2 6 2 10 24 22 -F 2 15 3 4 12 10 -F 2 7 3 10 19 17 -F 2 4 3 11 6 4 -F 2 6 4 10 10 8 -F 2 8 5 4 19 17 -F 2 4 5 11 11 9 -F 2 3 6 4 10 8 -F 2 5 7 4 6 4 -F 2 19 8 4 18 16 -F 2 10 8 5 5 3 -F 2 5 8 11 10 8 -F 2 6 9 4 19 17 -F 2 9 11 4 8 6 -F 2 9 12 4 6 4 -F 2 5 12 11 7 5 -F 2 19 0 4 6 5 -F 2 10 0 10 14 13 -F 2 5 0 11 4 3 -F 2 28 1 4 6 5 -F 2 14 1 10 6 5 -F 2 7 1 13 15 14 -F 2 19 2 4 17 16 -F 2 9 2 10 24 23 -F 2 14 3 10 19 18 -F 2 7 3 11 6 5 -F 2 5 4 10 10 9 -F 2 12 6 10 16 15 -F 2 6 6 13 23 22 -F 2 4 7 4 6 5 -F 2 17 9 4 19 18 -F 2 9 9 10 27 26 -F 2 7 11 10 14 13 -F 2 8 12 4 6 5 -go - -engine > player2: P 11.803996 11.215721 1 27 3 -P 9.319567 21.808874 1 66 5 -P 14.288424 0.622569 1 80 5 -P 11.865493 5.273785 1 41 3 -P 11.742498 17.157658 1 19 3 -P 4.254093 0.000000 1 7 1 -P 19.353899 22.431443 1 16 1 -P 14.743614 22.324001 1 19 3 -P 8.864377 0.107441 1 19 3 -P 19.854347 0.711934 1 26 1 -P 3.753644 21.719509 1 9 1 -P 8.864814 9.736624 1 12 5 -P 14.743177 12.694819 1 17 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 92 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 18 5 1 23 1 -F 1 6 2 6 23 3 -F 1 3 5 6 28 8 -F 1 5 8 6 25 5 -F 1 13 7 2 22 3 -F 1 6 4 9 19 1 -F 1 9 1 9 24 7 -F 1 8 4 9 19 2 -F 1 5 6 3 19 2 -F 1 10 7 3 18 1 -F 1 14 1 3 17 1 -F 1 7 1 9 24 8 -F 1 3 6 11 17 1 -F 1 11 7 3 18 2 -F 1 6 7 9 23 7 -F 1 8 1 9 24 9 -F 1 10 3 6 19 4 -F 1 6 5 9 16 1 -F 1 5 6 9 22 7 -F 1 7 7 9 23 8 -F 1 14 2 4 17 3 -F 1 7 2 10 24 10 -F 1 7 3 10 19 5 -F 1 9 5 10 22 8 -F 1 8 8 10 23 9 -F 1 9 12 10 15 1 -F 1 7 0 10 14 1 -F 1 7 2 10 24 11 -F 1 9 3 10 19 6 -F 1 8 5 10 22 9 -F 1 4 5 12 17 4 -F 1 6 8 10 23 10 -F 1 3 8 12 14 1 -F 1 7 9 10 27 14 -F 1 3 9 12 14 1 -F 1 5 11 10 14 1 -F 1 10 12 10 15 2 -F 1 6 0 10 14 2 -F 1 8 2 7 22 10 -F 1 16 3 7 18 6 -F 1 8 3 10 19 7 -F 1 14 5 7 25 13 -F 1 7 5 10 22 10 -F 1 11 8 7 23 11 -F 1 6 8 10 23 11 -F 1 10 9 7 23 11 -F 1 5 9 10 27 15 -F 1 14 0 7 12 1 -F 1 7 0 10 14 3 -F 1 7 2 10 24 13 -F 1 20 3 7 18 7 -F 1 10 3 10 19 8 -F 1 14 5 7 25 14 -F 1 7 5 10 22 11 -F 1 13 8 7 23 12 -F 1 7 8 10 23 12 -F 1 3 0 8 12 2 -F 1 13 1 8 22 12 -F 1 27 3 7 18 8 -F 1 7 3 10 19 9 -F 1 4 4 8 18 8 -F 1 2 6 8 25 15 -F 1 4 7 8 23 13 -F 1 6 8 10 23 13 -F 1 10 9 8 12 2 -F 1 6 12 8 14 4 -F 1 10 0 8 12 3 -F 1 5 0 10 14 5 -F 1 20 1 8 22 13 -F 1 5 1 13 15 6 -F 1 22 2 1 22 13 -F 1 5 2 10 24 15 -F 1 5 3 10 19 10 -F 1 16 4 8 18 9 -F 1 8 4 10 10 1 -F 1 10 5 10 22 13 -F 1 8 7 10 12 3 -F 1 5 8 10 23 14 -F 1 9 9 8 12 3 -F 1 8 11 10 14 5 -F 1 7 12 10 15 6 -F 1 11 0 10 14 6 -F 1 49 2 1 22 14 -F 1 24 2 6 23 15 -F 1 6 2 10 24 16 -F 1 7 3 10 19 11 -F 1 17 4 6 10 2 -F 1 8 4 10 10 2 -F 1 15 5 6 28 20 -F 1 10 6 10 16 8 -F 1 6 7 10 12 4 -F 1 12 9 10 27 19 -F 1 6 9 13 23 15 -F 1 8 11 10 14 6 -F 1 7 12 10 15 7 -F 1 21 0 1 11 4 -F 1 10 0 2 11 4 -F 1 5 0 10 14 7 -F 1 5 1 2 22 15 -F 1 27 2 1 22 15 -F 1 7 2 10 24 17 -F 1 6 3 10 19 12 -F 1 12 4 2 17 10 -F 1 6 4 10 10 3 -F 1 16 5 2 11 4 -F 1 8 5 10 22 15 -F 1 9 6 2 23 16 -F 1 8 7 2 22 15 -F 1 6 8 10 23 16 -F 1 7 9 10 27 20 -F 1 7 11 2 11 4 -F 1 10 12 2 13 6 -F 1 34 0 2 11 5 -F 1 17 0 6 14 8 -F 1 9 0 10 14 8 -F 1 8 1 6 11 5 -F 1 6 2 10 24 18 -F 1 7 3 6 19 13 -F 1 7 4 6 10 4 -F 1 12 5 6 28 22 -F 1 6 5 10 22 16 -F 1 10 11 6 17 11 -F 1 5 11 10 14 8 -F 1 9 12 6 11 5 -F 1 13 0 10 14 9 -F 1 14 1 10 6 1 -F 1 7 1 13 15 10 -F 1 12 2 10 24 19 -F 1 6 2 13 18 13 -F 1 18 3 0 6 1 -F 1 9 3 10 19 14 -F 1 16 4 0 6 1 -F 1 8 4 10 10 5 -F 1 10 5 10 22 17 -F 1 19 7 0 12 7 -F 1 8 8 10 23 18 -F 1 20 9 0 14 9 -F 1 10 9 10 27 22 -F 2 80 15 4 9 5 -F 1 18 0 5 14 10 -F 1 9 0 10 14 10 -F 1 6 1 5 23 19 -F 1 3 1 7 6 2 -F 1 5 2 5 11 7 -F 1 18 3 5 10 6 -F 1 9 3 10 19 15 -F 1 5 4 5 19 15 -F 1 3 4 7 6 2 -F 1 5 5 10 22 18 -F 1 9 6 5 28 24 -F 1 5 6 7 5 1 -F 1 25 7 5 25 21 -F 1 12 7 6 5 1 -F 1 25 8 5 5 1 -F 1 12 8 7 23 19 -F 1 6 8 10 23 19 -F 1 18 9 5 16 12 -F 1 9 9 10 27 23 -F 1 6 11 5 11 7 -F 1 4 12 5 17 13 -F 1 6 0 10 14 11 -F 1 5 2 10 24 21 -F 1 14 3 10 19 16 -F 1 7 3 11 6 3 -F 1 13 4 7 6 3 -F 1 6 4 10 10 7 -F 1 5 5 10 22 19 -F 1 6 6 7 5 2 -F 1 8 7 10 12 9 -F 1 20 8 4 18 15 -F 1 10 8 5 5 2 -F 1 5 9 10 27 24 -F 1 10 11 0 4 1 -F 1 7 12 0 4 1 -F 1 4 0 4 6 4 -F 1 2 0 11 4 2 -F 1 23 1 4 6 4 -F 1 12 1 10 6 4 -F 1 6 1 11 13 11 -F 1 12 2 4 17 15 -F 1 6 2 10 24 22 -F 1 15 3 4 12 10 -F 1 7 3 10 19 17 -F 1 4 3 11 6 4 -F 1 6 4 10 10 8 -F 1 8 5 4 19 17 -F 1 4 5 11 11 9 -F 1 3 6 4 10 8 -F 1 5 7 4 6 4 -F 1 19 8 4 18 16 -F 1 10 8 5 5 3 -F 1 5 8 11 10 8 -F 1 6 9 4 19 17 -F 1 9 11 4 8 6 -F 1 9 12 4 6 4 -F 1 5 12 11 7 5 -F 1 19 0 4 6 5 -F 1 10 0 10 14 13 -F 1 5 0 11 4 3 -F 1 28 1 4 6 5 -F 1 14 1 10 6 5 -F 1 7 1 13 15 14 -F 1 19 2 4 17 16 -F 1 9 2 10 24 23 -F 1 14 3 10 19 18 -F 1 7 3 11 6 5 -F 1 5 4 10 10 9 -F 1 12 6 10 16 15 -F 1 6 6 13 23 22 -F 1 4 7 4 6 5 -F 1 17 9 4 19 18 -F 1 9 9 10 27 26 -F 1 7 11 10 14 13 -F 1 8 12 4 6 5 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 13 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 7 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 2 0 -player2 > engine: 1 1 33 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 2 0 -player2 > engine: 1 4 16 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 1 0 0.05549243454274729 -player2 > engine: 1 13 8 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 2 0 -player2 > engine: 2 1 40 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 20 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 1 0 0.04558863060331812 -player2 > engine: 2 13 10 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 2 0 -player2 > engine: 3 2 20 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 1 0 0.10183210472368877 -player2 > engine: 3 13 10 -player2 > engine: comparing 3 and 14, gives 1 0 0.09988694591354103 -player2 > engine: 3 14 5 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 2 0 -player2 > engine: 4 12 9 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 1 0 0.17718658046128033 -player2 > engine: 6 13 8 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 1 0 0.07127486481918088 -player2 > engine: 7 13 9 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 1 0 0.0959457165401428 -player2 > engine: 8 13 9 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 2 0 -player2 > engine: 9 12 13 -player2 > engine: comparing 9 and 13, gives 1 0 0.17957565458240535 -player2 > engine: 9 13 6 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 0 0 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 0 0 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 0 0 0.3467010984295745 -player2 > engine: comparing 10 and 14, gives 0 0 0.17957565458240538 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 1 0 0.08959020236950047 -player2 > engine: 11 13 6 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 8 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 61 3 -P 9.319567 21.808874 2 65 5 -P 14.288424 0.622569 2 35 5 -P 11.865493 5.273785 2 33 3 -P 11.742498 17.157658 2 13 3 -P 4.254093 0.000000 2 33 1 -P 19.353899 22.431443 2 21 1 -P 14.743614 22.324001 2 32 3 -P 8.864377 0.107441 2 13 3 -P 19.854347 0.711934 2 20 1 -P 3.753644 21.719509 2 53 1 -P 8.864814 9.736624 2 14 5 -P 14.743177 12.694819 2 28 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 95 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 2 6 23 2 -F 2 3 5 6 28 7 -F 2 5 8 6 25 4 -F 2 13 7 2 22 2 -F 2 9 1 9 24 6 -F 2 8 4 9 19 1 -F 2 5 6 3 19 1 -F 2 7 1 9 24 7 -F 2 11 7 3 18 1 -F 2 6 7 9 23 6 -F 2 8 1 9 24 8 -F 2 10 3 6 19 3 -F 2 5 6 9 22 6 -F 2 7 7 9 23 7 -F 2 14 2 4 17 2 -F 2 7 2 10 24 9 -F 2 7 3 10 19 4 -F 2 9 5 10 22 7 -F 2 8 8 10 23 8 -F 2 7 2 10 24 10 -F 2 9 3 10 19 5 -F 2 8 5 10 22 8 -F 2 4 5 12 17 3 -F 2 6 8 10 23 9 -F 2 7 9 10 27 13 -F 2 10 12 10 15 1 -F 2 6 0 10 14 1 -F 2 8 2 7 22 9 -F 2 16 3 7 18 5 -F 2 8 3 10 19 6 -F 2 14 5 7 25 12 -F 2 7 5 10 22 9 -F 2 11 8 7 23 10 -F 2 6 8 10 23 10 -F 2 10 9 7 23 10 -F 2 5 9 10 27 14 -F 2 7 0 10 14 2 -F 2 7 2 10 24 12 -F 2 20 3 7 18 6 -F 2 10 3 10 19 7 -F 2 14 5 7 25 13 -F 2 7 5 10 22 10 -F 2 13 8 7 23 11 -F 2 7 8 10 23 11 -F 2 3 0 8 12 1 -F 2 13 1 8 22 11 -F 2 27 3 7 18 7 -F 2 7 3 10 19 8 -F 2 4 4 8 18 7 -F 2 2 6 8 25 14 -F 2 4 7 8 23 12 -F 2 6 8 10 23 12 -F 2 10 9 8 12 1 -F 2 6 12 8 14 3 -F 2 10 0 8 12 2 -F 2 5 0 10 14 4 -F 2 20 1 8 22 12 -F 2 5 1 13 15 5 -F 2 22 2 1 22 12 -F 2 5 2 10 24 14 -F 2 5 3 10 19 9 -F 2 16 4 8 18 8 -F 2 10 5 10 22 12 -F 2 8 7 10 12 2 -F 2 5 8 10 23 13 -F 2 9 9 8 12 2 -F 2 8 11 10 14 4 -F 2 7 12 10 15 5 -F 2 11 0 10 14 5 -F 2 49 2 1 22 13 -F 2 24 2 6 23 14 -F 2 6 2 10 24 15 -F 2 7 3 10 19 10 -F 2 17 4 6 10 1 -F 2 8 4 10 10 1 -F 2 15 5 6 28 19 -F 2 10 6 10 16 7 -F 2 6 7 10 12 3 -F 2 12 9 10 27 18 -F 2 6 9 13 23 14 -F 2 8 11 10 14 5 -F 2 7 12 10 15 6 -F 2 21 0 1 11 3 -F 2 10 0 2 11 3 -F 2 5 0 10 14 6 -F 2 5 1 2 22 14 -F 2 27 2 1 22 14 -F 2 7 2 10 24 16 -F 2 6 3 10 19 11 -F 2 12 4 2 17 9 -F 2 6 4 10 10 2 -F 2 16 5 2 11 3 -F 2 8 5 10 22 14 -F 2 9 6 2 23 15 -F 2 8 7 2 22 14 -F 2 6 8 10 23 15 -F 2 7 9 10 27 19 -F 2 7 11 2 11 3 -F 2 10 12 2 13 5 -F 2 34 0 2 11 4 -F 2 17 0 6 14 7 -F 2 9 0 10 14 7 -F 2 8 1 6 11 4 -F 2 6 2 10 24 17 -F 2 7 3 6 19 12 -F 2 7 4 6 10 3 -F 2 12 5 6 28 21 -F 2 6 5 10 22 15 -F 2 10 11 6 17 10 -F 2 5 11 10 14 7 -F 2 9 12 6 11 4 -F 2 13 0 10 14 8 -F 2 7 1 13 15 9 -F 2 12 2 10 24 18 -F 2 6 2 13 18 12 -F 2 9 3 10 19 13 -F 2 8 4 10 10 4 -F 2 10 5 10 22 16 -F 2 19 7 0 12 6 -F 2 8 8 10 23 17 -F 2 20 9 0 14 8 -F 2 10 9 10 27 21 -F 1 80 15 4 9 4 -F 2 18 0 5 14 9 -F 2 9 0 10 14 9 -F 2 6 1 5 23 18 -F 2 3 1 7 6 1 -F 2 5 2 5 11 6 -F 2 18 3 5 10 5 -F 2 9 3 10 19 14 -F 2 5 4 5 19 14 -F 2 3 4 7 6 1 -F 2 5 5 10 22 17 -F 2 9 6 5 28 23 -F 2 25 7 5 25 20 -F 2 12 8 7 23 18 -F 2 6 8 10 23 18 -F 2 18 9 5 16 11 -F 2 9 9 10 27 22 -F 2 6 11 5 11 6 -F 2 4 12 5 17 12 -F 2 6 0 10 14 10 -F 2 5 2 10 24 20 -F 2 14 3 10 19 15 -F 2 7 3 11 6 2 -F 2 13 4 7 6 2 -F 2 6 4 10 10 6 -F 2 5 5 10 22 18 -F 2 6 6 7 5 1 -F 2 8 7 10 12 8 -F 2 20 8 4 18 14 -F 2 10 8 5 5 1 -F 2 5 9 10 27 23 -F 2 4 0 4 6 3 -F 2 2 0 11 4 1 -F 2 23 1 4 6 3 -F 2 12 1 10 6 3 -F 2 6 1 11 13 10 -F 2 12 2 4 17 14 -F 2 6 2 10 24 21 -F 2 15 3 4 12 9 -F 2 7 3 10 19 16 -F 2 4 3 11 6 3 -F 2 6 4 10 10 7 -F 2 8 5 4 19 16 -F 2 4 5 11 11 8 -F 2 3 6 4 10 7 -F 2 5 7 4 6 3 -F 2 19 8 4 18 15 -F 2 10 8 5 5 2 -F 2 5 8 11 10 7 -F 2 6 9 4 19 16 -F 2 9 11 4 8 5 -F 2 9 12 4 6 3 -F 2 5 12 11 7 4 -F 2 19 0 4 6 4 -F 2 10 0 10 14 12 -F 2 5 0 11 4 2 -F 2 28 1 4 6 4 -F 2 14 1 10 6 4 -F 2 7 1 13 15 13 -F 2 19 2 4 17 15 -F 2 9 2 10 24 22 -F 2 14 3 10 19 17 -F 2 7 3 11 6 4 -F 2 5 4 10 10 8 -F 2 12 6 10 16 14 -F 2 6 6 13 23 21 -F 2 4 7 4 6 4 -F 2 17 9 4 19 17 -F 2 9 9 10 27 25 -F 2 7 11 10 14 12 -F 2 8 12 4 6 4 -F 2 13 0 11 4 3 -F 2 7 0 12 4 3 -F 2 16 1 4 6 5 -F 2 8 1 13 15 14 -F 2 40 2 1 22 21 -F 2 10 2 13 18 17 -F 2 20 3 2 6 5 -F 2 10 3 13 14 13 -F 2 5 3 14 14 13 -F 2 9 4 12 6 5 -F 2 8 6 13 23 22 -F 2 9 7 13 19 18 -F 2 9 8 13 14 13 -F 2 13 9 12 14 13 -F 2 6 9 13 23 22 -F 2 6 11 13 9 8 -go - -engine > player2: P 11.803996 11.215721 1 61 3 -P 9.319567 21.808874 1 65 5 -P 14.288424 0.622569 1 35 5 -P 11.865493 5.273785 1 33 3 -P 11.742498 17.157658 1 13 3 -P 4.254093 0.000000 1 33 1 -P 19.353899 22.431443 1 21 1 -P 14.743614 22.324001 1 32 3 -P 8.864377 0.107441 1 13 3 -P 19.854347 0.711934 1 20 1 -P 3.753644 21.719509 1 53 1 -P 8.864814 9.736624 1 14 5 -P 14.743177 12.694819 1 28 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 95 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 2 6 23 2 -F 1 3 5 6 28 7 -F 1 5 8 6 25 4 -F 1 13 7 2 22 2 -F 1 9 1 9 24 6 -F 1 8 4 9 19 1 -F 1 5 6 3 19 1 -F 1 7 1 9 24 7 -F 1 11 7 3 18 1 -F 1 6 7 9 23 6 -F 1 8 1 9 24 8 -F 1 10 3 6 19 3 -F 1 5 6 9 22 6 -F 1 7 7 9 23 7 -F 1 14 2 4 17 2 -F 1 7 2 10 24 9 -F 1 7 3 10 19 4 -F 1 9 5 10 22 7 -F 1 8 8 10 23 8 -F 1 7 2 10 24 10 -F 1 9 3 10 19 5 -F 1 8 5 10 22 8 -F 1 4 5 12 17 3 -F 1 6 8 10 23 9 -F 1 7 9 10 27 13 -F 1 10 12 10 15 1 -F 1 6 0 10 14 1 -F 1 8 2 7 22 9 -F 1 16 3 7 18 5 -F 1 8 3 10 19 6 -F 1 14 5 7 25 12 -F 1 7 5 10 22 9 -F 1 11 8 7 23 10 -F 1 6 8 10 23 10 -F 1 10 9 7 23 10 -F 1 5 9 10 27 14 -F 1 7 0 10 14 2 -F 1 7 2 10 24 12 -F 1 20 3 7 18 6 -F 1 10 3 10 19 7 -F 1 14 5 7 25 13 -F 1 7 5 10 22 10 -F 1 13 8 7 23 11 -F 1 7 8 10 23 11 -F 1 3 0 8 12 1 -F 1 13 1 8 22 11 -F 1 27 3 7 18 7 -F 1 7 3 10 19 8 -F 1 4 4 8 18 7 -F 1 2 6 8 25 14 -F 1 4 7 8 23 12 -F 1 6 8 10 23 12 -F 1 10 9 8 12 1 -F 1 6 12 8 14 3 -F 1 10 0 8 12 2 -F 1 5 0 10 14 4 -F 1 20 1 8 22 12 -F 1 5 1 13 15 5 -F 1 22 2 1 22 12 -F 1 5 2 10 24 14 -F 1 5 3 10 19 9 -F 1 16 4 8 18 8 -F 1 10 5 10 22 12 -F 1 8 7 10 12 2 -F 1 5 8 10 23 13 -F 1 9 9 8 12 2 -F 1 8 11 10 14 4 -F 1 7 12 10 15 5 -F 1 11 0 10 14 5 -F 1 49 2 1 22 13 -F 1 24 2 6 23 14 -F 1 6 2 10 24 15 -F 1 7 3 10 19 10 -F 1 17 4 6 10 1 -F 1 8 4 10 10 1 -F 1 15 5 6 28 19 -F 1 10 6 10 16 7 -F 1 6 7 10 12 3 -F 1 12 9 10 27 18 -F 1 6 9 13 23 14 -F 1 8 11 10 14 5 -F 1 7 12 10 15 6 -F 1 21 0 1 11 3 -F 1 10 0 2 11 3 -F 1 5 0 10 14 6 -F 1 5 1 2 22 14 -F 1 27 2 1 22 14 -F 1 7 2 10 24 16 -F 1 6 3 10 19 11 -F 1 12 4 2 17 9 -F 1 6 4 10 10 2 -F 1 16 5 2 11 3 -F 1 8 5 10 22 14 -F 1 9 6 2 23 15 -F 1 8 7 2 22 14 -F 1 6 8 10 23 15 -F 1 7 9 10 27 19 -F 1 7 11 2 11 3 -F 1 10 12 2 13 5 -F 1 34 0 2 11 4 -F 1 17 0 6 14 7 -F 1 9 0 10 14 7 -F 1 8 1 6 11 4 -F 1 6 2 10 24 17 -F 1 7 3 6 19 12 -F 1 7 4 6 10 3 -F 1 12 5 6 28 21 -F 1 6 5 10 22 15 -F 1 10 11 6 17 10 -F 1 5 11 10 14 7 -F 1 9 12 6 11 4 -F 1 13 0 10 14 8 -F 1 7 1 13 15 9 -F 1 12 2 10 24 18 -F 1 6 2 13 18 12 -F 1 9 3 10 19 13 -F 1 8 4 10 10 4 -F 1 10 5 10 22 16 -F 1 19 7 0 12 6 -F 1 8 8 10 23 17 -F 1 20 9 0 14 8 -F 1 10 9 10 27 21 -F 2 80 15 4 9 4 -F 1 18 0 5 14 9 -F 1 9 0 10 14 9 -F 1 6 1 5 23 18 -F 1 3 1 7 6 1 -F 1 5 2 5 11 6 -F 1 18 3 5 10 5 -F 1 9 3 10 19 14 -F 1 5 4 5 19 14 -F 1 3 4 7 6 1 -F 1 5 5 10 22 17 -F 1 9 6 5 28 23 -F 1 25 7 5 25 20 -F 1 12 8 7 23 18 -F 1 6 8 10 23 18 -F 1 18 9 5 16 11 -F 1 9 9 10 27 22 -F 1 6 11 5 11 6 -F 1 4 12 5 17 12 -F 1 6 0 10 14 10 -F 1 5 2 10 24 20 -F 1 14 3 10 19 15 -F 1 7 3 11 6 2 -F 1 13 4 7 6 2 -F 1 6 4 10 10 6 -F 1 5 5 10 22 18 -F 1 6 6 7 5 1 -F 1 8 7 10 12 8 -F 1 20 8 4 18 14 -F 1 10 8 5 5 1 -F 1 5 9 10 27 23 -F 1 4 0 4 6 3 -F 1 2 0 11 4 1 -F 1 23 1 4 6 3 -F 1 12 1 10 6 3 -F 1 6 1 11 13 10 -F 1 12 2 4 17 14 -F 1 6 2 10 24 21 -F 1 15 3 4 12 9 -F 1 7 3 10 19 16 -F 1 4 3 11 6 3 -F 1 6 4 10 10 7 -F 1 8 5 4 19 16 -F 1 4 5 11 11 8 -F 1 3 6 4 10 7 -F 1 5 7 4 6 3 -F 1 19 8 4 18 15 -F 1 10 8 5 5 2 -F 1 5 8 11 10 7 -F 1 6 9 4 19 16 -F 1 9 11 4 8 5 -F 1 9 12 4 6 3 -F 1 5 12 11 7 4 -F 1 19 0 4 6 4 -F 1 10 0 10 14 12 -F 1 5 0 11 4 2 -F 1 28 1 4 6 4 -F 1 14 1 10 6 4 -F 1 7 1 13 15 13 -F 1 19 2 4 17 15 -F 1 9 2 10 24 22 -F 1 14 3 10 19 17 -F 1 7 3 11 6 4 -F 1 5 4 10 10 8 -F 1 12 6 10 16 14 -F 1 6 6 13 23 21 -F 1 4 7 4 6 4 -F 1 17 9 4 19 17 -F 1 9 9 10 27 25 -F 1 7 11 10 14 12 -F 1 8 12 4 6 4 -F 1 13 0 11 4 3 -F 1 7 0 12 4 3 -F 1 16 1 4 6 5 -F 1 8 1 13 15 14 -F 1 40 2 1 22 21 -F 1 10 2 13 18 17 -F 1 20 3 2 6 5 -F 1 10 3 13 14 13 -F 1 5 3 14 14 13 -F 1 9 4 12 6 5 -F 1 8 6 13 23 22 -F 1 9 7 13 19 18 -F 1 9 8 13 14 13 -F 1 13 9 12 14 13 -F 1 6 9 13 23 22 -F 1 6 11 13 9 8 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 30 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 2 0 -player2 > engine: 0 9 15 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 8 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 4 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 2 0 -player2 > engine: 1 0 32 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 2 0 -player2 > engine: 1 9 16 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 1 0 0.05549243454274729 -player2 > engine: 1 13 8 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 2 0 -player2 > engine: 2 0 17 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 2 0 -player2 > engine: 2 9 9 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 2 0 -player2 > engine: 3 0 16 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 1 0 0.10183210472368877 -player2 > engine: 3 13 8 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 2 0 -player2 > engine: 4 0 6 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 2 0 -player2 > engine: 5 0 16 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 1 0 0.3443276716006396 -player2 > engine: 5 13 8 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 2 0 -player2 > engine: 6 0 10 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 1 0 0.17718658046128033 -player2 > engine: 6 13 5 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 2 0 -player2 > engine: 7 0 16 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 1 0 0.07127486481918088 -player2 > engine: 7 13 8 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 2 0 -player2 > engine: 8 0 6 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 2 0 -player2 > engine: 9 0 10 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 2 0 -player2 > engine: 10 0 26 -player2 > engine: comparing 10 and 1, gives 0 0 0 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 0 0 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 2 0 -player2 > engine: 10 9 13 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 1 0 0.3467010984295745 -player2 > engine: 10 13 7 -player2 > engine: comparing 10 and 14, gives 0 0 0.17957565458240538 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 7 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 14 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 1 0 0.05382426922307792 -player2 > engine: 12 13 7 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 37 3 -P 9.319567 21.808874 2 14 5 -P 14.288424 0.622569 2 14 5 -P 11.865493 5.273785 2 28 3 -P 11.742498 17.157658 2 10 3 -P 4.254093 0.000000 2 20 1 -P 19.353899 22.431443 2 24 1 -P 14.743614 22.324001 2 23 3 -P 8.864377 0.107441 2 23 3 -P 19.854347 0.711934 2 19 1 -P 3.753644 21.719509 2 32 1 -P 8.864814 9.736624 2 14 5 -P 14.743177 12.694819 2 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 98 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 2 6 23 1 -F 2 3 5 6 28 6 -F 2 5 8 6 25 3 -F 2 13 7 2 22 1 -F 2 9 1 9 24 5 -F 2 7 1 9 24 6 -F 2 6 7 9 23 5 -F 2 8 1 9 24 7 -F 2 10 3 6 19 2 -F 2 5 6 9 22 5 -F 2 7 7 9 23 6 -F 2 14 2 4 17 1 -F 2 7 2 10 24 8 -F 2 7 3 10 19 3 -F 2 9 5 10 22 6 -F 2 8 8 10 23 7 -F 2 7 2 10 24 9 -F 2 9 3 10 19 4 -F 2 8 5 10 22 7 -F 2 4 5 12 17 2 -F 2 6 8 10 23 8 -F 2 7 9 10 27 12 -F 2 8 2 7 22 8 -F 2 16 3 7 18 4 -F 2 8 3 10 19 5 -F 2 14 5 7 25 11 -F 2 7 5 10 22 8 -F 2 11 8 7 23 9 -F 2 6 8 10 23 9 -F 2 10 9 7 23 9 -F 2 5 9 10 27 13 -F 2 7 0 10 14 1 -F 2 7 2 10 24 11 -F 2 20 3 7 18 5 -F 2 10 3 10 19 6 -F 2 14 5 7 25 12 -F 2 7 5 10 22 9 -F 2 13 8 7 23 10 -F 2 7 8 10 23 10 -F 2 13 1 8 22 10 -F 2 27 3 7 18 6 -F 2 7 3 10 19 7 -F 2 4 4 8 18 6 -F 2 2 6 8 25 13 -F 2 4 7 8 23 11 -F 2 6 8 10 23 11 -F 2 6 12 8 14 2 -F 2 10 0 8 12 1 -F 2 5 0 10 14 3 -F 2 20 1 8 22 11 -F 2 5 1 13 15 4 -F 2 22 2 1 22 11 -F 2 5 2 10 24 13 -F 2 5 3 10 19 8 -F 2 16 4 8 18 7 -F 2 10 5 10 22 11 -F 2 8 7 10 12 1 -F 2 5 8 10 23 12 -F 2 9 9 8 12 1 -F 2 8 11 10 14 3 -F 2 7 12 10 15 4 -F 2 11 0 10 14 4 -F 2 49 2 1 22 12 -F 2 24 2 6 23 13 -F 2 6 2 10 24 14 -F 2 7 3 10 19 9 -F 2 15 5 6 28 18 -F 2 10 6 10 16 6 -F 2 6 7 10 12 2 -F 2 12 9 10 27 17 -F 2 6 9 13 23 13 -F 2 8 11 10 14 4 -F 2 7 12 10 15 5 -F 2 21 0 1 11 2 -F 2 10 0 2 11 2 -F 2 5 0 10 14 5 -F 2 5 1 2 22 13 -F 2 27 2 1 22 13 -F 2 7 2 10 24 15 -F 2 6 3 10 19 10 -F 2 12 4 2 17 8 -F 2 6 4 10 10 1 -F 2 16 5 2 11 2 -F 2 8 5 10 22 13 -F 2 9 6 2 23 14 -F 2 8 7 2 22 13 -F 2 6 8 10 23 14 -F 2 7 9 10 27 18 -F 2 7 11 2 11 2 -F 2 10 12 2 13 4 -F 2 34 0 2 11 3 -F 2 17 0 6 14 6 -F 2 9 0 10 14 6 -F 2 8 1 6 11 3 -F 2 6 2 10 24 16 -F 2 7 3 6 19 11 -F 2 7 4 6 10 2 -F 2 12 5 6 28 20 -F 2 6 5 10 22 14 -F 2 10 11 6 17 9 -F 2 5 11 10 14 6 -F 2 9 12 6 11 3 -F 2 13 0 10 14 7 -F 2 7 1 13 15 8 -F 2 12 2 10 24 17 -F 2 6 2 13 18 11 -F 2 9 3 10 19 12 -F 2 8 4 10 10 3 -F 2 10 5 10 22 15 -F 2 19 7 0 12 5 -F 2 8 8 10 23 16 -F 2 20 9 0 14 7 -F 2 10 9 10 27 20 -F 1 80 15 4 9 3 -F 2 18 0 5 14 8 -F 2 9 0 10 14 8 -F 2 6 1 5 23 17 -F 2 5 2 5 11 5 -F 2 18 3 5 10 4 -F 2 9 3 10 19 13 -F 2 5 4 5 19 13 -F 2 5 5 10 22 16 -F 2 9 6 5 28 22 -F 2 25 7 5 25 19 -F 2 12 8 7 23 17 -F 2 6 8 10 23 17 -F 2 18 9 5 16 10 -F 2 9 9 10 27 21 -F 2 6 11 5 11 5 -F 2 4 12 5 17 11 -F 2 6 0 10 14 9 -F 2 5 2 10 24 19 -F 2 14 3 10 19 14 -F 2 7 3 11 6 1 -F 2 13 4 7 6 1 -F 2 6 4 10 10 5 -F 2 5 5 10 22 17 -F 2 8 7 10 12 7 -F 2 20 8 4 18 13 -F 2 5 9 10 27 22 -F 2 4 0 4 6 2 -F 2 23 1 4 6 2 -F 2 12 1 10 6 2 -F 2 6 1 11 13 9 -F 2 12 2 4 17 13 -F 2 6 2 10 24 20 -F 2 15 3 4 12 8 -F 2 7 3 10 19 15 -F 2 4 3 11 6 2 -F 2 6 4 10 10 6 -F 2 8 5 4 19 15 -F 2 4 5 11 11 7 -F 2 3 6 4 10 6 -F 2 5 7 4 6 2 -F 2 19 8 4 18 14 -F 2 10 8 5 5 1 -F 2 5 8 11 10 6 -F 2 6 9 4 19 15 -F 2 9 11 4 8 4 -F 2 9 12 4 6 2 -F 2 5 12 11 7 3 -F 2 19 0 4 6 3 -F 2 10 0 10 14 11 -F 2 5 0 11 4 1 -F 2 28 1 4 6 3 -F 2 14 1 10 6 3 -F 2 7 1 13 15 12 -F 2 19 2 4 17 14 -F 2 9 2 10 24 21 -F 2 14 3 10 19 16 -F 2 7 3 11 6 3 -F 2 5 4 10 10 7 -F 2 12 6 10 16 13 -F 2 6 6 13 23 20 -F 2 4 7 4 6 3 -F 2 17 9 4 19 16 -F 2 9 9 10 27 24 -F 2 7 11 10 14 11 -F 2 8 12 4 6 3 -F 2 13 0 11 4 2 -F 2 7 0 12 4 2 -F 2 16 1 4 6 4 -F 2 8 1 13 15 13 -F 2 40 2 1 22 20 -F 2 10 2 13 18 16 -F 2 20 3 2 6 4 -F 2 10 3 13 14 12 -F 2 5 3 14 14 12 -F 2 9 4 12 6 4 -F 2 8 6 13 23 21 -F 2 9 7 13 19 17 -F 2 9 8 13 14 12 -F 2 13 9 12 14 12 -F 2 6 9 13 23 21 -F 2 6 11 13 9 7 -F 2 15 0 9 14 13 -F 2 8 0 11 4 3 -F 2 4 0 12 4 3 -F 2 32 1 0 11 10 -F 2 16 1 9 24 23 -F 2 8 1 13 15 14 -F 2 17 2 0 11 10 -F 2 9 2 9 6 5 -F 2 16 3 0 6 5 -F 2 8 3 13 14 13 -F 2 6 4 0 6 5 -F 2 16 5 0 14 13 -F 2 8 5 13 12 11 -F 2 10 6 0 14 13 -F 2 5 6 13 23 22 -F 2 16 7 0 12 11 -F 2 8 7 13 19 18 -F 2 6 8 0 12 11 -F 2 10 9 0 14 13 -F 2 26 10 0 14 13 -F 2 13 10 9 27 26 -F 2 7 10 13 12 11 -F 2 7 11 0 4 3 -F 2 14 12 0 4 3 -F 2 7 12 13 15 14 -go - -engine > player2: P 11.803996 11.215721 1 37 3 -P 9.319567 21.808874 1 14 5 -P 14.288424 0.622569 1 14 5 -P 11.865493 5.273785 1 28 3 -P 11.742498 17.157658 1 10 3 -P 4.254093 0.000000 1 20 1 -P 19.353899 22.431443 1 24 1 -P 14.743614 22.324001 1 23 3 -P 8.864377 0.107441 1 23 3 -P 19.854347 0.711934 1 19 1 -P 3.753644 21.719509 1 32 1 -P 8.864814 9.736624 1 14 5 -P 14.743177 12.694819 1 12 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 98 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 2 6 23 1 -F 1 3 5 6 28 6 -F 1 5 8 6 25 3 -F 1 13 7 2 22 1 -F 1 9 1 9 24 5 -F 1 7 1 9 24 6 -F 1 6 7 9 23 5 -F 1 8 1 9 24 7 -F 1 10 3 6 19 2 -F 1 5 6 9 22 5 -F 1 7 7 9 23 6 -F 1 14 2 4 17 1 -F 1 7 2 10 24 8 -F 1 7 3 10 19 3 -F 1 9 5 10 22 6 -F 1 8 8 10 23 7 -F 1 7 2 10 24 9 -F 1 9 3 10 19 4 -F 1 8 5 10 22 7 -F 1 4 5 12 17 2 -F 1 6 8 10 23 8 -F 1 7 9 10 27 12 -F 1 8 2 7 22 8 -F 1 16 3 7 18 4 -F 1 8 3 10 19 5 -F 1 14 5 7 25 11 -F 1 7 5 10 22 8 -F 1 11 8 7 23 9 -F 1 6 8 10 23 9 -F 1 10 9 7 23 9 -F 1 5 9 10 27 13 -F 1 7 0 10 14 1 -F 1 7 2 10 24 11 -F 1 20 3 7 18 5 -F 1 10 3 10 19 6 -F 1 14 5 7 25 12 -F 1 7 5 10 22 9 -F 1 13 8 7 23 10 -F 1 7 8 10 23 10 -F 1 13 1 8 22 10 -F 1 27 3 7 18 6 -F 1 7 3 10 19 7 -F 1 4 4 8 18 6 -F 1 2 6 8 25 13 -F 1 4 7 8 23 11 -F 1 6 8 10 23 11 -F 1 6 12 8 14 2 -F 1 10 0 8 12 1 -F 1 5 0 10 14 3 -F 1 20 1 8 22 11 -F 1 5 1 13 15 4 -F 1 22 2 1 22 11 -F 1 5 2 10 24 13 -F 1 5 3 10 19 8 -F 1 16 4 8 18 7 -F 1 10 5 10 22 11 -F 1 8 7 10 12 1 -F 1 5 8 10 23 12 -F 1 9 9 8 12 1 -F 1 8 11 10 14 3 -F 1 7 12 10 15 4 -F 1 11 0 10 14 4 -F 1 49 2 1 22 12 -F 1 24 2 6 23 13 -F 1 6 2 10 24 14 -F 1 7 3 10 19 9 -F 1 15 5 6 28 18 -F 1 10 6 10 16 6 -F 1 6 7 10 12 2 -F 1 12 9 10 27 17 -F 1 6 9 13 23 13 -F 1 8 11 10 14 4 -F 1 7 12 10 15 5 -F 1 21 0 1 11 2 -F 1 10 0 2 11 2 -F 1 5 0 10 14 5 -F 1 5 1 2 22 13 -F 1 27 2 1 22 13 -F 1 7 2 10 24 15 -F 1 6 3 10 19 10 -F 1 12 4 2 17 8 -F 1 6 4 10 10 1 -F 1 16 5 2 11 2 -F 1 8 5 10 22 13 -F 1 9 6 2 23 14 -F 1 8 7 2 22 13 -F 1 6 8 10 23 14 -F 1 7 9 10 27 18 -F 1 7 11 2 11 2 -F 1 10 12 2 13 4 -F 1 34 0 2 11 3 -F 1 17 0 6 14 6 -F 1 9 0 10 14 6 -F 1 8 1 6 11 3 -F 1 6 2 10 24 16 -F 1 7 3 6 19 11 -F 1 7 4 6 10 2 -F 1 12 5 6 28 20 -F 1 6 5 10 22 14 -F 1 10 11 6 17 9 -F 1 5 11 10 14 6 -F 1 9 12 6 11 3 -F 1 13 0 10 14 7 -F 1 7 1 13 15 8 -F 1 12 2 10 24 17 -F 1 6 2 13 18 11 -F 1 9 3 10 19 12 -F 1 8 4 10 10 3 -F 1 10 5 10 22 15 -F 1 19 7 0 12 5 -F 1 8 8 10 23 16 -F 1 20 9 0 14 7 -F 1 10 9 10 27 20 -F 2 80 15 4 9 3 -F 1 18 0 5 14 8 -F 1 9 0 10 14 8 -F 1 6 1 5 23 17 -F 1 5 2 5 11 5 -F 1 18 3 5 10 4 -F 1 9 3 10 19 13 -F 1 5 4 5 19 13 -F 1 5 5 10 22 16 -F 1 9 6 5 28 22 -F 1 25 7 5 25 19 -F 1 12 8 7 23 17 -F 1 6 8 10 23 17 -F 1 18 9 5 16 10 -F 1 9 9 10 27 21 -F 1 6 11 5 11 5 -F 1 4 12 5 17 11 -F 1 6 0 10 14 9 -F 1 5 2 10 24 19 -F 1 14 3 10 19 14 -F 1 7 3 11 6 1 -F 1 13 4 7 6 1 -F 1 6 4 10 10 5 -F 1 5 5 10 22 17 -F 1 8 7 10 12 7 -F 1 20 8 4 18 13 -F 1 5 9 10 27 22 -F 1 4 0 4 6 2 -F 1 23 1 4 6 2 -F 1 12 1 10 6 2 -F 1 6 1 11 13 9 -F 1 12 2 4 17 13 -F 1 6 2 10 24 20 -F 1 15 3 4 12 8 -F 1 7 3 10 19 15 -F 1 4 3 11 6 2 -F 1 6 4 10 10 6 -F 1 8 5 4 19 15 -F 1 4 5 11 11 7 -F 1 3 6 4 10 6 -F 1 5 7 4 6 2 -F 1 19 8 4 18 14 -F 1 10 8 5 5 1 -F 1 5 8 11 10 6 -F 1 6 9 4 19 15 -F 1 9 11 4 8 4 -F 1 9 12 4 6 2 -F 1 5 12 11 7 3 -F 1 19 0 4 6 3 -F 1 10 0 10 14 11 -F 1 5 0 11 4 1 -F 1 28 1 4 6 3 -F 1 14 1 10 6 3 -F 1 7 1 13 15 12 -F 1 19 2 4 17 14 -F 1 9 2 10 24 21 -F 1 14 3 10 19 16 -F 1 7 3 11 6 3 -F 1 5 4 10 10 7 -F 1 12 6 10 16 13 -F 1 6 6 13 23 20 -F 1 4 7 4 6 3 -F 1 17 9 4 19 16 -F 1 9 9 10 27 24 -F 1 7 11 10 14 11 -F 1 8 12 4 6 3 -F 1 13 0 11 4 2 -F 1 7 0 12 4 2 -F 1 16 1 4 6 4 -F 1 8 1 13 15 13 -F 1 40 2 1 22 20 -F 1 10 2 13 18 16 -F 1 20 3 2 6 4 -F 1 10 3 13 14 12 -F 1 5 3 14 14 12 -F 1 9 4 12 6 4 -F 1 8 6 13 23 21 -F 1 9 7 13 19 17 -F 1 9 8 13 14 12 -F 1 13 9 12 14 12 -F 1 6 9 13 23 21 -F 1 6 11 13 9 7 -F 1 15 0 9 14 13 -F 1 8 0 11 4 3 -F 1 4 0 12 4 3 -F 1 32 1 0 11 10 -F 1 16 1 9 24 23 -F 1 8 1 13 15 14 -F 1 17 2 0 11 10 -F 1 9 2 9 6 5 -F 1 16 3 0 6 5 -F 1 8 3 13 14 13 -F 1 6 4 0 6 5 -F 1 16 5 0 14 13 -F 1 8 5 13 12 11 -F 1 10 6 0 14 13 -F 1 5 6 13 23 22 -F 1 16 7 0 12 11 -F 1 8 7 13 19 18 -F 1 6 8 0 12 11 -F 1 10 9 0 14 13 -F 1 26 10 0 14 13 -F 1 13 10 9 27 26 -F 1 7 10 13 12 11 -F 1 7 11 0 4 3 -F 1 14 12 0 4 3 -F 1 7 12 13 15 14 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 2 0 -player2 > engine: 0 3 18 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 2 0 -player2 > engine: 0 9 9 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 5 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 2 0 -player2 > engine: 1 3 7 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 2 0 -player2 > engine: 1 9 3 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 2 0 -player2 > engine: 2 3 7 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 2 0 -player2 > engine: 2 9 3 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 2 0 -player2 > engine: 3 3 14 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 2 0 -player2 > engine: 3 9 7 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 2 0 -player2 > engine: 4 3 5 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 2 0 -player2 > engine: 4 9 2 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 2 0 -player2 > engine: 5 3 10 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 2 0 -player2 > engine: 5 9 5 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 2 0 -player2 > engine: 6 3 12 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 2 0 -player2 > engine: 6 9 6 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 2 0 -player2 > engine: 7 3 11 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 2 0 -player2 > engine: 7 9 6 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 2 0 -player2 > engine: 8 3 11 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 2 0 -player2 > engine: 8 9 6 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 2 0 -player2 > engine: 9 3 9 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 2 0 -player2 > engine: 9 9 5 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 0 0 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 2 0 -player2 > engine: 10 3 16 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 2 0 -player2 > engine: 10 9 8 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 0 0 0.3467010984295745 -player2 > engine: comparing 10 and 14, gives 0 0 0.17957565458240538 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 7 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 2 0 -player2 > engine: 11 3 3 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 2 0 -player2 > engine: 11 9 2 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 6 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 2 0 -player2 > engine: 12 3 3 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 2 0 -player2 > engine: 12 9 1 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 8 3 -P 9.319567 21.808874 2 9 5 -P 14.288424 0.622569 2 22 5 -P 11.865493 5.273785 2 24 3 -P 11.742498 17.157658 2 20 3 -P 4.254093 0.000000 2 16 1 -P 19.353899 22.431443 2 13 1 -P 14.743614 22.324001 2 22 3 -P 8.864377 0.107441 2 28 3 -P 19.854347 0.711934 2 11 1 -P 3.753644 21.719509 2 30 1 -P 8.864814 9.736624 2 19 5 -P 14.743177 12.694819 2 7 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 101 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 3 5 6 28 5 -F 2 5 8 6 25 2 -F 2 9 1 9 24 4 -F 2 7 1 9 24 5 -F 2 6 7 9 23 4 -F 2 8 1 9 24 6 -F 2 10 3 6 19 1 -F 2 5 6 9 22 4 -F 2 7 7 9 23 5 -F 2 7 2 10 24 7 -F 2 7 3 10 19 2 -F 2 9 5 10 22 5 -F 2 8 8 10 23 6 -F 2 7 2 10 24 8 -F 2 9 3 10 19 3 -F 2 8 5 10 22 6 -F 2 4 5 12 17 1 -F 2 6 8 10 23 7 -F 2 7 9 10 27 11 -F 2 8 2 7 22 7 -F 2 16 3 7 18 3 -F 2 8 3 10 19 4 -F 2 14 5 7 25 10 -F 2 7 5 10 22 7 -F 2 11 8 7 23 8 -F 2 6 8 10 23 8 -F 2 10 9 7 23 8 -F 2 5 9 10 27 12 -F 2 7 2 10 24 10 -F 2 20 3 7 18 4 -F 2 10 3 10 19 5 -F 2 14 5 7 25 11 -F 2 7 5 10 22 8 -F 2 13 8 7 23 9 -F 2 7 8 10 23 9 -F 2 13 1 8 22 9 -F 2 27 3 7 18 5 -F 2 7 3 10 19 6 -F 2 4 4 8 18 5 -F 2 2 6 8 25 12 -F 2 4 7 8 23 10 -F 2 6 8 10 23 10 -F 2 6 12 8 14 1 -F 2 5 0 10 14 2 -F 2 20 1 8 22 10 -F 2 5 1 13 15 3 -F 2 22 2 1 22 10 -F 2 5 2 10 24 12 -F 2 5 3 10 19 7 -F 2 16 4 8 18 6 -F 2 10 5 10 22 10 -F 2 5 8 10 23 11 -F 2 8 11 10 14 2 -F 2 7 12 10 15 3 -F 2 11 0 10 14 3 -F 2 49 2 1 22 11 -F 2 24 2 6 23 12 -F 2 6 2 10 24 13 -F 2 7 3 10 19 8 -F 2 15 5 6 28 17 -F 2 10 6 10 16 5 -F 2 6 7 10 12 1 -F 2 12 9 10 27 16 -F 2 6 9 13 23 12 -F 2 8 11 10 14 3 -F 2 7 12 10 15 4 -F 2 21 0 1 11 1 -F 2 10 0 2 11 1 -F 2 5 0 10 14 4 -F 2 5 1 2 22 12 -F 2 27 2 1 22 12 -F 2 7 2 10 24 14 -F 2 6 3 10 19 9 -F 2 12 4 2 17 7 -F 2 16 5 2 11 1 -F 2 8 5 10 22 12 -F 2 9 6 2 23 13 -F 2 8 7 2 22 12 -F 2 6 8 10 23 13 -F 2 7 9 10 27 17 -F 2 7 11 2 11 1 -F 2 10 12 2 13 3 -F 2 34 0 2 11 2 -F 2 17 0 6 14 5 -F 2 9 0 10 14 5 -F 2 8 1 6 11 2 -F 2 6 2 10 24 15 -F 2 7 3 6 19 10 -F 2 7 4 6 10 1 -F 2 12 5 6 28 19 -F 2 6 5 10 22 13 -F 2 10 11 6 17 8 -F 2 5 11 10 14 5 -F 2 9 12 6 11 2 -F 2 13 0 10 14 6 -F 2 7 1 13 15 7 -F 2 12 2 10 24 16 -F 2 6 2 13 18 10 -F 2 9 3 10 19 11 -F 2 8 4 10 10 2 -F 2 10 5 10 22 14 -F 2 19 7 0 12 4 -F 2 8 8 10 23 15 -F 2 20 9 0 14 6 -F 2 10 9 10 27 19 -F 1 80 15 4 9 2 -F 2 18 0 5 14 7 -F 2 9 0 10 14 7 -F 2 6 1 5 23 16 -F 2 5 2 5 11 4 -F 2 18 3 5 10 3 -F 2 9 3 10 19 12 -F 2 5 4 5 19 12 -F 2 5 5 10 22 15 -F 2 9 6 5 28 21 -F 2 25 7 5 25 18 -F 2 12 8 7 23 16 -F 2 6 8 10 23 16 -F 2 18 9 5 16 9 -F 2 9 9 10 27 20 -F 2 6 11 5 11 4 -F 2 4 12 5 17 10 -F 2 6 0 10 14 8 -F 2 5 2 10 24 18 -F 2 14 3 10 19 13 -F 2 6 4 10 10 4 -F 2 5 5 10 22 16 -F 2 8 7 10 12 6 -F 2 20 8 4 18 12 -F 2 5 9 10 27 21 -F 2 4 0 4 6 1 -F 2 23 1 4 6 1 -F 2 12 1 10 6 1 -F 2 6 1 11 13 8 -F 2 12 2 4 17 12 -F 2 6 2 10 24 19 -F 2 15 3 4 12 7 -F 2 7 3 10 19 14 -F 2 4 3 11 6 1 -F 2 6 4 10 10 5 -F 2 8 5 4 19 14 -F 2 4 5 11 11 6 -F 2 3 6 4 10 5 -F 2 5 7 4 6 1 -F 2 19 8 4 18 13 -F 2 5 8 11 10 5 -F 2 6 9 4 19 14 -F 2 9 11 4 8 3 -F 2 9 12 4 6 1 -F 2 5 12 11 7 2 -F 2 19 0 4 6 2 -F 2 10 0 10 14 10 -F 2 28 1 4 6 2 -F 2 14 1 10 6 2 -F 2 7 1 13 15 11 -F 2 19 2 4 17 13 -F 2 9 2 10 24 20 -F 2 14 3 10 19 15 -F 2 7 3 11 6 2 -F 2 5 4 10 10 6 -F 2 12 6 10 16 12 -F 2 6 6 13 23 19 -F 2 4 7 4 6 2 -F 2 17 9 4 19 15 -F 2 9 9 10 27 23 -F 2 7 11 10 14 10 -F 2 8 12 4 6 2 -F 2 13 0 11 4 1 -F 2 7 0 12 4 1 -F 2 16 1 4 6 3 -F 2 8 1 13 15 12 -F 2 40 2 1 22 19 -F 2 10 2 13 18 15 -F 2 20 3 2 6 3 -F 2 10 3 13 14 11 -F 2 5 3 14 14 11 -F 2 9 4 12 6 3 -F 2 8 6 13 23 20 -F 2 9 7 13 19 16 -F 2 9 8 13 14 11 -F 2 13 9 12 14 11 -F 2 6 9 13 23 20 -F 2 6 11 13 9 6 -F 2 15 0 9 14 12 -F 2 8 0 11 4 2 -F 2 4 0 12 4 2 -F 2 32 1 0 11 9 -F 2 16 1 9 24 22 -F 2 8 1 13 15 13 -F 2 17 2 0 11 9 -F 2 9 2 9 6 4 -F 2 16 3 0 6 4 -F 2 8 3 13 14 12 -F 2 6 4 0 6 4 -F 2 16 5 0 14 12 -F 2 8 5 13 12 10 -F 2 10 6 0 14 12 -F 2 5 6 13 23 21 -F 2 16 7 0 12 10 -F 2 8 7 13 19 17 -F 2 6 8 0 12 10 -F 2 10 9 0 14 12 -F 2 26 10 0 14 12 -F 2 13 10 9 27 25 -F 2 7 10 13 12 10 -F 2 7 11 0 4 2 -F 2 14 12 0 4 2 -F 2 7 12 13 15 13 -F 2 18 0 3 6 5 -F 2 9 0 9 14 13 -F 2 5 0 12 4 3 -F 2 7 1 3 17 16 -F 2 3 1 9 24 23 -F 2 7 2 3 6 5 -F 2 3 2 9 6 5 -F 2 7 3 9 10 9 -F 2 5 4 3 12 11 -F 2 2 4 9 19 18 -F 2 10 5 3 10 9 -F 2 5 5 9 16 15 -F 2 12 6 3 19 18 -F 2 6 6 9 22 21 -F 2 11 7 3 18 17 -F 2 6 7 9 23 22 -F 2 11 8 3 6 5 -F 2 6 8 9 12 11 -F 2 9 9 3 10 9 -F 2 16 10 3 19 18 -F 2 8 10 9 27 26 -F 2 7 11 0 4 3 -F 2 3 11 3 6 5 -F 2 2 11 9 15 14 -F 2 6 12 0 4 3 -F 2 3 12 3 8 7 -F 2 1 12 9 14 13 -go - -engine > player2: P 11.803996 11.215721 1 8 3 -P 9.319567 21.808874 1 9 5 -P 14.288424 0.622569 1 22 5 -P 11.865493 5.273785 1 24 3 -P 11.742498 17.157658 1 20 3 -P 4.254093 0.000000 1 16 1 -P 19.353899 22.431443 1 13 1 -P 14.743614 22.324001 1 22 3 -P 8.864377 0.107441 1 28 3 -P 19.854347 0.711934 1 11 1 -P 3.753644 21.719509 1 30 1 -P 8.864814 9.736624 1 19 5 -P 14.743177 12.694819 1 7 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 101 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 3 5 6 28 5 -F 1 5 8 6 25 2 -F 1 9 1 9 24 4 -F 1 7 1 9 24 5 -F 1 6 7 9 23 4 -F 1 8 1 9 24 6 -F 1 10 3 6 19 1 -F 1 5 6 9 22 4 -F 1 7 7 9 23 5 -F 1 7 2 10 24 7 -F 1 7 3 10 19 2 -F 1 9 5 10 22 5 -F 1 8 8 10 23 6 -F 1 7 2 10 24 8 -F 1 9 3 10 19 3 -F 1 8 5 10 22 6 -F 1 4 5 12 17 1 -F 1 6 8 10 23 7 -F 1 7 9 10 27 11 -F 1 8 2 7 22 7 -F 1 16 3 7 18 3 -F 1 8 3 10 19 4 -F 1 14 5 7 25 10 -F 1 7 5 10 22 7 -F 1 11 8 7 23 8 -F 1 6 8 10 23 8 -F 1 10 9 7 23 8 -F 1 5 9 10 27 12 -F 1 7 2 10 24 10 -F 1 20 3 7 18 4 -F 1 10 3 10 19 5 -F 1 14 5 7 25 11 -F 1 7 5 10 22 8 -F 1 13 8 7 23 9 -F 1 7 8 10 23 9 -F 1 13 1 8 22 9 -F 1 27 3 7 18 5 -F 1 7 3 10 19 6 -F 1 4 4 8 18 5 -F 1 2 6 8 25 12 -F 1 4 7 8 23 10 -F 1 6 8 10 23 10 -F 1 6 12 8 14 1 -F 1 5 0 10 14 2 -F 1 20 1 8 22 10 -F 1 5 1 13 15 3 -F 1 22 2 1 22 10 -F 1 5 2 10 24 12 -F 1 5 3 10 19 7 -F 1 16 4 8 18 6 -F 1 10 5 10 22 10 -F 1 5 8 10 23 11 -F 1 8 11 10 14 2 -F 1 7 12 10 15 3 -F 1 11 0 10 14 3 -F 1 49 2 1 22 11 -F 1 24 2 6 23 12 -F 1 6 2 10 24 13 -F 1 7 3 10 19 8 -F 1 15 5 6 28 17 -F 1 10 6 10 16 5 -F 1 6 7 10 12 1 -F 1 12 9 10 27 16 -F 1 6 9 13 23 12 -F 1 8 11 10 14 3 -F 1 7 12 10 15 4 -F 1 21 0 1 11 1 -F 1 10 0 2 11 1 -F 1 5 0 10 14 4 -F 1 5 1 2 22 12 -F 1 27 2 1 22 12 -F 1 7 2 10 24 14 -F 1 6 3 10 19 9 -F 1 12 4 2 17 7 -F 1 16 5 2 11 1 -F 1 8 5 10 22 12 -F 1 9 6 2 23 13 -F 1 8 7 2 22 12 -F 1 6 8 10 23 13 -F 1 7 9 10 27 17 -F 1 7 11 2 11 1 -F 1 10 12 2 13 3 -F 1 34 0 2 11 2 -F 1 17 0 6 14 5 -F 1 9 0 10 14 5 -F 1 8 1 6 11 2 -F 1 6 2 10 24 15 -F 1 7 3 6 19 10 -F 1 7 4 6 10 1 -F 1 12 5 6 28 19 -F 1 6 5 10 22 13 -F 1 10 11 6 17 8 -F 1 5 11 10 14 5 -F 1 9 12 6 11 2 -F 1 13 0 10 14 6 -F 1 7 1 13 15 7 -F 1 12 2 10 24 16 -F 1 6 2 13 18 10 -F 1 9 3 10 19 11 -F 1 8 4 10 10 2 -F 1 10 5 10 22 14 -F 1 19 7 0 12 4 -F 1 8 8 10 23 15 -F 1 20 9 0 14 6 -F 1 10 9 10 27 19 -F 2 80 15 4 9 2 -F 1 18 0 5 14 7 -F 1 9 0 10 14 7 -F 1 6 1 5 23 16 -F 1 5 2 5 11 4 -F 1 18 3 5 10 3 -F 1 9 3 10 19 12 -F 1 5 4 5 19 12 -F 1 5 5 10 22 15 -F 1 9 6 5 28 21 -F 1 25 7 5 25 18 -F 1 12 8 7 23 16 -F 1 6 8 10 23 16 -F 1 18 9 5 16 9 -F 1 9 9 10 27 20 -F 1 6 11 5 11 4 -F 1 4 12 5 17 10 -F 1 6 0 10 14 8 -F 1 5 2 10 24 18 -F 1 14 3 10 19 13 -F 1 6 4 10 10 4 -F 1 5 5 10 22 16 -F 1 8 7 10 12 6 -F 1 20 8 4 18 12 -F 1 5 9 10 27 21 -F 1 4 0 4 6 1 -F 1 23 1 4 6 1 -F 1 12 1 10 6 1 -F 1 6 1 11 13 8 -F 1 12 2 4 17 12 -F 1 6 2 10 24 19 -F 1 15 3 4 12 7 -F 1 7 3 10 19 14 -F 1 4 3 11 6 1 -F 1 6 4 10 10 5 -F 1 8 5 4 19 14 -F 1 4 5 11 11 6 -F 1 3 6 4 10 5 -F 1 5 7 4 6 1 -F 1 19 8 4 18 13 -F 1 5 8 11 10 5 -F 1 6 9 4 19 14 -F 1 9 11 4 8 3 -F 1 9 12 4 6 1 -F 1 5 12 11 7 2 -F 1 19 0 4 6 2 -F 1 10 0 10 14 10 -F 1 28 1 4 6 2 -F 1 14 1 10 6 2 -F 1 7 1 13 15 11 -F 1 19 2 4 17 13 -F 1 9 2 10 24 20 -F 1 14 3 10 19 15 -F 1 7 3 11 6 2 -F 1 5 4 10 10 6 -F 1 12 6 10 16 12 -F 1 6 6 13 23 19 -F 1 4 7 4 6 2 -F 1 17 9 4 19 15 -F 1 9 9 10 27 23 -F 1 7 11 10 14 10 -F 1 8 12 4 6 2 -F 1 13 0 11 4 1 -F 1 7 0 12 4 1 -F 1 16 1 4 6 3 -F 1 8 1 13 15 12 -F 1 40 2 1 22 19 -F 1 10 2 13 18 15 -F 1 20 3 2 6 3 -F 1 10 3 13 14 11 -F 1 5 3 14 14 11 -F 1 9 4 12 6 3 -F 1 8 6 13 23 20 -F 1 9 7 13 19 16 -F 1 9 8 13 14 11 -F 1 13 9 12 14 11 -F 1 6 9 13 23 20 -F 1 6 11 13 9 6 -F 1 15 0 9 14 12 -F 1 8 0 11 4 2 -F 1 4 0 12 4 2 -F 1 32 1 0 11 9 -F 1 16 1 9 24 22 -F 1 8 1 13 15 13 -F 1 17 2 0 11 9 -F 1 9 2 9 6 4 -F 1 16 3 0 6 4 -F 1 8 3 13 14 12 -F 1 6 4 0 6 4 -F 1 16 5 0 14 12 -F 1 8 5 13 12 10 -F 1 10 6 0 14 12 -F 1 5 6 13 23 21 -F 1 16 7 0 12 10 -F 1 8 7 13 19 17 -F 1 6 8 0 12 10 -F 1 10 9 0 14 12 -F 1 26 10 0 14 12 -F 1 13 10 9 27 25 -F 1 7 10 13 12 10 -F 1 7 11 0 4 2 -F 1 14 12 0 4 2 -F 1 7 12 13 15 13 -F 1 18 0 3 6 5 -F 1 9 0 9 14 13 -F 1 5 0 12 4 3 -F 1 7 1 3 17 16 -F 1 3 1 9 24 23 -F 1 7 2 3 6 5 -F 1 3 2 9 6 5 -F 1 7 3 9 10 9 -F 1 5 4 3 12 11 -F 1 2 4 9 19 18 -F 1 10 5 3 10 9 -F 1 5 5 9 16 15 -F 1 12 6 3 19 18 -F 1 6 6 9 22 21 -F 1 11 7 3 18 17 -F 1 6 7 9 23 22 -F 1 11 8 3 6 5 -F 1 6 8 9 12 11 -F 1 9 9 3 10 9 -F 1 16 10 3 19 18 -F 1 8 10 9 27 26 -F 1 7 11 0 4 3 -F 1 3 11 3 6 5 -F 1 2 11 9 15 14 -F 1 6 12 0 4 3 -F 1 3 12 3 8 7 -F 1 1 12 9 14 13 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 2 0 -player2 > engine: 0 3 4 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 2 0 -player2 > engine: 1 3 4 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 2 0 -player2 > engine: 2 3 11 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 2 0 -player2 > engine: 2 9 5 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 2 0 -player2 > engine: 3 3 12 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 1 0 0.10183210472368877 -player2 > engine: 3 13 6 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 2 0 -player2 > engine: 4 3 10 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 2 0 -player2 > engine: 5 3 8 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 2 0 -player2 > engine: 6 3 6 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 2 0 -player2 > engine: 6 7 3 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 2 0 -player2 > engine: 7 3 11 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 1 0 0.07127486481918088 -player2 > engine: 7 13 5 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 2 0 -player2 > engine: 8 3 14 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 2 0 -player2 > engine: 8 5 7 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 2 0 -player2 > engine: 9 3 5 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 2 0 -player2 > engine: 9 9 3 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 0 0 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 2 0 -player2 > engine: 10 3 15 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 2 0 -player2 > engine: 10 8 7 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 0 0 0.3467010984295745 -player2 > engine: comparing 10 and 14, gives 0 0 0.17957565458240538 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 9 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 2 0 -player2 > engine: 11 3 5 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 3 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 2 0 -player2 > engine: 12 3 2 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 7 3 -P 9.319567 21.808874 2 31 5 -P 14.288424 0.622569 2 44 5 -P 11.865493 5.273785 2 21 3 -P 11.742498 17.157658 2 54 3 -P 4.254093 0.000000 2 9 1 -P 19.353899 22.431443 2 22 1 -P 14.743614 22.324001 2 9 3 -P 8.864377 0.107441 2 16 3 -P 19.854347 0.711934 2 7 1 -P 3.753644 21.719509 2 27 1 -P 8.864814 9.736624 2 27 5 -P 14.743177 12.694819 2 18 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 104 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 3 5 6 28 4 -F 2 5 8 6 25 1 -F 2 9 1 9 24 3 -F 2 7 1 9 24 4 -F 2 6 7 9 23 3 -F 2 8 1 9 24 5 -F 2 5 6 9 22 3 -F 2 7 7 9 23 4 -F 2 7 2 10 24 6 -F 2 7 3 10 19 1 -F 2 9 5 10 22 4 -F 2 8 8 10 23 5 -F 2 7 2 10 24 7 -F 2 9 3 10 19 2 -F 2 8 5 10 22 5 -F 2 6 8 10 23 6 -F 2 7 9 10 27 10 -F 2 8 2 7 22 6 -F 2 16 3 7 18 2 -F 2 8 3 10 19 3 -F 2 14 5 7 25 9 -F 2 7 5 10 22 6 -F 2 11 8 7 23 7 -F 2 6 8 10 23 7 -F 2 10 9 7 23 7 -F 2 5 9 10 27 11 -F 2 7 2 10 24 9 -F 2 20 3 7 18 3 -F 2 10 3 10 19 4 -F 2 14 5 7 25 10 -F 2 7 5 10 22 7 -F 2 13 8 7 23 8 -F 2 7 8 10 23 8 -F 2 13 1 8 22 8 -F 2 27 3 7 18 4 -F 2 7 3 10 19 5 -F 2 4 4 8 18 4 -F 2 2 6 8 25 11 -F 2 4 7 8 23 9 -F 2 6 8 10 23 9 -F 2 5 0 10 14 1 -F 2 20 1 8 22 9 -F 2 5 1 13 15 2 -F 2 22 2 1 22 9 -F 2 5 2 10 24 11 -F 2 5 3 10 19 6 -F 2 16 4 8 18 5 -F 2 10 5 10 22 9 -F 2 5 8 10 23 10 -F 2 8 11 10 14 1 -F 2 7 12 10 15 2 -F 2 11 0 10 14 2 -F 2 49 2 1 22 10 -F 2 24 2 6 23 11 -F 2 6 2 10 24 12 -F 2 7 3 10 19 7 -F 2 15 5 6 28 16 -F 2 10 6 10 16 4 -F 2 12 9 10 27 15 -F 2 6 9 13 23 11 -F 2 8 11 10 14 2 -F 2 7 12 10 15 3 -F 2 5 0 10 14 3 -F 2 5 1 2 22 11 -F 2 27 2 1 22 11 -F 2 7 2 10 24 13 -F 2 6 3 10 19 8 -F 2 12 4 2 17 6 -F 2 8 5 10 22 11 -F 2 9 6 2 23 12 -F 2 8 7 2 22 11 -F 2 6 8 10 23 12 -F 2 7 9 10 27 16 -F 2 10 12 2 13 2 -F 2 34 0 2 11 1 -F 2 17 0 6 14 4 -F 2 9 0 10 14 4 -F 2 8 1 6 11 1 -F 2 6 2 10 24 14 -F 2 7 3 6 19 9 -F 2 12 5 6 28 18 -F 2 6 5 10 22 12 -F 2 10 11 6 17 7 -F 2 5 11 10 14 4 -F 2 9 12 6 11 1 -F 2 13 0 10 14 5 -F 2 7 1 13 15 6 -F 2 12 2 10 24 15 -F 2 6 2 13 18 9 -F 2 9 3 10 19 10 -F 2 8 4 10 10 1 -F 2 10 5 10 22 13 -F 2 19 7 0 12 3 -F 2 8 8 10 23 14 -F 2 20 9 0 14 5 -F 2 10 9 10 27 18 -F 1 80 15 4 9 1 -F 2 18 0 5 14 6 -F 2 9 0 10 14 6 -F 2 6 1 5 23 15 -F 2 5 2 5 11 3 -F 2 18 3 5 10 2 -F 2 9 3 10 19 11 -F 2 5 4 5 19 11 -F 2 5 5 10 22 14 -F 2 9 6 5 28 20 -F 2 25 7 5 25 17 -F 2 12 8 7 23 15 -F 2 6 8 10 23 15 -F 2 18 9 5 16 8 -F 2 9 9 10 27 19 -F 2 6 11 5 11 3 -F 2 4 12 5 17 9 -F 2 6 0 10 14 7 -F 2 5 2 10 24 17 -F 2 14 3 10 19 12 -F 2 6 4 10 10 3 -F 2 5 5 10 22 15 -F 2 8 7 10 12 5 -F 2 20 8 4 18 11 -F 2 5 9 10 27 20 -F 2 6 1 11 13 7 -F 2 12 2 4 17 11 -F 2 6 2 10 24 18 -F 2 15 3 4 12 6 -F 2 7 3 10 19 13 -F 2 6 4 10 10 4 -F 2 8 5 4 19 13 -F 2 4 5 11 11 5 -F 2 3 6 4 10 4 -F 2 19 8 4 18 12 -F 2 5 8 11 10 4 -F 2 6 9 4 19 13 -F 2 9 11 4 8 2 -F 2 5 12 11 7 1 -F 2 19 0 4 6 1 -F 2 10 0 10 14 9 -F 2 28 1 4 6 1 -F 2 14 1 10 6 1 -F 2 7 1 13 15 10 -F 2 19 2 4 17 12 -F 2 9 2 10 24 19 -F 2 14 3 10 19 14 -F 2 7 3 11 6 1 -F 2 5 4 10 10 5 -F 2 12 6 10 16 11 -F 2 6 6 13 23 18 -F 2 4 7 4 6 1 -F 2 17 9 4 19 14 -F 2 9 9 10 27 22 -F 2 7 11 10 14 9 -F 2 8 12 4 6 1 -F 2 16 1 4 6 2 -F 2 8 1 13 15 11 -F 2 40 2 1 22 18 -F 2 10 2 13 18 14 -F 2 20 3 2 6 2 -F 2 10 3 13 14 10 -F 2 5 3 14 14 10 -F 2 9 4 12 6 2 -F 2 8 6 13 23 19 -F 2 9 7 13 19 15 -F 2 9 8 13 14 10 -F 2 13 9 12 14 10 -F 2 6 9 13 23 19 -F 2 6 11 13 9 5 -F 2 15 0 9 14 11 -F 2 8 0 11 4 1 -F 2 4 0 12 4 1 -F 2 32 1 0 11 8 -F 2 16 1 9 24 21 -F 2 8 1 13 15 12 -F 2 17 2 0 11 8 -F 2 9 2 9 6 3 -F 2 16 3 0 6 3 -F 2 8 3 13 14 11 -F 2 6 4 0 6 3 -F 2 16 5 0 14 11 -F 2 8 5 13 12 9 -F 2 10 6 0 14 11 -F 2 5 6 13 23 20 -F 2 16 7 0 12 9 -F 2 8 7 13 19 16 -F 2 6 8 0 12 9 -F 2 10 9 0 14 11 -F 2 26 10 0 14 11 -F 2 13 10 9 27 24 -F 2 7 10 13 12 9 -F 2 7 11 0 4 1 -F 2 14 12 0 4 1 -F 2 7 12 13 15 12 -F 2 18 0 3 6 4 -F 2 9 0 9 14 12 -F 2 5 0 12 4 2 -F 2 7 1 3 17 15 -F 2 3 1 9 24 22 -F 2 7 2 3 6 4 -F 2 3 2 9 6 4 -F 2 7 3 9 10 8 -F 2 5 4 3 12 10 -F 2 2 4 9 19 17 -F 2 10 5 3 10 8 -F 2 5 5 9 16 14 -F 2 12 6 3 19 17 -F 2 6 6 9 22 20 -F 2 11 7 3 18 16 -F 2 6 7 9 23 21 -F 2 11 8 3 6 4 -F 2 6 8 9 12 10 -F 2 9 9 3 10 8 -F 2 16 10 3 19 17 -F 2 8 10 9 27 25 -F 2 7 11 0 4 2 -F 2 3 11 3 6 4 -F 2 2 11 9 15 13 -F 2 6 12 0 4 2 -F 2 3 12 3 8 6 -F 2 1 12 9 14 12 -F 2 4 0 3 6 5 -F 2 4 1 3 17 16 -F 2 11 2 3 6 5 -F 2 5 2 9 6 5 -F 2 6 3 13 14 13 -F 2 10 4 3 12 11 -F 2 8 5 3 10 9 -F 2 6 6 3 19 18 -F 2 3 6 7 5 4 -F 2 11 7 3 18 17 -F 2 5 7 13 19 18 -F 2 14 8 3 6 5 -F 2 7 8 5 5 4 -F 2 5 9 3 10 9 -F 2 15 10 3 19 18 -F 2 7 10 8 23 22 -F 2 9 11 0 4 3 -F 2 5 11 3 6 5 -F 2 3 12 0 4 3 -F 2 2 12 3 8 7 -go - -engine > player2: P 11.803996 11.215721 1 7 3 -P 9.319567 21.808874 1 31 5 -P 14.288424 0.622569 1 44 5 -P 11.865493 5.273785 1 21 3 -P 11.742498 17.157658 1 54 3 -P 4.254093 0.000000 1 9 1 -P 19.353899 22.431443 1 22 1 -P 14.743614 22.324001 1 9 3 -P 8.864377 0.107441 1 16 3 -P 19.854347 0.711934 1 7 1 -P 3.753644 21.719509 1 27 1 -P 8.864814 9.736624 1 27 5 -P 14.743177 12.694819 1 18 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 104 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 3 5 6 28 4 -F 1 5 8 6 25 1 -F 1 9 1 9 24 3 -F 1 7 1 9 24 4 -F 1 6 7 9 23 3 -F 1 8 1 9 24 5 -F 1 5 6 9 22 3 -F 1 7 7 9 23 4 -F 1 7 2 10 24 6 -F 1 7 3 10 19 1 -F 1 9 5 10 22 4 -F 1 8 8 10 23 5 -F 1 7 2 10 24 7 -F 1 9 3 10 19 2 -F 1 8 5 10 22 5 -F 1 6 8 10 23 6 -F 1 7 9 10 27 10 -F 1 8 2 7 22 6 -F 1 16 3 7 18 2 -F 1 8 3 10 19 3 -F 1 14 5 7 25 9 -F 1 7 5 10 22 6 -F 1 11 8 7 23 7 -F 1 6 8 10 23 7 -F 1 10 9 7 23 7 -F 1 5 9 10 27 11 -F 1 7 2 10 24 9 -F 1 20 3 7 18 3 -F 1 10 3 10 19 4 -F 1 14 5 7 25 10 -F 1 7 5 10 22 7 -F 1 13 8 7 23 8 -F 1 7 8 10 23 8 -F 1 13 1 8 22 8 -F 1 27 3 7 18 4 -F 1 7 3 10 19 5 -F 1 4 4 8 18 4 -F 1 2 6 8 25 11 -F 1 4 7 8 23 9 -F 1 6 8 10 23 9 -F 1 5 0 10 14 1 -F 1 20 1 8 22 9 -F 1 5 1 13 15 2 -F 1 22 2 1 22 9 -F 1 5 2 10 24 11 -F 1 5 3 10 19 6 -F 1 16 4 8 18 5 -F 1 10 5 10 22 9 -F 1 5 8 10 23 10 -F 1 8 11 10 14 1 -F 1 7 12 10 15 2 -F 1 11 0 10 14 2 -F 1 49 2 1 22 10 -F 1 24 2 6 23 11 -F 1 6 2 10 24 12 -F 1 7 3 10 19 7 -F 1 15 5 6 28 16 -F 1 10 6 10 16 4 -F 1 12 9 10 27 15 -F 1 6 9 13 23 11 -F 1 8 11 10 14 2 -F 1 7 12 10 15 3 -F 1 5 0 10 14 3 -F 1 5 1 2 22 11 -F 1 27 2 1 22 11 -F 1 7 2 10 24 13 -F 1 6 3 10 19 8 -F 1 12 4 2 17 6 -F 1 8 5 10 22 11 -F 1 9 6 2 23 12 -F 1 8 7 2 22 11 -F 1 6 8 10 23 12 -F 1 7 9 10 27 16 -F 1 10 12 2 13 2 -F 1 34 0 2 11 1 -F 1 17 0 6 14 4 -F 1 9 0 10 14 4 -F 1 8 1 6 11 1 -F 1 6 2 10 24 14 -F 1 7 3 6 19 9 -F 1 12 5 6 28 18 -F 1 6 5 10 22 12 -F 1 10 11 6 17 7 -F 1 5 11 10 14 4 -F 1 9 12 6 11 1 -F 1 13 0 10 14 5 -F 1 7 1 13 15 6 -F 1 12 2 10 24 15 -F 1 6 2 13 18 9 -F 1 9 3 10 19 10 -F 1 8 4 10 10 1 -F 1 10 5 10 22 13 -F 1 19 7 0 12 3 -F 1 8 8 10 23 14 -F 1 20 9 0 14 5 -F 1 10 9 10 27 18 -F 2 80 15 4 9 1 -F 1 18 0 5 14 6 -F 1 9 0 10 14 6 -F 1 6 1 5 23 15 -F 1 5 2 5 11 3 -F 1 18 3 5 10 2 -F 1 9 3 10 19 11 -F 1 5 4 5 19 11 -F 1 5 5 10 22 14 -F 1 9 6 5 28 20 -F 1 25 7 5 25 17 -F 1 12 8 7 23 15 -F 1 6 8 10 23 15 -F 1 18 9 5 16 8 -F 1 9 9 10 27 19 -F 1 6 11 5 11 3 -F 1 4 12 5 17 9 -F 1 6 0 10 14 7 -F 1 5 2 10 24 17 -F 1 14 3 10 19 12 -F 1 6 4 10 10 3 -F 1 5 5 10 22 15 -F 1 8 7 10 12 5 -F 1 20 8 4 18 11 -F 1 5 9 10 27 20 -F 1 6 1 11 13 7 -F 1 12 2 4 17 11 -F 1 6 2 10 24 18 -F 1 15 3 4 12 6 -F 1 7 3 10 19 13 -F 1 6 4 10 10 4 -F 1 8 5 4 19 13 -F 1 4 5 11 11 5 -F 1 3 6 4 10 4 -F 1 19 8 4 18 12 -F 1 5 8 11 10 4 -F 1 6 9 4 19 13 -F 1 9 11 4 8 2 -F 1 5 12 11 7 1 -F 1 19 0 4 6 1 -F 1 10 0 10 14 9 -F 1 28 1 4 6 1 -F 1 14 1 10 6 1 -F 1 7 1 13 15 10 -F 1 19 2 4 17 12 -F 1 9 2 10 24 19 -F 1 14 3 10 19 14 -F 1 7 3 11 6 1 -F 1 5 4 10 10 5 -F 1 12 6 10 16 11 -F 1 6 6 13 23 18 -F 1 4 7 4 6 1 -F 1 17 9 4 19 14 -F 1 9 9 10 27 22 -F 1 7 11 10 14 9 -F 1 8 12 4 6 1 -F 1 16 1 4 6 2 -F 1 8 1 13 15 11 -F 1 40 2 1 22 18 -F 1 10 2 13 18 14 -F 1 20 3 2 6 2 -F 1 10 3 13 14 10 -F 1 5 3 14 14 10 -F 1 9 4 12 6 2 -F 1 8 6 13 23 19 -F 1 9 7 13 19 15 -F 1 9 8 13 14 10 -F 1 13 9 12 14 10 -F 1 6 9 13 23 19 -F 1 6 11 13 9 5 -F 1 15 0 9 14 11 -F 1 8 0 11 4 1 -F 1 4 0 12 4 1 -F 1 32 1 0 11 8 -F 1 16 1 9 24 21 -F 1 8 1 13 15 12 -F 1 17 2 0 11 8 -F 1 9 2 9 6 3 -F 1 16 3 0 6 3 -F 1 8 3 13 14 11 -F 1 6 4 0 6 3 -F 1 16 5 0 14 11 -F 1 8 5 13 12 9 -F 1 10 6 0 14 11 -F 1 5 6 13 23 20 -F 1 16 7 0 12 9 -F 1 8 7 13 19 16 -F 1 6 8 0 12 9 -F 1 10 9 0 14 11 -F 1 26 10 0 14 11 -F 1 13 10 9 27 24 -F 1 7 10 13 12 9 -F 1 7 11 0 4 1 -F 1 14 12 0 4 1 -F 1 7 12 13 15 12 -F 1 18 0 3 6 4 -F 1 9 0 9 14 12 -F 1 5 0 12 4 2 -F 1 7 1 3 17 15 -F 1 3 1 9 24 22 -F 1 7 2 3 6 4 -F 1 3 2 9 6 4 -F 1 7 3 9 10 8 -F 1 5 4 3 12 10 -F 1 2 4 9 19 17 -F 1 10 5 3 10 8 -F 1 5 5 9 16 14 -F 1 12 6 3 19 17 -F 1 6 6 9 22 20 -F 1 11 7 3 18 16 -F 1 6 7 9 23 21 -F 1 11 8 3 6 4 -F 1 6 8 9 12 10 -F 1 9 9 3 10 8 -F 1 16 10 3 19 17 -F 1 8 10 9 27 25 -F 1 7 11 0 4 2 -F 1 3 11 3 6 4 -F 1 2 11 9 15 13 -F 1 6 12 0 4 2 -F 1 3 12 3 8 6 -F 1 1 12 9 14 12 -F 1 4 0 3 6 5 -F 1 4 1 3 17 16 -F 1 11 2 3 6 5 -F 1 5 2 9 6 5 -F 1 6 3 13 14 13 -F 1 10 4 3 12 11 -F 1 8 5 3 10 9 -F 1 6 6 3 19 18 -F 1 3 6 7 5 4 -F 1 11 7 3 18 17 -F 1 5 7 13 19 18 -F 1 14 8 3 6 5 -F 1 7 8 5 5 4 -F 1 5 9 3 10 9 -F 1 15 10 3 19 18 -F 1 7 10 8 23 22 -F 1 9 11 0 4 3 -F 1 5 11 3 6 5 -F 1 3 12 0 4 3 -F 1 2 12 3 8 7 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 2 0 -player2 > engine: 0 1 3 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 2 0 -player2 > engine: 0 3 2 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 2 0 -player2 > engine: 1 1 15 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 2 0 -player2 > engine: 1 8 8 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 2 0 -player2 > engine: 2 1 22 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 2 0 -player2 > engine: 2 3 11 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 2 0 -player2 > engine: 2 8 5 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 2 0 -player2 > engine: 3 1 10 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 2 0 -player2 > engine: 3 3 5 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 2 0 -player2 > engine: 3 8 3 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 2 0 -player2 > engine: 4 1 27 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 2 0 -player2 > engine: 4 8 13 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 1 0 0.099886945913541 -player2 > engine: 4 13 7 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 2 0 -player2 > engine: 5 1 4 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 2 0 -player2 > engine: 5 8 2 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 2 0 -player2 > engine: 6 1 11 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 2 0 -player2 > engine: 6 8 5 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 2 0 -player2 > engine: 7 1 4 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 2 0 -player2 > engine: 8 1 8 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 2 0 -player2 > engine: 8 3 4 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 2 0 -player2 > engine: 8 8 2 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 2 0 -player2 > engine: 9 1 3 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 2 0 -player2 > engine: 10 1 13 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 0 0 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 2 0 -player2 > engine: 10 8 7 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 0 0 0.3467010984295745 -player2 > engine: comparing 10 and 14, gives 0 0 0.17957565458240538 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 2 0 -player2 > engine: 11 1 13 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 2 0 -player2 > engine: 11 3 7 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 2 0 -player2 > engine: 12 1 9 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 26 3 -P 9.319567 21.808874 2 28 5 -P 14.288424 0.622569 2 45 5 -P 11.865493 5.273785 2 11 3 -P 11.742498 17.157658 1 11 3 -P 4.254093 0.000000 2 4 1 -P 19.353899 22.431443 2 29 1 -P 14.743614 22.324001 2 8 3 -P 8.864377 0.107441 2 7 3 -P 19.854347 0.711934 2 5 1 -P 3.753644 21.719509 2 50 1 -P 8.864814 9.736624 2 32 5 -P 14.743177 12.694819 2 18 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 107 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 3 5 6 28 3 -F 2 9 1 9 24 2 -F 2 7 1 9 24 3 -F 2 6 7 9 23 2 -F 2 8 1 9 24 4 -F 2 5 6 9 22 2 -F 2 7 7 9 23 3 -F 2 7 2 10 24 5 -F 2 9 5 10 22 3 -F 2 8 8 10 23 4 -F 2 7 2 10 24 6 -F 2 9 3 10 19 1 -F 2 8 5 10 22 4 -F 2 6 8 10 23 5 -F 2 7 9 10 27 9 -F 2 8 2 7 22 5 -F 2 16 3 7 18 1 -F 2 8 3 10 19 2 -F 2 14 5 7 25 8 -F 2 7 5 10 22 5 -F 2 11 8 7 23 6 -F 2 6 8 10 23 6 -F 2 10 9 7 23 6 -F 2 5 9 10 27 10 -F 2 7 2 10 24 8 -F 2 20 3 7 18 2 -F 2 10 3 10 19 3 -F 2 14 5 7 25 9 -F 2 7 5 10 22 6 -F 2 13 8 7 23 7 -F 2 7 8 10 23 7 -F 2 13 1 8 22 7 -F 2 27 3 7 18 3 -F 2 7 3 10 19 4 -F 2 4 4 8 18 3 -F 2 2 6 8 25 10 -F 2 4 7 8 23 8 -F 2 6 8 10 23 8 -F 2 20 1 8 22 8 -F 2 5 1 13 15 1 -F 2 22 2 1 22 8 -F 2 5 2 10 24 10 -F 2 5 3 10 19 5 -F 2 16 4 8 18 4 -F 2 10 5 10 22 8 -F 2 5 8 10 23 9 -F 2 7 12 10 15 1 -F 2 11 0 10 14 1 -F 2 49 2 1 22 9 -F 2 24 2 6 23 10 -F 2 6 2 10 24 11 -F 2 7 3 10 19 6 -F 2 15 5 6 28 15 -F 2 10 6 10 16 3 -F 2 12 9 10 27 14 -F 2 6 9 13 23 10 -F 2 8 11 10 14 1 -F 2 7 12 10 15 2 -F 2 5 0 10 14 2 -F 2 5 1 2 22 10 -F 2 27 2 1 22 10 -F 2 7 2 10 24 12 -F 2 6 3 10 19 7 -F 2 12 4 2 17 5 -F 2 8 5 10 22 10 -F 2 9 6 2 23 11 -F 2 8 7 2 22 10 -F 2 6 8 10 23 11 -F 2 7 9 10 27 15 -F 2 10 12 2 13 1 -F 2 17 0 6 14 3 -F 2 9 0 10 14 3 -F 2 6 2 10 24 13 -F 2 7 3 6 19 8 -F 2 12 5 6 28 17 -F 2 6 5 10 22 11 -F 2 10 11 6 17 6 -F 2 5 11 10 14 3 -F 2 13 0 10 14 4 -F 2 7 1 13 15 5 -F 2 12 2 10 24 14 -F 2 6 2 13 18 8 -F 2 9 3 10 19 9 -F 2 10 5 10 22 12 -F 2 19 7 0 12 2 -F 2 8 8 10 23 13 -F 2 20 9 0 14 4 -F 2 10 9 10 27 17 -F 2 18 0 5 14 5 -F 2 9 0 10 14 5 -F 2 6 1 5 23 14 -F 2 5 2 5 11 2 -F 2 18 3 5 10 1 -F 2 9 3 10 19 10 -F 2 5 4 5 19 10 -F 2 5 5 10 22 13 -F 2 9 6 5 28 19 -F 2 25 7 5 25 16 -F 2 12 8 7 23 14 -F 2 6 8 10 23 14 -F 2 18 9 5 16 7 -F 2 9 9 10 27 18 -F 2 6 11 5 11 2 -F 2 4 12 5 17 8 -F 2 6 0 10 14 6 -F 2 5 2 10 24 16 -F 2 14 3 10 19 11 -F 2 6 4 10 10 2 -F 2 5 5 10 22 14 -F 2 8 7 10 12 4 -F 2 20 8 4 18 10 -F 2 5 9 10 27 19 -F 2 6 1 11 13 6 -F 2 12 2 4 17 10 -F 2 6 2 10 24 17 -F 2 15 3 4 12 5 -F 2 7 3 10 19 12 -F 2 6 4 10 10 3 -F 2 8 5 4 19 12 -F 2 4 5 11 11 4 -F 2 3 6 4 10 3 -F 2 19 8 4 18 11 -F 2 5 8 11 10 3 -F 2 6 9 4 19 12 -F 2 9 11 4 8 1 -F 2 10 0 10 14 8 -F 2 7 1 13 15 9 -F 2 19 2 4 17 11 -F 2 9 2 10 24 18 -F 2 14 3 10 19 13 -F 2 5 4 10 10 4 -F 2 12 6 10 16 10 -F 2 6 6 13 23 17 -F 2 17 9 4 19 13 -F 2 9 9 10 27 21 -F 2 7 11 10 14 8 -F 2 16 1 4 6 1 -F 2 8 1 13 15 10 -F 2 40 2 1 22 17 -F 2 10 2 13 18 13 -F 2 20 3 2 6 1 -F 2 10 3 13 14 9 -F 2 5 3 14 14 9 -F 2 9 4 12 6 1 -F 2 8 6 13 23 18 -F 2 9 7 13 19 14 -F 2 9 8 13 14 9 -F 2 13 9 12 14 9 -F 2 6 9 13 23 18 -F 2 6 11 13 9 4 -F 2 15 0 9 14 10 -F 2 32 1 0 11 7 -F 2 16 1 9 24 20 -F 2 8 1 13 15 11 -F 2 17 2 0 11 7 -F 2 9 2 9 6 2 -F 2 16 3 0 6 2 -F 2 8 3 13 14 10 -F 2 6 4 0 6 2 -F 2 16 5 0 14 10 -F 2 8 5 13 12 8 -F 2 10 6 0 14 10 -F 2 5 6 13 23 19 -F 2 16 7 0 12 8 -F 2 8 7 13 19 15 -F 2 6 8 0 12 8 -F 2 10 9 0 14 10 -F 2 26 10 0 14 10 -F 2 13 10 9 27 23 -F 2 7 10 13 12 8 -F 2 7 12 13 15 11 -F 2 18 0 3 6 3 -F 2 9 0 9 14 11 -F 2 5 0 12 4 1 -F 2 7 1 3 17 14 -F 2 3 1 9 24 21 -F 2 7 2 3 6 3 -F 2 3 2 9 6 3 -F 2 7 3 9 10 7 -F 2 5 4 3 12 9 -F 2 2 4 9 19 16 -F 2 10 5 3 10 7 -F 2 5 5 9 16 13 -F 2 12 6 3 19 16 -F 2 6 6 9 22 19 -F 2 11 7 3 18 15 -F 2 6 7 9 23 20 -F 2 11 8 3 6 3 -F 2 6 8 9 12 9 -F 2 9 9 3 10 7 -F 2 16 10 3 19 16 -F 2 8 10 9 27 24 -F 2 7 11 0 4 1 -F 2 3 11 3 6 3 -F 2 2 11 9 15 12 -F 2 6 12 0 4 1 -F 2 3 12 3 8 5 -F 2 1 12 9 14 11 -F 2 4 0 3 6 4 -F 2 4 1 3 17 15 -F 2 11 2 3 6 4 -F 2 5 2 9 6 4 -F 2 6 3 13 14 12 -F 2 10 4 3 12 10 -F 2 8 5 3 10 8 -F 2 6 6 3 19 17 -F 2 3 6 7 5 3 -F 2 11 7 3 18 16 -F 2 5 7 13 19 17 -F 2 14 8 3 6 4 -F 2 7 8 5 5 3 -F 2 5 9 3 10 8 -F 2 15 10 3 19 17 -F 2 7 10 8 23 21 -F 2 9 11 0 4 2 -F 2 5 11 3 6 4 -F 2 3 12 0 4 2 -F 2 2 12 3 8 6 -F 2 3 0 1 11 10 -F 2 2 0 3 6 5 -F 2 8 1 8 22 21 -F 2 22 2 1 22 21 -F 2 11 2 3 6 5 -F 2 5 2 8 6 5 -F 2 10 3 1 17 16 -F 2 3 3 8 6 5 -F 2 27 4 1 6 5 -F 2 13 4 8 18 17 -F 2 7 4 13 14 13 -F 2 4 5 1 23 22 -F 2 2 5 8 5 4 -F 2 11 6 1 11 10 -F 2 5 6 8 25 24 -F 2 4 7 1 6 5 -F 2 8 8 1 22 21 -F 2 4 8 3 6 5 -F 2 3 9 1 24 23 -F 2 13 10 1 6 5 -F 2 7 10 8 23 22 -F 2 13 11 1 13 12 -F 2 7 11 3 6 5 -F 2 9 12 1 11 10 -go - -engine > player2: P 11.803996 11.215721 1 26 3 -P 9.319567 21.808874 1 28 5 -P 14.288424 0.622569 1 45 5 -P 11.865493 5.273785 1 11 3 -P 11.742498 17.157658 2 11 3 -P 4.254093 0.000000 1 4 1 -P 19.353899 22.431443 1 29 1 -P 14.743614 22.324001 1 8 3 -P 8.864377 0.107441 1 7 3 -P 19.854347 0.711934 1 5 1 -P 3.753644 21.719509 1 50 1 -P 8.864814 9.736624 1 32 5 -P 14.743177 12.694819 1 18 5 -P 0.000000 10.809889 0 59 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 107 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 3 5 6 28 3 -F 1 9 1 9 24 2 -F 1 7 1 9 24 3 -F 1 6 7 9 23 2 -F 1 8 1 9 24 4 -F 1 5 6 9 22 2 -F 1 7 7 9 23 3 -F 1 7 2 10 24 5 -F 1 9 5 10 22 3 -F 1 8 8 10 23 4 -F 1 7 2 10 24 6 -F 1 9 3 10 19 1 -F 1 8 5 10 22 4 -F 1 6 8 10 23 5 -F 1 7 9 10 27 9 -F 1 8 2 7 22 5 -F 1 16 3 7 18 1 -F 1 8 3 10 19 2 -F 1 14 5 7 25 8 -F 1 7 5 10 22 5 -F 1 11 8 7 23 6 -F 1 6 8 10 23 6 -F 1 10 9 7 23 6 -F 1 5 9 10 27 10 -F 1 7 2 10 24 8 -F 1 20 3 7 18 2 -F 1 10 3 10 19 3 -F 1 14 5 7 25 9 -F 1 7 5 10 22 6 -F 1 13 8 7 23 7 -F 1 7 8 10 23 7 -F 1 13 1 8 22 7 -F 1 27 3 7 18 3 -F 1 7 3 10 19 4 -F 1 4 4 8 18 3 -F 1 2 6 8 25 10 -F 1 4 7 8 23 8 -F 1 6 8 10 23 8 -F 1 20 1 8 22 8 -F 1 5 1 13 15 1 -F 1 22 2 1 22 8 -F 1 5 2 10 24 10 -F 1 5 3 10 19 5 -F 1 16 4 8 18 4 -F 1 10 5 10 22 8 -F 1 5 8 10 23 9 -F 1 7 12 10 15 1 -F 1 11 0 10 14 1 -F 1 49 2 1 22 9 -F 1 24 2 6 23 10 -F 1 6 2 10 24 11 -F 1 7 3 10 19 6 -F 1 15 5 6 28 15 -F 1 10 6 10 16 3 -F 1 12 9 10 27 14 -F 1 6 9 13 23 10 -F 1 8 11 10 14 1 -F 1 7 12 10 15 2 -F 1 5 0 10 14 2 -F 1 5 1 2 22 10 -F 1 27 2 1 22 10 -F 1 7 2 10 24 12 -F 1 6 3 10 19 7 -F 1 12 4 2 17 5 -F 1 8 5 10 22 10 -F 1 9 6 2 23 11 -F 1 8 7 2 22 10 -F 1 6 8 10 23 11 -F 1 7 9 10 27 15 -F 1 10 12 2 13 1 -F 1 17 0 6 14 3 -F 1 9 0 10 14 3 -F 1 6 2 10 24 13 -F 1 7 3 6 19 8 -F 1 12 5 6 28 17 -F 1 6 5 10 22 11 -F 1 10 11 6 17 6 -F 1 5 11 10 14 3 -F 1 13 0 10 14 4 -F 1 7 1 13 15 5 -F 1 12 2 10 24 14 -F 1 6 2 13 18 8 -F 1 9 3 10 19 9 -F 1 10 5 10 22 12 -F 1 19 7 0 12 2 -F 1 8 8 10 23 13 -F 1 20 9 0 14 4 -F 1 10 9 10 27 17 -F 1 18 0 5 14 5 -F 1 9 0 10 14 5 -F 1 6 1 5 23 14 -F 1 5 2 5 11 2 -F 1 18 3 5 10 1 -F 1 9 3 10 19 10 -F 1 5 4 5 19 10 -F 1 5 5 10 22 13 -F 1 9 6 5 28 19 -F 1 25 7 5 25 16 -F 1 12 8 7 23 14 -F 1 6 8 10 23 14 -F 1 18 9 5 16 7 -F 1 9 9 10 27 18 -F 1 6 11 5 11 2 -F 1 4 12 5 17 8 -F 1 6 0 10 14 6 -F 1 5 2 10 24 16 -F 1 14 3 10 19 11 -F 1 6 4 10 10 2 -F 1 5 5 10 22 14 -F 1 8 7 10 12 4 -F 1 20 8 4 18 10 -F 1 5 9 10 27 19 -F 1 6 1 11 13 6 -F 1 12 2 4 17 10 -F 1 6 2 10 24 17 -F 1 15 3 4 12 5 -F 1 7 3 10 19 12 -F 1 6 4 10 10 3 -F 1 8 5 4 19 12 -F 1 4 5 11 11 4 -F 1 3 6 4 10 3 -F 1 19 8 4 18 11 -F 1 5 8 11 10 3 -F 1 6 9 4 19 12 -F 1 9 11 4 8 1 -F 1 10 0 10 14 8 -F 1 7 1 13 15 9 -F 1 19 2 4 17 11 -F 1 9 2 10 24 18 -F 1 14 3 10 19 13 -F 1 5 4 10 10 4 -F 1 12 6 10 16 10 -F 1 6 6 13 23 17 -F 1 17 9 4 19 13 -F 1 9 9 10 27 21 -F 1 7 11 10 14 8 -F 1 16 1 4 6 1 -F 1 8 1 13 15 10 -F 1 40 2 1 22 17 -F 1 10 2 13 18 13 -F 1 20 3 2 6 1 -F 1 10 3 13 14 9 -F 1 5 3 14 14 9 -F 1 9 4 12 6 1 -F 1 8 6 13 23 18 -F 1 9 7 13 19 14 -F 1 9 8 13 14 9 -F 1 13 9 12 14 9 -F 1 6 9 13 23 18 -F 1 6 11 13 9 4 -F 1 15 0 9 14 10 -F 1 32 1 0 11 7 -F 1 16 1 9 24 20 -F 1 8 1 13 15 11 -F 1 17 2 0 11 7 -F 1 9 2 9 6 2 -F 1 16 3 0 6 2 -F 1 8 3 13 14 10 -F 1 6 4 0 6 2 -F 1 16 5 0 14 10 -F 1 8 5 13 12 8 -F 1 10 6 0 14 10 -F 1 5 6 13 23 19 -F 1 16 7 0 12 8 -F 1 8 7 13 19 15 -F 1 6 8 0 12 8 -F 1 10 9 0 14 10 -F 1 26 10 0 14 10 -F 1 13 10 9 27 23 -F 1 7 10 13 12 8 -F 1 7 12 13 15 11 -F 1 18 0 3 6 3 -F 1 9 0 9 14 11 -F 1 5 0 12 4 1 -F 1 7 1 3 17 14 -F 1 3 1 9 24 21 -F 1 7 2 3 6 3 -F 1 3 2 9 6 3 -F 1 7 3 9 10 7 -F 1 5 4 3 12 9 -F 1 2 4 9 19 16 -F 1 10 5 3 10 7 -F 1 5 5 9 16 13 -F 1 12 6 3 19 16 -F 1 6 6 9 22 19 -F 1 11 7 3 18 15 -F 1 6 7 9 23 20 -F 1 11 8 3 6 3 -F 1 6 8 9 12 9 -F 1 9 9 3 10 7 -F 1 16 10 3 19 16 -F 1 8 10 9 27 24 -F 1 7 11 0 4 1 -F 1 3 11 3 6 3 -F 1 2 11 9 15 12 -F 1 6 12 0 4 1 -F 1 3 12 3 8 5 -F 1 1 12 9 14 11 -F 1 4 0 3 6 4 -F 1 4 1 3 17 15 -F 1 11 2 3 6 4 -F 1 5 2 9 6 4 -F 1 6 3 13 14 12 -F 1 10 4 3 12 10 -F 1 8 5 3 10 8 -F 1 6 6 3 19 17 -F 1 3 6 7 5 3 -F 1 11 7 3 18 16 -F 1 5 7 13 19 17 -F 1 14 8 3 6 4 -F 1 7 8 5 5 3 -F 1 5 9 3 10 8 -F 1 15 10 3 19 17 -F 1 7 10 8 23 21 -F 1 9 11 0 4 2 -F 1 5 11 3 6 4 -F 1 3 12 0 4 2 -F 1 2 12 3 8 6 -F 1 3 0 1 11 10 -F 1 2 0 3 6 5 -F 1 8 1 8 22 21 -F 1 22 2 1 22 21 -F 1 11 2 3 6 5 -F 1 5 2 8 6 5 -F 1 10 3 1 17 16 -F 1 3 3 8 6 5 -F 1 27 4 1 6 5 -F 1 13 4 8 18 17 -F 1 7 4 13 14 13 -F 1 4 5 1 23 22 -F 1 2 5 8 5 4 -F 1 11 6 1 11 10 -F 1 5 6 8 25 24 -F 1 4 7 1 6 5 -F 1 8 8 1 22 21 -F 1 4 8 3 6 5 -F 1 3 9 1 24 23 -F 1 13 10 1 6 5 -F 1 7 10 8 23 22 -F 1 13 11 1 13 12 -F 1 7 11 3 6 5 -F 1 9 12 1 11 10 -go - -player1 > engine: 4 3 5 -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 2 0 -player2 > engine: 0 1 13 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 1 0 0.33657255029055216 -player2 > engine: 0 4 6 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 3 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 2 0 -player2 > engine: 1 1 14 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 1 0 0.22881269671267385 -player2 > engine: 1 4 7 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 2 0 -player2 > engine: 2 1 22 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 1 0 0.07172769106024594 -player2 > engine: 2 4 11 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 2 0 -player2 > engine: 2 8 6 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 2 0 -player2 > engine: 3 1 5 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0.16828628945120064 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 2 0 -player2 > engine: 5 1 2 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0.32050228592737007 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 2 0 -player2 > engine: 5 8 1 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 2 0 -player2 > engine: 6 1 14 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 1 0 0.6479533275024435 -player2 > engine: 6 4 7 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 2 0 -player2 > engine: 7 1 4 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0.3347412907627885 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 2 0 -player2 > engine: 7 6 2 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 2 0 -player2 > engine: 8 1 3 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0.11566424744259145 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 2 0 -player2 > engine: 9 1 2 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0.3271983514399156 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 2 0 -player2 > engine: 10 1 25 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 0 0 -player2 > engine: comparing 10 and 4, gives 1 0 0.6522036852357422 -player2 > engine: 10 4 12 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 1 0 0.3467010984295745 -player2 > engine: 10 13 6 -player2 > engine: comparing 10 and 14, gives 0 0 0.17957565458240538 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 16 -player2 > engine: comparing 11 and 1, gives 0 2 0 -player2 > engine: 11 1 8 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0.1507642257922135 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 2 0 -player2 > engine: 12 1 9 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0.22313851847325064 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 20 3 -P 9.319567 21.808874 2 26 5 -P 14.288424 0.622569 2 41 5 -P 11.865493 5.273785 2 9 3 -P 11.742498 17.157658 2 16 3 -P 4.254093 0.000000 2 20 1 -P 19.353899 22.431443 2 9 1 -P 14.743614 22.324001 2 21 3 -P 8.864377 0.107441 2 7 3 -P 19.854347 0.711934 2 4 1 -P 3.753644 21.719509 2 43 1 -P 8.864814 9.736624 2 13 5 -P 14.743177 12.694819 2 28 5 -P 0.000000 10.809889 0 54 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 110 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 3 5 6 28 2 -F 2 9 1 9 24 1 -F 2 7 1 9 24 2 -F 2 6 7 9 23 1 -F 2 8 1 9 24 3 -F 2 5 6 9 22 1 -F 2 7 7 9 23 2 -F 2 7 2 10 24 4 -F 2 9 5 10 22 2 -F 2 8 8 10 23 3 -F 2 7 2 10 24 5 -F 2 8 5 10 22 3 -F 2 6 8 10 23 4 -F 2 7 9 10 27 8 -F 2 8 2 7 22 4 -F 2 8 3 10 19 1 -F 2 14 5 7 25 7 -F 2 7 5 10 22 4 -F 2 11 8 7 23 5 -F 2 6 8 10 23 5 -F 2 10 9 7 23 5 -F 2 5 9 10 27 9 -F 2 7 2 10 24 7 -F 2 20 3 7 18 1 -F 2 10 3 10 19 2 -F 2 14 5 7 25 8 -F 2 7 5 10 22 5 -F 2 13 8 7 23 6 -F 2 7 8 10 23 6 -F 2 13 1 8 22 6 -F 2 27 3 7 18 2 -F 2 7 3 10 19 3 -F 2 4 4 8 18 2 -F 2 2 6 8 25 9 -F 2 4 7 8 23 7 -F 2 6 8 10 23 7 -F 2 20 1 8 22 7 -F 2 22 2 1 22 7 -F 2 5 2 10 24 9 -F 2 5 3 10 19 4 -F 2 16 4 8 18 3 -F 2 10 5 10 22 7 -F 2 5 8 10 23 8 -F 2 49 2 1 22 8 -F 2 24 2 6 23 9 -F 2 6 2 10 24 10 -F 2 7 3 10 19 5 -F 2 15 5 6 28 14 -F 2 10 6 10 16 2 -F 2 12 9 10 27 13 -F 2 6 9 13 23 9 -F 2 7 12 10 15 1 -F 2 5 0 10 14 1 -F 2 5 1 2 22 9 -F 2 27 2 1 22 9 -F 2 7 2 10 24 11 -F 2 6 3 10 19 6 -F 2 12 4 2 17 4 -F 2 8 5 10 22 9 -F 2 9 6 2 23 10 -F 2 8 7 2 22 9 -F 2 6 8 10 23 10 -F 2 7 9 10 27 14 -F 2 17 0 6 14 2 -F 2 9 0 10 14 2 -F 2 6 2 10 24 12 -F 2 7 3 6 19 7 -F 2 12 5 6 28 16 -F 2 6 5 10 22 10 -F 2 10 11 6 17 5 -F 2 5 11 10 14 2 -F 2 13 0 10 14 3 -F 2 7 1 13 15 4 -F 2 12 2 10 24 13 -F 2 6 2 13 18 7 -F 2 9 3 10 19 8 -F 2 10 5 10 22 11 -F 2 19 7 0 12 1 -F 2 8 8 10 23 12 -F 2 20 9 0 14 3 -F 2 10 9 10 27 16 -F 2 18 0 5 14 4 -F 2 9 0 10 14 4 -F 2 6 1 5 23 13 -F 2 5 2 5 11 1 -F 2 9 3 10 19 9 -F 2 5 4 5 19 9 -F 2 5 5 10 22 12 -F 2 9 6 5 28 18 -F 2 25 7 5 25 15 -F 2 12 8 7 23 13 -F 2 6 8 10 23 13 -F 2 18 9 5 16 6 -F 2 9 9 10 27 17 -F 2 6 11 5 11 1 -F 2 4 12 5 17 7 -F 2 6 0 10 14 5 -F 2 5 2 10 24 15 -F 2 14 3 10 19 10 -F 2 6 4 10 10 1 -F 2 5 5 10 22 13 -F 2 8 7 10 12 3 -F 2 20 8 4 18 9 -F 2 5 9 10 27 18 -F 2 6 1 11 13 5 -F 2 12 2 4 17 9 -F 2 6 2 10 24 16 -F 2 15 3 4 12 4 -F 2 7 3 10 19 11 -F 2 6 4 10 10 2 -F 2 8 5 4 19 11 -F 2 4 5 11 11 3 -F 2 3 6 4 10 2 -F 2 19 8 4 18 10 -F 2 5 8 11 10 2 -F 2 6 9 4 19 11 -F 2 10 0 10 14 7 -F 2 7 1 13 15 8 -F 2 19 2 4 17 10 -F 2 9 2 10 24 17 -F 2 14 3 10 19 12 -F 2 5 4 10 10 3 -F 2 12 6 10 16 9 -F 2 6 6 13 23 16 -F 2 17 9 4 19 12 -F 2 9 9 10 27 20 -F 2 7 11 10 14 7 -F 2 8 1 13 15 9 -F 2 40 2 1 22 16 -F 2 10 2 13 18 12 -F 2 10 3 13 14 8 -F 2 5 3 14 14 8 -F 2 8 6 13 23 17 -F 2 9 7 13 19 13 -F 2 9 8 13 14 8 -F 2 13 9 12 14 8 -F 2 6 9 13 23 17 -F 2 6 11 13 9 3 -F 2 15 0 9 14 9 -F 2 32 1 0 11 6 -F 2 16 1 9 24 19 -F 2 8 1 13 15 10 -F 2 17 2 0 11 6 -F 2 9 2 9 6 1 -F 2 16 3 0 6 1 -F 2 8 3 13 14 9 -F 2 6 4 0 6 1 -F 2 16 5 0 14 9 -F 2 8 5 13 12 7 -F 2 10 6 0 14 9 -F 2 5 6 13 23 18 -F 2 16 7 0 12 7 -F 2 8 7 13 19 14 -F 2 6 8 0 12 7 -F 2 10 9 0 14 9 -F 2 26 10 0 14 9 -F 2 13 10 9 27 22 -F 2 7 10 13 12 7 -F 2 7 12 13 15 10 -F 2 18 0 3 6 2 -F 2 9 0 9 14 10 -F 2 7 1 3 17 13 -F 2 3 1 9 24 20 -F 2 7 2 3 6 2 -F 2 3 2 9 6 2 -F 2 7 3 9 10 6 -F 2 5 4 3 12 8 -F 2 2 4 9 19 15 -F 2 10 5 3 10 6 -F 2 5 5 9 16 12 -F 2 12 6 3 19 15 -F 2 6 6 9 22 18 -F 2 11 7 3 18 14 -F 2 6 7 9 23 19 -F 2 11 8 3 6 2 -F 2 6 8 9 12 8 -F 2 9 9 3 10 6 -F 2 16 10 3 19 15 -F 2 8 10 9 27 23 -F 2 3 11 3 6 2 -F 2 2 11 9 15 11 -F 2 3 12 3 8 4 -F 2 1 12 9 14 10 -F 2 4 0 3 6 3 -F 2 4 1 3 17 14 -F 2 11 2 3 6 3 -F 2 5 2 9 6 3 -F 2 6 3 13 14 11 -F 2 10 4 3 12 9 -F 2 8 5 3 10 7 -F 2 6 6 3 19 16 -F 2 3 6 7 5 2 -F 2 11 7 3 18 15 -F 2 5 7 13 19 16 -F 2 14 8 3 6 3 -F 2 7 8 5 5 2 -F 2 5 9 3 10 7 -F 2 15 10 3 19 16 -F 2 7 10 8 23 20 -F 2 9 11 0 4 1 -F 2 5 11 3 6 3 -F 2 3 12 0 4 1 -F 2 2 12 3 8 5 -F 2 3 0 1 11 9 -F 2 2 0 3 6 4 -F 2 8 1 8 22 20 -F 2 22 2 1 22 20 -F 2 11 2 3 6 4 -F 2 5 2 8 6 4 -F 2 10 3 1 17 15 -F 2 3 3 8 6 4 -F 2 27 4 1 6 4 -F 2 13 4 8 18 16 -F 2 7 4 13 14 12 -F 2 4 5 1 23 21 -F 2 2 5 8 5 3 -F 2 11 6 1 11 9 -F 2 5 6 8 25 23 -F 2 4 7 1 6 4 -F 2 8 8 1 22 20 -F 2 4 8 3 6 4 -F 2 3 9 1 24 22 -F 2 13 10 1 6 4 -F 2 7 10 8 23 21 -F 2 13 11 1 13 11 -F 2 7 11 3 6 4 -F 2 9 12 1 11 9 -F 1 5 4 3 12 11 -F 2 13 0 1 11 10 -F 2 6 0 4 6 5 -F 2 3 0 11 4 3 -F 2 7 1 4 6 5 -F 2 22 2 1 22 21 -F 2 11 2 4 17 16 -F 2 6 2 8 6 5 -F 2 5 3 1 17 16 -F 2 2 5 1 23 22 -F 2 1 5 8 5 4 -F 2 14 6 1 11 10 -F 2 7 6 4 10 9 -F 2 4 7 1 6 5 -F 2 2 7 6 5 4 -F 2 3 8 1 22 21 -F 2 2 9 1 24 23 -F 2 25 10 1 6 5 -F 2 12 10 4 10 9 -F 2 6 10 13 12 11 -F 2 16 11 0 4 3 -F 2 8 11 1 13 12 -F 2 9 12 1 11 10 -go - -engine > player2: P 11.803996 11.215721 1 20 3 -P 9.319567 21.808874 1 26 5 -P 14.288424 0.622569 1 41 5 -P 11.865493 5.273785 1 9 3 -P 11.742498 17.157658 1 16 3 -P 4.254093 0.000000 1 20 1 -P 19.353899 22.431443 1 9 1 -P 14.743614 22.324001 1 21 3 -P 8.864377 0.107441 1 7 3 -P 19.854347 0.711934 1 4 1 -P 3.753644 21.719509 1 43 1 -P 8.864814 9.736624 1 13 5 -P 14.743177 12.694819 1 28 5 -P 0.000000 10.809889 0 54 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 110 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 3 5 6 28 2 -F 1 9 1 9 24 1 -F 1 7 1 9 24 2 -F 1 6 7 9 23 1 -F 1 8 1 9 24 3 -F 1 5 6 9 22 1 -F 1 7 7 9 23 2 -F 1 7 2 10 24 4 -F 1 9 5 10 22 2 -F 1 8 8 10 23 3 -F 1 7 2 10 24 5 -F 1 8 5 10 22 3 -F 1 6 8 10 23 4 -F 1 7 9 10 27 8 -F 1 8 2 7 22 4 -F 1 8 3 10 19 1 -F 1 14 5 7 25 7 -F 1 7 5 10 22 4 -F 1 11 8 7 23 5 -F 1 6 8 10 23 5 -F 1 10 9 7 23 5 -F 1 5 9 10 27 9 -F 1 7 2 10 24 7 -F 1 20 3 7 18 1 -F 1 10 3 10 19 2 -F 1 14 5 7 25 8 -F 1 7 5 10 22 5 -F 1 13 8 7 23 6 -F 1 7 8 10 23 6 -F 1 13 1 8 22 6 -F 1 27 3 7 18 2 -F 1 7 3 10 19 3 -F 1 4 4 8 18 2 -F 1 2 6 8 25 9 -F 1 4 7 8 23 7 -F 1 6 8 10 23 7 -F 1 20 1 8 22 7 -F 1 22 2 1 22 7 -F 1 5 2 10 24 9 -F 1 5 3 10 19 4 -F 1 16 4 8 18 3 -F 1 10 5 10 22 7 -F 1 5 8 10 23 8 -F 1 49 2 1 22 8 -F 1 24 2 6 23 9 -F 1 6 2 10 24 10 -F 1 7 3 10 19 5 -F 1 15 5 6 28 14 -F 1 10 6 10 16 2 -F 1 12 9 10 27 13 -F 1 6 9 13 23 9 -F 1 7 12 10 15 1 -F 1 5 0 10 14 1 -F 1 5 1 2 22 9 -F 1 27 2 1 22 9 -F 1 7 2 10 24 11 -F 1 6 3 10 19 6 -F 1 12 4 2 17 4 -F 1 8 5 10 22 9 -F 1 9 6 2 23 10 -F 1 8 7 2 22 9 -F 1 6 8 10 23 10 -F 1 7 9 10 27 14 -F 1 17 0 6 14 2 -F 1 9 0 10 14 2 -F 1 6 2 10 24 12 -F 1 7 3 6 19 7 -F 1 12 5 6 28 16 -F 1 6 5 10 22 10 -F 1 10 11 6 17 5 -F 1 5 11 10 14 2 -F 1 13 0 10 14 3 -F 1 7 1 13 15 4 -F 1 12 2 10 24 13 -F 1 6 2 13 18 7 -F 1 9 3 10 19 8 -F 1 10 5 10 22 11 -F 1 19 7 0 12 1 -F 1 8 8 10 23 12 -F 1 20 9 0 14 3 -F 1 10 9 10 27 16 -F 1 18 0 5 14 4 -F 1 9 0 10 14 4 -F 1 6 1 5 23 13 -F 1 5 2 5 11 1 -F 1 9 3 10 19 9 -F 1 5 4 5 19 9 -F 1 5 5 10 22 12 -F 1 9 6 5 28 18 -F 1 25 7 5 25 15 -F 1 12 8 7 23 13 -F 1 6 8 10 23 13 -F 1 18 9 5 16 6 -F 1 9 9 10 27 17 -F 1 6 11 5 11 1 -F 1 4 12 5 17 7 -F 1 6 0 10 14 5 -F 1 5 2 10 24 15 -F 1 14 3 10 19 10 -F 1 6 4 10 10 1 -F 1 5 5 10 22 13 -F 1 8 7 10 12 3 -F 1 20 8 4 18 9 -F 1 5 9 10 27 18 -F 1 6 1 11 13 5 -F 1 12 2 4 17 9 -F 1 6 2 10 24 16 -F 1 15 3 4 12 4 -F 1 7 3 10 19 11 -F 1 6 4 10 10 2 -F 1 8 5 4 19 11 -F 1 4 5 11 11 3 -F 1 3 6 4 10 2 -F 1 19 8 4 18 10 -F 1 5 8 11 10 2 -F 1 6 9 4 19 11 -F 1 10 0 10 14 7 -F 1 7 1 13 15 8 -F 1 19 2 4 17 10 -F 1 9 2 10 24 17 -F 1 14 3 10 19 12 -F 1 5 4 10 10 3 -F 1 12 6 10 16 9 -F 1 6 6 13 23 16 -F 1 17 9 4 19 12 -F 1 9 9 10 27 20 -F 1 7 11 10 14 7 -F 1 8 1 13 15 9 -F 1 40 2 1 22 16 -F 1 10 2 13 18 12 -F 1 10 3 13 14 8 -F 1 5 3 14 14 8 -F 1 8 6 13 23 17 -F 1 9 7 13 19 13 -F 1 9 8 13 14 8 -F 1 13 9 12 14 8 -F 1 6 9 13 23 17 -F 1 6 11 13 9 3 -F 1 15 0 9 14 9 -F 1 32 1 0 11 6 -F 1 16 1 9 24 19 -F 1 8 1 13 15 10 -F 1 17 2 0 11 6 -F 1 9 2 9 6 1 -F 1 16 3 0 6 1 -F 1 8 3 13 14 9 -F 1 6 4 0 6 1 -F 1 16 5 0 14 9 -F 1 8 5 13 12 7 -F 1 10 6 0 14 9 -F 1 5 6 13 23 18 -F 1 16 7 0 12 7 -F 1 8 7 13 19 14 -F 1 6 8 0 12 7 -F 1 10 9 0 14 9 -F 1 26 10 0 14 9 -F 1 13 10 9 27 22 -F 1 7 10 13 12 7 -F 1 7 12 13 15 10 -F 1 18 0 3 6 2 -F 1 9 0 9 14 10 -F 1 7 1 3 17 13 -F 1 3 1 9 24 20 -F 1 7 2 3 6 2 -F 1 3 2 9 6 2 -F 1 7 3 9 10 6 -F 1 5 4 3 12 8 -F 1 2 4 9 19 15 -F 1 10 5 3 10 6 -F 1 5 5 9 16 12 -F 1 12 6 3 19 15 -F 1 6 6 9 22 18 -F 1 11 7 3 18 14 -F 1 6 7 9 23 19 -F 1 11 8 3 6 2 -F 1 6 8 9 12 8 -F 1 9 9 3 10 6 -F 1 16 10 3 19 15 -F 1 8 10 9 27 23 -F 1 3 11 3 6 2 -F 1 2 11 9 15 11 -F 1 3 12 3 8 4 -F 1 1 12 9 14 10 -F 1 4 0 3 6 3 -F 1 4 1 3 17 14 -F 1 11 2 3 6 3 -F 1 5 2 9 6 3 -F 1 6 3 13 14 11 -F 1 10 4 3 12 9 -F 1 8 5 3 10 7 -F 1 6 6 3 19 16 -F 1 3 6 7 5 2 -F 1 11 7 3 18 15 -F 1 5 7 13 19 16 -F 1 14 8 3 6 3 -F 1 7 8 5 5 2 -F 1 5 9 3 10 7 -F 1 15 10 3 19 16 -F 1 7 10 8 23 20 -F 1 9 11 0 4 1 -F 1 5 11 3 6 3 -F 1 3 12 0 4 1 -F 1 2 12 3 8 5 -F 1 3 0 1 11 9 -F 1 2 0 3 6 4 -F 1 8 1 8 22 20 -F 1 22 2 1 22 20 -F 1 11 2 3 6 4 -F 1 5 2 8 6 4 -F 1 10 3 1 17 15 -F 1 3 3 8 6 4 -F 1 27 4 1 6 4 -F 1 13 4 8 18 16 -F 1 7 4 13 14 12 -F 1 4 5 1 23 21 -F 1 2 5 8 5 3 -F 1 11 6 1 11 9 -F 1 5 6 8 25 23 -F 1 4 7 1 6 4 -F 1 8 8 1 22 20 -F 1 4 8 3 6 4 -F 1 3 9 1 24 22 -F 1 13 10 1 6 4 -F 1 7 10 8 23 21 -F 1 13 11 1 13 11 -F 1 7 11 3 6 4 -F 1 9 12 1 11 9 -F 2 5 4 3 12 11 -F 1 13 0 1 11 10 -F 1 6 0 4 6 5 -F 1 3 0 11 4 3 -F 1 7 1 4 6 5 -F 1 22 2 1 22 21 -F 1 11 2 4 17 16 -F 1 6 2 8 6 5 -F 1 5 3 1 17 16 -F 1 2 5 1 23 22 -F 1 1 5 8 5 4 -F 1 14 6 1 11 10 -F 1 7 6 4 10 9 -F 1 4 7 1 6 5 -F 1 2 7 6 5 4 -F 1 3 8 1 22 21 -F 1 2 9 1 24 23 -F 1 25 10 1 6 5 -F 1 12 10 4 10 9 -F 1 6 10 13 12 11 -F 1 16 11 0 4 3 -F 1 8 11 1 13 12 -F 1 9 12 1 11 10 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 2 0 -player2 > engine: 0 4 10 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 5 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 2 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 2 0 -player2 > engine: 1 1 13 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 2 0 -player2 > engine: 1 4 6 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 2 0 -player2 > engine: 1 12 3 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 20 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 2 0 -player2 > engine: 2 12 10 -player2 > engine: comparing 2 and 13, gives 1 0 0.04558863060331812 -player2 > engine: 2 13 5 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 2 0 -player2 > engine: 3 2 4 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 2 0 -player2 > engine: 3 12 2 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 2 0 -player2 > engine: 4 1 8 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 2 0 -player2 > engine: 4 4 4 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 2 0 -player2 > engine: 4 12 2 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 2 0 -player2 > engine: 5 8 10 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 2 0 -player2 > engine: 5 12 5 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 2 0 -player2 > engine: 6 12 4 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 2 0 -player2 > engine: 7 1 10 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 2 0 -player2 > engine: 7 4 5 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 2 0 -player2 > engine: 7 12 3 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 2 0 -player2 > engine: 8 2 3 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 2 0 -player2 > engine: 8 12 2 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 2 0 -player2 > engine: 9 2 2 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 2 0 -player2 > engine: 9 12 1 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 2 0 -player2 > engine: 10 1 21 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 0 0 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 2 0 -player2 > engine: 10 12 11 -player2 > engine: comparing 10 and 13, gives 1 0 0.3467010984295745 -player2 > engine: 10 13 5 -player2 > engine: comparing 10 and 14, gives 0 0 0.17957565458240538 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 2 0 -player2 > engine: 11 12 6 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 14 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 2 0 -player2 > engine: 12 4 7 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 3 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 59 3 -P 9.319567 21.808874 2 22 5 -P 14.288424 0.622569 2 31 5 -P 11.865493 5.273785 2 6 3 -P 11.742498 17.157658 2 9 3 -P 4.254093 0.000000 2 17 1 -P 19.353899 22.431443 2 6 1 -P 14.743614 22.324001 2 26 3 -P 8.864377 0.107441 2 5 3 -P 19.854347 0.711934 2 31 1 -P 3.753644 21.719509 2 33 1 -P 8.864814 9.736624 2 12 5 -P 14.743177 12.694819 2 12 5 -P 0.000000 10.809889 0 54 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 113 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 3 5 6 28 1 -F 2 7 1 9 24 1 -F 2 8 1 9 24 2 -F 2 7 7 9 23 1 -F 2 7 2 10 24 3 -F 2 9 5 10 22 1 -F 2 8 8 10 23 2 -F 2 7 2 10 24 4 -F 2 8 5 10 22 2 -F 2 6 8 10 23 3 -F 2 7 9 10 27 7 -F 2 8 2 7 22 3 -F 2 14 5 7 25 6 -F 2 7 5 10 22 3 -F 2 11 8 7 23 4 -F 2 6 8 10 23 4 -F 2 10 9 7 23 4 -F 2 5 9 10 27 8 -F 2 7 2 10 24 6 -F 2 10 3 10 19 1 -F 2 14 5 7 25 7 -F 2 7 5 10 22 4 -F 2 13 8 7 23 5 -F 2 7 8 10 23 5 -F 2 13 1 8 22 5 -F 2 27 3 7 18 1 -F 2 7 3 10 19 2 -F 2 4 4 8 18 1 -F 2 2 6 8 25 8 -F 2 4 7 8 23 6 -F 2 6 8 10 23 6 -F 2 20 1 8 22 6 -F 2 22 2 1 22 6 -F 2 5 2 10 24 8 -F 2 5 3 10 19 3 -F 2 16 4 8 18 2 -F 2 10 5 10 22 6 -F 2 5 8 10 23 7 -F 2 49 2 1 22 7 -F 2 24 2 6 23 8 -F 2 6 2 10 24 9 -F 2 7 3 10 19 4 -F 2 15 5 6 28 13 -F 2 10 6 10 16 1 -F 2 12 9 10 27 12 -F 2 6 9 13 23 8 -F 2 5 1 2 22 8 -F 2 27 2 1 22 8 -F 2 7 2 10 24 10 -F 2 6 3 10 19 5 -F 2 12 4 2 17 3 -F 2 8 5 10 22 8 -F 2 9 6 2 23 9 -F 2 8 7 2 22 8 -F 2 6 8 10 23 9 -F 2 7 9 10 27 13 -F 2 17 0 6 14 1 -F 2 9 0 10 14 1 -F 2 6 2 10 24 11 -F 2 7 3 6 19 6 -F 2 12 5 6 28 15 -F 2 6 5 10 22 9 -F 2 10 11 6 17 4 -F 2 5 11 10 14 1 -F 2 13 0 10 14 2 -F 2 7 1 13 15 3 -F 2 12 2 10 24 12 -F 2 6 2 13 18 6 -F 2 9 3 10 19 7 -F 2 10 5 10 22 10 -F 2 8 8 10 23 11 -F 2 20 9 0 14 2 -F 2 10 9 10 27 15 -F 2 18 0 5 14 3 -F 2 9 0 10 14 3 -F 2 6 1 5 23 12 -F 2 9 3 10 19 8 -F 2 5 4 5 19 8 -F 2 5 5 10 22 11 -F 2 9 6 5 28 17 -F 2 25 7 5 25 14 -F 2 12 8 7 23 12 -F 2 6 8 10 23 12 -F 2 18 9 5 16 5 -F 2 9 9 10 27 16 -F 2 4 12 5 17 6 -F 2 6 0 10 14 4 -F 2 5 2 10 24 14 -F 2 14 3 10 19 9 -F 2 5 5 10 22 12 -F 2 8 7 10 12 2 -F 2 20 8 4 18 8 -F 2 5 9 10 27 17 -F 2 6 1 11 13 4 -F 2 12 2 4 17 8 -F 2 6 2 10 24 15 -F 2 15 3 4 12 3 -F 2 7 3 10 19 10 -F 2 6 4 10 10 1 -F 2 8 5 4 19 10 -F 2 4 5 11 11 2 -F 2 3 6 4 10 1 -F 2 19 8 4 18 9 -F 2 5 8 11 10 1 -F 2 6 9 4 19 10 -F 2 10 0 10 14 6 -F 2 7 1 13 15 7 -F 2 19 2 4 17 9 -F 2 9 2 10 24 16 -F 2 14 3 10 19 11 -F 2 5 4 10 10 2 -F 2 12 6 10 16 8 -F 2 6 6 13 23 15 -F 2 17 9 4 19 11 -F 2 9 9 10 27 19 -F 2 7 11 10 14 6 -F 2 8 1 13 15 8 -F 2 40 2 1 22 15 -F 2 10 2 13 18 11 -F 2 10 3 13 14 7 -F 2 5 3 14 14 7 -F 2 8 6 13 23 16 -F 2 9 7 13 19 12 -F 2 9 8 13 14 7 -F 2 13 9 12 14 7 -F 2 6 9 13 23 16 -F 2 6 11 13 9 2 -F 2 15 0 9 14 8 -F 2 32 1 0 11 5 -F 2 16 1 9 24 18 -F 2 8 1 13 15 9 -F 2 17 2 0 11 5 -F 2 8 3 13 14 8 -F 2 16 5 0 14 8 -F 2 8 5 13 12 6 -F 2 10 6 0 14 8 -F 2 5 6 13 23 17 -F 2 16 7 0 12 6 -F 2 8 7 13 19 13 -F 2 6 8 0 12 6 -F 2 10 9 0 14 8 -F 2 26 10 0 14 8 -F 2 13 10 9 27 21 -F 2 7 10 13 12 6 -F 2 7 12 13 15 9 -F 2 18 0 3 6 1 -F 2 9 0 9 14 9 -F 2 7 1 3 17 12 -F 2 3 1 9 24 19 -F 2 7 2 3 6 1 -F 2 3 2 9 6 1 -F 2 7 3 9 10 5 -F 2 5 4 3 12 7 -F 2 2 4 9 19 14 -F 2 10 5 3 10 5 -F 2 5 5 9 16 11 -F 2 12 6 3 19 14 -F 2 6 6 9 22 17 -F 2 11 7 3 18 13 -F 2 6 7 9 23 18 -F 2 11 8 3 6 1 -F 2 6 8 9 12 7 -F 2 9 9 3 10 5 -F 2 16 10 3 19 14 -F 2 8 10 9 27 22 -F 2 3 11 3 6 1 -F 2 2 11 9 15 10 -F 2 3 12 3 8 3 -F 2 1 12 9 14 9 -F 2 4 0 3 6 2 -F 2 4 1 3 17 13 -F 2 11 2 3 6 2 -F 2 5 2 9 6 2 -F 2 6 3 13 14 10 -F 2 10 4 3 12 8 -F 2 8 5 3 10 6 -F 2 6 6 3 19 15 -F 2 3 6 7 5 1 -F 2 11 7 3 18 14 -F 2 5 7 13 19 15 -F 2 14 8 3 6 2 -F 2 7 8 5 5 1 -F 2 5 9 3 10 6 -F 2 15 10 3 19 15 -F 2 7 10 8 23 19 -F 2 5 11 3 6 2 -F 2 2 12 3 8 4 -F 2 3 0 1 11 8 -F 2 2 0 3 6 3 -F 2 8 1 8 22 19 -F 2 22 2 1 22 19 -F 2 11 2 3 6 3 -F 2 5 2 8 6 3 -F 2 10 3 1 17 14 -F 2 3 3 8 6 3 -F 2 27 4 1 6 3 -F 2 13 4 8 18 15 -F 2 7 4 13 14 11 -F 2 4 5 1 23 20 -F 2 2 5 8 5 2 -F 2 11 6 1 11 8 -F 2 5 6 8 25 22 -F 2 4 7 1 6 3 -F 2 8 8 1 22 19 -F 2 4 8 3 6 3 -F 2 3 9 1 24 21 -F 2 13 10 1 6 3 -F 2 7 10 8 23 20 -F 2 13 11 1 13 10 -F 2 7 11 3 6 3 -F 2 9 12 1 11 8 -F 1 5 4 3 12 10 -F 2 13 0 1 11 9 -F 2 6 0 4 6 4 -F 2 3 0 11 4 2 -F 2 7 1 4 6 4 -F 2 22 2 1 22 20 -F 2 11 2 4 17 15 -F 2 6 2 8 6 4 -F 2 5 3 1 17 15 -F 2 2 5 1 23 21 -F 2 1 5 8 5 3 -F 2 14 6 1 11 9 -F 2 7 6 4 10 8 -F 2 4 7 1 6 4 -F 2 2 7 6 5 3 -F 2 3 8 1 22 20 -F 2 2 9 1 24 22 -F 2 25 10 1 6 4 -F 2 12 10 4 10 8 -F 2 6 10 13 12 10 -F 2 16 11 0 4 2 -F 2 8 11 1 13 11 -F 2 9 12 1 11 9 -F 2 10 0 4 6 5 -F 2 5 0 11 4 3 -F 2 2 0 12 4 3 -F 2 6 1 4 6 5 -F 2 3 1 12 11 10 -F 2 10 2 12 13 12 -F 2 5 2 13 18 17 -F 2 4 3 2 6 5 -F 2 2 3 12 8 7 -F 2 8 4 1 6 5 -F 2 2 4 12 6 5 -F 2 10 5 8 5 4 -F 2 5 5 12 17 16 -F 2 4 6 12 11 10 -F 2 10 7 1 6 5 -F 2 5 7 4 6 5 -F 2 3 7 12 10 9 -F 2 3 8 2 6 5 -F 2 2 8 12 14 13 -F 2 2 9 2 6 5 -F 2 1 9 12 14 13 -F 2 21 10 1 6 5 -F 2 11 10 12 15 14 -F 2 5 10 13 12 11 -F 2 6 11 12 7 6 -F 2 14 12 2 13 12 -F 2 7 12 4 6 5 -go - -engine > player2: P 11.803996 11.215721 1 59 3 -P 9.319567 21.808874 1 22 5 -P 14.288424 0.622569 1 31 5 -P 11.865493 5.273785 1 6 3 -P 11.742498 17.157658 1 9 3 -P 4.254093 0.000000 1 17 1 -P 19.353899 22.431443 1 6 1 -P 14.743614 22.324001 1 26 3 -P 8.864377 0.107441 1 5 3 -P 19.854347 0.711934 1 31 1 -P 3.753644 21.719509 1 33 1 -P 8.864814 9.736624 1 12 5 -P 14.743177 12.694819 1 12 5 -P 0.000000 10.809889 0 54 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 113 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 3 5 6 28 1 -F 1 7 1 9 24 1 -F 1 8 1 9 24 2 -F 1 7 7 9 23 1 -F 1 7 2 10 24 3 -F 1 9 5 10 22 1 -F 1 8 8 10 23 2 -F 1 7 2 10 24 4 -F 1 8 5 10 22 2 -F 1 6 8 10 23 3 -F 1 7 9 10 27 7 -F 1 8 2 7 22 3 -F 1 14 5 7 25 6 -F 1 7 5 10 22 3 -F 1 11 8 7 23 4 -F 1 6 8 10 23 4 -F 1 10 9 7 23 4 -F 1 5 9 10 27 8 -F 1 7 2 10 24 6 -F 1 10 3 10 19 1 -F 1 14 5 7 25 7 -F 1 7 5 10 22 4 -F 1 13 8 7 23 5 -F 1 7 8 10 23 5 -F 1 13 1 8 22 5 -F 1 27 3 7 18 1 -F 1 7 3 10 19 2 -F 1 4 4 8 18 1 -F 1 2 6 8 25 8 -F 1 4 7 8 23 6 -F 1 6 8 10 23 6 -F 1 20 1 8 22 6 -F 1 22 2 1 22 6 -F 1 5 2 10 24 8 -F 1 5 3 10 19 3 -F 1 16 4 8 18 2 -F 1 10 5 10 22 6 -F 1 5 8 10 23 7 -F 1 49 2 1 22 7 -F 1 24 2 6 23 8 -F 1 6 2 10 24 9 -F 1 7 3 10 19 4 -F 1 15 5 6 28 13 -F 1 10 6 10 16 1 -F 1 12 9 10 27 12 -F 1 6 9 13 23 8 -F 1 5 1 2 22 8 -F 1 27 2 1 22 8 -F 1 7 2 10 24 10 -F 1 6 3 10 19 5 -F 1 12 4 2 17 3 -F 1 8 5 10 22 8 -F 1 9 6 2 23 9 -F 1 8 7 2 22 8 -F 1 6 8 10 23 9 -F 1 7 9 10 27 13 -F 1 17 0 6 14 1 -F 1 9 0 10 14 1 -F 1 6 2 10 24 11 -F 1 7 3 6 19 6 -F 1 12 5 6 28 15 -F 1 6 5 10 22 9 -F 1 10 11 6 17 4 -F 1 5 11 10 14 1 -F 1 13 0 10 14 2 -F 1 7 1 13 15 3 -F 1 12 2 10 24 12 -F 1 6 2 13 18 6 -F 1 9 3 10 19 7 -F 1 10 5 10 22 10 -F 1 8 8 10 23 11 -F 1 20 9 0 14 2 -F 1 10 9 10 27 15 -F 1 18 0 5 14 3 -F 1 9 0 10 14 3 -F 1 6 1 5 23 12 -F 1 9 3 10 19 8 -F 1 5 4 5 19 8 -F 1 5 5 10 22 11 -F 1 9 6 5 28 17 -F 1 25 7 5 25 14 -F 1 12 8 7 23 12 -F 1 6 8 10 23 12 -F 1 18 9 5 16 5 -F 1 9 9 10 27 16 -F 1 4 12 5 17 6 -F 1 6 0 10 14 4 -F 1 5 2 10 24 14 -F 1 14 3 10 19 9 -F 1 5 5 10 22 12 -F 1 8 7 10 12 2 -F 1 20 8 4 18 8 -F 1 5 9 10 27 17 -F 1 6 1 11 13 4 -F 1 12 2 4 17 8 -F 1 6 2 10 24 15 -F 1 15 3 4 12 3 -F 1 7 3 10 19 10 -F 1 6 4 10 10 1 -F 1 8 5 4 19 10 -F 1 4 5 11 11 2 -F 1 3 6 4 10 1 -F 1 19 8 4 18 9 -F 1 5 8 11 10 1 -F 1 6 9 4 19 10 -F 1 10 0 10 14 6 -F 1 7 1 13 15 7 -F 1 19 2 4 17 9 -F 1 9 2 10 24 16 -F 1 14 3 10 19 11 -F 1 5 4 10 10 2 -F 1 12 6 10 16 8 -F 1 6 6 13 23 15 -F 1 17 9 4 19 11 -F 1 9 9 10 27 19 -F 1 7 11 10 14 6 -F 1 8 1 13 15 8 -F 1 40 2 1 22 15 -F 1 10 2 13 18 11 -F 1 10 3 13 14 7 -F 1 5 3 14 14 7 -F 1 8 6 13 23 16 -F 1 9 7 13 19 12 -F 1 9 8 13 14 7 -F 1 13 9 12 14 7 -F 1 6 9 13 23 16 -F 1 6 11 13 9 2 -F 1 15 0 9 14 8 -F 1 32 1 0 11 5 -F 1 16 1 9 24 18 -F 1 8 1 13 15 9 -F 1 17 2 0 11 5 -F 1 8 3 13 14 8 -F 1 16 5 0 14 8 -F 1 8 5 13 12 6 -F 1 10 6 0 14 8 -F 1 5 6 13 23 17 -F 1 16 7 0 12 6 -F 1 8 7 13 19 13 -F 1 6 8 0 12 6 -F 1 10 9 0 14 8 -F 1 26 10 0 14 8 -F 1 13 10 9 27 21 -F 1 7 10 13 12 6 -F 1 7 12 13 15 9 -F 1 18 0 3 6 1 -F 1 9 0 9 14 9 -F 1 7 1 3 17 12 -F 1 3 1 9 24 19 -F 1 7 2 3 6 1 -F 1 3 2 9 6 1 -F 1 7 3 9 10 5 -F 1 5 4 3 12 7 -F 1 2 4 9 19 14 -F 1 10 5 3 10 5 -F 1 5 5 9 16 11 -F 1 12 6 3 19 14 -F 1 6 6 9 22 17 -F 1 11 7 3 18 13 -F 1 6 7 9 23 18 -F 1 11 8 3 6 1 -F 1 6 8 9 12 7 -F 1 9 9 3 10 5 -F 1 16 10 3 19 14 -F 1 8 10 9 27 22 -F 1 3 11 3 6 1 -F 1 2 11 9 15 10 -F 1 3 12 3 8 3 -F 1 1 12 9 14 9 -F 1 4 0 3 6 2 -F 1 4 1 3 17 13 -F 1 11 2 3 6 2 -F 1 5 2 9 6 2 -F 1 6 3 13 14 10 -F 1 10 4 3 12 8 -F 1 8 5 3 10 6 -F 1 6 6 3 19 15 -F 1 3 6 7 5 1 -F 1 11 7 3 18 14 -F 1 5 7 13 19 15 -F 1 14 8 3 6 2 -F 1 7 8 5 5 1 -F 1 5 9 3 10 6 -F 1 15 10 3 19 15 -F 1 7 10 8 23 19 -F 1 5 11 3 6 2 -F 1 2 12 3 8 4 -F 1 3 0 1 11 8 -F 1 2 0 3 6 3 -F 1 8 1 8 22 19 -F 1 22 2 1 22 19 -F 1 11 2 3 6 3 -F 1 5 2 8 6 3 -F 1 10 3 1 17 14 -F 1 3 3 8 6 3 -F 1 27 4 1 6 3 -F 1 13 4 8 18 15 -F 1 7 4 13 14 11 -F 1 4 5 1 23 20 -F 1 2 5 8 5 2 -F 1 11 6 1 11 8 -F 1 5 6 8 25 22 -F 1 4 7 1 6 3 -F 1 8 8 1 22 19 -F 1 4 8 3 6 3 -F 1 3 9 1 24 21 -F 1 13 10 1 6 3 -F 1 7 10 8 23 20 -F 1 13 11 1 13 10 -F 1 7 11 3 6 3 -F 1 9 12 1 11 8 -F 2 5 4 3 12 10 -F 1 13 0 1 11 9 -F 1 6 0 4 6 4 -F 1 3 0 11 4 2 -F 1 7 1 4 6 4 -F 1 22 2 1 22 20 -F 1 11 2 4 17 15 -F 1 6 2 8 6 4 -F 1 5 3 1 17 15 -F 1 2 5 1 23 21 -F 1 1 5 8 5 3 -F 1 14 6 1 11 9 -F 1 7 6 4 10 8 -F 1 4 7 1 6 4 -F 1 2 7 6 5 3 -F 1 3 8 1 22 20 -F 1 2 9 1 24 22 -F 1 25 10 1 6 4 -F 1 12 10 4 10 8 -F 1 6 10 13 12 10 -F 1 16 11 0 4 2 -F 1 8 11 1 13 11 -F 1 9 12 1 11 9 -F 1 10 0 4 6 5 -F 1 5 0 11 4 3 -F 1 2 0 12 4 3 -F 1 6 1 4 6 5 -F 1 3 1 12 11 10 -F 1 10 2 12 13 12 -F 1 5 2 13 18 17 -F 1 4 3 2 6 5 -F 1 2 3 12 8 7 -F 1 8 4 1 6 5 -F 1 2 4 12 6 5 -F 1 10 5 8 5 4 -F 1 5 5 12 17 16 -F 1 4 6 12 11 10 -F 1 10 7 1 6 5 -F 1 5 7 4 6 5 -F 1 3 7 12 10 9 -F 1 3 8 2 6 5 -F 1 2 8 12 14 13 -F 1 2 9 2 6 5 -F 1 1 9 12 14 13 -F 1 21 10 1 6 5 -F 1 11 10 12 15 14 -F 1 5 10 13 12 11 -F 1 6 11 12 7 6 -F 1 14 12 2 13 12 -F 1 7 12 4 6 5 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 29 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 15 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 7 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 2 0 -player2 > engine: 1 12 11 -player2 > engine: comparing 1 and 13, gives 1 0 0.05549243454274729 -player2 > engine: 1 13 5 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 15 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 2 0 -player2 > engine: 2 12 8 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 2 0 -player2 > engine: 3 12 3 -player2 > engine: comparing 3 and 13, gives 0 0 0.10183210472368877 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 2 0 -player2 > engine: 4 12 4 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 2 0 -player2 > engine: 5 12 8 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 2 0 -player2 > engine: 6 12 3 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 2 0 -player2 > engine: 7 2 13 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 2 0 -player2 > engine: 7 12 6 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 2 0 -player2 > engine: 9 2 15 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 2 0 -player2 > engine: 9 12 8 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 0 0 -player2 > engine: comparing 10 and 2, gives 0 2 0 -player2 > engine: 10 2 16 -player2 > engine: comparing 10 and 3, gives 0 0 0 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 2 0 -player2 > engine: 10 12 8 -player2 > engine: comparing 10 and 13, gives 0 0 0.3467010984295745 -player2 > engine: comparing 10 and 14, gives 0 0 0.17957565458240538 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 6 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 2 0 -player2 > engine: 11 12 3 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 6 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 2 0 -player2 > engine: 12 12 3 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 11 3 -P 9.319567 21.808874 2 11 5 -P 14.288424 0.622569 2 28 5 -P 11.865493 5.273785 2 45 3 -P 11.742498 17.157658 2 11 3 -P 4.254093 0.000000 2 17 1 -P 19.353899 22.431443 2 24 1 -P 14.743614 22.324001 2 40 3 -P 8.864377 0.107441 2 12 3 -P 19.854347 0.711934 2 26 1 -P 3.753644 21.719509 2 59 1 -P 8.864814 9.736624 2 13 5 -P 14.743177 12.694819 2 11 5 -P 0.000000 10.809889 0 54 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 116 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 8 1 9 24 1 -F 2 7 2 10 24 2 -F 2 8 8 10 23 1 -F 2 7 2 10 24 3 -F 2 8 5 10 22 1 -F 2 6 8 10 23 2 -F 2 7 9 10 27 6 -F 2 8 2 7 22 2 -F 2 14 5 7 25 5 -F 2 7 5 10 22 2 -F 2 11 8 7 23 3 -F 2 6 8 10 23 3 -F 2 10 9 7 23 3 -F 2 5 9 10 27 7 -F 2 7 2 10 24 5 -F 2 14 5 7 25 6 -F 2 7 5 10 22 3 -F 2 13 8 7 23 4 -F 2 7 8 10 23 4 -F 2 13 1 8 22 4 -F 2 7 3 10 19 1 -F 2 2 6 8 25 7 -F 2 4 7 8 23 5 -F 2 6 8 10 23 5 -F 2 20 1 8 22 5 -F 2 22 2 1 22 5 -F 2 5 2 10 24 7 -F 2 5 3 10 19 2 -F 2 16 4 8 18 1 -F 2 10 5 10 22 5 -F 2 5 8 10 23 6 -F 2 49 2 1 22 6 -F 2 24 2 6 23 7 -F 2 6 2 10 24 8 -F 2 7 3 10 19 3 -F 2 15 5 6 28 12 -F 2 12 9 10 27 11 -F 2 6 9 13 23 7 -F 2 5 1 2 22 7 -F 2 27 2 1 22 7 -F 2 7 2 10 24 9 -F 2 6 3 10 19 4 -F 2 12 4 2 17 2 -F 2 8 5 10 22 7 -F 2 9 6 2 23 8 -F 2 8 7 2 22 7 -F 2 6 8 10 23 8 -F 2 7 9 10 27 12 -F 2 6 2 10 24 10 -F 2 7 3 6 19 5 -F 2 12 5 6 28 14 -F 2 6 5 10 22 8 -F 2 10 11 6 17 3 -F 2 13 0 10 14 1 -F 2 7 1 13 15 2 -F 2 12 2 10 24 11 -F 2 6 2 13 18 5 -F 2 9 3 10 19 6 -F 2 10 5 10 22 9 -F 2 8 8 10 23 10 -F 2 20 9 0 14 1 -F 2 10 9 10 27 14 -F 2 18 0 5 14 2 -F 2 9 0 10 14 2 -F 2 6 1 5 23 11 -F 2 9 3 10 19 7 -F 2 5 4 5 19 7 -F 2 5 5 10 22 10 -F 2 9 6 5 28 16 -F 2 25 7 5 25 13 -F 2 12 8 7 23 11 -F 2 6 8 10 23 11 -F 2 18 9 5 16 4 -F 2 9 9 10 27 15 -F 2 4 12 5 17 5 -F 2 6 0 10 14 3 -F 2 5 2 10 24 13 -F 2 14 3 10 19 8 -F 2 5 5 10 22 11 -F 2 8 7 10 12 1 -F 2 20 8 4 18 7 -F 2 5 9 10 27 16 -F 2 6 1 11 13 3 -F 2 12 2 4 17 7 -F 2 6 2 10 24 14 -F 2 15 3 4 12 2 -F 2 7 3 10 19 9 -F 2 8 5 4 19 9 -F 2 4 5 11 11 1 -F 2 19 8 4 18 8 -F 2 6 9 4 19 9 -F 2 10 0 10 14 5 -F 2 7 1 13 15 6 -F 2 19 2 4 17 8 -F 2 9 2 10 24 15 -F 2 14 3 10 19 10 -F 2 5 4 10 10 1 -F 2 12 6 10 16 7 -F 2 6 6 13 23 14 -F 2 17 9 4 19 10 -F 2 9 9 10 27 18 -F 2 7 11 10 14 5 -F 2 8 1 13 15 7 -F 2 40 2 1 22 14 -F 2 10 2 13 18 10 -F 2 10 3 13 14 6 -F 2 5 3 14 14 6 -F 2 8 6 13 23 15 -F 2 9 7 13 19 11 -F 2 9 8 13 14 6 -F 2 13 9 12 14 6 -F 2 6 9 13 23 15 -F 2 6 11 13 9 1 -F 2 15 0 9 14 7 -F 2 32 1 0 11 4 -F 2 16 1 9 24 17 -F 2 8 1 13 15 8 -F 2 17 2 0 11 4 -F 2 8 3 13 14 7 -F 2 16 5 0 14 7 -F 2 8 5 13 12 5 -F 2 10 6 0 14 7 -F 2 5 6 13 23 16 -F 2 16 7 0 12 5 -F 2 8 7 13 19 12 -F 2 6 8 0 12 5 -F 2 10 9 0 14 7 -F 2 26 10 0 14 7 -F 2 13 10 9 27 20 -F 2 7 10 13 12 5 -F 2 7 12 13 15 8 -F 2 9 0 9 14 8 -F 2 7 1 3 17 11 -F 2 3 1 9 24 18 -F 2 7 3 9 10 4 -F 2 5 4 3 12 6 -F 2 2 4 9 19 13 -F 2 10 5 3 10 4 -F 2 5 5 9 16 10 -F 2 12 6 3 19 13 -F 2 6 6 9 22 16 -F 2 11 7 3 18 12 -F 2 6 7 9 23 17 -F 2 6 8 9 12 6 -F 2 9 9 3 10 4 -F 2 16 10 3 19 13 -F 2 8 10 9 27 21 -F 2 2 11 9 15 9 -F 2 3 12 3 8 2 -F 2 1 12 9 14 8 -F 2 4 0 3 6 1 -F 2 4 1 3 17 12 -F 2 11 2 3 6 1 -F 2 5 2 9 6 1 -F 2 6 3 13 14 9 -F 2 10 4 3 12 7 -F 2 8 5 3 10 5 -F 2 6 6 3 19 14 -F 2 11 7 3 18 13 -F 2 5 7 13 19 14 -F 2 14 8 3 6 1 -F 2 5 9 3 10 5 -F 2 15 10 3 19 14 -F 2 7 10 8 23 18 -F 2 5 11 3 6 1 -F 2 2 12 3 8 3 -F 2 3 0 1 11 7 -F 2 2 0 3 6 2 -F 2 8 1 8 22 18 -F 2 22 2 1 22 18 -F 2 11 2 3 6 2 -F 2 5 2 8 6 2 -F 2 10 3 1 17 13 -F 2 3 3 8 6 2 -F 2 27 4 1 6 2 -F 2 13 4 8 18 14 -F 2 7 4 13 14 10 -F 2 4 5 1 23 19 -F 2 2 5 8 5 1 -F 2 11 6 1 11 7 -F 2 5 6 8 25 21 -F 2 4 7 1 6 2 -F 2 8 8 1 22 18 -F 2 4 8 3 6 2 -F 2 3 9 1 24 20 -F 2 13 10 1 6 2 -F 2 7 10 8 23 19 -F 2 13 11 1 13 9 -F 2 7 11 3 6 2 -F 2 9 12 1 11 7 -F 1 5 4 3 12 9 -F 2 13 0 1 11 8 -F 2 6 0 4 6 3 -F 2 3 0 11 4 1 -F 2 7 1 4 6 3 -F 2 22 2 1 22 19 -F 2 11 2 4 17 14 -F 2 6 2 8 6 3 -F 2 5 3 1 17 14 -F 2 2 5 1 23 20 -F 2 1 5 8 5 2 -F 2 14 6 1 11 8 -F 2 7 6 4 10 7 -F 2 4 7 1 6 3 -F 2 2 7 6 5 2 -F 2 3 8 1 22 19 -F 2 2 9 1 24 21 -F 2 25 10 1 6 3 -F 2 12 10 4 10 7 -F 2 6 10 13 12 9 -F 2 16 11 0 4 1 -F 2 8 11 1 13 10 -F 2 9 12 1 11 8 -F 2 10 0 4 6 4 -F 2 5 0 11 4 2 -F 2 2 0 12 4 2 -F 2 6 1 4 6 4 -F 2 3 1 12 11 9 -F 2 10 2 12 13 11 -F 2 5 2 13 18 16 -F 2 4 3 2 6 4 -F 2 2 3 12 8 6 -F 2 8 4 1 6 4 -F 2 2 4 12 6 4 -F 2 10 5 8 5 3 -F 2 5 5 12 17 15 -F 2 4 6 12 11 9 -F 2 10 7 1 6 4 -F 2 5 7 4 6 4 -F 2 3 7 12 10 8 -F 2 3 8 2 6 4 -F 2 2 8 12 14 12 -F 2 2 9 2 6 4 -F 2 1 9 12 14 12 -F 2 21 10 1 6 4 -F 2 11 10 12 15 13 -F 2 5 10 13 12 10 -F 2 6 11 12 7 5 -F 2 14 12 2 13 11 -F 2 7 12 4 6 4 -F 2 29 0 2 11 10 -F 2 15 0 11 4 3 -F 2 7 0 12 4 3 -F 2 11 1 12 11 10 -F 2 5 1 13 15 14 -F 2 8 2 12 13 12 -F 2 3 3 12 8 7 -F 2 4 4 12 6 5 -F 2 8 5 12 17 16 -F 2 3 6 12 11 10 -F 2 13 7 2 22 21 -F 2 6 7 12 10 9 -F 2 15 9 2 6 5 -F 2 8 9 12 14 13 -F 2 16 10 2 24 23 -F 2 8 10 12 15 14 -F 2 6 11 0 4 3 -F 2 3 11 12 7 6 -F 2 6 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 11 3 -P 9.319567 21.808874 1 11 5 -P 14.288424 0.622569 1 28 5 -P 11.865493 5.273785 1 45 3 -P 11.742498 17.157658 1 11 3 -P 4.254093 0.000000 1 17 1 -P 19.353899 22.431443 1 24 1 -P 14.743614 22.324001 1 40 3 -P 8.864377 0.107441 1 12 3 -P 19.854347 0.711934 1 26 1 -P 3.753644 21.719509 1 59 1 -P 8.864814 9.736624 1 13 5 -P 14.743177 12.694819 1 11 5 -P 0.000000 10.809889 0 54 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 116 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 8 1 9 24 1 -F 1 7 2 10 24 2 -F 1 8 8 10 23 1 -F 1 7 2 10 24 3 -F 1 8 5 10 22 1 -F 1 6 8 10 23 2 -F 1 7 9 10 27 6 -F 1 8 2 7 22 2 -F 1 14 5 7 25 5 -F 1 7 5 10 22 2 -F 1 11 8 7 23 3 -F 1 6 8 10 23 3 -F 1 10 9 7 23 3 -F 1 5 9 10 27 7 -F 1 7 2 10 24 5 -F 1 14 5 7 25 6 -F 1 7 5 10 22 3 -F 1 13 8 7 23 4 -F 1 7 8 10 23 4 -F 1 13 1 8 22 4 -F 1 7 3 10 19 1 -F 1 2 6 8 25 7 -F 1 4 7 8 23 5 -F 1 6 8 10 23 5 -F 1 20 1 8 22 5 -F 1 22 2 1 22 5 -F 1 5 2 10 24 7 -F 1 5 3 10 19 2 -F 1 16 4 8 18 1 -F 1 10 5 10 22 5 -F 1 5 8 10 23 6 -F 1 49 2 1 22 6 -F 1 24 2 6 23 7 -F 1 6 2 10 24 8 -F 1 7 3 10 19 3 -F 1 15 5 6 28 12 -F 1 12 9 10 27 11 -F 1 6 9 13 23 7 -F 1 5 1 2 22 7 -F 1 27 2 1 22 7 -F 1 7 2 10 24 9 -F 1 6 3 10 19 4 -F 1 12 4 2 17 2 -F 1 8 5 10 22 7 -F 1 9 6 2 23 8 -F 1 8 7 2 22 7 -F 1 6 8 10 23 8 -F 1 7 9 10 27 12 -F 1 6 2 10 24 10 -F 1 7 3 6 19 5 -F 1 12 5 6 28 14 -F 1 6 5 10 22 8 -F 1 10 11 6 17 3 -F 1 13 0 10 14 1 -F 1 7 1 13 15 2 -F 1 12 2 10 24 11 -F 1 6 2 13 18 5 -F 1 9 3 10 19 6 -F 1 10 5 10 22 9 -F 1 8 8 10 23 10 -F 1 20 9 0 14 1 -F 1 10 9 10 27 14 -F 1 18 0 5 14 2 -F 1 9 0 10 14 2 -F 1 6 1 5 23 11 -F 1 9 3 10 19 7 -F 1 5 4 5 19 7 -F 1 5 5 10 22 10 -F 1 9 6 5 28 16 -F 1 25 7 5 25 13 -F 1 12 8 7 23 11 -F 1 6 8 10 23 11 -F 1 18 9 5 16 4 -F 1 9 9 10 27 15 -F 1 4 12 5 17 5 -F 1 6 0 10 14 3 -F 1 5 2 10 24 13 -F 1 14 3 10 19 8 -F 1 5 5 10 22 11 -F 1 8 7 10 12 1 -F 1 20 8 4 18 7 -F 1 5 9 10 27 16 -F 1 6 1 11 13 3 -F 1 12 2 4 17 7 -F 1 6 2 10 24 14 -F 1 15 3 4 12 2 -F 1 7 3 10 19 9 -F 1 8 5 4 19 9 -F 1 4 5 11 11 1 -F 1 19 8 4 18 8 -F 1 6 9 4 19 9 -F 1 10 0 10 14 5 -F 1 7 1 13 15 6 -F 1 19 2 4 17 8 -F 1 9 2 10 24 15 -F 1 14 3 10 19 10 -F 1 5 4 10 10 1 -F 1 12 6 10 16 7 -F 1 6 6 13 23 14 -F 1 17 9 4 19 10 -F 1 9 9 10 27 18 -F 1 7 11 10 14 5 -F 1 8 1 13 15 7 -F 1 40 2 1 22 14 -F 1 10 2 13 18 10 -F 1 10 3 13 14 6 -F 1 5 3 14 14 6 -F 1 8 6 13 23 15 -F 1 9 7 13 19 11 -F 1 9 8 13 14 6 -F 1 13 9 12 14 6 -F 1 6 9 13 23 15 -F 1 6 11 13 9 1 -F 1 15 0 9 14 7 -F 1 32 1 0 11 4 -F 1 16 1 9 24 17 -F 1 8 1 13 15 8 -F 1 17 2 0 11 4 -F 1 8 3 13 14 7 -F 1 16 5 0 14 7 -F 1 8 5 13 12 5 -F 1 10 6 0 14 7 -F 1 5 6 13 23 16 -F 1 16 7 0 12 5 -F 1 8 7 13 19 12 -F 1 6 8 0 12 5 -F 1 10 9 0 14 7 -F 1 26 10 0 14 7 -F 1 13 10 9 27 20 -F 1 7 10 13 12 5 -F 1 7 12 13 15 8 -F 1 9 0 9 14 8 -F 1 7 1 3 17 11 -F 1 3 1 9 24 18 -F 1 7 3 9 10 4 -F 1 5 4 3 12 6 -F 1 2 4 9 19 13 -F 1 10 5 3 10 4 -F 1 5 5 9 16 10 -F 1 12 6 3 19 13 -F 1 6 6 9 22 16 -F 1 11 7 3 18 12 -F 1 6 7 9 23 17 -F 1 6 8 9 12 6 -F 1 9 9 3 10 4 -F 1 16 10 3 19 13 -F 1 8 10 9 27 21 -F 1 2 11 9 15 9 -F 1 3 12 3 8 2 -F 1 1 12 9 14 8 -F 1 4 0 3 6 1 -F 1 4 1 3 17 12 -F 1 11 2 3 6 1 -F 1 5 2 9 6 1 -F 1 6 3 13 14 9 -F 1 10 4 3 12 7 -F 1 8 5 3 10 5 -F 1 6 6 3 19 14 -F 1 11 7 3 18 13 -F 1 5 7 13 19 14 -F 1 14 8 3 6 1 -F 1 5 9 3 10 5 -F 1 15 10 3 19 14 -F 1 7 10 8 23 18 -F 1 5 11 3 6 1 -F 1 2 12 3 8 3 -F 1 3 0 1 11 7 -F 1 2 0 3 6 2 -F 1 8 1 8 22 18 -F 1 22 2 1 22 18 -F 1 11 2 3 6 2 -F 1 5 2 8 6 2 -F 1 10 3 1 17 13 -F 1 3 3 8 6 2 -F 1 27 4 1 6 2 -F 1 13 4 8 18 14 -F 1 7 4 13 14 10 -F 1 4 5 1 23 19 -F 1 2 5 8 5 1 -F 1 11 6 1 11 7 -F 1 5 6 8 25 21 -F 1 4 7 1 6 2 -F 1 8 8 1 22 18 -F 1 4 8 3 6 2 -F 1 3 9 1 24 20 -F 1 13 10 1 6 2 -F 1 7 10 8 23 19 -F 1 13 11 1 13 9 -F 1 7 11 3 6 2 -F 1 9 12 1 11 7 -F 2 5 4 3 12 9 -F 1 13 0 1 11 8 -F 1 6 0 4 6 3 -F 1 3 0 11 4 1 -F 1 7 1 4 6 3 -F 1 22 2 1 22 19 -F 1 11 2 4 17 14 -F 1 6 2 8 6 3 -F 1 5 3 1 17 14 -F 1 2 5 1 23 20 -F 1 1 5 8 5 2 -F 1 14 6 1 11 8 -F 1 7 6 4 10 7 -F 1 4 7 1 6 3 -F 1 2 7 6 5 2 -F 1 3 8 1 22 19 -F 1 2 9 1 24 21 -F 1 25 10 1 6 3 -F 1 12 10 4 10 7 -F 1 6 10 13 12 9 -F 1 16 11 0 4 1 -F 1 8 11 1 13 10 -F 1 9 12 1 11 8 -F 1 10 0 4 6 4 -F 1 5 0 11 4 2 -F 1 2 0 12 4 2 -F 1 6 1 4 6 4 -F 1 3 1 12 11 9 -F 1 10 2 12 13 11 -F 1 5 2 13 18 16 -F 1 4 3 2 6 4 -F 1 2 3 12 8 6 -F 1 8 4 1 6 4 -F 1 2 4 12 6 4 -F 1 10 5 8 5 3 -F 1 5 5 12 17 15 -F 1 4 6 12 11 9 -F 1 10 7 1 6 4 -F 1 5 7 4 6 4 -F 1 3 7 12 10 8 -F 1 3 8 2 6 4 -F 1 2 8 12 14 12 -F 1 2 9 2 6 4 -F 1 1 9 12 14 12 -F 1 21 10 1 6 4 -F 1 11 10 12 15 13 -F 1 5 10 13 12 10 -F 1 6 11 12 7 5 -F 1 14 12 2 13 11 -F 1 7 12 4 6 4 -F 1 29 0 2 11 10 -F 1 15 0 11 4 3 -F 1 7 0 12 4 3 -F 1 11 1 12 11 10 -F 1 5 1 13 15 14 -F 1 8 2 12 13 12 -F 1 3 3 12 8 7 -F 1 4 4 12 6 5 -F 1 8 5 12 17 16 -F 1 3 6 12 11 10 -F 1 13 7 2 22 21 -F 1 6 7 12 10 9 -F 1 15 9 2 6 5 -F 1 8 9 12 14 13 -F 1 16 10 2 24 23 -F 1 8 10 12 15 14 -F 1 6 11 0 4 3 -F 1 3 11 12 7 6 -F 1 6 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 5 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 1 0 0.05549243454274729 -player2 > engine: 1 13 5 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 14 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 1 0 0.04558863060331812 -player2 > engine: 2 13 7 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 2 0 -player2 > engine: 3 2 22 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 1 0 0.10183210472368877 -player2 > engine: 3 13 11 -player2 > engine: comparing 3 and 14, gives 1 0 0.09988694591354103 -player2 > engine: 3 14 6 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 1 0 0.099886945913541 -player2 > engine: 4 13 5 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 1 0 0.3443276716006396 -player2 > engine: 5 13 8 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 2 0 -player2 > engine: 6 7 12 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 1 0 0.17718658046128033 -player2 > engine: 6 13 6 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 2 0 -player2 > engine: 7 6 20 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 1 0 0.07127486481918088 -player2 > engine: 7 13 10 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 1 0 0.0959457165401428 -player2 > engine: 8 13 6 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 2 0 -player2 > engine: 9 2 13 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 1 0 0.17957565458240535 -player2 > engine: 9 13 6 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 0 0 -player2 > engine: comparing 10 and 2, gives 0 2 0 -player2 > engine: 10 2 29 -player2 > engine: comparing 10 and 3, gives 0 0 0 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 2 0 -player2 > engine: 10 6 15 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 1 0 0.3467010984295745 -player2 > engine: 10 13 7 -player2 > engine: comparing 10 and 14, gives 0 0 0.17957565458240538 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 1 0 0.08959020236950047 -player2 > engine: 11 13 6 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 1 0 0.05382426922307792 -player2 > engine: 12 13 5 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 45 3 -P 9.319567 21.808874 2 11 5 -P 14.288424 0.622569 2 26 5 -P 11.865493 5.273785 2 43 3 -P 11.742498 17.157658 2 9 3 -P 4.254093 0.000000 2 10 1 -P 19.353899 22.431443 2 7 1 -P 14.743614 22.324001 2 13 3 -P 8.864377 0.107441 2 27 3 -P 19.854347 0.711934 2 21 1 -P 3.753644 21.719509 2 58 1 -P 8.864814 9.736624 2 19 5 -P 14.743177 12.694819 2 11 5 -P 0.000000 10.809889 0 48 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 119 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 7 2 10 24 1 -F 2 7 2 10 24 2 -F 2 6 8 10 23 1 -F 2 7 9 10 27 5 -F 2 8 2 7 22 1 -F 2 14 5 7 25 4 -F 2 7 5 10 22 1 -F 2 11 8 7 23 2 -F 2 6 8 10 23 2 -F 2 10 9 7 23 2 -F 2 5 9 10 27 6 -F 2 7 2 10 24 4 -F 2 14 5 7 25 5 -F 2 7 5 10 22 2 -F 2 13 8 7 23 3 -F 2 7 8 10 23 3 -F 2 13 1 8 22 3 -F 2 2 6 8 25 6 -F 2 4 7 8 23 4 -F 2 6 8 10 23 4 -F 2 20 1 8 22 4 -F 2 22 2 1 22 4 -F 2 5 2 10 24 6 -F 2 5 3 10 19 1 -F 2 10 5 10 22 4 -F 2 5 8 10 23 5 -F 2 49 2 1 22 5 -F 2 24 2 6 23 6 -F 2 6 2 10 24 7 -F 2 7 3 10 19 2 -F 2 15 5 6 28 11 -F 2 12 9 10 27 10 -F 2 6 9 13 23 6 -F 2 5 1 2 22 6 -F 2 27 2 1 22 6 -F 2 7 2 10 24 8 -F 2 6 3 10 19 3 -F 2 12 4 2 17 1 -F 2 8 5 10 22 6 -F 2 9 6 2 23 7 -F 2 8 7 2 22 6 -F 2 6 8 10 23 7 -F 2 7 9 10 27 11 -F 2 6 2 10 24 9 -F 2 7 3 6 19 4 -F 2 12 5 6 28 13 -F 2 6 5 10 22 7 -F 2 10 11 6 17 2 -F 2 7 1 13 15 1 -F 2 12 2 10 24 10 -F 2 6 2 13 18 4 -F 2 9 3 10 19 5 -F 2 10 5 10 22 8 -F 2 8 8 10 23 9 -F 2 10 9 10 27 13 -F 2 18 0 5 14 1 -F 2 9 0 10 14 1 -F 2 6 1 5 23 10 -F 2 9 3 10 19 6 -F 2 5 4 5 19 6 -F 2 5 5 10 22 9 -F 2 9 6 5 28 15 -F 2 25 7 5 25 12 -F 2 12 8 7 23 10 -F 2 6 8 10 23 10 -F 2 18 9 5 16 3 -F 2 9 9 10 27 14 -F 2 4 12 5 17 4 -F 2 6 0 10 14 2 -F 2 5 2 10 24 12 -F 2 14 3 10 19 7 -F 2 5 5 10 22 10 -F 2 20 8 4 18 6 -F 2 5 9 10 27 15 -F 2 6 1 11 13 2 -F 2 12 2 4 17 6 -F 2 6 2 10 24 13 -F 2 15 3 4 12 1 -F 2 7 3 10 19 8 -F 2 8 5 4 19 8 -F 2 19 8 4 18 7 -F 2 6 9 4 19 8 -F 2 10 0 10 14 4 -F 2 7 1 13 15 5 -F 2 19 2 4 17 7 -F 2 9 2 10 24 14 -F 2 14 3 10 19 9 -F 2 12 6 10 16 6 -F 2 6 6 13 23 13 -F 2 17 9 4 19 9 -F 2 9 9 10 27 17 -F 2 7 11 10 14 4 -F 2 8 1 13 15 6 -F 2 40 2 1 22 13 -F 2 10 2 13 18 9 -F 2 10 3 13 14 5 -F 2 5 3 14 14 5 -F 2 8 6 13 23 14 -F 2 9 7 13 19 10 -F 2 9 8 13 14 5 -F 2 13 9 12 14 5 -F 2 6 9 13 23 14 -F 2 15 0 9 14 6 -F 2 32 1 0 11 3 -F 2 16 1 9 24 16 -F 2 8 1 13 15 7 -F 2 17 2 0 11 3 -F 2 8 3 13 14 6 -F 2 16 5 0 14 6 -F 2 8 5 13 12 4 -F 2 10 6 0 14 6 -F 2 5 6 13 23 15 -F 2 16 7 0 12 4 -F 2 8 7 13 19 11 -F 2 6 8 0 12 4 -F 2 10 9 0 14 6 -F 2 26 10 0 14 6 -F 2 13 10 9 27 19 -F 2 7 10 13 12 4 -F 2 7 12 13 15 7 -F 2 9 0 9 14 7 -F 2 7 1 3 17 10 -F 2 3 1 9 24 17 -F 2 7 3 9 10 3 -F 2 5 4 3 12 5 -F 2 2 4 9 19 12 -F 2 10 5 3 10 3 -F 2 5 5 9 16 9 -F 2 12 6 3 19 12 -F 2 6 6 9 22 15 -F 2 11 7 3 18 11 -F 2 6 7 9 23 16 -F 2 6 8 9 12 5 -F 2 9 9 3 10 3 -F 2 16 10 3 19 12 -F 2 8 10 9 27 20 -F 2 2 11 9 15 8 -F 2 3 12 3 8 1 -F 2 1 12 9 14 7 -F 2 4 1 3 17 11 -F 2 6 3 13 14 8 -F 2 10 4 3 12 6 -F 2 8 5 3 10 4 -F 2 6 6 3 19 13 -F 2 11 7 3 18 12 -F 2 5 7 13 19 13 -F 2 5 9 3 10 4 -F 2 15 10 3 19 13 -F 2 7 10 8 23 17 -F 2 2 12 3 8 2 -F 2 3 0 1 11 6 -F 2 2 0 3 6 1 -F 2 8 1 8 22 17 -F 2 22 2 1 22 17 -F 2 11 2 3 6 1 -F 2 5 2 8 6 1 -F 2 10 3 1 17 12 -F 2 3 3 8 6 1 -F 2 27 4 1 6 1 -F 2 13 4 8 18 13 -F 2 7 4 13 14 9 -F 2 4 5 1 23 18 -F 2 11 6 1 11 6 -F 2 5 6 8 25 20 -F 2 4 7 1 6 1 -F 2 8 8 1 22 17 -F 2 4 8 3 6 1 -F 2 3 9 1 24 19 -F 2 13 10 1 6 1 -F 2 7 10 8 23 18 -F 2 13 11 1 13 8 -F 2 7 11 3 6 1 -F 2 9 12 1 11 6 -F 1 5 4 3 12 8 -F 2 13 0 1 11 7 -F 2 6 0 4 6 2 -F 2 7 1 4 6 2 -F 2 22 2 1 22 18 -F 2 11 2 4 17 13 -F 2 6 2 8 6 2 -F 2 5 3 1 17 13 -F 2 2 5 1 23 19 -F 2 1 5 8 5 1 -F 2 14 6 1 11 7 -F 2 7 6 4 10 6 -F 2 4 7 1 6 2 -F 2 2 7 6 5 1 -F 2 3 8 1 22 18 -F 2 2 9 1 24 20 -F 2 25 10 1 6 2 -F 2 12 10 4 10 6 -F 2 6 10 13 12 8 -F 2 8 11 1 13 9 -F 2 9 12 1 11 7 -F 2 10 0 4 6 3 -F 2 5 0 11 4 1 -F 2 2 0 12 4 1 -F 2 6 1 4 6 3 -F 2 3 1 12 11 8 -F 2 10 2 12 13 10 -F 2 5 2 13 18 15 -F 2 4 3 2 6 3 -F 2 2 3 12 8 5 -F 2 8 4 1 6 3 -F 2 2 4 12 6 3 -F 2 10 5 8 5 2 -F 2 5 5 12 17 14 -F 2 4 6 12 11 8 -F 2 10 7 1 6 3 -F 2 5 7 4 6 3 -F 2 3 7 12 10 7 -F 2 3 8 2 6 3 -F 2 2 8 12 14 11 -F 2 2 9 2 6 3 -F 2 1 9 12 14 11 -F 2 21 10 1 6 3 -F 2 11 10 12 15 12 -F 2 5 10 13 12 9 -F 2 6 11 12 7 4 -F 2 14 12 2 13 10 -F 2 7 12 4 6 3 -F 2 29 0 2 11 9 -F 2 15 0 11 4 2 -F 2 7 0 12 4 2 -F 2 11 1 12 11 9 -F 2 5 1 13 15 13 -F 2 8 2 12 13 11 -F 2 3 3 12 8 6 -F 2 4 4 12 6 4 -F 2 8 5 12 17 15 -F 2 3 6 12 11 9 -F 2 13 7 2 22 20 -F 2 6 7 12 10 8 -F 2 15 9 2 6 4 -F 2 8 9 12 14 12 -F 2 16 10 2 24 22 -F 2 8 10 12 15 13 -F 2 6 11 0 4 2 -F 2 3 11 12 7 5 -F 2 6 12 0 4 2 -F 2 5 0 12 4 3 -F 2 5 1 13 15 14 -F 2 7 2 13 18 17 -F 2 22 3 2 6 5 -F 2 11 3 13 14 13 -F 2 6 3 14 14 13 -F 2 5 4 13 14 13 -F 2 8 5 13 12 11 -F 2 12 6 7 5 4 -F 2 6 6 13 23 22 -F 2 20 7 6 5 4 -F 2 10 7 13 19 18 -F 2 6 8 13 14 13 -F 2 13 9 2 6 5 -F 2 6 9 13 23 22 -F 2 29 10 2 24 23 -F 2 15 10 6 16 15 -F 2 7 10 13 12 11 -F 2 6 11 13 9 8 -F 2 5 12 13 15 14 -go - -engine > player2: P 11.803996 11.215721 1 45 3 -P 9.319567 21.808874 1 11 5 -P 14.288424 0.622569 1 26 5 -P 11.865493 5.273785 1 43 3 -P 11.742498 17.157658 1 9 3 -P 4.254093 0.000000 1 10 1 -P 19.353899 22.431443 1 7 1 -P 14.743614 22.324001 1 13 3 -P 8.864377 0.107441 1 27 3 -P 19.854347 0.711934 1 21 1 -P 3.753644 21.719509 1 58 1 -P 8.864814 9.736624 1 19 5 -P 14.743177 12.694819 1 11 5 -P 0.000000 10.809889 0 48 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 119 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 7 2 10 24 1 -F 1 7 2 10 24 2 -F 1 6 8 10 23 1 -F 1 7 9 10 27 5 -F 1 8 2 7 22 1 -F 1 14 5 7 25 4 -F 1 7 5 10 22 1 -F 1 11 8 7 23 2 -F 1 6 8 10 23 2 -F 1 10 9 7 23 2 -F 1 5 9 10 27 6 -F 1 7 2 10 24 4 -F 1 14 5 7 25 5 -F 1 7 5 10 22 2 -F 1 13 8 7 23 3 -F 1 7 8 10 23 3 -F 1 13 1 8 22 3 -F 1 2 6 8 25 6 -F 1 4 7 8 23 4 -F 1 6 8 10 23 4 -F 1 20 1 8 22 4 -F 1 22 2 1 22 4 -F 1 5 2 10 24 6 -F 1 5 3 10 19 1 -F 1 10 5 10 22 4 -F 1 5 8 10 23 5 -F 1 49 2 1 22 5 -F 1 24 2 6 23 6 -F 1 6 2 10 24 7 -F 1 7 3 10 19 2 -F 1 15 5 6 28 11 -F 1 12 9 10 27 10 -F 1 6 9 13 23 6 -F 1 5 1 2 22 6 -F 1 27 2 1 22 6 -F 1 7 2 10 24 8 -F 1 6 3 10 19 3 -F 1 12 4 2 17 1 -F 1 8 5 10 22 6 -F 1 9 6 2 23 7 -F 1 8 7 2 22 6 -F 1 6 8 10 23 7 -F 1 7 9 10 27 11 -F 1 6 2 10 24 9 -F 1 7 3 6 19 4 -F 1 12 5 6 28 13 -F 1 6 5 10 22 7 -F 1 10 11 6 17 2 -F 1 7 1 13 15 1 -F 1 12 2 10 24 10 -F 1 6 2 13 18 4 -F 1 9 3 10 19 5 -F 1 10 5 10 22 8 -F 1 8 8 10 23 9 -F 1 10 9 10 27 13 -F 1 18 0 5 14 1 -F 1 9 0 10 14 1 -F 1 6 1 5 23 10 -F 1 9 3 10 19 6 -F 1 5 4 5 19 6 -F 1 5 5 10 22 9 -F 1 9 6 5 28 15 -F 1 25 7 5 25 12 -F 1 12 8 7 23 10 -F 1 6 8 10 23 10 -F 1 18 9 5 16 3 -F 1 9 9 10 27 14 -F 1 4 12 5 17 4 -F 1 6 0 10 14 2 -F 1 5 2 10 24 12 -F 1 14 3 10 19 7 -F 1 5 5 10 22 10 -F 1 20 8 4 18 6 -F 1 5 9 10 27 15 -F 1 6 1 11 13 2 -F 1 12 2 4 17 6 -F 1 6 2 10 24 13 -F 1 15 3 4 12 1 -F 1 7 3 10 19 8 -F 1 8 5 4 19 8 -F 1 19 8 4 18 7 -F 1 6 9 4 19 8 -F 1 10 0 10 14 4 -F 1 7 1 13 15 5 -F 1 19 2 4 17 7 -F 1 9 2 10 24 14 -F 1 14 3 10 19 9 -F 1 12 6 10 16 6 -F 1 6 6 13 23 13 -F 1 17 9 4 19 9 -F 1 9 9 10 27 17 -F 1 7 11 10 14 4 -F 1 8 1 13 15 6 -F 1 40 2 1 22 13 -F 1 10 2 13 18 9 -F 1 10 3 13 14 5 -F 1 5 3 14 14 5 -F 1 8 6 13 23 14 -F 1 9 7 13 19 10 -F 1 9 8 13 14 5 -F 1 13 9 12 14 5 -F 1 6 9 13 23 14 -F 1 15 0 9 14 6 -F 1 32 1 0 11 3 -F 1 16 1 9 24 16 -F 1 8 1 13 15 7 -F 1 17 2 0 11 3 -F 1 8 3 13 14 6 -F 1 16 5 0 14 6 -F 1 8 5 13 12 4 -F 1 10 6 0 14 6 -F 1 5 6 13 23 15 -F 1 16 7 0 12 4 -F 1 8 7 13 19 11 -F 1 6 8 0 12 4 -F 1 10 9 0 14 6 -F 1 26 10 0 14 6 -F 1 13 10 9 27 19 -F 1 7 10 13 12 4 -F 1 7 12 13 15 7 -F 1 9 0 9 14 7 -F 1 7 1 3 17 10 -F 1 3 1 9 24 17 -F 1 7 3 9 10 3 -F 1 5 4 3 12 5 -F 1 2 4 9 19 12 -F 1 10 5 3 10 3 -F 1 5 5 9 16 9 -F 1 12 6 3 19 12 -F 1 6 6 9 22 15 -F 1 11 7 3 18 11 -F 1 6 7 9 23 16 -F 1 6 8 9 12 5 -F 1 9 9 3 10 3 -F 1 16 10 3 19 12 -F 1 8 10 9 27 20 -F 1 2 11 9 15 8 -F 1 3 12 3 8 1 -F 1 1 12 9 14 7 -F 1 4 1 3 17 11 -F 1 6 3 13 14 8 -F 1 10 4 3 12 6 -F 1 8 5 3 10 4 -F 1 6 6 3 19 13 -F 1 11 7 3 18 12 -F 1 5 7 13 19 13 -F 1 5 9 3 10 4 -F 1 15 10 3 19 13 -F 1 7 10 8 23 17 -F 1 2 12 3 8 2 -F 1 3 0 1 11 6 -F 1 2 0 3 6 1 -F 1 8 1 8 22 17 -F 1 22 2 1 22 17 -F 1 11 2 3 6 1 -F 1 5 2 8 6 1 -F 1 10 3 1 17 12 -F 1 3 3 8 6 1 -F 1 27 4 1 6 1 -F 1 13 4 8 18 13 -F 1 7 4 13 14 9 -F 1 4 5 1 23 18 -F 1 11 6 1 11 6 -F 1 5 6 8 25 20 -F 1 4 7 1 6 1 -F 1 8 8 1 22 17 -F 1 4 8 3 6 1 -F 1 3 9 1 24 19 -F 1 13 10 1 6 1 -F 1 7 10 8 23 18 -F 1 13 11 1 13 8 -F 1 7 11 3 6 1 -F 1 9 12 1 11 6 -F 2 5 4 3 12 8 -F 1 13 0 1 11 7 -F 1 6 0 4 6 2 -F 1 7 1 4 6 2 -F 1 22 2 1 22 18 -F 1 11 2 4 17 13 -F 1 6 2 8 6 2 -F 1 5 3 1 17 13 -F 1 2 5 1 23 19 -F 1 1 5 8 5 1 -F 1 14 6 1 11 7 -F 1 7 6 4 10 6 -F 1 4 7 1 6 2 -F 1 2 7 6 5 1 -F 1 3 8 1 22 18 -F 1 2 9 1 24 20 -F 1 25 10 1 6 2 -F 1 12 10 4 10 6 -F 1 6 10 13 12 8 -F 1 8 11 1 13 9 -F 1 9 12 1 11 7 -F 1 10 0 4 6 3 -F 1 5 0 11 4 1 -F 1 2 0 12 4 1 -F 1 6 1 4 6 3 -F 1 3 1 12 11 8 -F 1 10 2 12 13 10 -F 1 5 2 13 18 15 -F 1 4 3 2 6 3 -F 1 2 3 12 8 5 -F 1 8 4 1 6 3 -F 1 2 4 12 6 3 -F 1 10 5 8 5 2 -F 1 5 5 12 17 14 -F 1 4 6 12 11 8 -F 1 10 7 1 6 3 -F 1 5 7 4 6 3 -F 1 3 7 12 10 7 -F 1 3 8 2 6 3 -F 1 2 8 12 14 11 -F 1 2 9 2 6 3 -F 1 1 9 12 14 11 -F 1 21 10 1 6 3 -F 1 11 10 12 15 12 -F 1 5 10 13 12 9 -F 1 6 11 12 7 4 -F 1 14 12 2 13 10 -F 1 7 12 4 6 3 -F 1 29 0 2 11 9 -F 1 15 0 11 4 2 -F 1 7 0 12 4 2 -F 1 11 1 12 11 9 -F 1 5 1 13 15 13 -F 1 8 2 12 13 11 -F 1 3 3 12 8 6 -F 1 4 4 12 6 4 -F 1 8 5 12 17 15 -F 1 3 6 12 11 9 -F 1 13 7 2 22 20 -F 1 6 7 12 10 8 -F 1 15 9 2 6 4 -F 1 8 9 12 14 12 -F 1 16 10 2 24 22 -F 1 8 10 12 15 13 -F 1 6 11 0 4 2 -F 1 3 11 12 7 5 -F 1 6 12 0 4 2 -F 1 5 0 12 4 3 -F 1 5 1 13 15 14 -F 1 7 2 13 18 17 -F 1 22 3 2 6 5 -F 1 11 3 13 14 13 -F 1 6 3 14 14 13 -F 1 5 4 13 14 13 -F 1 8 5 13 12 11 -F 1 12 6 7 5 4 -F 1 6 6 13 23 22 -F 1 20 7 6 5 4 -F 1 10 7 13 19 18 -F 1 6 8 13 14 13 -F 1 13 9 2 6 5 -F 1 6 9 13 23 22 -F 1 29 10 2 24 23 -F 1 15 10 6 16 15 -F 1 7 10 13 12 11 -F 1 6 11 13 9 8 -F 1 5 12 13 15 14 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 2 0 -player2 > engine: 0 9 22 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 11 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 6 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 1 0 0.05549243454274729 -player2 > engine: 1 13 5 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 2 0 -player2 > engine: 2 9 13 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 1 0 0.04558863060331812 -player2 > engine: 2 13 6 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 2 0 -player2 > engine: 3 9 21 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 1 0 0.10183210472368877 -player2 > engine: 3 13 11 -player2 > engine: comparing 3 and 14, gives 1 0 0.09988694591354103 -player2 > engine: 3 14 5 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 1 0 0.07127486481918088 -player2 > engine: 7 13 6 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 2 0 -player2 > engine: 8 9 13 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 1 0 0.0959457165401428 -player2 > engine: 8 13 7 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 2 0 -player2 > engine: 9 9 10 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 1 0 0.17957565458240535 -player2 > engine: 9 13 5 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 0 0 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 0 0 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 2 0 -player2 > engine: 10 9 29 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 1 0 0.3467010984295745 -player2 > engine: 10 13 14 -player2 > engine: comparing 10 and 14, gives 1 0 0.17957565458240538 -player2 > engine: 10 14 7 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 9 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 5 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 9 3 -P 9.319567 21.808874 2 55 5 -P 14.288424 0.622569 2 24 5 -P 11.865493 5.273785 2 36 3 -P 11.742498 17.157658 2 27 3 -P 4.254093 0.000000 2 29 1 -P 19.353899 22.431443 2 10 1 -P 14.743614 22.324001 2 18 3 -P 8.864377 0.107441 2 19 3 -P 19.854347 0.711934 2 17 1 -P 3.753644 21.719509 2 43 1 -P 8.864814 9.736624 2 20 5 -P 14.743177 12.694819 2 13 5 -P 0.000000 10.809889 0 41 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 122 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 7 2 10 24 1 -F 2 7 9 10 27 4 -F 2 14 5 7 25 3 -F 2 11 8 7 23 1 -F 2 6 8 10 23 1 -F 2 10 9 7 23 1 -F 2 5 9 10 27 5 -F 2 7 2 10 24 3 -F 2 14 5 7 25 4 -F 2 7 5 10 22 1 -F 2 13 8 7 23 2 -F 2 7 8 10 23 2 -F 2 13 1 8 22 2 -F 2 2 6 8 25 5 -F 2 4 7 8 23 3 -F 2 6 8 10 23 3 -F 2 20 1 8 22 3 -F 2 22 2 1 22 3 -F 2 5 2 10 24 5 -F 2 10 5 10 22 3 -F 2 5 8 10 23 4 -F 2 49 2 1 22 4 -F 2 24 2 6 23 5 -F 2 6 2 10 24 6 -F 2 7 3 10 19 1 -F 2 15 5 6 28 10 -F 2 12 9 10 27 9 -F 2 6 9 13 23 5 -F 2 5 1 2 22 5 -F 2 27 2 1 22 5 -F 2 7 2 10 24 7 -F 2 6 3 10 19 2 -F 2 8 5 10 22 5 -F 2 9 6 2 23 6 -F 2 8 7 2 22 5 -F 2 6 8 10 23 6 -F 2 7 9 10 27 10 -F 2 6 2 10 24 8 -F 2 7 3 6 19 3 -F 2 12 5 6 28 12 -F 2 6 5 10 22 6 -F 2 10 11 6 17 1 -F 2 12 2 10 24 9 -F 2 6 2 13 18 3 -F 2 9 3 10 19 4 -F 2 10 5 10 22 7 -F 2 8 8 10 23 8 -F 2 10 9 10 27 12 -F 2 6 1 5 23 9 -F 2 9 3 10 19 5 -F 2 5 4 5 19 5 -F 2 5 5 10 22 8 -F 2 9 6 5 28 14 -F 2 25 7 5 25 11 -F 2 12 8 7 23 9 -F 2 6 8 10 23 9 -F 2 18 9 5 16 2 -F 2 9 9 10 27 13 -F 2 4 12 5 17 3 -F 2 6 0 10 14 1 -F 2 5 2 10 24 11 -F 2 14 3 10 19 6 -F 2 5 5 10 22 9 -F 2 20 8 4 18 5 -F 2 5 9 10 27 14 -F 2 6 1 11 13 1 -F 2 12 2 4 17 5 -F 2 6 2 10 24 12 -F 2 7 3 10 19 7 -F 2 8 5 4 19 7 -F 2 19 8 4 18 6 -F 2 6 9 4 19 7 -F 2 10 0 10 14 3 -F 2 7 1 13 15 4 -F 2 19 2 4 17 6 -F 2 9 2 10 24 13 -F 2 14 3 10 19 8 -F 2 12 6 10 16 5 -F 2 6 6 13 23 12 -F 2 17 9 4 19 8 -F 2 9 9 10 27 16 -F 2 7 11 10 14 3 -F 2 8 1 13 15 5 -F 2 40 2 1 22 12 -F 2 10 2 13 18 8 -F 2 10 3 13 14 4 -F 2 5 3 14 14 4 -F 2 8 6 13 23 13 -F 2 9 7 13 19 9 -F 2 9 8 13 14 4 -F 2 13 9 12 14 4 -F 2 6 9 13 23 13 -F 2 15 0 9 14 5 -F 2 32 1 0 11 2 -F 2 16 1 9 24 15 -F 2 8 1 13 15 6 -F 2 17 2 0 11 2 -F 2 8 3 13 14 5 -F 2 16 5 0 14 5 -F 2 8 5 13 12 3 -F 2 10 6 0 14 5 -F 2 5 6 13 23 14 -F 2 16 7 0 12 3 -F 2 8 7 13 19 10 -F 2 6 8 0 12 3 -F 2 10 9 0 14 5 -F 2 26 10 0 14 5 -F 2 13 10 9 27 18 -F 2 7 10 13 12 3 -F 2 7 12 13 15 6 -F 2 9 0 9 14 6 -F 2 7 1 3 17 9 -F 2 3 1 9 24 16 -F 2 7 3 9 10 2 -F 2 5 4 3 12 4 -F 2 2 4 9 19 11 -F 2 10 5 3 10 2 -F 2 5 5 9 16 8 -F 2 12 6 3 19 11 -F 2 6 6 9 22 14 -F 2 11 7 3 18 10 -F 2 6 7 9 23 15 -F 2 6 8 9 12 4 -F 2 9 9 3 10 2 -F 2 16 10 3 19 11 -F 2 8 10 9 27 19 -F 2 2 11 9 15 7 -F 2 1 12 9 14 6 -F 2 4 1 3 17 10 -F 2 6 3 13 14 7 -F 2 10 4 3 12 5 -F 2 8 5 3 10 3 -F 2 6 6 3 19 12 -F 2 11 7 3 18 11 -F 2 5 7 13 19 12 -F 2 5 9 3 10 3 -F 2 15 10 3 19 12 -F 2 7 10 8 23 16 -F 2 2 12 3 8 1 -F 2 3 0 1 11 5 -F 2 8 1 8 22 16 -F 2 22 2 1 22 16 -F 2 10 3 1 17 11 -F 2 13 4 8 18 12 -F 2 7 4 13 14 8 -F 2 4 5 1 23 17 -F 2 11 6 1 11 5 -F 2 5 6 8 25 19 -F 2 8 8 1 22 16 -F 2 3 9 1 24 18 -F 2 7 10 8 23 17 -F 2 13 11 1 13 7 -F 2 9 12 1 11 5 -F 1 5 4 3 12 7 -F 2 13 0 1 11 6 -F 2 6 0 4 6 1 -F 2 7 1 4 6 1 -F 2 22 2 1 22 17 -F 2 11 2 4 17 12 -F 2 6 2 8 6 1 -F 2 5 3 1 17 12 -F 2 2 5 1 23 18 -F 2 14 6 1 11 6 -F 2 7 6 4 10 5 -F 2 4 7 1 6 1 -F 2 3 8 1 22 17 -F 2 2 9 1 24 19 -F 2 25 10 1 6 1 -F 2 12 10 4 10 5 -F 2 6 10 13 12 7 -F 2 8 11 1 13 8 -F 2 9 12 1 11 6 -F 2 10 0 4 6 2 -F 2 6 1 4 6 2 -F 2 3 1 12 11 7 -F 2 10 2 12 13 9 -F 2 5 2 13 18 14 -F 2 4 3 2 6 2 -F 2 2 3 12 8 4 -F 2 8 4 1 6 2 -F 2 2 4 12 6 2 -F 2 10 5 8 5 1 -F 2 5 5 12 17 13 -F 2 4 6 12 11 7 -F 2 10 7 1 6 2 -F 2 5 7 4 6 2 -F 2 3 7 12 10 6 -F 2 3 8 2 6 2 -F 2 2 8 12 14 10 -F 2 2 9 2 6 2 -F 2 1 9 12 14 10 -F 2 21 10 1 6 2 -F 2 11 10 12 15 11 -F 2 5 10 13 12 8 -F 2 6 11 12 7 3 -F 2 14 12 2 13 9 -F 2 7 12 4 6 2 -F 2 29 0 2 11 8 -F 2 15 0 11 4 1 -F 2 7 0 12 4 1 -F 2 11 1 12 11 8 -F 2 5 1 13 15 12 -F 2 8 2 12 13 10 -F 2 3 3 12 8 5 -F 2 4 4 12 6 3 -F 2 8 5 12 17 14 -F 2 3 6 12 11 8 -F 2 13 7 2 22 19 -F 2 6 7 12 10 7 -F 2 15 9 2 6 3 -F 2 8 9 12 14 11 -F 2 16 10 2 24 21 -F 2 8 10 12 15 12 -F 2 6 11 0 4 1 -F 2 3 11 12 7 4 -F 2 6 12 0 4 1 -F 2 5 0 12 4 2 -F 2 5 1 13 15 13 -F 2 7 2 13 18 16 -F 2 22 3 2 6 4 -F 2 11 3 13 14 12 -F 2 6 3 14 14 12 -F 2 5 4 13 14 12 -F 2 8 5 13 12 10 -F 2 12 6 7 5 3 -F 2 6 6 13 23 21 -F 2 20 7 6 5 3 -F 2 10 7 13 19 17 -F 2 6 8 13 14 12 -F 2 13 9 2 6 4 -F 2 6 9 13 23 21 -F 2 29 10 2 24 22 -F 2 15 10 6 16 14 -F 2 7 10 13 12 10 -F 2 6 11 13 9 7 -F 2 5 12 13 15 13 -F 2 22 0 9 14 13 -F 2 11 0 11 4 3 -F 2 6 0 12 4 3 -F 2 5 1 13 15 14 -F 2 13 2 9 6 5 -F 2 6 2 13 18 17 -F 2 21 3 9 10 9 -F 2 11 3 13 14 13 -F 2 5 3 14 14 13 -F 2 6 7 13 19 18 -F 2 13 8 9 12 11 -F 2 7 8 13 14 13 -F 2 5 9 13 23 22 -F 2 29 10 9 27 26 -F 2 14 10 13 12 11 -F 2 7 10 14 23 22 -F 2 9 11 0 4 3 -F 2 5 12 0 4 3 -go - -engine > player2: P 11.803996 11.215721 1 9 3 -P 9.319567 21.808874 1 55 5 -P 14.288424 0.622569 1 24 5 -P 11.865493 5.273785 1 36 3 -P 11.742498 17.157658 1 27 3 -P 4.254093 0.000000 1 29 1 -P 19.353899 22.431443 1 10 1 -P 14.743614 22.324001 1 18 3 -P 8.864377 0.107441 1 19 3 -P 19.854347 0.711934 1 17 1 -P 3.753644 21.719509 1 43 1 -P 8.864814 9.736624 1 20 5 -P 14.743177 12.694819 1 13 5 -P 0.000000 10.809889 0 41 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 122 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 7 2 10 24 1 -F 1 7 9 10 27 4 -F 1 14 5 7 25 3 -F 1 11 8 7 23 1 -F 1 6 8 10 23 1 -F 1 10 9 7 23 1 -F 1 5 9 10 27 5 -F 1 7 2 10 24 3 -F 1 14 5 7 25 4 -F 1 7 5 10 22 1 -F 1 13 8 7 23 2 -F 1 7 8 10 23 2 -F 1 13 1 8 22 2 -F 1 2 6 8 25 5 -F 1 4 7 8 23 3 -F 1 6 8 10 23 3 -F 1 20 1 8 22 3 -F 1 22 2 1 22 3 -F 1 5 2 10 24 5 -F 1 10 5 10 22 3 -F 1 5 8 10 23 4 -F 1 49 2 1 22 4 -F 1 24 2 6 23 5 -F 1 6 2 10 24 6 -F 1 7 3 10 19 1 -F 1 15 5 6 28 10 -F 1 12 9 10 27 9 -F 1 6 9 13 23 5 -F 1 5 1 2 22 5 -F 1 27 2 1 22 5 -F 1 7 2 10 24 7 -F 1 6 3 10 19 2 -F 1 8 5 10 22 5 -F 1 9 6 2 23 6 -F 1 8 7 2 22 5 -F 1 6 8 10 23 6 -F 1 7 9 10 27 10 -F 1 6 2 10 24 8 -F 1 7 3 6 19 3 -F 1 12 5 6 28 12 -F 1 6 5 10 22 6 -F 1 10 11 6 17 1 -F 1 12 2 10 24 9 -F 1 6 2 13 18 3 -F 1 9 3 10 19 4 -F 1 10 5 10 22 7 -F 1 8 8 10 23 8 -F 1 10 9 10 27 12 -F 1 6 1 5 23 9 -F 1 9 3 10 19 5 -F 1 5 4 5 19 5 -F 1 5 5 10 22 8 -F 1 9 6 5 28 14 -F 1 25 7 5 25 11 -F 1 12 8 7 23 9 -F 1 6 8 10 23 9 -F 1 18 9 5 16 2 -F 1 9 9 10 27 13 -F 1 4 12 5 17 3 -F 1 6 0 10 14 1 -F 1 5 2 10 24 11 -F 1 14 3 10 19 6 -F 1 5 5 10 22 9 -F 1 20 8 4 18 5 -F 1 5 9 10 27 14 -F 1 6 1 11 13 1 -F 1 12 2 4 17 5 -F 1 6 2 10 24 12 -F 1 7 3 10 19 7 -F 1 8 5 4 19 7 -F 1 19 8 4 18 6 -F 1 6 9 4 19 7 -F 1 10 0 10 14 3 -F 1 7 1 13 15 4 -F 1 19 2 4 17 6 -F 1 9 2 10 24 13 -F 1 14 3 10 19 8 -F 1 12 6 10 16 5 -F 1 6 6 13 23 12 -F 1 17 9 4 19 8 -F 1 9 9 10 27 16 -F 1 7 11 10 14 3 -F 1 8 1 13 15 5 -F 1 40 2 1 22 12 -F 1 10 2 13 18 8 -F 1 10 3 13 14 4 -F 1 5 3 14 14 4 -F 1 8 6 13 23 13 -F 1 9 7 13 19 9 -F 1 9 8 13 14 4 -F 1 13 9 12 14 4 -F 1 6 9 13 23 13 -F 1 15 0 9 14 5 -F 1 32 1 0 11 2 -F 1 16 1 9 24 15 -F 1 8 1 13 15 6 -F 1 17 2 0 11 2 -F 1 8 3 13 14 5 -F 1 16 5 0 14 5 -F 1 8 5 13 12 3 -F 1 10 6 0 14 5 -F 1 5 6 13 23 14 -F 1 16 7 0 12 3 -F 1 8 7 13 19 10 -F 1 6 8 0 12 3 -F 1 10 9 0 14 5 -F 1 26 10 0 14 5 -F 1 13 10 9 27 18 -F 1 7 10 13 12 3 -F 1 7 12 13 15 6 -F 1 9 0 9 14 6 -F 1 7 1 3 17 9 -F 1 3 1 9 24 16 -F 1 7 3 9 10 2 -F 1 5 4 3 12 4 -F 1 2 4 9 19 11 -F 1 10 5 3 10 2 -F 1 5 5 9 16 8 -F 1 12 6 3 19 11 -F 1 6 6 9 22 14 -F 1 11 7 3 18 10 -F 1 6 7 9 23 15 -F 1 6 8 9 12 4 -F 1 9 9 3 10 2 -F 1 16 10 3 19 11 -F 1 8 10 9 27 19 -F 1 2 11 9 15 7 -F 1 1 12 9 14 6 -F 1 4 1 3 17 10 -F 1 6 3 13 14 7 -F 1 10 4 3 12 5 -F 1 8 5 3 10 3 -F 1 6 6 3 19 12 -F 1 11 7 3 18 11 -F 1 5 7 13 19 12 -F 1 5 9 3 10 3 -F 1 15 10 3 19 12 -F 1 7 10 8 23 16 -F 1 2 12 3 8 1 -F 1 3 0 1 11 5 -F 1 8 1 8 22 16 -F 1 22 2 1 22 16 -F 1 10 3 1 17 11 -F 1 13 4 8 18 12 -F 1 7 4 13 14 8 -F 1 4 5 1 23 17 -F 1 11 6 1 11 5 -F 1 5 6 8 25 19 -F 1 8 8 1 22 16 -F 1 3 9 1 24 18 -F 1 7 10 8 23 17 -F 1 13 11 1 13 7 -F 1 9 12 1 11 5 -F 2 5 4 3 12 7 -F 1 13 0 1 11 6 -F 1 6 0 4 6 1 -F 1 7 1 4 6 1 -F 1 22 2 1 22 17 -F 1 11 2 4 17 12 -F 1 6 2 8 6 1 -F 1 5 3 1 17 12 -F 1 2 5 1 23 18 -F 1 14 6 1 11 6 -F 1 7 6 4 10 5 -F 1 4 7 1 6 1 -F 1 3 8 1 22 17 -F 1 2 9 1 24 19 -F 1 25 10 1 6 1 -F 1 12 10 4 10 5 -F 1 6 10 13 12 7 -F 1 8 11 1 13 8 -F 1 9 12 1 11 6 -F 1 10 0 4 6 2 -F 1 6 1 4 6 2 -F 1 3 1 12 11 7 -F 1 10 2 12 13 9 -F 1 5 2 13 18 14 -F 1 4 3 2 6 2 -F 1 2 3 12 8 4 -F 1 8 4 1 6 2 -F 1 2 4 12 6 2 -F 1 10 5 8 5 1 -F 1 5 5 12 17 13 -F 1 4 6 12 11 7 -F 1 10 7 1 6 2 -F 1 5 7 4 6 2 -F 1 3 7 12 10 6 -F 1 3 8 2 6 2 -F 1 2 8 12 14 10 -F 1 2 9 2 6 2 -F 1 1 9 12 14 10 -F 1 21 10 1 6 2 -F 1 11 10 12 15 11 -F 1 5 10 13 12 8 -F 1 6 11 12 7 3 -F 1 14 12 2 13 9 -F 1 7 12 4 6 2 -F 1 29 0 2 11 8 -F 1 15 0 11 4 1 -F 1 7 0 12 4 1 -F 1 11 1 12 11 8 -F 1 5 1 13 15 12 -F 1 8 2 12 13 10 -F 1 3 3 12 8 5 -F 1 4 4 12 6 3 -F 1 8 5 12 17 14 -F 1 3 6 12 11 8 -F 1 13 7 2 22 19 -F 1 6 7 12 10 7 -F 1 15 9 2 6 3 -F 1 8 9 12 14 11 -F 1 16 10 2 24 21 -F 1 8 10 12 15 12 -F 1 6 11 0 4 1 -F 1 3 11 12 7 4 -F 1 6 12 0 4 1 -F 1 5 0 12 4 2 -F 1 5 1 13 15 13 -F 1 7 2 13 18 16 -F 1 22 3 2 6 4 -F 1 11 3 13 14 12 -F 1 6 3 14 14 12 -F 1 5 4 13 14 12 -F 1 8 5 13 12 10 -F 1 12 6 7 5 3 -F 1 6 6 13 23 21 -F 1 20 7 6 5 3 -F 1 10 7 13 19 17 -F 1 6 8 13 14 12 -F 1 13 9 2 6 4 -F 1 6 9 13 23 21 -F 1 29 10 2 24 22 -F 1 15 10 6 16 14 -F 1 7 10 13 12 10 -F 1 6 11 13 9 7 -F 1 5 12 13 15 13 -F 1 22 0 9 14 13 -F 1 11 0 11 4 3 -F 1 6 0 12 4 3 -F 1 5 1 13 15 14 -F 1 13 2 9 6 5 -F 1 6 2 13 18 17 -F 1 21 3 9 10 9 -F 1 11 3 13 14 13 -F 1 5 3 14 14 13 -F 1 6 7 13 19 18 -F 1 13 8 9 12 11 -F 1 7 8 13 14 13 -F 1 5 9 13 23 22 -F 1 29 10 9 27 26 -F 1 14 10 13 12 11 -F 1 7 10 14 23 22 -F 1 9 11 0 4 3 -F 1 5 12 0 4 3 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 2 0 -player2 > engine: 1 5 27 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 2 0 -player2 > engine: 1 9 14 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 1 0 0.05549243454274729 -player2 > engine: 1 13 7 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 2 0 -player2 > engine: 2 9 12 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 1 0 0.04558863060331812 -player2 > engine: 2 13 6 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 2 0 -player2 > engine: 3 9 18 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 1 0 0.10183210472368877 -player2 > engine: 3 13 9 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 1 0 0.099886945913541 -player2 > engine: 4 13 13 -player2 > engine: comparing 4 and 14, gives 1 0 0.10183210472368878 -player2 > engine: 4 14 7 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 2 0 -player2 > engine: 5 9 14 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 1 0 0.3443276716006396 -player2 > engine: 5 13 7 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 1 0 0.07127486481918088 -player2 > engine: 7 13 9 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 1 0 0.0959457165401428 -player2 > engine: 8 13 9 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 2 0 -player2 > engine: 9 9 8 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 0 0 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 0 0 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 2 0 -player2 > engine: 10 9 21 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 1 0 0.3467010984295745 -player2 > engine: 10 13 11 -player2 > engine: comparing 10 and 14, gives 1 0 0.17957565458240538 -player2 > engine: 10 14 5 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 1 0 0.08959020236950047 -player2 > engine: 11 13 10 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 1 0 0.05382426922307792 -player2 > engine: 12 13 6 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 24 3 -P 9.319567 21.808874 2 41 5 -P 14.288424 0.622569 2 11 5 -P 11.865493 5.273785 2 14 3 -P 11.742498 17.157658 2 23 3 -P 4.254093 0.000000 2 9 1 -P 19.353899 22.431443 2 21 1 -P 14.743614 22.324001 2 33 3 -P 8.864377 0.107441 2 29 3 -P 19.854347 0.711934 2 18 1 -P 3.753644 21.719509 2 40 1 -P 8.864814 9.736624 2 36 5 -P 14.743177 12.694819 2 19 5 -P 0.000000 10.809889 0 41 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 125 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 7 9 10 27 3 -F 2 14 5 7 25 2 -F 2 5 9 10 27 4 -F 2 7 2 10 24 2 -F 2 14 5 7 25 3 -F 2 13 8 7 23 1 -F 2 7 8 10 23 1 -F 2 13 1 8 22 1 -F 2 2 6 8 25 4 -F 2 4 7 8 23 2 -F 2 6 8 10 23 2 -F 2 20 1 8 22 2 -F 2 22 2 1 22 2 -F 2 5 2 10 24 4 -F 2 10 5 10 22 2 -F 2 5 8 10 23 3 -F 2 49 2 1 22 3 -F 2 24 2 6 23 4 -F 2 6 2 10 24 5 -F 2 15 5 6 28 9 -F 2 12 9 10 27 8 -F 2 6 9 13 23 4 -F 2 5 1 2 22 4 -F 2 27 2 1 22 4 -F 2 7 2 10 24 6 -F 2 6 3 10 19 1 -F 2 8 5 10 22 4 -F 2 9 6 2 23 5 -F 2 8 7 2 22 4 -F 2 6 8 10 23 5 -F 2 7 9 10 27 9 -F 2 6 2 10 24 7 -F 2 7 3 6 19 2 -F 2 12 5 6 28 11 -F 2 6 5 10 22 5 -F 2 12 2 10 24 8 -F 2 6 2 13 18 2 -F 2 9 3 10 19 3 -F 2 10 5 10 22 6 -F 2 8 8 10 23 7 -F 2 10 9 10 27 11 -F 2 6 1 5 23 8 -F 2 9 3 10 19 4 -F 2 5 4 5 19 4 -F 2 5 5 10 22 7 -F 2 9 6 5 28 13 -F 2 25 7 5 25 10 -F 2 12 8 7 23 8 -F 2 6 8 10 23 8 -F 2 18 9 5 16 1 -F 2 9 9 10 27 12 -F 2 4 12 5 17 2 -F 2 5 2 10 24 10 -F 2 14 3 10 19 5 -F 2 5 5 10 22 8 -F 2 20 8 4 18 4 -F 2 5 9 10 27 13 -F 2 12 2 4 17 4 -F 2 6 2 10 24 11 -F 2 7 3 10 19 6 -F 2 8 5 4 19 6 -F 2 19 8 4 18 5 -F 2 6 9 4 19 6 -F 2 10 0 10 14 2 -F 2 7 1 13 15 3 -F 2 19 2 4 17 5 -F 2 9 2 10 24 12 -F 2 14 3 10 19 7 -F 2 12 6 10 16 4 -F 2 6 6 13 23 11 -F 2 17 9 4 19 7 -F 2 9 9 10 27 15 -F 2 7 11 10 14 2 -F 2 8 1 13 15 4 -F 2 40 2 1 22 11 -F 2 10 2 13 18 7 -F 2 10 3 13 14 3 -F 2 5 3 14 14 3 -F 2 8 6 13 23 12 -F 2 9 7 13 19 8 -F 2 9 8 13 14 3 -F 2 13 9 12 14 3 -F 2 6 9 13 23 12 -F 2 15 0 9 14 4 -F 2 32 1 0 11 1 -F 2 16 1 9 24 14 -F 2 8 1 13 15 5 -F 2 17 2 0 11 1 -F 2 8 3 13 14 4 -F 2 16 5 0 14 4 -F 2 8 5 13 12 2 -F 2 10 6 0 14 4 -F 2 5 6 13 23 13 -F 2 16 7 0 12 2 -F 2 8 7 13 19 9 -F 2 6 8 0 12 2 -F 2 10 9 0 14 4 -F 2 26 10 0 14 4 -F 2 13 10 9 27 17 -F 2 7 10 13 12 2 -F 2 7 12 13 15 5 -F 2 9 0 9 14 5 -F 2 7 1 3 17 8 -F 2 3 1 9 24 15 -F 2 7 3 9 10 1 -F 2 5 4 3 12 3 -F 2 2 4 9 19 10 -F 2 10 5 3 10 1 -F 2 5 5 9 16 7 -F 2 12 6 3 19 10 -F 2 6 6 9 22 13 -F 2 11 7 3 18 9 -F 2 6 7 9 23 14 -F 2 6 8 9 12 3 -F 2 9 9 3 10 1 -F 2 16 10 3 19 10 -F 2 8 10 9 27 18 -F 2 2 11 9 15 6 -F 2 1 12 9 14 5 -F 2 4 1 3 17 9 -F 2 6 3 13 14 6 -F 2 10 4 3 12 4 -F 2 8 5 3 10 2 -F 2 6 6 3 19 11 -F 2 11 7 3 18 10 -F 2 5 7 13 19 11 -F 2 5 9 3 10 2 -F 2 15 10 3 19 11 -F 2 7 10 8 23 15 -F 2 3 0 1 11 4 -F 2 8 1 8 22 15 -F 2 22 2 1 22 15 -F 2 10 3 1 17 10 -F 2 13 4 8 18 11 -F 2 7 4 13 14 7 -F 2 4 5 1 23 16 -F 2 11 6 1 11 4 -F 2 5 6 8 25 18 -F 2 8 8 1 22 15 -F 2 3 9 1 24 17 -F 2 7 10 8 23 16 -F 2 13 11 1 13 6 -F 2 9 12 1 11 4 -F 1 5 4 3 12 6 -F 2 13 0 1 11 5 -F 2 22 2 1 22 16 -F 2 11 2 4 17 11 -F 2 5 3 1 17 11 -F 2 2 5 1 23 17 -F 2 14 6 1 11 5 -F 2 7 6 4 10 4 -F 2 3 8 1 22 16 -F 2 2 9 1 24 18 -F 2 12 10 4 10 4 -F 2 6 10 13 12 6 -F 2 8 11 1 13 7 -F 2 9 12 1 11 5 -F 2 10 0 4 6 1 -F 2 6 1 4 6 1 -F 2 3 1 12 11 6 -F 2 10 2 12 13 8 -F 2 5 2 13 18 13 -F 2 4 3 2 6 1 -F 2 2 3 12 8 3 -F 2 8 4 1 6 1 -F 2 2 4 12 6 1 -F 2 5 5 12 17 12 -F 2 4 6 12 11 6 -F 2 10 7 1 6 1 -F 2 5 7 4 6 1 -F 2 3 7 12 10 5 -F 2 3 8 2 6 1 -F 2 2 8 12 14 9 -F 2 2 9 2 6 1 -F 2 1 9 12 14 9 -F 2 21 10 1 6 1 -F 2 11 10 12 15 10 -F 2 5 10 13 12 7 -F 2 6 11 12 7 2 -F 2 14 12 2 13 8 -F 2 7 12 4 6 1 -F 2 29 0 2 11 7 -F 2 11 1 12 11 7 -F 2 5 1 13 15 11 -F 2 8 2 12 13 9 -F 2 3 3 12 8 4 -F 2 4 4 12 6 2 -F 2 8 5 12 17 13 -F 2 3 6 12 11 7 -F 2 13 7 2 22 18 -F 2 6 7 12 10 6 -F 2 15 9 2 6 2 -F 2 8 9 12 14 10 -F 2 16 10 2 24 20 -F 2 8 10 12 15 11 -F 2 3 11 12 7 3 -F 2 5 0 12 4 1 -F 2 5 1 13 15 12 -F 2 7 2 13 18 15 -F 2 22 3 2 6 3 -F 2 11 3 13 14 11 -F 2 6 3 14 14 11 -F 2 5 4 13 14 11 -F 2 8 5 13 12 9 -F 2 12 6 7 5 2 -F 2 6 6 13 23 20 -F 2 20 7 6 5 2 -F 2 10 7 13 19 16 -F 2 6 8 13 14 11 -F 2 13 9 2 6 3 -F 2 6 9 13 23 20 -F 2 29 10 2 24 21 -F 2 15 10 6 16 13 -F 2 7 10 13 12 9 -F 2 6 11 13 9 6 -F 2 5 12 13 15 12 -F 2 22 0 9 14 12 -F 2 11 0 11 4 2 -F 2 6 0 12 4 2 -F 2 5 1 13 15 13 -F 2 13 2 9 6 4 -F 2 6 2 13 18 16 -F 2 21 3 9 10 8 -F 2 11 3 13 14 12 -F 2 5 3 14 14 12 -F 2 6 7 13 19 17 -F 2 13 8 9 12 10 -F 2 7 8 13 14 12 -F 2 5 9 13 23 21 -F 2 29 10 9 27 25 -F 2 14 10 13 12 10 -F 2 7 10 14 23 21 -F 2 9 11 0 4 2 -F 2 5 12 0 4 2 -F 2 27 1 5 23 22 -F 2 14 1 9 24 23 -F 2 7 1 13 15 14 -F 2 12 2 9 6 5 -F 2 6 2 13 18 17 -F 2 18 3 9 10 9 -F 2 9 3 13 14 13 -F 2 13 4 13 14 13 -F 2 7 4 14 14 13 -F 2 14 5 9 16 15 -F 2 7 5 13 12 11 -F 2 9 7 13 19 18 -F 2 9 8 13 14 13 -F 2 21 10 9 27 26 -F 2 11 10 13 12 11 -F 2 5 10 14 23 22 -F 2 10 11 13 9 8 -F 2 6 12 13 15 14 -go - -engine > player2: P 11.803996 11.215721 1 24 3 -P 9.319567 21.808874 1 41 5 -P 14.288424 0.622569 1 11 5 -P 11.865493 5.273785 1 14 3 -P 11.742498 17.157658 1 23 3 -P 4.254093 0.000000 1 9 1 -P 19.353899 22.431443 1 21 1 -P 14.743614 22.324001 1 33 3 -P 8.864377 0.107441 1 29 3 -P 19.854347 0.711934 1 18 1 -P 3.753644 21.719509 1 40 1 -P 8.864814 9.736624 1 36 5 -P 14.743177 12.694819 1 19 5 -P 0.000000 10.809889 0 41 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 125 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 7 9 10 27 3 -F 1 14 5 7 25 2 -F 1 5 9 10 27 4 -F 1 7 2 10 24 2 -F 1 14 5 7 25 3 -F 1 13 8 7 23 1 -F 1 7 8 10 23 1 -F 1 13 1 8 22 1 -F 1 2 6 8 25 4 -F 1 4 7 8 23 2 -F 1 6 8 10 23 2 -F 1 20 1 8 22 2 -F 1 22 2 1 22 2 -F 1 5 2 10 24 4 -F 1 10 5 10 22 2 -F 1 5 8 10 23 3 -F 1 49 2 1 22 3 -F 1 24 2 6 23 4 -F 1 6 2 10 24 5 -F 1 15 5 6 28 9 -F 1 12 9 10 27 8 -F 1 6 9 13 23 4 -F 1 5 1 2 22 4 -F 1 27 2 1 22 4 -F 1 7 2 10 24 6 -F 1 6 3 10 19 1 -F 1 8 5 10 22 4 -F 1 9 6 2 23 5 -F 1 8 7 2 22 4 -F 1 6 8 10 23 5 -F 1 7 9 10 27 9 -F 1 6 2 10 24 7 -F 1 7 3 6 19 2 -F 1 12 5 6 28 11 -F 1 6 5 10 22 5 -F 1 12 2 10 24 8 -F 1 6 2 13 18 2 -F 1 9 3 10 19 3 -F 1 10 5 10 22 6 -F 1 8 8 10 23 7 -F 1 10 9 10 27 11 -F 1 6 1 5 23 8 -F 1 9 3 10 19 4 -F 1 5 4 5 19 4 -F 1 5 5 10 22 7 -F 1 9 6 5 28 13 -F 1 25 7 5 25 10 -F 1 12 8 7 23 8 -F 1 6 8 10 23 8 -F 1 18 9 5 16 1 -F 1 9 9 10 27 12 -F 1 4 12 5 17 2 -F 1 5 2 10 24 10 -F 1 14 3 10 19 5 -F 1 5 5 10 22 8 -F 1 20 8 4 18 4 -F 1 5 9 10 27 13 -F 1 12 2 4 17 4 -F 1 6 2 10 24 11 -F 1 7 3 10 19 6 -F 1 8 5 4 19 6 -F 1 19 8 4 18 5 -F 1 6 9 4 19 6 -F 1 10 0 10 14 2 -F 1 7 1 13 15 3 -F 1 19 2 4 17 5 -F 1 9 2 10 24 12 -F 1 14 3 10 19 7 -F 1 12 6 10 16 4 -F 1 6 6 13 23 11 -F 1 17 9 4 19 7 -F 1 9 9 10 27 15 -F 1 7 11 10 14 2 -F 1 8 1 13 15 4 -F 1 40 2 1 22 11 -F 1 10 2 13 18 7 -F 1 10 3 13 14 3 -F 1 5 3 14 14 3 -F 1 8 6 13 23 12 -F 1 9 7 13 19 8 -F 1 9 8 13 14 3 -F 1 13 9 12 14 3 -F 1 6 9 13 23 12 -F 1 15 0 9 14 4 -F 1 32 1 0 11 1 -F 1 16 1 9 24 14 -F 1 8 1 13 15 5 -F 1 17 2 0 11 1 -F 1 8 3 13 14 4 -F 1 16 5 0 14 4 -F 1 8 5 13 12 2 -F 1 10 6 0 14 4 -F 1 5 6 13 23 13 -F 1 16 7 0 12 2 -F 1 8 7 13 19 9 -F 1 6 8 0 12 2 -F 1 10 9 0 14 4 -F 1 26 10 0 14 4 -F 1 13 10 9 27 17 -F 1 7 10 13 12 2 -F 1 7 12 13 15 5 -F 1 9 0 9 14 5 -F 1 7 1 3 17 8 -F 1 3 1 9 24 15 -F 1 7 3 9 10 1 -F 1 5 4 3 12 3 -F 1 2 4 9 19 10 -F 1 10 5 3 10 1 -F 1 5 5 9 16 7 -F 1 12 6 3 19 10 -F 1 6 6 9 22 13 -F 1 11 7 3 18 9 -F 1 6 7 9 23 14 -F 1 6 8 9 12 3 -F 1 9 9 3 10 1 -F 1 16 10 3 19 10 -F 1 8 10 9 27 18 -F 1 2 11 9 15 6 -F 1 1 12 9 14 5 -F 1 4 1 3 17 9 -F 1 6 3 13 14 6 -F 1 10 4 3 12 4 -F 1 8 5 3 10 2 -F 1 6 6 3 19 11 -F 1 11 7 3 18 10 -F 1 5 7 13 19 11 -F 1 5 9 3 10 2 -F 1 15 10 3 19 11 -F 1 7 10 8 23 15 -F 1 3 0 1 11 4 -F 1 8 1 8 22 15 -F 1 22 2 1 22 15 -F 1 10 3 1 17 10 -F 1 13 4 8 18 11 -F 1 7 4 13 14 7 -F 1 4 5 1 23 16 -F 1 11 6 1 11 4 -F 1 5 6 8 25 18 -F 1 8 8 1 22 15 -F 1 3 9 1 24 17 -F 1 7 10 8 23 16 -F 1 13 11 1 13 6 -F 1 9 12 1 11 4 -F 2 5 4 3 12 6 -F 1 13 0 1 11 5 -F 1 22 2 1 22 16 -F 1 11 2 4 17 11 -F 1 5 3 1 17 11 -F 1 2 5 1 23 17 -F 1 14 6 1 11 5 -F 1 7 6 4 10 4 -F 1 3 8 1 22 16 -F 1 2 9 1 24 18 -F 1 12 10 4 10 4 -F 1 6 10 13 12 6 -F 1 8 11 1 13 7 -F 1 9 12 1 11 5 -F 1 10 0 4 6 1 -F 1 6 1 4 6 1 -F 1 3 1 12 11 6 -F 1 10 2 12 13 8 -F 1 5 2 13 18 13 -F 1 4 3 2 6 1 -F 1 2 3 12 8 3 -F 1 8 4 1 6 1 -F 1 2 4 12 6 1 -F 1 5 5 12 17 12 -F 1 4 6 12 11 6 -F 1 10 7 1 6 1 -F 1 5 7 4 6 1 -F 1 3 7 12 10 5 -F 1 3 8 2 6 1 -F 1 2 8 12 14 9 -F 1 2 9 2 6 1 -F 1 1 9 12 14 9 -F 1 21 10 1 6 1 -F 1 11 10 12 15 10 -F 1 5 10 13 12 7 -F 1 6 11 12 7 2 -F 1 14 12 2 13 8 -F 1 7 12 4 6 1 -F 1 29 0 2 11 7 -F 1 11 1 12 11 7 -F 1 5 1 13 15 11 -F 1 8 2 12 13 9 -F 1 3 3 12 8 4 -F 1 4 4 12 6 2 -F 1 8 5 12 17 13 -F 1 3 6 12 11 7 -F 1 13 7 2 22 18 -F 1 6 7 12 10 6 -F 1 15 9 2 6 2 -F 1 8 9 12 14 10 -F 1 16 10 2 24 20 -F 1 8 10 12 15 11 -F 1 3 11 12 7 3 -F 1 5 0 12 4 1 -F 1 5 1 13 15 12 -F 1 7 2 13 18 15 -F 1 22 3 2 6 3 -F 1 11 3 13 14 11 -F 1 6 3 14 14 11 -F 1 5 4 13 14 11 -F 1 8 5 13 12 9 -F 1 12 6 7 5 2 -F 1 6 6 13 23 20 -F 1 20 7 6 5 2 -F 1 10 7 13 19 16 -F 1 6 8 13 14 11 -F 1 13 9 2 6 3 -F 1 6 9 13 23 20 -F 1 29 10 2 24 21 -F 1 15 10 6 16 13 -F 1 7 10 13 12 9 -F 1 6 11 13 9 6 -F 1 5 12 13 15 12 -F 1 22 0 9 14 12 -F 1 11 0 11 4 2 -F 1 6 0 12 4 2 -F 1 5 1 13 15 13 -F 1 13 2 9 6 4 -F 1 6 2 13 18 16 -F 1 21 3 9 10 8 -F 1 11 3 13 14 12 -F 1 5 3 14 14 12 -F 1 6 7 13 19 17 -F 1 13 8 9 12 10 -F 1 7 8 13 14 12 -F 1 5 9 13 23 21 -F 1 29 10 9 27 25 -F 1 14 10 13 12 10 -F 1 7 10 14 23 21 -F 1 9 11 0 4 2 -F 1 5 12 0 4 2 -F 1 27 1 5 23 22 -F 1 14 1 9 24 23 -F 1 7 1 13 15 14 -F 1 12 2 9 6 5 -F 1 6 2 13 18 17 -F 1 18 3 9 10 9 -F 1 9 3 13 14 13 -F 1 13 4 13 14 13 -F 1 7 4 14 14 13 -F 1 14 5 9 16 15 -F 1 7 5 13 12 11 -F 1 9 7 13 19 18 -F 1 9 8 13 14 13 -F 1 21 10 9 27 26 -F 1 11 10 13 12 11 -F 1 5 10 14 23 22 -F 1 10 11 13 9 8 -F 1 6 12 13 15 14 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 12 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 1 0 0.11288939783015904 -player2 > engine: 0 13 6 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 2 0 -player2 > engine: 1 11 20 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 1 0 0.05549243454274729 -player2 > engine: 1 13 10 -player2 > engine: comparing 1 and 14, gives 1 0 0.04558863060331812 -player2 > engine: 1 14 5 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 1 0 0.04558863060331812 -player2 > engine: 2 13 5 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 1 0 0.10183210472368877 -player2 > engine: 3 13 7 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 1 0 0.099886945913541 -player2 > engine: 4 13 11 -player2 > engine: comparing 4 and 14, gives 1 0 0.10183210472368878 -player2 > engine: 4 14 6 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 1 0 0.17718658046128033 -player2 > engine: 6 13 10 -player2 > engine: comparing 6 and 14, gives 1 0 0.34432768245496265 -player2 > engine: 6 14 5 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 2 0 -player2 > engine: 7 11 16 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 1 0 0.07127486481918088 -player2 > engine: 7 13 8 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 2 0 -player2 > engine: 8 11 14 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 1 0 0.0959457165401428 -player2 > engine: 8 13 7 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 1 0 0.17957565458240535 -player2 > engine: 9 13 9 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 0 0 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 0 0 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 2 0 -player2 > engine: 10 11 20 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 1 0 0.3467010984295745 -player2 > engine: 10 13 10 -player2 > engine: comparing 10 and 14, gives 0 0 0.17957565458240538 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 2 0 -player2 > engine: 11 11 18 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 1 0 0.08959020236950047 -player2 > engine: 11 13 9 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 1 0 0.05382426922307792 -player2 > engine: 12 13 9 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 58 3 -P 9.319567 21.808874 2 50 5 -P 14.288424 0.622569 2 20 5 -P 11.865493 5.273785 2 29 3 -P 11.742498 17.157658 2 37 3 -P 4.254093 0.000000 2 28 1 -P 19.353899 22.431443 2 7 1 -P 14.743614 22.324001 2 25 3 -P 8.864377 0.107441 2 24 3 -P 19.854347 0.711934 2 17 1 -P 3.753644 21.719509 2 24 1 -P 8.864814 9.736624 2 32 5 -P 14.743177 12.694819 2 22 5 -P 0.000000 10.809889 0 41 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 128 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 7 9 10 27 2 -F 2 14 5 7 25 1 -F 2 5 9 10 27 3 -F 2 7 2 10 24 1 -F 2 14 5 7 25 2 -F 2 2 6 8 25 3 -F 2 4 7 8 23 1 -F 2 6 8 10 23 1 -F 2 20 1 8 22 1 -F 2 22 2 1 22 1 -F 2 5 2 10 24 3 -F 2 10 5 10 22 1 -F 2 5 8 10 23 2 -F 2 49 2 1 22 2 -F 2 24 2 6 23 3 -F 2 6 2 10 24 4 -F 2 15 5 6 28 8 -F 2 12 9 10 27 7 -F 2 6 9 13 23 3 -F 2 5 1 2 22 3 -F 2 27 2 1 22 3 -F 2 7 2 10 24 5 -F 2 8 5 10 22 3 -F 2 9 6 2 23 4 -F 2 8 7 2 22 3 -F 2 6 8 10 23 4 -F 2 7 9 10 27 8 -F 2 6 2 10 24 6 -F 2 7 3 6 19 1 -F 2 12 5 6 28 10 -F 2 6 5 10 22 4 -F 2 12 2 10 24 7 -F 2 6 2 13 18 1 -F 2 9 3 10 19 2 -F 2 10 5 10 22 5 -F 2 8 8 10 23 6 -F 2 10 9 10 27 10 -F 2 6 1 5 23 7 -F 2 9 3 10 19 3 -F 2 5 4 5 19 3 -F 2 5 5 10 22 6 -F 2 9 6 5 28 12 -F 2 25 7 5 25 9 -F 2 12 8 7 23 7 -F 2 6 8 10 23 7 -F 2 9 9 10 27 11 -F 2 4 12 5 17 1 -F 2 5 2 10 24 9 -F 2 14 3 10 19 4 -F 2 5 5 10 22 7 -F 2 20 8 4 18 3 -F 2 5 9 10 27 12 -F 2 12 2 4 17 3 -F 2 6 2 10 24 10 -F 2 7 3 10 19 5 -F 2 8 5 4 19 5 -F 2 19 8 4 18 4 -F 2 6 9 4 19 5 -F 2 10 0 10 14 1 -F 2 7 1 13 15 2 -F 2 19 2 4 17 4 -F 2 9 2 10 24 11 -F 2 14 3 10 19 6 -F 2 12 6 10 16 3 -F 2 6 6 13 23 10 -F 2 17 9 4 19 6 -F 2 9 9 10 27 14 -F 2 7 11 10 14 1 -F 2 8 1 13 15 3 -F 2 40 2 1 22 10 -F 2 10 2 13 18 6 -F 2 10 3 13 14 2 -F 2 5 3 14 14 2 -F 2 8 6 13 23 11 -F 2 9 7 13 19 7 -F 2 9 8 13 14 2 -F 2 13 9 12 14 2 -F 2 6 9 13 23 11 -F 2 15 0 9 14 3 -F 2 16 1 9 24 13 -F 2 8 1 13 15 4 -F 2 8 3 13 14 3 -F 2 16 5 0 14 3 -F 2 8 5 13 12 1 -F 2 10 6 0 14 3 -F 2 5 6 13 23 12 -F 2 16 7 0 12 1 -F 2 8 7 13 19 8 -F 2 6 8 0 12 1 -F 2 10 9 0 14 3 -F 2 26 10 0 14 3 -F 2 13 10 9 27 16 -F 2 7 10 13 12 1 -F 2 7 12 13 15 4 -F 2 9 0 9 14 4 -F 2 7 1 3 17 7 -F 2 3 1 9 24 14 -F 2 5 4 3 12 2 -F 2 2 4 9 19 9 -F 2 5 5 9 16 6 -F 2 12 6 3 19 9 -F 2 6 6 9 22 12 -F 2 11 7 3 18 8 -F 2 6 7 9 23 13 -F 2 6 8 9 12 2 -F 2 16 10 3 19 9 -F 2 8 10 9 27 17 -F 2 2 11 9 15 5 -F 2 1 12 9 14 4 -F 2 4 1 3 17 8 -F 2 6 3 13 14 5 -F 2 10 4 3 12 3 -F 2 8 5 3 10 1 -F 2 6 6 3 19 10 -F 2 11 7 3 18 9 -F 2 5 7 13 19 10 -F 2 5 9 3 10 1 -F 2 15 10 3 19 10 -F 2 7 10 8 23 14 -F 2 3 0 1 11 3 -F 2 8 1 8 22 14 -F 2 22 2 1 22 14 -F 2 10 3 1 17 9 -F 2 13 4 8 18 10 -F 2 7 4 13 14 6 -F 2 4 5 1 23 15 -F 2 11 6 1 11 3 -F 2 5 6 8 25 17 -F 2 8 8 1 22 14 -F 2 3 9 1 24 16 -F 2 7 10 8 23 15 -F 2 13 11 1 13 5 -F 2 9 12 1 11 3 -F 1 5 4 3 12 5 -F 2 13 0 1 11 4 -F 2 22 2 1 22 15 -F 2 11 2 4 17 10 -F 2 5 3 1 17 10 -F 2 2 5 1 23 16 -F 2 14 6 1 11 4 -F 2 7 6 4 10 3 -F 2 3 8 1 22 15 -F 2 2 9 1 24 17 -F 2 12 10 4 10 3 -F 2 6 10 13 12 5 -F 2 8 11 1 13 6 -F 2 9 12 1 11 4 -F 2 3 1 12 11 5 -F 2 10 2 12 13 7 -F 2 5 2 13 18 12 -F 2 2 3 12 8 2 -F 2 5 5 12 17 11 -F 2 4 6 12 11 5 -F 2 3 7 12 10 4 -F 2 2 8 12 14 8 -F 2 1 9 12 14 8 -F 2 11 10 12 15 9 -F 2 5 10 13 12 6 -F 2 6 11 12 7 1 -F 2 14 12 2 13 7 -F 2 29 0 2 11 6 -F 2 11 1 12 11 6 -F 2 5 1 13 15 10 -F 2 8 2 12 13 8 -F 2 3 3 12 8 3 -F 2 4 4 12 6 1 -F 2 8 5 12 17 12 -F 2 3 6 12 11 6 -F 2 13 7 2 22 17 -F 2 6 7 12 10 5 -F 2 15 9 2 6 1 -F 2 8 9 12 14 9 -F 2 16 10 2 24 19 -F 2 8 10 12 15 10 -F 2 3 11 12 7 2 -F 2 5 1 13 15 11 -F 2 7 2 13 18 14 -F 2 22 3 2 6 2 -F 2 11 3 13 14 10 -F 2 6 3 14 14 10 -F 2 5 4 13 14 10 -F 2 8 5 13 12 8 -F 2 12 6 7 5 1 -F 2 6 6 13 23 19 -F 2 20 7 6 5 1 -F 2 10 7 13 19 15 -F 2 6 8 13 14 10 -F 2 13 9 2 6 2 -F 2 6 9 13 23 19 -F 2 29 10 2 24 20 -F 2 15 10 6 16 12 -F 2 7 10 13 12 8 -F 2 6 11 13 9 5 -F 2 5 12 13 15 11 -F 2 22 0 9 14 11 -F 2 11 0 11 4 1 -F 2 6 0 12 4 1 -F 2 5 1 13 15 12 -F 2 13 2 9 6 3 -F 2 6 2 13 18 15 -F 2 21 3 9 10 7 -F 2 11 3 13 14 11 -F 2 5 3 14 14 11 -F 2 6 7 13 19 16 -F 2 13 8 9 12 9 -F 2 7 8 13 14 11 -F 2 5 9 13 23 20 -F 2 29 10 9 27 24 -F 2 14 10 13 12 9 -F 2 7 10 14 23 20 -F 2 9 11 0 4 1 -F 2 5 12 0 4 1 -F 2 27 1 5 23 21 -F 2 14 1 9 24 22 -F 2 7 1 13 15 13 -F 2 12 2 9 6 4 -F 2 6 2 13 18 16 -F 2 18 3 9 10 8 -F 2 9 3 13 14 12 -F 2 13 4 13 14 12 -F 2 7 4 14 14 12 -F 2 14 5 9 16 14 -F 2 7 5 13 12 10 -F 2 9 7 13 19 17 -F 2 9 8 13 14 12 -F 2 21 10 9 27 25 -F 2 11 10 13 12 10 -F 2 5 10 14 23 21 -F 2 10 11 13 9 7 -F 2 6 12 13 15 13 -F 2 12 0 11 4 3 -F 2 6 0 13 12 11 -F 2 20 1 11 13 12 -F 2 10 1 13 15 14 -F 2 5 1 14 18 17 -F 2 5 2 13 18 17 -F 2 7 3 13 14 13 -F 2 11 4 13 14 13 -F 2 6 4 14 14 13 -F 2 10 6 13 23 22 -F 2 5 6 14 12 11 -F 2 16 7 11 14 13 -F 2 8 7 13 19 18 -F 2 14 8 11 10 9 -F 2 7 8 13 14 13 -F 2 9 9 13 23 22 -F 2 20 10 11 14 13 -F 2 10 10 13 12 11 -F 2 9 11 13 9 8 -F 2 9 12 13 15 14 -go - -engine > player2: P 11.803996 11.215721 1 58 3 -P 9.319567 21.808874 1 50 5 -P 14.288424 0.622569 1 20 5 -P 11.865493 5.273785 1 29 3 -P 11.742498 17.157658 1 37 3 -P 4.254093 0.000000 1 28 1 -P 19.353899 22.431443 1 7 1 -P 14.743614 22.324001 1 25 3 -P 8.864377 0.107441 1 24 3 -P 19.854347 0.711934 1 17 1 -P 3.753644 21.719509 1 24 1 -P 8.864814 9.736624 1 32 5 -P 14.743177 12.694819 1 22 5 -P 0.000000 10.809889 0 41 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 128 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 7 9 10 27 2 -F 1 14 5 7 25 1 -F 1 5 9 10 27 3 -F 1 7 2 10 24 1 -F 1 14 5 7 25 2 -F 1 2 6 8 25 3 -F 1 4 7 8 23 1 -F 1 6 8 10 23 1 -F 1 20 1 8 22 1 -F 1 22 2 1 22 1 -F 1 5 2 10 24 3 -F 1 10 5 10 22 1 -F 1 5 8 10 23 2 -F 1 49 2 1 22 2 -F 1 24 2 6 23 3 -F 1 6 2 10 24 4 -F 1 15 5 6 28 8 -F 1 12 9 10 27 7 -F 1 6 9 13 23 3 -F 1 5 1 2 22 3 -F 1 27 2 1 22 3 -F 1 7 2 10 24 5 -F 1 8 5 10 22 3 -F 1 9 6 2 23 4 -F 1 8 7 2 22 3 -F 1 6 8 10 23 4 -F 1 7 9 10 27 8 -F 1 6 2 10 24 6 -F 1 7 3 6 19 1 -F 1 12 5 6 28 10 -F 1 6 5 10 22 4 -F 1 12 2 10 24 7 -F 1 6 2 13 18 1 -F 1 9 3 10 19 2 -F 1 10 5 10 22 5 -F 1 8 8 10 23 6 -F 1 10 9 10 27 10 -F 1 6 1 5 23 7 -F 1 9 3 10 19 3 -F 1 5 4 5 19 3 -F 1 5 5 10 22 6 -F 1 9 6 5 28 12 -F 1 25 7 5 25 9 -F 1 12 8 7 23 7 -F 1 6 8 10 23 7 -F 1 9 9 10 27 11 -F 1 4 12 5 17 1 -F 1 5 2 10 24 9 -F 1 14 3 10 19 4 -F 1 5 5 10 22 7 -F 1 20 8 4 18 3 -F 1 5 9 10 27 12 -F 1 12 2 4 17 3 -F 1 6 2 10 24 10 -F 1 7 3 10 19 5 -F 1 8 5 4 19 5 -F 1 19 8 4 18 4 -F 1 6 9 4 19 5 -F 1 10 0 10 14 1 -F 1 7 1 13 15 2 -F 1 19 2 4 17 4 -F 1 9 2 10 24 11 -F 1 14 3 10 19 6 -F 1 12 6 10 16 3 -F 1 6 6 13 23 10 -F 1 17 9 4 19 6 -F 1 9 9 10 27 14 -F 1 7 11 10 14 1 -F 1 8 1 13 15 3 -F 1 40 2 1 22 10 -F 1 10 2 13 18 6 -F 1 10 3 13 14 2 -F 1 5 3 14 14 2 -F 1 8 6 13 23 11 -F 1 9 7 13 19 7 -F 1 9 8 13 14 2 -F 1 13 9 12 14 2 -F 1 6 9 13 23 11 -F 1 15 0 9 14 3 -F 1 16 1 9 24 13 -F 1 8 1 13 15 4 -F 1 8 3 13 14 3 -F 1 16 5 0 14 3 -F 1 8 5 13 12 1 -F 1 10 6 0 14 3 -F 1 5 6 13 23 12 -F 1 16 7 0 12 1 -F 1 8 7 13 19 8 -F 1 6 8 0 12 1 -F 1 10 9 0 14 3 -F 1 26 10 0 14 3 -F 1 13 10 9 27 16 -F 1 7 10 13 12 1 -F 1 7 12 13 15 4 -F 1 9 0 9 14 4 -F 1 7 1 3 17 7 -F 1 3 1 9 24 14 -F 1 5 4 3 12 2 -F 1 2 4 9 19 9 -F 1 5 5 9 16 6 -F 1 12 6 3 19 9 -F 1 6 6 9 22 12 -F 1 11 7 3 18 8 -F 1 6 7 9 23 13 -F 1 6 8 9 12 2 -F 1 16 10 3 19 9 -F 1 8 10 9 27 17 -F 1 2 11 9 15 5 -F 1 1 12 9 14 4 -F 1 4 1 3 17 8 -F 1 6 3 13 14 5 -F 1 10 4 3 12 3 -F 1 8 5 3 10 1 -F 1 6 6 3 19 10 -F 1 11 7 3 18 9 -F 1 5 7 13 19 10 -F 1 5 9 3 10 1 -F 1 15 10 3 19 10 -F 1 7 10 8 23 14 -F 1 3 0 1 11 3 -F 1 8 1 8 22 14 -F 1 22 2 1 22 14 -F 1 10 3 1 17 9 -F 1 13 4 8 18 10 -F 1 7 4 13 14 6 -F 1 4 5 1 23 15 -F 1 11 6 1 11 3 -F 1 5 6 8 25 17 -F 1 8 8 1 22 14 -F 1 3 9 1 24 16 -F 1 7 10 8 23 15 -F 1 13 11 1 13 5 -F 1 9 12 1 11 3 -F 2 5 4 3 12 5 -F 1 13 0 1 11 4 -F 1 22 2 1 22 15 -F 1 11 2 4 17 10 -F 1 5 3 1 17 10 -F 1 2 5 1 23 16 -F 1 14 6 1 11 4 -F 1 7 6 4 10 3 -F 1 3 8 1 22 15 -F 1 2 9 1 24 17 -F 1 12 10 4 10 3 -F 1 6 10 13 12 5 -F 1 8 11 1 13 6 -F 1 9 12 1 11 4 -F 1 3 1 12 11 5 -F 1 10 2 12 13 7 -F 1 5 2 13 18 12 -F 1 2 3 12 8 2 -F 1 5 5 12 17 11 -F 1 4 6 12 11 5 -F 1 3 7 12 10 4 -F 1 2 8 12 14 8 -F 1 1 9 12 14 8 -F 1 11 10 12 15 9 -F 1 5 10 13 12 6 -F 1 6 11 12 7 1 -F 1 14 12 2 13 7 -F 1 29 0 2 11 6 -F 1 11 1 12 11 6 -F 1 5 1 13 15 10 -F 1 8 2 12 13 8 -F 1 3 3 12 8 3 -F 1 4 4 12 6 1 -F 1 8 5 12 17 12 -F 1 3 6 12 11 6 -F 1 13 7 2 22 17 -F 1 6 7 12 10 5 -F 1 15 9 2 6 1 -F 1 8 9 12 14 9 -F 1 16 10 2 24 19 -F 1 8 10 12 15 10 -F 1 3 11 12 7 2 -F 1 5 1 13 15 11 -F 1 7 2 13 18 14 -F 1 22 3 2 6 2 -F 1 11 3 13 14 10 -F 1 6 3 14 14 10 -F 1 5 4 13 14 10 -F 1 8 5 13 12 8 -F 1 12 6 7 5 1 -F 1 6 6 13 23 19 -F 1 20 7 6 5 1 -F 1 10 7 13 19 15 -F 1 6 8 13 14 10 -F 1 13 9 2 6 2 -F 1 6 9 13 23 19 -F 1 29 10 2 24 20 -F 1 15 10 6 16 12 -F 1 7 10 13 12 8 -F 1 6 11 13 9 5 -F 1 5 12 13 15 11 -F 1 22 0 9 14 11 -F 1 11 0 11 4 1 -F 1 6 0 12 4 1 -F 1 5 1 13 15 12 -F 1 13 2 9 6 3 -F 1 6 2 13 18 15 -F 1 21 3 9 10 7 -F 1 11 3 13 14 11 -F 1 5 3 14 14 11 -F 1 6 7 13 19 16 -F 1 13 8 9 12 9 -F 1 7 8 13 14 11 -F 1 5 9 13 23 20 -F 1 29 10 9 27 24 -F 1 14 10 13 12 9 -F 1 7 10 14 23 20 -F 1 9 11 0 4 1 -F 1 5 12 0 4 1 -F 1 27 1 5 23 21 -F 1 14 1 9 24 22 -F 1 7 1 13 15 13 -F 1 12 2 9 6 4 -F 1 6 2 13 18 16 -F 1 18 3 9 10 8 -F 1 9 3 13 14 12 -F 1 13 4 13 14 12 -F 1 7 4 14 14 12 -F 1 14 5 9 16 14 -F 1 7 5 13 12 10 -F 1 9 7 13 19 17 -F 1 9 8 13 14 12 -F 1 21 10 9 27 25 -F 1 11 10 13 12 10 -F 1 5 10 14 23 21 -F 1 10 11 13 9 7 -F 1 6 12 13 15 13 -F 1 12 0 11 4 3 -F 1 6 0 13 12 11 -F 1 20 1 11 13 12 -F 1 10 1 13 15 14 -F 1 5 1 14 18 17 -F 1 5 2 13 18 17 -F 1 7 3 13 14 13 -F 1 11 4 13 14 13 -F 1 6 4 14 14 13 -F 1 10 6 13 23 22 -F 1 5 6 14 12 11 -F 1 16 7 11 14 13 -F 1 8 7 13 19 18 -F 1 14 8 11 10 9 -F 1 7 8 13 14 13 -F 1 9 9 13 23 22 -F 1 20 10 11 14 13 -F 1 10 10 13 12 11 -F 1 9 11 13 9 8 -F 1 9 12 13 15 14 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 2 0 -player2 > engine: 0 3 29 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 2 0 -player2 > engine: 0 5 14 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 1 0 0.11288939783015904 -player2 > engine: 0 13 7 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 2 0 -player2 > engine: 1 5 25 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 1 0 0.05549243454274729 -player2 > engine: 1 13 12 -player2 > engine: comparing 1 and 14, gives 1 0 0.04558863060331812 -player2 > engine: 1 14 6 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 2 0 -player2 > engine: 2 5 10 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 2 0 -player2 > engine: 3 5 14 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 1 0 0.10183210472368877 -player2 > engine: 3 13 7 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 2 0 -player2 > engine: 4 5 18 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 1 0 0.099886945913541 -player2 > engine: 4 13 9 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 2 0 -player2 > engine: 5 5 14 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 1 0 0.3443276716006396 -player2 > engine: 5 13 7 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 2 0 -player2 > engine: 7 5 12 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 1 0 0.07127486481918088 -player2 > engine: 7 13 6 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 2 0 -player2 > engine: 8 5 12 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 1 0 0.0959457165401428 -player2 > engine: 8 13 6 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 1 0 0.17957565458240535 -player2 > engine: 9 13 8 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 0 0 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 0 0 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 2 0 -player2 > engine: 10 5 12 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 1 0 0.3467010984295745 -player2 > engine: 10 13 6 -player2 > engine: comparing 10 and 14, gives 0 0 0.17957565458240538 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 2 0 -player2 > engine: 11 5 16 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 1 0 0.08959020236950047 -player2 > engine: 11 13 8 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 2 0 -player2 > engine: 12 5 11 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 1 0 0.05382426922307792 -player2 > engine: 12 13 5 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 47 3 -P 9.319567 21.808874 2 34 5 -P 14.288424 0.622569 2 30 5 -P 11.865493 5.273785 2 24 3 -P 11.742498 17.157658 2 13 3 -P 4.254093 0.000000 2 26 1 -P 19.353899 22.431443 2 35 1 -P 14.743614 22.324001 2 36 3 -P 8.864377 0.107441 2 33 3 -P 19.854347 0.711934 2 10 1 -P 3.753644 21.719509 2 47 1 -P 8.864814 9.736624 2 24 5 -P 14.743177 12.694819 2 27 5 -P 0.000000 10.809889 0 20 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 1 131 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 7 9 10 27 1 -F 2 5 9 10 27 2 -F 2 14 5 7 25 1 -F 2 2 6 8 25 2 -F 2 5 2 10 24 2 -F 2 5 8 10 23 1 -F 2 49 2 1 22 1 -F 2 24 2 6 23 2 -F 2 6 2 10 24 3 -F 2 15 5 6 28 7 -F 2 12 9 10 27 6 -F 2 6 9 13 23 2 -F 2 5 1 2 22 2 -F 2 27 2 1 22 2 -F 2 7 2 10 24 4 -F 2 8 5 10 22 2 -F 2 9 6 2 23 3 -F 2 8 7 2 22 2 -F 2 6 8 10 23 3 -F 2 7 9 10 27 7 -F 2 6 2 10 24 5 -F 2 12 5 6 28 9 -F 2 6 5 10 22 3 -F 2 12 2 10 24 6 -F 2 9 3 10 19 1 -F 2 10 5 10 22 4 -F 2 8 8 10 23 5 -F 2 10 9 10 27 9 -F 2 6 1 5 23 6 -F 2 9 3 10 19 2 -F 2 5 4 5 19 2 -F 2 5 5 10 22 5 -F 2 9 6 5 28 11 -F 2 25 7 5 25 8 -F 2 12 8 7 23 6 -F 2 6 8 10 23 6 -F 2 9 9 10 27 10 -F 2 5 2 10 24 8 -F 2 14 3 10 19 3 -F 2 5 5 10 22 6 -F 2 20 8 4 18 2 -F 2 5 9 10 27 11 -F 2 12 2 4 17 2 -F 2 6 2 10 24 9 -F 2 7 3 10 19 4 -F 2 8 5 4 19 4 -F 2 19 8 4 18 3 -F 2 6 9 4 19 4 -F 2 7 1 13 15 1 -F 2 19 2 4 17 3 -F 2 9 2 10 24 10 -F 2 14 3 10 19 5 -F 2 12 6 10 16 2 -F 2 6 6 13 23 9 -F 2 17 9 4 19 5 -F 2 9 9 10 27 13 -F 2 8 1 13 15 2 -F 2 40 2 1 22 9 -F 2 10 2 13 18 5 -F 2 10 3 13 14 1 -F 2 5 3 14 14 1 -F 2 8 6 13 23 10 -F 2 9 7 13 19 6 -F 2 9 8 13 14 1 -F 2 13 9 12 14 1 -F 2 6 9 13 23 10 -F 2 15 0 9 14 2 -F 2 16 1 9 24 12 -F 2 8 1 13 15 3 -F 2 8 3 13 14 2 -F 2 16 5 0 14 2 -F 2 10 6 0 14 2 -F 2 5 6 13 23 11 -F 2 8 7 13 19 7 -F 2 10 9 0 14 2 -F 2 26 10 0 14 2 -F 2 13 10 9 27 15 -F 2 7 12 13 15 3 -F 2 9 0 9 14 3 -F 2 7 1 3 17 6 -F 2 3 1 9 24 13 -F 2 5 4 3 12 1 -F 2 2 4 9 19 8 -F 2 5 5 9 16 5 -F 2 12 6 3 19 8 -F 2 6 6 9 22 11 -F 2 11 7 3 18 7 -F 2 6 7 9 23 12 -F 2 6 8 9 12 1 -F 2 16 10 3 19 8 -F 2 8 10 9 27 16 -F 2 2 11 9 15 4 -F 2 1 12 9 14 3 -F 2 4 1 3 17 7 -F 2 6 3 13 14 4 -F 2 10 4 3 12 2 -F 2 6 6 3 19 9 -F 2 11 7 3 18 8 -F 2 5 7 13 19 9 -F 2 15 10 3 19 9 -F 2 7 10 8 23 13 -F 2 3 0 1 11 2 -F 2 8 1 8 22 13 -F 2 22 2 1 22 13 -F 2 10 3 1 17 8 -F 2 13 4 8 18 9 -F 2 7 4 13 14 5 -F 2 4 5 1 23 14 -F 2 11 6 1 11 2 -F 2 5 6 8 25 16 -F 2 8 8 1 22 13 -F 2 3 9 1 24 15 -F 2 7 10 8 23 14 -F 2 13 11 1 13 4 -F 2 9 12 1 11 2 -F 1 5 4 3 12 4 -F 2 13 0 1 11 3 -F 2 22 2 1 22 14 -F 2 11 2 4 17 9 -F 2 5 3 1 17 9 -F 2 2 5 1 23 15 -F 2 14 6 1 11 3 -F 2 7 6 4 10 2 -F 2 3 8 1 22 14 -F 2 2 9 1 24 16 -F 2 12 10 4 10 2 -F 2 6 10 13 12 4 -F 2 8 11 1 13 5 -F 2 9 12 1 11 3 -F 2 3 1 12 11 4 -F 2 10 2 12 13 6 -F 2 5 2 13 18 11 -F 2 2 3 12 8 1 -F 2 5 5 12 17 10 -F 2 4 6 12 11 4 -F 2 3 7 12 10 3 -F 2 2 8 12 14 7 -F 2 1 9 12 14 7 -F 2 11 10 12 15 8 -F 2 5 10 13 12 5 -F 2 14 12 2 13 6 -F 2 29 0 2 11 5 -F 2 11 1 12 11 5 -F 2 5 1 13 15 9 -F 2 8 2 12 13 7 -F 2 3 3 12 8 2 -F 2 8 5 12 17 11 -F 2 3 6 12 11 5 -F 2 13 7 2 22 16 -F 2 6 7 12 10 4 -F 2 8 9 12 14 8 -F 2 16 10 2 24 18 -F 2 8 10 12 15 9 -F 2 3 11 12 7 1 -F 2 5 1 13 15 10 -F 2 7 2 13 18 13 -F 2 22 3 2 6 1 -F 2 11 3 13 14 9 -F 2 6 3 14 14 9 -F 2 5 4 13 14 9 -F 2 8 5 13 12 7 -F 2 6 6 13 23 18 -F 2 10 7 13 19 14 -F 2 6 8 13 14 9 -F 2 13 9 2 6 1 -F 2 6 9 13 23 18 -F 2 29 10 2 24 19 -F 2 15 10 6 16 11 -F 2 7 10 13 12 7 -F 2 6 11 13 9 4 -F 2 5 12 13 15 10 -F 2 22 0 9 14 10 -F 2 5 1 13 15 11 -F 2 13 2 9 6 2 -F 2 6 2 13 18 14 -F 2 21 3 9 10 6 -F 2 11 3 13 14 10 -F 2 5 3 14 14 10 -F 2 6 7 13 19 15 -F 2 13 8 9 12 8 -F 2 7 8 13 14 10 -F 2 5 9 13 23 19 -F 2 29 10 9 27 23 -F 2 14 10 13 12 8 -F 2 7 10 14 23 19 -F 2 27 1 5 23 20 -F 2 14 1 9 24 21 -F 2 7 1 13 15 12 -F 2 12 2 9 6 3 -F 2 6 2 13 18 15 -F 2 18 3 9 10 7 -F 2 9 3 13 14 11 -F 2 13 4 13 14 11 -F 2 7 4 14 14 11 -F 2 14 5 9 16 13 -F 2 7 5 13 12 9 -F 2 9 7 13 19 16 -F 2 9 8 13 14 11 -F 2 21 10 9 27 24 -F 2 11 10 13 12 9 -F 2 5 10 14 23 20 -F 2 10 11 13 9 6 -F 2 6 12 13 15 12 -F 2 12 0 11 4 2 -F 2 6 0 13 12 10 -F 2 20 1 11 13 11 -F 2 10 1 13 15 13 -F 2 5 1 14 18 16 -F 2 5 2 13 18 16 -F 2 7 3 13 14 12 -F 2 11 4 13 14 12 -F 2 6 4 14 14 12 -F 2 10 6 13 23 21 -F 2 5 6 14 12 10 -F 2 16 7 11 14 12 -F 2 8 7 13 19 17 -F 2 14 8 11 10 8 -F 2 7 8 13 14 12 -F 2 9 9 13 23 21 -F 2 20 10 11 14 12 -F 2 10 10 13 12 10 -F 2 9 11 13 9 7 -F 2 9 12 13 15 13 -F 2 29 0 3 6 5 -F 2 14 0 5 14 13 -F 2 7 0 13 12 11 -F 2 25 1 5 23 22 -F 2 12 1 13 15 14 -F 2 6 1 14 18 17 -F 2 10 2 5 11 10 -F 2 14 3 5 10 9 -F 2 7 3 13 14 13 -F 2 18 4 5 19 18 -F 2 9 4 13 14 13 -F 2 7 5 13 12 11 -F 2 12 7 5 25 24 -F 2 6 7 13 19 18 -F 2 12 8 5 5 4 -F 2 6 8 13 14 13 -F 2 8 9 13 23 22 -F 2 12 10 5 22 21 -F 2 6 10 13 12 11 -F 2 16 11 5 11 10 -F 2 8 11 13 9 8 -F 2 11 12 5 17 16 -F 2 5 12 13 15 14 -go - -engine > player2: P 11.803996 11.215721 1 47 3 -P 9.319567 21.808874 1 34 5 -P 14.288424 0.622569 1 30 5 -P 11.865493 5.273785 1 24 3 -P 11.742498 17.157658 1 13 3 -P 4.254093 0.000000 1 26 1 -P 19.353899 22.431443 1 35 1 -P 14.743614 22.324001 1 36 3 -P 8.864377 0.107441 1 33 3 -P 19.854347 0.711934 1 10 1 -P 3.753644 21.719509 1 47 1 -P 8.864814 9.736624 1 24 5 -P 14.743177 12.694819 1 27 5 -P 0.000000 10.809889 0 20 2 -P 23.607991 11.621554 0 59 2 -P 20.396768 15.522861 2 131 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 7 9 10 27 1 -F 1 5 9 10 27 2 -F 1 14 5 7 25 1 -F 1 2 6 8 25 2 -F 1 5 2 10 24 2 -F 1 5 8 10 23 1 -F 1 49 2 1 22 1 -F 1 24 2 6 23 2 -F 1 6 2 10 24 3 -F 1 15 5 6 28 7 -F 1 12 9 10 27 6 -F 1 6 9 13 23 2 -F 1 5 1 2 22 2 -F 1 27 2 1 22 2 -F 1 7 2 10 24 4 -F 1 8 5 10 22 2 -F 1 9 6 2 23 3 -F 1 8 7 2 22 2 -F 1 6 8 10 23 3 -F 1 7 9 10 27 7 -F 1 6 2 10 24 5 -F 1 12 5 6 28 9 -F 1 6 5 10 22 3 -F 1 12 2 10 24 6 -F 1 9 3 10 19 1 -F 1 10 5 10 22 4 -F 1 8 8 10 23 5 -F 1 10 9 10 27 9 -F 1 6 1 5 23 6 -F 1 9 3 10 19 2 -F 1 5 4 5 19 2 -F 1 5 5 10 22 5 -F 1 9 6 5 28 11 -F 1 25 7 5 25 8 -F 1 12 8 7 23 6 -F 1 6 8 10 23 6 -F 1 9 9 10 27 10 -F 1 5 2 10 24 8 -F 1 14 3 10 19 3 -F 1 5 5 10 22 6 -F 1 20 8 4 18 2 -F 1 5 9 10 27 11 -F 1 12 2 4 17 2 -F 1 6 2 10 24 9 -F 1 7 3 10 19 4 -F 1 8 5 4 19 4 -F 1 19 8 4 18 3 -F 1 6 9 4 19 4 -F 1 7 1 13 15 1 -F 1 19 2 4 17 3 -F 1 9 2 10 24 10 -F 1 14 3 10 19 5 -F 1 12 6 10 16 2 -F 1 6 6 13 23 9 -F 1 17 9 4 19 5 -F 1 9 9 10 27 13 -F 1 8 1 13 15 2 -F 1 40 2 1 22 9 -F 1 10 2 13 18 5 -F 1 10 3 13 14 1 -F 1 5 3 14 14 1 -F 1 8 6 13 23 10 -F 1 9 7 13 19 6 -F 1 9 8 13 14 1 -F 1 13 9 12 14 1 -F 1 6 9 13 23 10 -F 1 15 0 9 14 2 -F 1 16 1 9 24 12 -F 1 8 1 13 15 3 -F 1 8 3 13 14 2 -F 1 16 5 0 14 2 -F 1 10 6 0 14 2 -F 1 5 6 13 23 11 -F 1 8 7 13 19 7 -F 1 10 9 0 14 2 -F 1 26 10 0 14 2 -F 1 13 10 9 27 15 -F 1 7 12 13 15 3 -F 1 9 0 9 14 3 -F 1 7 1 3 17 6 -F 1 3 1 9 24 13 -F 1 5 4 3 12 1 -F 1 2 4 9 19 8 -F 1 5 5 9 16 5 -F 1 12 6 3 19 8 -F 1 6 6 9 22 11 -F 1 11 7 3 18 7 -F 1 6 7 9 23 12 -F 1 6 8 9 12 1 -F 1 16 10 3 19 8 -F 1 8 10 9 27 16 -F 1 2 11 9 15 4 -F 1 1 12 9 14 3 -F 1 4 1 3 17 7 -F 1 6 3 13 14 4 -F 1 10 4 3 12 2 -F 1 6 6 3 19 9 -F 1 11 7 3 18 8 -F 1 5 7 13 19 9 -F 1 15 10 3 19 9 -F 1 7 10 8 23 13 -F 1 3 0 1 11 2 -F 1 8 1 8 22 13 -F 1 22 2 1 22 13 -F 1 10 3 1 17 8 -F 1 13 4 8 18 9 -F 1 7 4 13 14 5 -F 1 4 5 1 23 14 -F 1 11 6 1 11 2 -F 1 5 6 8 25 16 -F 1 8 8 1 22 13 -F 1 3 9 1 24 15 -F 1 7 10 8 23 14 -F 1 13 11 1 13 4 -F 1 9 12 1 11 2 -F 2 5 4 3 12 4 -F 1 13 0 1 11 3 -F 1 22 2 1 22 14 -F 1 11 2 4 17 9 -F 1 5 3 1 17 9 -F 1 2 5 1 23 15 -F 1 14 6 1 11 3 -F 1 7 6 4 10 2 -F 1 3 8 1 22 14 -F 1 2 9 1 24 16 -F 1 12 10 4 10 2 -F 1 6 10 13 12 4 -F 1 8 11 1 13 5 -F 1 9 12 1 11 3 -F 1 3 1 12 11 4 -F 1 10 2 12 13 6 -F 1 5 2 13 18 11 -F 1 2 3 12 8 1 -F 1 5 5 12 17 10 -F 1 4 6 12 11 4 -F 1 3 7 12 10 3 -F 1 2 8 12 14 7 -F 1 1 9 12 14 7 -F 1 11 10 12 15 8 -F 1 5 10 13 12 5 -F 1 14 12 2 13 6 -F 1 29 0 2 11 5 -F 1 11 1 12 11 5 -F 1 5 1 13 15 9 -F 1 8 2 12 13 7 -F 1 3 3 12 8 2 -F 1 8 5 12 17 11 -F 1 3 6 12 11 5 -F 1 13 7 2 22 16 -F 1 6 7 12 10 4 -F 1 8 9 12 14 8 -F 1 16 10 2 24 18 -F 1 8 10 12 15 9 -F 1 3 11 12 7 1 -F 1 5 1 13 15 10 -F 1 7 2 13 18 13 -F 1 22 3 2 6 1 -F 1 11 3 13 14 9 -F 1 6 3 14 14 9 -F 1 5 4 13 14 9 -F 1 8 5 13 12 7 -F 1 6 6 13 23 18 -F 1 10 7 13 19 14 -F 1 6 8 13 14 9 -F 1 13 9 2 6 1 -F 1 6 9 13 23 18 -F 1 29 10 2 24 19 -F 1 15 10 6 16 11 -F 1 7 10 13 12 7 -F 1 6 11 13 9 4 -F 1 5 12 13 15 10 -F 1 22 0 9 14 10 -F 1 5 1 13 15 11 -F 1 13 2 9 6 2 -F 1 6 2 13 18 14 -F 1 21 3 9 10 6 -F 1 11 3 13 14 10 -F 1 5 3 14 14 10 -F 1 6 7 13 19 15 -F 1 13 8 9 12 8 -F 1 7 8 13 14 10 -F 1 5 9 13 23 19 -F 1 29 10 9 27 23 -F 1 14 10 13 12 8 -F 1 7 10 14 23 19 -F 1 27 1 5 23 20 -F 1 14 1 9 24 21 -F 1 7 1 13 15 12 -F 1 12 2 9 6 3 -F 1 6 2 13 18 15 -F 1 18 3 9 10 7 -F 1 9 3 13 14 11 -F 1 13 4 13 14 11 -F 1 7 4 14 14 11 -F 1 14 5 9 16 13 -F 1 7 5 13 12 9 -F 1 9 7 13 19 16 -F 1 9 8 13 14 11 -F 1 21 10 9 27 24 -F 1 11 10 13 12 9 -F 1 5 10 14 23 20 -F 1 10 11 13 9 6 -F 1 6 12 13 15 12 -F 1 12 0 11 4 2 -F 1 6 0 13 12 10 -F 1 20 1 11 13 11 -F 1 10 1 13 15 13 -F 1 5 1 14 18 16 -F 1 5 2 13 18 16 -F 1 7 3 13 14 12 -F 1 11 4 13 14 12 -F 1 6 4 14 14 12 -F 1 10 6 13 23 21 -F 1 5 6 14 12 10 -F 1 16 7 11 14 12 -F 1 8 7 13 19 17 -F 1 14 8 11 10 8 -F 1 7 8 13 14 12 -F 1 9 9 13 23 21 -F 1 20 10 11 14 12 -F 1 10 10 13 12 10 -F 1 9 11 13 9 7 -F 1 9 12 13 15 13 -F 1 29 0 3 6 5 -F 1 14 0 5 14 13 -F 1 7 0 13 12 11 -F 1 25 1 5 23 22 -F 1 12 1 13 15 14 -F 1 6 1 14 18 17 -F 1 10 2 5 11 10 -F 1 14 3 5 10 9 -F 1 7 3 13 14 13 -F 1 18 4 5 19 18 -F 1 9 4 13 14 13 -F 1 7 5 13 12 11 -F 1 12 7 5 25 24 -F 1 6 7 13 19 18 -F 1 12 8 5 5 4 -F 1 6 8 13 14 13 -F 1 8 9 13 23 22 -F 1 12 10 5 22 21 -F 1 6 10 13 12 11 -F 1 16 11 5 11 10 -F 1 8 11 13 9 8 -F 1 11 12 5 17 16 -F 1 5 12 13 15 14 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 2 0 -player2 > engine: 0 3 23 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 2 0 -player2 > engine: 0 8 12 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 6 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0.11288939783015904 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 2 0 -player2 > engine: 1 7 17 -player2 > engine: comparing 1 and 8, gives 0 2 0 -player2 > engine: 1 8 8 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0.05549243454274729 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 2 0 -player2 > engine: 2 7 15 -player2 > engine: comparing 2 and 8, gives 0 2 0 -player2 > engine: 2 8 7 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0.04558863060331812 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 2 0 -player2 > engine: 3 8 12 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 1 0 0.10183210472368877 -player2 > engine: 3 13 6 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 2 0 -player2 > engine: 4 8 6 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0.099886945913541 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 2 0 -player2 > engine: 5 5 13 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 2 0 -player2 > engine: 5 8 6 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0.3443276716006396 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 2 0 -player2 > engine: 6 7 17 -player2 > engine: comparing 6 and 8, gives 0 2 0 -player2 > engine: 6 8 9 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0.17718658046128033 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 2 0 -player2 > engine: 7 5 18 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 2 0 -player2 > engine: 7 8 9 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0.07127486481918088 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 2 0 -player2 > engine: 8 3 16 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 2 0 -player2 > engine: 8 5 8 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 2 0 -player2 > engine: 8 8 4 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0.0959457165401428 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 2 0 -player2 > engine: 9 8 5 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0.17957565458240535 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 0 0 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 2 0 -player2 > engine: 10 3 23 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 2 0 -player2 > engine: 10 8 12 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 1 0 0.3467010984295745 -player2 > engine: 10 13 6 -player2 > engine: comparing 10 and 14, gives 0 0 0.17957565458240538 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 12 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 2 0 -player2 > engine: 11 8 6 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0.08959020236950047 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 13 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 2 0 -player2 > engine: 12 8 7 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0.05382426922307792 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 9 3 -P 9.319567 21.808874 2 63 5 -P 14.288424 0.622569 2 48 5 -P 11.865493 5.273785 2 14 3 -P 11.742498 17.157658 2 10 3 -P 4.254093 0.000000 2 21 1 -P 19.353899 22.431443 2 10 1 -P 14.743614 22.324001 2 26 3 -P 8.864377 0.107441 2 12 3 -P 19.854347 0.711934 2 12 1 -P 3.753644 21.719509 2 28 1 -P 8.864814 9.736624 2 11 5 -P 14.743177 12.694819 2 30 5 -P 0.000000 10.809889 2 6 2 -P 23.607991 11.621554 0 54 2 -P 20.396768 15.522861 1 134 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 5 9 10 27 1 -F 2 2 6 8 25 1 -F 2 5 2 10 24 1 -F 2 24 2 6 23 1 -F 2 6 2 10 24 2 -F 2 15 5 6 28 6 -F 2 12 9 10 27 5 -F 2 6 9 13 23 1 -F 2 5 1 2 22 1 -F 2 27 2 1 22 1 -F 2 7 2 10 24 3 -F 2 8 5 10 22 1 -F 2 9 6 2 23 2 -F 2 8 7 2 22 1 -F 2 6 8 10 23 2 -F 2 7 9 10 27 6 -F 2 6 2 10 24 4 -F 2 12 5 6 28 8 -F 2 6 5 10 22 2 -F 2 12 2 10 24 5 -F 2 10 5 10 22 3 -F 2 8 8 10 23 4 -F 2 10 9 10 27 8 -F 2 6 1 5 23 5 -F 2 9 3 10 19 1 -F 2 5 4 5 19 1 -F 2 5 5 10 22 4 -F 2 9 6 5 28 10 -F 2 25 7 5 25 7 -F 2 12 8 7 23 5 -F 2 6 8 10 23 5 -F 2 9 9 10 27 9 -F 2 5 2 10 24 7 -F 2 14 3 10 19 2 -F 2 5 5 10 22 5 -F 2 20 8 4 18 1 -F 2 5 9 10 27 10 -F 2 12 2 4 17 1 -F 2 6 2 10 24 8 -F 2 7 3 10 19 3 -F 2 8 5 4 19 3 -F 2 19 8 4 18 2 -F 2 6 9 4 19 3 -F 2 19 2 4 17 2 -F 2 9 2 10 24 9 -F 2 14 3 10 19 4 -F 2 12 6 10 16 1 -F 2 6 6 13 23 8 -F 2 17 9 4 19 4 -F 2 9 9 10 27 12 -F 2 8 1 13 15 1 -F 2 40 2 1 22 8 -F 2 10 2 13 18 4 -F 2 8 6 13 23 9 -F 2 9 7 13 19 5 -F 2 6 9 13 23 9 -F 2 15 0 9 14 1 -F 2 16 1 9 24 11 -F 2 8 1 13 15 2 -F 2 8 3 13 14 1 -F 2 16 5 0 14 1 -F 2 10 6 0 14 1 -F 2 5 6 13 23 10 -F 2 8 7 13 19 6 -F 2 10 9 0 14 1 -F 2 26 10 0 14 1 -F 2 13 10 9 27 14 -F 2 7 12 13 15 2 -F 2 9 0 9 14 2 -F 2 7 1 3 17 5 -F 2 3 1 9 24 12 -F 2 2 4 9 19 7 -F 2 5 5 9 16 4 -F 2 12 6 3 19 7 -F 2 6 6 9 22 10 -F 2 11 7 3 18 6 -F 2 6 7 9 23 11 -F 2 16 10 3 19 7 -F 2 8 10 9 27 15 -F 2 2 11 9 15 3 -F 2 1 12 9 14 2 -F 2 4 1 3 17 6 -F 2 6 3 13 14 3 -F 2 10 4 3 12 1 -F 2 6 6 3 19 8 -F 2 11 7 3 18 7 -F 2 5 7 13 19 8 -F 2 15 10 3 19 8 -F 2 7 10 8 23 12 -F 2 3 0 1 11 1 -F 2 8 1 8 22 12 -F 2 22 2 1 22 12 -F 2 10 3 1 17 7 -F 2 13 4 8 18 8 -F 2 7 4 13 14 4 -F 2 4 5 1 23 13 -F 2 11 6 1 11 1 -F 2 5 6 8 25 15 -F 2 8 8 1 22 12 -F 2 3 9 1 24 14 -F 2 7 10 8 23 13 -F 2 13 11 1 13 3 -F 2 9 12 1 11 1 -F 1 5 4 3 12 3 -F 2 13 0 1 11 2 -F 2 22 2 1 22 13 -F 2 11 2 4 17 8 -F 2 5 3 1 17 8 -F 2 2 5 1 23 14 -F 2 14 6 1 11 2 -F 2 7 6 4 10 1 -F 2 3 8 1 22 13 -F 2 2 9 1 24 15 -F 2 12 10 4 10 1 -F 2 6 10 13 12 3 -F 2 8 11 1 13 4 -F 2 9 12 1 11 2 -F 2 3 1 12 11 3 -F 2 10 2 12 13 5 -F 2 5 2 13 18 10 -F 2 5 5 12 17 9 -F 2 4 6 12 11 3 -F 2 3 7 12 10 2 -F 2 2 8 12 14 6 -F 2 1 9 12 14 6 -F 2 11 10 12 15 7 -F 2 5 10 13 12 4 -F 2 14 12 2 13 5 -F 2 29 0 2 11 4 -F 2 11 1 12 11 4 -F 2 5 1 13 15 8 -F 2 8 2 12 13 6 -F 2 3 3 12 8 1 -F 2 8 5 12 17 10 -F 2 3 6 12 11 4 -F 2 13 7 2 22 15 -F 2 6 7 12 10 3 -F 2 8 9 12 14 7 -F 2 16 10 2 24 17 -F 2 8 10 12 15 8 -F 2 5 1 13 15 9 -F 2 7 2 13 18 12 -F 2 11 3 13 14 8 -F 2 6 3 14 14 8 -F 2 5 4 13 14 8 -F 2 8 5 13 12 6 -F 2 6 6 13 23 17 -F 2 10 7 13 19 13 -F 2 6 8 13 14 8 -F 2 6 9 13 23 17 -F 2 29 10 2 24 18 -F 2 15 10 6 16 10 -F 2 7 10 13 12 6 -F 2 6 11 13 9 3 -F 2 5 12 13 15 9 -F 2 22 0 9 14 9 -F 2 5 1 13 15 10 -F 2 13 2 9 6 1 -F 2 6 2 13 18 13 -F 2 21 3 9 10 5 -F 2 11 3 13 14 9 -F 2 5 3 14 14 9 -F 2 6 7 13 19 14 -F 2 13 8 9 12 7 -F 2 7 8 13 14 9 -F 2 5 9 13 23 18 -F 2 29 10 9 27 22 -F 2 14 10 13 12 7 -F 2 7 10 14 23 18 -F 2 27 1 5 23 19 -F 2 14 1 9 24 20 -F 2 7 1 13 15 11 -F 2 12 2 9 6 2 -F 2 6 2 13 18 14 -F 2 18 3 9 10 6 -F 2 9 3 13 14 10 -F 2 13 4 13 14 10 -F 2 7 4 14 14 10 -F 2 14 5 9 16 12 -F 2 7 5 13 12 8 -F 2 9 7 13 19 15 -F 2 9 8 13 14 10 -F 2 21 10 9 27 23 -F 2 11 10 13 12 8 -F 2 5 10 14 23 19 -F 2 10 11 13 9 5 -F 2 6 12 13 15 11 -F 2 12 0 11 4 1 -F 2 6 0 13 12 9 -F 2 20 1 11 13 10 -F 2 10 1 13 15 12 -F 2 5 1 14 18 15 -F 2 5 2 13 18 15 -F 2 7 3 13 14 11 -F 2 11 4 13 14 11 -F 2 6 4 14 14 11 -F 2 10 6 13 23 20 -F 2 5 6 14 12 9 -F 2 16 7 11 14 11 -F 2 8 7 13 19 16 -F 2 14 8 11 10 7 -F 2 7 8 13 14 11 -F 2 9 9 13 23 20 -F 2 20 10 11 14 11 -F 2 10 10 13 12 9 -F 2 9 11 13 9 6 -F 2 9 12 13 15 12 -F 2 29 0 3 6 4 -F 2 14 0 5 14 12 -F 2 7 0 13 12 10 -F 2 25 1 5 23 21 -F 2 12 1 13 15 13 -F 2 6 1 14 18 16 -F 2 10 2 5 11 9 -F 2 14 3 5 10 8 -F 2 7 3 13 14 12 -F 2 18 4 5 19 17 -F 2 9 4 13 14 12 -F 2 7 5 13 12 10 -F 2 12 7 5 25 23 -F 2 6 7 13 19 17 -F 2 12 8 5 5 3 -F 2 6 8 13 14 12 -F 2 8 9 13 23 21 -F 2 12 10 5 22 20 -F 2 6 10 13 12 10 -F 2 16 11 5 11 9 -F 2 8 11 13 9 7 -F 2 11 12 5 17 15 -F 2 5 12 13 15 13 -F 2 23 0 3 6 5 -F 2 12 0 8 12 11 -F 2 6 0 11 4 3 -F 2 17 1 7 6 5 -F 2 8 1 8 22 21 -F 2 15 2 7 22 21 -F 2 7 2 8 6 5 -F 2 12 3 8 6 5 -F 2 6 3 13 14 13 -F 2 6 4 8 18 17 -F 2 6 5 8 5 4 -F 2 17 6 7 5 4 -F 2 9 6 8 25 24 -F 2 18 7 5 25 24 -F 2 9 7 8 23 22 -F 2 16 8 3 6 5 -F 2 8 8 5 5 4 -F 2 5 9 8 12 11 -F 2 23 10 3 19 18 -F 2 12 10 8 23 22 -F 2 6 10 13 12 11 -F 2 12 11 0 4 3 -F 2 6 11 8 10 9 -F 2 13 12 0 4 3 -F 2 7 12 8 14 13 -go - -engine > player2: P 11.803996 11.215721 1 9 3 -P 9.319567 21.808874 1 63 5 -P 14.288424 0.622569 1 48 5 -P 11.865493 5.273785 1 14 3 -P 11.742498 17.157658 1 10 3 -P 4.254093 0.000000 1 21 1 -P 19.353899 22.431443 1 10 1 -P 14.743614 22.324001 1 26 3 -P 8.864377 0.107441 1 12 3 -P 19.854347 0.711934 1 12 1 -P 3.753644 21.719509 1 28 1 -P 8.864814 9.736624 1 11 5 -P 14.743177 12.694819 1 30 5 -P 0.000000 10.809889 1 6 2 -P 23.607991 11.621554 0 54 2 -P 20.396768 15.522861 2 134 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 5 9 10 27 1 -F 1 2 6 8 25 1 -F 1 5 2 10 24 1 -F 1 24 2 6 23 1 -F 1 6 2 10 24 2 -F 1 15 5 6 28 6 -F 1 12 9 10 27 5 -F 1 6 9 13 23 1 -F 1 5 1 2 22 1 -F 1 27 2 1 22 1 -F 1 7 2 10 24 3 -F 1 8 5 10 22 1 -F 1 9 6 2 23 2 -F 1 8 7 2 22 1 -F 1 6 8 10 23 2 -F 1 7 9 10 27 6 -F 1 6 2 10 24 4 -F 1 12 5 6 28 8 -F 1 6 5 10 22 2 -F 1 12 2 10 24 5 -F 1 10 5 10 22 3 -F 1 8 8 10 23 4 -F 1 10 9 10 27 8 -F 1 6 1 5 23 5 -F 1 9 3 10 19 1 -F 1 5 4 5 19 1 -F 1 5 5 10 22 4 -F 1 9 6 5 28 10 -F 1 25 7 5 25 7 -F 1 12 8 7 23 5 -F 1 6 8 10 23 5 -F 1 9 9 10 27 9 -F 1 5 2 10 24 7 -F 1 14 3 10 19 2 -F 1 5 5 10 22 5 -F 1 20 8 4 18 1 -F 1 5 9 10 27 10 -F 1 12 2 4 17 1 -F 1 6 2 10 24 8 -F 1 7 3 10 19 3 -F 1 8 5 4 19 3 -F 1 19 8 4 18 2 -F 1 6 9 4 19 3 -F 1 19 2 4 17 2 -F 1 9 2 10 24 9 -F 1 14 3 10 19 4 -F 1 12 6 10 16 1 -F 1 6 6 13 23 8 -F 1 17 9 4 19 4 -F 1 9 9 10 27 12 -F 1 8 1 13 15 1 -F 1 40 2 1 22 8 -F 1 10 2 13 18 4 -F 1 8 6 13 23 9 -F 1 9 7 13 19 5 -F 1 6 9 13 23 9 -F 1 15 0 9 14 1 -F 1 16 1 9 24 11 -F 1 8 1 13 15 2 -F 1 8 3 13 14 1 -F 1 16 5 0 14 1 -F 1 10 6 0 14 1 -F 1 5 6 13 23 10 -F 1 8 7 13 19 6 -F 1 10 9 0 14 1 -F 1 26 10 0 14 1 -F 1 13 10 9 27 14 -F 1 7 12 13 15 2 -F 1 9 0 9 14 2 -F 1 7 1 3 17 5 -F 1 3 1 9 24 12 -F 1 2 4 9 19 7 -F 1 5 5 9 16 4 -F 1 12 6 3 19 7 -F 1 6 6 9 22 10 -F 1 11 7 3 18 6 -F 1 6 7 9 23 11 -F 1 16 10 3 19 7 -F 1 8 10 9 27 15 -F 1 2 11 9 15 3 -F 1 1 12 9 14 2 -F 1 4 1 3 17 6 -F 1 6 3 13 14 3 -F 1 10 4 3 12 1 -F 1 6 6 3 19 8 -F 1 11 7 3 18 7 -F 1 5 7 13 19 8 -F 1 15 10 3 19 8 -F 1 7 10 8 23 12 -F 1 3 0 1 11 1 -F 1 8 1 8 22 12 -F 1 22 2 1 22 12 -F 1 10 3 1 17 7 -F 1 13 4 8 18 8 -F 1 7 4 13 14 4 -F 1 4 5 1 23 13 -F 1 11 6 1 11 1 -F 1 5 6 8 25 15 -F 1 8 8 1 22 12 -F 1 3 9 1 24 14 -F 1 7 10 8 23 13 -F 1 13 11 1 13 3 -F 1 9 12 1 11 1 -F 2 5 4 3 12 3 -F 1 13 0 1 11 2 -F 1 22 2 1 22 13 -F 1 11 2 4 17 8 -F 1 5 3 1 17 8 -F 1 2 5 1 23 14 -F 1 14 6 1 11 2 -F 1 7 6 4 10 1 -F 1 3 8 1 22 13 -F 1 2 9 1 24 15 -F 1 12 10 4 10 1 -F 1 6 10 13 12 3 -F 1 8 11 1 13 4 -F 1 9 12 1 11 2 -F 1 3 1 12 11 3 -F 1 10 2 12 13 5 -F 1 5 2 13 18 10 -F 1 5 5 12 17 9 -F 1 4 6 12 11 3 -F 1 3 7 12 10 2 -F 1 2 8 12 14 6 -F 1 1 9 12 14 6 -F 1 11 10 12 15 7 -F 1 5 10 13 12 4 -F 1 14 12 2 13 5 -F 1 29 0 2 11 4 -F 1 11 1 12 11 4 -F 1 5 1 13 15 8 -F 1 8 2 12 13 6 -F 1 3 3 12 8 1 -F 1 8 5 12 17 10 -F 1 3 6 12 11 4 -F 1 13 7 2 22 15 -F 1 6 7 12 10 3 -F 1 8 9 12 14 7 -F 1 16 10 2 24 17 -F 1 8 10 12 15 8 -F 1 5 1 13 15 9 -F 1 7 2 13 18 12 -F 1 11 3 13 14 8 -F 1 6 3 14 14 8 -F 1 5 4 13 14 8 -F 1 8 5 13 12 6 -F 1 6 6 13 23 17 -F 1 10 7 13 19 13 -F 1 6 8 13 14 8 -F 1 6 9 13 23 17 -F 1 29 10 2 24 18 -F 1 15 10 6 16 10 -F 1 7 10 13 12 6 -F 1 6 11 13 9 3 -F 1 5 12 13 15 9 -F 1 22 0 9 14 9 -F 1 5 1 13 15 10 -F 1 13 2 9 6 1 -F 1 6 2 13 18 13 -F 1 21 3 9 10 5 -F 1 11 3 13 14 9 -F 1 5 3 14 14 9 -F 1 6 7 13 19 14 -F 1 13 8 9 12 7 -F 1 7 8 13 14 9 -F 1 5 9 13 23 18 -F 1 29 10 9 27 22 -F 1 14 10 13 12 7 -F 1 7 10 14 23 18 -F 1 27 1 5 23 19 -F 1 14 1 9 24 20 -F 1 7 1 13 15 11 -F 1 12 2 9 6 2 -F 1 6 2 13 18 14 -F 1 18 3 9 10 6 -F 1 9 3 13 14 10 -F 1 13 4 13 14 10 -F 1 7 4 14 14 10 -F 1 14 5 9 16 12 -F 1 7 5 13 12 8 -F 1 9 7 13 19 15 -F 1 9 8 13 14 10 -F 1 21 10 9 27 23 -F 1 11 10 13 12 8 -F 1 5 10 14 23 19 -F 1 10 11 13 9 5 -F 1 6 12 13 15 11 -F 1 12 0 11 4 1 -F 1 6 0 13 12 9 -F 1 20 1 11 13 10 -F 1 10 1 13 15 12 -F 1 5 1 14 18 15 -F 1 5 2 13 18 15 -F 1 7 3 13 14 11 -F 1 11 4 13 14 11 -F 1 6 4 14 14 11 -F 1 10 6 13 23 20 -F 1 5 6 14 12 9 -F 1 16 7 11 14 11 -F 1 8 7 13 19 16 -F 1 14 8 11 10 7 -F 1 7 8 13 14 11 -F 1 9 9 13 23 20 -F 1 20 10 11 14 11 -F 1 10 10 13 12 9 -F 1 9 11 13 9 6 -F 1 9 12 13 15 12 -F 1 29 0 3 6 4 -F 1 14 0 5 14 12 -F 1 7 0 13 12 10 -F 1 25 1 5 23 21 -F 1 12 1 13 15 13 -F 1 6 1 14 18 16 -F 1 10 2 5 11 9 -F 1 14 3 5 10 8 -F 1 7 3 13 14 12 -F 1 18 4 5 19 17 -F 1 9 4 13 14 12 -F 1 7 5 13 12 10 -F 1 12 7 5 25 23 -F 1 6 7 13 19 17 -F 1 12 8 5 5 3 -F 1 6 8 13 14 12 -F 1 8 9 13 23 21 -F 1 12 10 5 22 20 -F 1 6 10 13 12 10 -F 1 16 11 5 11 9 -F 1 8 11 13 9 7 -F 1 11 12 5 17 15 -F 1 5 12 13 15 13 -F 1 23 0 3 6 5 -F 1 12 0 8 12 11 -F 1 6 0 11 4 3 -F 1 17 1 7 6 5 -F 1 8 1 8 22 21 -F 1 15 2 7 22 21 -F 1 7 2 8 6 5 -F 1 12 3 8 6 5 -F 1 6 3 13 14 13 -F 1 6 4 8 18 17 -F 1 6 5 8 5 4 -F 1 17 6 7 5 4 -F 1 9 6 8 25 24 -F 1 18 7 5 25 24 -F 1 9 7 8 23 22 -F 1 16 8 3 6 5 -F 1 8 8 5 5 4 -F 1 5 9 8 12 11 -F 1 23 10 3 19 18 -F 1 12 10 8 23 22 -F 1 6 10 13 12 11 -F 1 12 11 0 4 3 -F 1 6 11 8 10 9 -F 1 13 12 0 4 3 -F 1 7 12 8 14 13 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 4 -player2 > engine: comparing 0 and 13, gives 0 0 0 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 2 0 -player2 > engine: 1 5 31 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 2 0 -player2 > engine: 1 7 16 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0 -player2 > engine: comparing 1 and 14, gives 1 0 0.04558863060331812 -player2 > engine: 1 14 8 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 24 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 2 0 -player2 > engine: 2 8 12 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0 -player2 > engine: comparing 2 and 14, gives 1 0 0.05549243454274729 -player2 > engine: 2 14 6 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 2 0 -player2 > engine: 3 8 7 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 2 0 -player2 > engine: 4 7 5 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 2 0 -player2 > engine: 5 8 10 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0 -player2 > engine: comparing 5 and 14, gives 1 0 0.17718658719013242 -player2 > engine: 5 14 5 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 2 0 -player2 > engine: 6 7 5 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 2 0 -player2 > engine: 7 7 13 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0 -player2 > engine: comparing 7 and 14, gives 1 0 0.095945721857336 -player2 > engine: 7 14 6 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 2 0 -player2 > engine: 8 5 6 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 2 0 -player2 > engine: 8 8 3 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0 -player2 > engine: comparing 9 and 14, gives 1 0 0.3467010984295745 -player2 > engine: 9 14 6 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 0 0 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 0 0 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 2 0 -player2 > engine: 10 8 14 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 0 0 0 -player2 > engine: comparing 10 and 14, gives 1 0 0.17957565458240538 -player2 > engine: 10 14 7 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0 -player2 > engine: comparing 11 and 14, gives 1 0 0.05382426922307793 -player2 > engine: 11 14 5 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 2 0 -player2 > engine: 12 8 15 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0 -player2 > engine: comparing 12 and 14, gives 1 0 0.08959020236950047 -player2 > engine: 12 14 7 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: comparing 13 and 0, gives 0 0 0 -player2 > engine: comparing 13 and 1, gives 0 0 0 -player2 > engine: comparing 13 and 2, gives 0 0 0 -player2 > engine: comparing 13 and 3, gives 0 0 0 -player2 > engine: comparing 13 and 4, gives 0 0 0 -player2 > engine: comparing 13 and 5, gives 0 0 0 -player2 > engine: comparing 13 and 6, gives 0 0 0 -player2 > engine: comparing 13 and 7, gives 0 0 0 -player2 > engine: comparing 13 and 8, gives 0 0 0 -player2 > engine: comparing 13 and 9, gives 0 0 0 -player2 > engine: comparing 13 and 10, gives 0 0 0 -player2 > engine: comparing 13 and 11, gives 0 0 0 -player2 > engine: comparing 13 and 12, gives 0 0 0 -player2 > engine: comparing 13 and 13, gives 0 0 0 -player2 > engine: comparing 13 and 14, gives 0 0 0.08466705183160025 -player2 > engine: comparing 13 and 15, gives 0 0 0.14330624728818764 -player2 > engine: comparing 13 and 16, gives 0 0 0.5937142863110723 -player2 > engine: comparing 13 and 17, gives 0 0 0.11410854030250688 -player2 > engine: comparing 13 and 18, gives 0 0 0.242703882791183 -player2 > engine: comparing 13 and 19, gives 0 0 0.11321970317438007 -player2 > engine: comparing 13 and 20, gives 0 0 0.04135343135737552 -player2 > engine: comparing 13 and 21, gives 0 0 0.8537779168222296 -player2 > engine: comparing 13 and 22, gives 0 0 0.14242224698289055 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 70 3 -P 9.319567 21.808874 2 63 5 -P 14.288424 0.622569 2 48 5 -P 11.865493 5.273785 2 20 3 -P 11.742498 17.157658 2 59 3 -P 4.254093 0.000000 2 12 1 -P 19.353899 22.431443 2 30 1 -P 14.743614 22.324001 2 23 3 -P 8.864377 0.107441 2 11 3 -P 19.854347 0.711934 2 35 1 -P 3.753644 21.719509 2 47 1 -P 8.864814 9.736624 2 23 5 -P 14.743177 12.694819 2 16 5 -P 0.000000 10.809889 2 30 2 -P 23.607991 11.621554 0 54 2 -P 20.396768 15.522861 1 137 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 6 2 10 24 1 -F 2 15 5 6 28 5 -F 2 12 9 10 27 4 -F 2 7 2 10 24 2 -F 2 9 6 2 23 1 -F 2 6 8 10 23 1 -F 2 7 9 10 27 5 -F 2 6 2 10 24 3 -F 2 12 5 6 28 7 -F 2 6 5 10 22 1 -F 2 12 2 10 24 4 -F 2 10 5 10 22 2 -F 2 8 8 10 23 3 -F 2 10 9 10 27 7 -F 2 6 1 5 23 4 -F 2 5 5 10 22 3 -F 2 9 6 5 28 9 -F 2 25 7 5 25 6 -F 2 12 8 7 23 4 -F 2 6 8 10 23 4 -F 2 9 9 10 27 8 -F 2 5 2 10 24 6 -F 2 14 3 10 19 1 -F 2 5 5 10 22 4 -F 2 5 9 10 27 9 -F 2 6 2 10 24 7 -F 2 7 3 10 19 2 -F 2 8 5 4 19 2 -F 2 19 8 4 18 1 -F 2 6 9 4 19 2 -F 2 19 2 4 17 1 -F 2 9 2 10 24 8 -F 2 14 3 10 19 3 -F 2 6 6 13 23 7 -F 2 17 9 4 19 3 -F 2 9 9 10 27 11 -F 2 40 2 1 22 7 -F 2 10 2 13 18 3 -F 2 8 6 13 23 8 -F 2 9 7 13 19 4 -F 2 6 9 13 23 8 -F 2 16 1 9 24 10 -F 2 8 1 13 15 1 -F 2 5 6 13 23 9 -F 2 8 7 13 19 5 -F 2 13 10 9 27 13 -F 2 7 12 13 15 1 -F 2 9 0 9 14 1 -F 2 7 1 3 17 4 -F 2 3 1 9 24 11 -F 2 2 4 9 19 6 -F 2 5 5 9 16 3 -F 2 12 6 3 19 6 -F 2 6 6 9 22 9 -F 2 11 7 3 18 5 -F 2 6 7 9 23 10 -F 2 16 10 3 19 6 -F 2 8 10 9 27 14 -F 2 2 11 9 15 2 -F 2 1 12 9 14 1 -F 2 4 1 3 17 5 -F 2 6 3 13 14 2 -F 2 6 6 3 19 7 -F 2 11 7 3 18 6 -F 2 5 7 13 19 7 -F 2 15 10 3 19 7 -F 2 7 10 8 23 11 -F 2 8 1 8 22 11 -F 2 22 2 1 22 11 -F 2 10 3 1 17 6 -F 2 13 4 8 18 7 -F 2 7 4 13 14 3 -F 2 4 5 1 23 12 -F 2 5 6 8 25 14 -F 2 8 8 1 22 11 -F 2 3 9 1 24 13 -F 2 7 10 8 23 12 -F 2 13 11 1 13 2 -F 1 5 4 3 12 2 -F 2 13 0 1 11 1 -F 2 22 2 1 22 12 -F 2 11 2 4 17 7 -F 2 5 3 1 17 7 -F 2 2 5 1 23 13 -F 2 14 6 1 11 1 -F 2 3 8 1 22 12 -F 2 2 9 1 24 14 -F 2 6 10 13 12 2 -F 2 8 11 1 13 3 -F 2 9 12 1 11 1 -F 2 3 1 12 11 2 -F 2 10 2 12 13 4 -F 2 5 2 13 18 9 -F 2 5 5 12 17 8 -F 2 4 6 12 11 2 -F 2 3 7 12 10 1 -F 2 2 8 12 14 5 -F 2 1 9 12 14 5 -F 2 11 10 12 15 6 -F 2 5 10 13 12 3 -F 2 14 12 2 13 4 -F 2 29 0 2 11 3 -F 2 11 1 12 11 3 -F 2 5 1 13 15 7 -F 2 8 2 12 13 5 -F 2 8 5 12 17 9 -F 2 3 6 12 11 3 -F 2 13 7 2 22 14 -F 2 6 7 12 10 2 -F 2 8 9 12 14 6 -F 2 16 10 2 24 16 -F 2 8 10 12 15 7 -F 2 5 1 13 15 8 -F 2 7 2 13 18 11 -F 2 11 3 13 14 7 -F 2 6 3 14 14 7 -F 2 5 4 13 14 7 -F 2 8 5 13 12 5 -F 2 6 6 13 23 16 -F 2 10 7 13 19 12 -F 2 6 8 13 14 7 -F 2 6 9 13 23 16 -F 2 29 10 2 24 17 -F 2 15 10 6 16 9 -F 2 7 10 13 12 5 -F 2 6 11 13 9 2 -F 2 5 12 13 15 8 -F 2 22 0 9 14 8 -F 2 5 1 13 15 9 -F 2 6 2 13 18 12 -F 2 21 3 9 10 4 -F 2 11 3 13 14 8 -F 2 5 3 14 14 8 -F 2 6 7 13 19 13 -F 2 13 8 9 12 6 -F 2 7 8 13 14 8 -F 2 5 9 13 23 17 -F 2 29 10 9 27 21 -F 2 14 10 13 12 6 -F 2 7 10 14 23 17 -F 2 27 1 5 23 18 -F 2 14 1 9 24 19 -F 2 7 1 13 15 10 -F 2 12 2 9 6 1 -F 2 6 2 13 18 13 -F 2 18 3 9 10 5 -F 2 9 3 13 14 9 -F 2 13 4 13 14 9 -F 2 7 4 14 14 9 -F 2 14 5 9 16 11 -F 2 7 5 13 12 7 -F 2 9 7 13 19 14 -F 2 9 8 13 14 9 -F 2 21 10 9 27 22 -F 2 11 10 13 12 7 -F 2 5 10 14 23 18 -F 2 10 11 13 9 4 -F 2 6 12 13 15 10 -F 2 6 0 13 12 8 -F 2 20 1 11 13 9 -F 2 10 1 13 15 11 -F 2 5 1 14 18 14 -F 2 5 2 13 18 14 -F 2 7 3 13 14 10 -F 2 11 4 13 14 10 -F 2 6 4 14 14 10 -F 2 10 6 13 23 19 -F 2 5 6 14 12 8 -F 2 16 7 11 14 10 -F 2 8 7 13 19 15 -F 2 14 8 11 10 6 -F 2 7 8 13 14 10 -F 2 9 9 13 23 19 -F 2 20 10 11 14 10 -F 2 10 10 13 12 8 -F 2 9 11 13 9 5 -F 2 9 12 13 15 11 -F 2 29 0 3 6 3 -F 2 14 0 5 14 11 -F 2 7 0 13 12 9 -F 2 25 1 5 23 20 -F 2 12 1 13 15 12 -F 2 6 1 14 18 15 -F 2 10 2 5 11 8 -F 2 14 3 5 10 7 -F 2 7 3 13 14 11 -F 2 18 4 5 19 16 -F 2 9 4 13 14 11 -F 2 7 5 13 12 9 -F 2 12 7 5 25 22 -F 2 6 7 13 19 16 -F 2 12 8 5 5 2 -F 2 6 8 13 14 11 -F 2 8 9 13 23 20 -F 2 12 10 5 22 19 -F 2 6 10 13 12 9 -F 2 16 11 5 11 8 -F 2 8 11 13 9 6 -F 2 11 12 5 17 14 -F 2 5 12 13 15 12 -F 2 23 0 3 6 4 -F 2 12 0 8 12 10 -F 2 6 0 11 4 2 -F 2 17 1 7 6 4 -F 2 8 1 8 22 20 -F 2 15 2 7 22 20 -F 2 7 2 8 6 4 -F 2 12 3 8 6 4 -F 2 6 3 13 14 12 -F 2 6 4 8 18 16 -F 2 6 5 8 5 3 -F 2 17 6 7 5 3 -F 2 9 6 8 25 23 -F 2 18 7 5 25 23 -F 2 9 7 8 23 21 -F 2 16 8 3 6 4 -F 2 8 8 5 5 3 -F 2 5 9 8 12 10 -F 2 23 10 3 19 17 -F 2 12 10 8 23 21 -F 2 6 10 13 12 10 -F 2 12 11 0 4 2 -F 2 6 11 8 10 8 -F 2 13 12 0 4 2 -F 2 7 12 8 14 12 -F 2 4 0 12 4 3 -F 2 31 1 5 23 22 -F 2 16 1 7 6 5 -F 2 8 1 14 18 17 -F 2 12 2 8 6 5 -F 2 6 2 14 15 14 -F 2 7 3 8 6 5 -F 2 5 4 7 6 5 -F 2 10 5 8 5 4 -F 2 5 5 14 23 22 -F 2 5 6 7 5 4 -F 2 6 7 14 14 13 -F 2 6 8 5 5 4 -F 2 6 9 14 12 11 -F 2 14 10 8 23 22 -F 2 7 10 14 23 22 -F 2 5 11 14 15 14 -F 2 15 12 8 14 13 -F 2 7 12 14 9 8 -go - -engine > player2: P 11.803996 11.215721 1 70 3 -P 9.319567 21.808874 1 63 5 -P 14.288424 0.622569 1 48 5 -P 11.865493 5.273785 1 20 3 -P 11.742498 17.157658 1 59 3 -P 4.254093 0.000000 1 12 1 -P 19.353899 22.431443 1 30 1 -P 14.743614 22.324001 1 23 3 -P 8.864377 0.107441 1 11 3 -P 19.854347 0.711934 1 35 1 -P 3.753644 21.719509 1 47 1 -P 8.864814 9.736624 1 23 5 -P 14.743177 12.694819 1 16 5 -P 0.000000 10.809889 1 30 2 -P 23.607991 11.621554 0 54 2 -P 20.396768 15.522861 2 137 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 6 2 10 24 1 -F 1 15 5 6 28 5 -F 1 12 9 10 27 4 -F 1 7 2 10 24 2 -F 1 9 6 2 23 1 -F 1 6 8 10 23 1 -F 1 7 9 10 27 5 -F 1 6 2 10 24 3 -F 1 12 5 6 28 7 -F 1 6 5 10 22 1 -F 1 12 2 10 24 4 -F 1 10 5 10 22 2 -F 1 8 8 10 23 3 -F 1 10 9 10 27 7 -F 1 6 1 5 23 4 -F 1 5 5 10 22 3 -F 1 9 6 5 28 9 -F 1 25 7 5 25 6 -F 1 12 8 7 23 4 -F 1 6 8 10 23 4 -F 1 9 9 10 27 8 -F 1 5 2 10 24 6 -F 1 14 3 10 19 1 -F 1 5 5 10 22 4 -F 1 5 9 10 27 9 -F 1 6 2 10 24 7 -F 1 7 3 10 19 2 -F 1 8 5 4 19 2 -F 1 19 8 4 18 1 -F 1 6 9 4 19 2 -F 1 19 2 4 17 1 -F 1 9 2 10 24 8 -F 1 14 3 10 19 3 -F 1 6 6 13 23 7 -F 1 17 9 4 19 3 -F 1 9 9 10 27 11 -F 1 40 2 1 22 7 -F 1 10 2 13 18 3 -F 1 8 6 13 23 8 -F 1 9 7 13 19 4 -F 1 6 9 13 23 8 -F 1 16 1 9 24 10 -F 1 8 1 13 15 1 -F 1 5 6 13 23 9 -F 1 8 7 13 19 5 -F 1 13 10 9 27 13 -F 1 7 12 13 15 1 -F 1 9 0 9 14 1 -F 1 7 1 3 17 4 -F 1 3 1 9 24 11 -F 1 2 4 9 19 6 -F 1 5 5 9 16 3 -F 1 12 6 3 19 6 -F 1 6 6 9 22 9 -F 1 11 7 3 18 5 -F 1 6 7 9 23 10 -F 1 16 10 3 19 6 -F 1 8 10 9 27 14 -F 1 2 11 9 15 2 -F 1 1 12 9 14 1 -F 1 4 1 3 17 5 -F 1 6 3 13 14 2 -F 1 6 6 3 19 7 -F 1 11 7 3 18 6 -F 1 5 7 13 19 7 -F 1 15 10 3 19 7 -F 1 7 10 8 23 11 -F 1 8 1 8 22 11 -F 1 22 2 1 22 11 -F 1 10 3 1 17 6 -F 1 13 4 8 18 7 -F 1 7 4 13 14 3 -F 1 4 5 1 23 12 -F 1 5 6 8 25 14 -F 1 8 8 1 22 11 -F 1 3 9 1 24 13 -F 1 7 10 8 23 12 -F 1 13 11 1 13 2 -F 2 5 4 3 12 2 -F 1 13 0 1 11 1 -F 1 22 2 1 22 12 -F 1 11 2 4 17 7 -F 1 5 3 1 17 7 -F 1 2 5 1 23 13 -F 1 14 6 1 11 1 -F 1 3 8 1 22 12 -F 1 2 9 1 24 14 -F 1 6 10 13 12 2 -F 1 8 11 1 13 3 -F 1 9 12 1 11 1 -F 1 3 1 12 11 2 -F 1 10 2 12 13 4 -F 1 5 2 13 18 9 -F 1 5 5 12 17 8 -F 1 4 6 12 11 2 -F 1 3 7 12 10 1 -F 1 2 8 12 14 5 -F 1 1 9 12 14 5 -F 1 11 10 12 15 6 -F 1 5 10 13 12 3 -F 1 14 12 2 13 4 -F 1 29 0 2 11 3 -F 1 11 1 12 11 3 -F 1 5 1 13 15 7 -F 1 8 2 12 13 5 -F 1 8 5 12 17 9 -F 1 3 6 12 11 3 -F 1 13 7 2 22 14 -F 1 6 7 12 10 2 -F 1 8 9 12 14 6 -F 1 16 10 2 24 16 -F 1 8 10 12 15 7 -F 1 5 1 13 15 8 -F 1 7 2 13 18 11 -F 1 11 3 13 14 7 -F 1 6 3 14 14 7 -F 1 5 4 13 14 7 -F 1 8 5 13 12 5 -F 1 6 6 13 23 16 -F 1 10 7 13 19 12 -F 1 6 8 13 14 7 -F 1 6 9 13 23 16 -F 1 29 10 2 24 17 -F 1 15 10 6 16 9 -F 1 7 10 13 12 5 -F 1 6 11 13 9 2 -F 1 5 12 13 15 8 -F 1 22 0 9 14 8 -F 1 5 1 13 15 9 -F 1 6 2 13 18 12 -F 1 21 3 9 10 4 -F 1 11 3 13 14 8 -F 1 5 3 14 14 8 -F 1 6 7 13 19 13 -F 1 13 8 9 12 6 -F 1 7 8 13 14 8 -F 1 5 9 13 23 17 -F 1 29 10 9 27 21 -F 1 14 10 13 12 6 -F 1 7 10 14 23 17 -F 1 27 1 5 23 18 -F 1 14 1 9 24 19 -F 1 7 1 13 15 10 -F 1 12 2 9 6 1 -F 1 6 2 13 18 13 -F 1 18 3 9 10 5 -F 1 9 3 13 14 9 -F 1 13 4 13 14 9 -F 1 7 4 14 14 9 -F 1 14 5 9 16 11 -F 1 7 5 13 12 7 -F 1 9 7 13 19 14 -F 1 9 8 13 14 9 -F 1 21 10 9 27 22 -F 1 11 10 13 12 7 -F 1 5 10 14 23 18 -F 1 10 11 13 9 4 -F 1 6 12 13 15 10 -F 1 6 0 13 12 8 -F 1 20 1 11 13 9 -F 1 10 1 13 15 11 -F 1 5 1 14 18 14 -F 1 5 2 13 18 14 -F 1 7 3 13 14 10 -F 1 11 4 13 14 10 -F 1 6 4 14 14 10 -F 1 10 6 13 23 19 -F 1 5 6 14 12 8 -F 1 16 7 11 14 10 -F 1 8 7 13 19 15 -F 1 14 8 11 10 6 -F 1 7 8 13 14 10 -F 1 9 9 13 23 19 -F 1 20 10 11 14 10 -F 1 10 10 13 12 8 -F 1 9 11 13 9 5 -F 1 9 12 13 15 11 -F 1 29 0 3 6 3 -F 1 14 0 5 14 11 -F 1 7 0 13 12 9 -F 1 25 1 5 23 20 -F 1 12 1 13 15 12 -F 1 6 1 14 18 15 -F 1 10 2 5 11 8 -F 1 14 3 5 10 7 -F 1 7 3 13 14 11 -F 1 18 4 5 19 16 -F 1 9 4 13 14 11 -F 1 7 5 13 12 9 -F 1 12 7 5 25 22 -F 1 6 7 13 19 16 -F 1 12 8 5 5 2 -F 1 6 8 13 14 11 -F 1 8 9 13 23 20 -F 1 12 10 5 22 19 -F 1 6 10 13 12 9 -F 1 16 11 5 11 8 -F 1 8 11 13 9 6 -F 1 11 12 5 17 14 -F 1 5 12 13 15 12 -F 1 23 0 3 6 4 -F 1 12 0 8 12 10 -F 1 6 0 11 4 2 -F 1 17 1 7 6 4 -F 1 8 1 8 22 20 -F 1 15 2 7 22 20 -F 1 7 2 8 6 4 -F 1 12 3 8 6 4 -F 1 6 3 13 14 12 -F 1 6 4 8 18 16 -F 1 6 5 8 5 3 -F 1 17 6 7 5 3 -F 1 9 6 8 25 23 -F 1 18 7 5 25 23 -F 1 9 7 8 23 21 -F 1 16 8 3 6 4 -F 1 8 8 5 5 3 -F 1 5 9 8 12 10 -F 1 23 10 3 19 17 -F 1 12 10 8 23 21 -F 1 6 10 13 12 10 -F 1 12 11 0 4 2 -F 1 6 11 8 10 8 -F 1 13 12 0 4 2 -F 1 7 12 8 14 12 -F 1 4 0 12 4 3 -F 1 31 1 5 23 22 -F 1 16 1 7 6 5 -F 1 8 1 14 18 17 -F 1 12 2 8 6 5 -F 1 6 2 14 15 14 -F 1 7 3 8 6 5 -F 1 5 4 7 6 5 -F 1 10 5 8 5 4 -F 1 5 5 14 23 22 -F 1 5 6 7 5 4 -F 1 6 7 14 14 13 -F 1 6 8 5 5 4 -F 1 6 9 14 12 11 -F 1 14 10 8 23 22 -F 1 7 10 14 23 22 -F 1 5 11 14 15 14 -F 1 15 12 8 14 13 -F 1 7 12 14 9 8 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 35 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 2 0 -player2 > engine: 0 6 17 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 9 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 4 -player2 > engine: comparing 0 and 13, gives 0 0 0 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 2 0 -player2 > engine: 1 0 31 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 2 0 -player2 > engine: 1 6 16 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 2 0 -player2 > engine: 1 11 8 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 2 0 -player2 > engine: 2 6 24 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 2 0 -player2 > engine: 2 8 12 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0 -player2 > engine: comparing 2 and 14, gives 1 0 0.05549243454274729 -player2 > engine: 2 14 6 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 2 0 -player2 > engine: 3 6 10 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 2 0 -player2 > engine: 4 0 29 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 2 0 -player2 > engine: 4 6 15 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 2 0 -player2 > engine: 4 11 7 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 2 0 -player2 > engine: 5 6 6 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 2 0 -player2 > engine: 5 8 3 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 2 0 -player2 > engine: 6 6 15 -player2 > engine: comparing 6 and 7, gives 0 2 0 -player2 > engine: 6 7 7 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 2 0 -player2 > engine: 7 6 11 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0 -player2 > engine: comparing 7 and 14, gives 1 0 0.095945721857336 -player2 > engine: 7 14 6 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 2 0 -player2 > engine: 8 6 5 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 2 0 -player2 > engine: 9 6 17 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 2 0 -player2 > engine: 9 11 9 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 0 0 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 0 0 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 2 0 -player2 > engine: 10 6 23 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 2 0 -player2 > engine: 10 11 12 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 0 0 0 -player2 > engine: comparing 10 and 14, gives 1 0 0.17957565458240538 -player2 > engine: 10 14 6 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 11 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 2 0 -player2 > engine: 11 6 6 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 8 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 2 0 -player2 > engine: 12 6 4 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: comparing 13 and 0, gives 0 0 0 -player2 > engine: comparing 13 and 1, gives 0 0 0 -player2 > engine: comparing 13 and 2, gives 0 0 0 -player2 > engine: comparing 13 and 3, gives 0 0 0 -player2 > engine: comparing 13 and 4, gives 0 0 0 -player2 > engine: comparing 13 and 5, gives 0 0 0 -player2 > engine: comparing 13 and 6, gives 0 2 0 -player2 > engine: 13 6 15 -player2 > engine: comparing 13 and 7, gives 0 0 0 -player2 > engine: comparing 13 and 8, gives 0 0 0 -player2 > engine: comparing 13 and 9, gives 0 0 0 -player2 > engine: comparing 13 and 10, gives 0 0 0 -player2 > engine: comparing 13 and 11, gives 0 2 0 -player2 > engine: 13 11 7 -player2 > engine: comparing 13 and 12, gives 0 0 0 -player2 > engine: comparing 13 and 13, gives 0 0 0 -player2 > engine: comparing 13 and 14, gives 0 0 0.08466705183160025 -player2 > engine: comparing 13 and 15, gives 0 0 0.14330624728818764 -player2 > engine: comparing 13 and 16, gives 0 0 0.5937142863110723 -player2 > engine: comparing 13 and 17, gives 0 0 0.11410854030250688 -player2 > engine: comparing 13 and 18, gives 0 0 0.242703882791183 -player2 > engine: comparing 13 and 19, gives 0 0 0.11321970317438007 -player2 > engine: comparing 13 and 20, gives 0 0 0.04135343135737552 -player2 > engine: comparing 13 and 21, gives 0 0 0.8537779168222296 -player2 > engine: comparing 13 and 22, gives 0 0 0.14242224698289055 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 43 3 -P 9.319567 21.808874 2 49 5 -P 14.288424 0.622569 2 20 5 -P 11.865493 5.273785 2 13 3 -P 11.742498 17.157658 2 49 3 -P 4.254093 0.000000 2 4 1 -P 19.353899 22.431443 2 24 1 -P 14.743614 22.324001 2 9 3 -P 8.864377 0.107441 2 9 3 -P 19.854347 0.711934 2 32 1 -P 3.753644 21.719509 2 39 1 -P 8.864814 9.736624 2 11 5 -P 14.743177 12.694819 2 12 5 -P 0.000000 10.809889 2 25 2 -P 23.607991 11.621554 0 54 2 -P 20.396768 15.522861 1 140 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 15 5 6 28 4 -F 2 12 9 10 27 3 -F 2 7 2 10 24 1 -F 2 7 9 10 27 4 -F 2 6 2 10 24 2 -F 2 12 5 6 28 6 -F 2 12 2 10 24 3 -F 2 10 5 10 22 1 -F 2 8 8 10 23 2 -F 2 10 9 10 27 6 -F 2 6 1 5 23 3 -F 2 5 5 10 22 2 -F 2 9 6 5 28 8 -F 2 25 7 5 25 5 -F 2 12 8 7 23 3 -F 2 6 8 10 23 3 -F 2 9 9 10 27 7 -F 2 5 2 10 24 5 -F 2 5 5 10 22 3 -F 2 5 9 10 27 8 -F 2 6 2 10 24 6 -F 2 7 3 10 19 1 -F 2 8 5 4 19 1 -F 2 6 9 4 19 1 -F 2 9 2 10 24 7 -F 2 14 3 10 19 2 -F 2 6 6 13 23 6 -F 2 17 9 4 19 2 -F 2 9 9 10 27 10 -F 2 40 2 1 22 6 -F 2 10 2 13 18 2 -F 2 8 6 13 23 7 -F 2 9 7 13 19 3 -F 2 6 9 13 23 7 -F 2 16 1 9 24 9 -F 2 5 6 13 23 8 -F 2 8 7 13 19 4 -F 2 13 10 9 27 12 -F 2 7 1 3 17 3 -F 2 3 1 9 24 10 -F 2 2 4 9 19 5 -F 2 5 5 9 16 2 -F 2 12 6 3 19 5 -F 2 6 6 9 22 8 -F 2 11 7 3 18 4 -F 2 6 7 9 23 9 -F 2 16 10 3 19 5 -F 2 8 10 9 27 13 -F 2 2 11 9 15 1 -F 2 4 1 3 17 4 -F 2 6 3 13 14 1 -F 2 6 6 3 19 6 -F 2 11 7 3 18 5 -F 2 5 7 13 19 6 -F 2 15 10 3 19 6 -F 2 7 10 8 23 10 -F 2 8 1 8 22 10 -F 2 22 2 1 22 10 -F 2 10 3 1 17 5 -F 2 13 4 8 18 6 -F 2 7 4 13 14 2 -F 2 4 5 1 23 11 -F 2 5 6 8 25 13 -F 2 8 8 1 22 10 -F 2 3 9 1 24 12 -F 2 7 10 8 23 11 -F 2 13 11 1 13 1 -F 1 5 4 3 12 1 -F 2 22 2 1 22 11 -F 2 11 2 4 17 6 -F 2 5 3 1 17 6 -F 2 2 5 1 23 12 -F 2 3 8 1 22 11 -F 2 2 9 1 24 13 -F 2 6 10 13 12 1 -F 2 8 11 1 13 2 -F 2 3 1 12 11 1 -F 2 10 2 12 13 3 -F 2 5 2 13 18 8 -F 2 5 5 12 17 7 -F 2 4 6 12 11 1 -F 2 2 8 12 14 4 -F 2 1 9 12 14 4 -F 2 11 10 12 15 5 -F 2 5 10 13 12 2 -F 2 14 12 2 13 3 -F 2 29 0 2 11 2 -F 2 11 1 12 11 2 -F 2 5 1 13 15 6 -F 2 8 2 12 13 4 -F 2 8 5 12 17 8 -F 2 3 6 12 11 2 -F 2 13 7 2 22 13 -F 2 6 7 12 10 1 -F 2 8 9 12 14 5 -F 2 16 10 2 24 15 -F 2 8 10 12 15 6 -F 2 5 1 13 15 7 -F 2 7 2 13 18 10 -F 2 11 3 13 14 6 -F 2 6 3 14 14 6 -F 2 5 4 13 14 6 -F 2 8 5 13 12 4 -F 2 6 6 13 23 15 -F 2 10 7 13 19 11 -F 2 6 8 13 14 6 -F 2 6 9 13 23 15 -F 2 29 10 2 24 16 -F 2 15 10 6 16 8 -F 2 7 10 13 12 4 -F 2 6 11 13 9 1 -F 2 5 12 13 15 7 -F 2 22 0 9 14 7 -F 2 5 1 13 15 8 -F 2 6 2 13 18 11 -F 2 21 3 9 10 3 -F 2 11 3 13 14 7 -F 2 5 3 14 14 7 -F 2 6 7 13 19 12 -F 2 13 8 9 12 5 -F 2 7 8 13 14 7 -F 2 5 9 13 23 16 -F 2 29 10 9 27 20 -F 2 14 10 13 12 5 -F 2 7 10 14 23 16 -F 2 27 1 5 23 17 -F 2 14 1 9 24 18 -F 2 7 1 13 15 9 -F 2 6 2 13 18 12 -F 2 18 3 9 10 4 -F 2 9 3 13 14 8 -F 2 13 4 13 14 8 -F 2 7 4 14 14 8 -F 2 14 5 9 16 10 -F 2 7 5 13 12 6 -F 2 9 7 13 19 13 -F 2 9 8 13 14 8 -F 2 21 10 9 27 21 -F 2 11 10 13 12 6 -F 2 5 10 14 23 17 -F 2 10 11 13 9 3 -F 2 6 12 13 15 9 -F 2 6 0 13 12 7 -F 2 20 1 11 13 8 -F 2 10 1 13 15 10 -F 2 5 1 14 18 13 -F 2 5 2 13 18 13 -F 2 7 3 13 14 9 -F 2 11 4 13 14 9 -F 2 6 4 14 14 9 -F 2 10 6 13 23 18 -F 2 5 6 14 12 7 -F 2 16 7 11 14 9 -F 2 8 7 13 19 14 -F 2 14 8 11 10 5 -F 2 7 8 13 14 9 -F 2 9 9 13 23 18 -F 2 20 10 11 14 9 -F 2 10 10 13 12 7 -F 2 9 11 13 9 4 -F 2 9 12 13 15 10 -F 2 29 0 3 6 2 -F 2 14 0 5 14 10 -F 2 7 0 13 12 8 -F 2 25 1 5 23 19 -F 2 12 1 13 15 11 -F 2 6 1 14 18 14 -F 2 10 2 5 11 7 -F 2 14 3 5 10 6 -F 2 7 3 13 14 10 -F 2 18 4 5 19 15 -F 2 9 4 13 14 10 -F 2 7 5 13 12 8 -F 2 12 7 5 25 21 -F 2 6 7 13 19 15 -F 2 12 8 5 5 1 -F 2 6 8 13 14 10 -F 2 8 9 13 23 19 -F 2 12 10 5 22 18 -F 2 6 10 13 12 8 -F 2 16 11 5 11 7 -F 2 8 11 13 9 5 -F 2 11 12 5 17 13 -F 2 5 12 13 15 11 -F 2 23 0 3 6 3 -F 2 12 0 8 12 9 -F 2 6 0 11 4 1 -F 2 17 1 7 6 3 -F 2 8 1 8 22 19 -F 2 15 2 7 22 19 -F 2 7 2 8 6 3 -F 2 12 3 8 6 3 -F 2 6 3 13 14 11 -F 2 6 4 8 18 15 -F 2 6 5 8 5 2 -F 2 17 6 7 5 2 -F 2 9 6 8 25 22 -F 2 18 7 5 25 22 -F 2 9 7 8 23 20 -F 2 16 8 3 6 3 -F 2 8 8 5 5 2 -F 2 5 9 8 12 9 -F 2 23 10 3 19 16 -F 2 12 10 8 23 20 -F 2 6 10 13 12 9 -F 2 12 11 0 4 1 -F 2 6 11 8 10 7 -F 2 13 12 0 4 1 -F 2 7 12 8 14 11 -F 2 4 0 12 4 2 -F 2 31 1 5 23 21 -F 2 16 1 7 6 4 -F 2 8 1 14 18 16 -F 2 12 2 8 6 4 -F 2 6 2 14 15 13 -F 2 7 3 8 6 4 -F 2 5 4 7 6 4 -F 2 10 5 8 5 3 -F 2 5 5 14 23 21 -F 2 5 6 7 5 3 -F 2 6 7 14 14 12 -F 2 6 8 5 5 3 -F 2 6 9 14 12 10 -F 2 14 10 8 23 21 -F 2 7 10 14 23 21 -F 2 5 11 14 15 13 -F 2 15 12 8 14 12 -F 2 7 12 14 9 7 -F 2 17 0 6 14 13 -F 2 9 0 11 4 3 -F 2 4 0 12 4 3 -F 2 31 1 0 11 10 -F 2 16 1 6 11 10 -F 2 8 1 11 13 12 -F 2 24 2 6 23 22 -F 2 12 2 8 6 5 -F 2 6 2 14 15 14 -F 2 10 3 6 19 18 -F 2 29 4 0 6 5 -F 2 15 4 6 10 9 -F 2 7 4 11 8 7 -F 2 6 5 6 28 27 -F 2 3 5 8 5 4 -F 2 7 6 7 5 4 -F 2 11 7 6 5 4 -F 2 6 7 14 14 13 -F 2 5 8 6 25 24 -F 2 17 9 6 22 21 -F 2 9 9 11 15 14 -F 2 23 10 6 16 15 -F 2 12 10 11 14 13 -F 2 6 10 14 23 22 -F 2 11 11 0 4 3 -F 2 6 11 6 17 16 -F 2 8 12 0 4 3 -F 2 4 12 6 11 10 -F 2 15 13 6 23 22 -F 2 7 13 11 9 8 -go - -engine > player2: P 11.803996 11.215721 1 43 3 -P 9.319567 21.808874 1 49 5 -P 14.288424 0.622569 1 20 5 -P 11.865493 5.273785 1 13 3 -P 11.742498 17.157658 1 49 3 -P 4.254093 0.000000 1 4 1 -P 19.353899 22.431443 1 24 1 -P 14.743614 22.324001 1 9 3 -P 8.864377 0.107441 1 9 3 -P 19.854347 0.711934 1 32 1 -P 3.753644 21.719509 1 39 1 -P 8.864814 9.736624 1 11 5 -P 14.743177 12.694819 1 12 5 -P 0.000000 10.809889 1 25 2 -P 23.607991 11.621554 0 54 2 -P 20.396768 15.522861 2 140 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 15 5 6 28 4 -F 1 12 9 10 27 3 -F 1 7 2 10 24 1 -F 1 7 9 10 27 4 -F 1 6 2 10 24 2 -F 1 12 5 6 28 6 -F 1 12 2 10 24 3 -F 1 10 5 10 22 1 -F 1 8 8 10 23 2 -F 1 10 9 10 27 6 -F 1 6 1 5 23 3 -F 1 5 5 10 22 2 -F 1 9 6 5 28 8 -F 1 25 7 5 25 5 -F 1 12 8 7 23 3 -F 1 6 8 10 23 3 -F 1 9 9 10 27 7 -F 1 5 2 10 24 5 -F 1 5 5 10 22 3 -F 1 5 9 10 27 8 -F 1 6 2 10 24 6 -F 1 7 3 10 19 1 -F 1 8 5 4 19 1 -F 1 6 9 4 19 1 -F 1 9 2 10 24 7 -F 1 14 3 10 19 2 -F 1 6 6 13 23 6 -F 1 17 9 4 19 2 -F 1 9 9 10 27 10 -F 1 40 2 1 22 6 -F 1 10 2 13 18 2 -F 1 8 6 13 23 7 -F 1 9 7 13 19 3 -F 1 6 9 13 23 7 -F 1 16 1 9 24 9 -F 1 5 6 13 23 8 -F 1 8 7 13 19 4 -F 1 13 10 9 27 12 -F 1 7 1 3 17 3 -F 1 3 1 9 24 10 -F 1 2 4 9 19 5 -F 1 5 5 9 16 2 -F 1 12 6 3 19 5 -F 1 6 6 9 22 8 -F 1 11 7 3 18 4 -F 1 6 7 9 23 9 -F 1 16 10 3 19 5 -F 1 8 10 9 27 13 -F 1 2 11 9 15 1 -F 1 4 1 3 17 4 -F 1 6 3 13 14 1 -F 1 6 6 3 19 6 -F 1 11 7 3 18 5 -F 1 5 7 13 19 6 -F 1 15 10 3 19 6 -F 1 7 10 8 23 10 -F 1 8 1 8 22 10 -F 1 22 2 1 22 10 -F 1 10 3 1 17 5 -F 1 13 4 8 18 6 -F 1 7 4 13 14 2 -F 1 4 5 1 23 11 -F 1 5 6 8 25 13 -F 1 8 8 1 22 10 -F 1 3 9 1 24 12 -F 1 7 10 8 23 11 -F 1 13 11 1 13 1 -F 2 5 4 3 12 1 -F 1 22 2 1 22 11 -F 1 11 2 4 17 6 -F 1 5 3 1 17 6 -F 1 2 5 1 23 12 -F 1 3 8 1 22 11 -F 1 2 9 1 24 13 -F 1 6 10 13 12 1 -F 1 8 11 1 13 2 -F 1 3 1 12 11 1 -F 1 10 2 12 13 3 -F 1 5 2 13 18 8 -F 1 5 5 12 17 7 -F 1 4 6 12 11 1 -F 1 2 8 12 14 4 -F 1 1 9 12 14 4 -F 1 11 10 12 15 5 -F 1 5 10 13 12 2 -F 1 14 12 2 13 3 -F 1 29 0 2 11 2 -F 1 11 1 12 11 2 -F 1 5 1 13 15 6 -F 1 8 2 12 13 4 -F 1 8 5 12 17 8 -F 1 3 6 12 11 2 -F 1 13 7 2 22 13 -F 1 6 7 12 10 1 -F 1 8 9 12 14 5 -F 1 16 10 2 24 15 -F 1 8 10 12 15 6 -F 1 5 1 13 15 7 -F 1 7 2 13 18 10 -F 1 11 3 13 14 6 -F 1 6 3 14 14 6 -F 1 5 4 13 14 6 -F 1 8 5 13 12 4 -F 1 6 6 13 23 15 -F 1 10 7 13 19 11 -F 1 6 8 13 14 6 -F 1 6 9 13 23 15 -F 1 29 10 2 24 16 -F 1 15 10 6 16 8 -F 1 7 10 13 12 4 -F 1 6 11 13 9 1 -F 1 5 12 13 15 7 -F 1 22 0 9 14 7 -F 1 5 1 13 15 8 -F 1 6 2 13 18 11 -F 1 21 3 9 10 3 -F 1 11 3 13 14 7 -F 1 5 3 14 14 7 -F 1 6 7 13 19 12 -F 1 13 8 9 12 5 -F 1 7 8 13 14 7 -F 1 5 9 13 23 16 -F 1 29 10 9 27 20 -F 1 14 10 13 12 5 -F 1 7 10 14 23 16 -F 1 27 1 5 23 17 -F 1 14 1 9 24 18 -F 1 7 1 13 15 9 -F 1 6 2 13 18 12 -F 1 18 3 9 10 4 -F 1 9 3 13 14 8 -F 1 13 4 13 14 8 -F 1 7 4 14 14 8 -F 1 14 5 9 16 10 -F 1 7 5 13 12 6 -F 1 9 7 13 19 13 -F 1 9 8 13 14 8 -F 1 21 10 9 27 21 -F 1 11 10 13 12 6 -F 1 5 10 14 23 17 -F 1 10 11 13 9 3 -F 1 6 12 13 15 9 -F 1 6 0 13 12 7 -F 1 20 1 11 13 8 -F 1 10 1 13 15 10 -F 1 5 1 14 18 13 -F 1 5 2 13 18 13 -F 1 7 3 13 14 9 -F 1 11 4 13 14 9 -F 1 6 4 14 14 9 -F 1 10 6 13 23 18 -F 1 5 6 14 12 7 -F 1 16 7 11 14 9 -F 1 8 7 13 19 14 -F 1 14 8 11 10 5 -F 1 7 8 13 14 9 -F 1 9 9 13 23 18 -F 1 20 10 11 14 9 -F 1 10 10 13 12 7 -F 1 9 11 13 9 4 -F 1 9 12 13 15 10 -F 1 29 0 3 6 2 -F 1 14 0 5 14 10 -F 1 7 0 13 12 8 -F 1 25 1 5 23 19 -F 1 12 1 13 15 11 -F 1 6 1 14 18 14 -F 1 10 2 5 11 7 -F 1 14 3 5 10 6 -F 1 7 3 13 14 10 -F 1 18 4 5 19 15 -F 1 9 4 13 14 10 -F 1 7 5 13 12 8 -F 1 12 7 5 25 21 -F 1 6 7 13 19 15 -F 1 12 8 5 5 1 -F 1 6 8 13 14 10 -F 1 8 9 13 23 19 -F 1 12 10 5 22 18 -F 1 6 10 13 12 8 -F 1 16 11 5 11 7 -F 1 8 11 13 9 5 -F 1 11 12 5 17 13 -F 1 5 12 13 15 11 -F 1 23 0 3 6 3 -F 1 12 0 8 12 9 -F 1 6 0 11 4 1 -F 1 17 1 7 6 3 -F 1 8 1 8 22 19 -F 1 15 2 7 22 19 -F 1 7 2 8 6 3 -F 1 12 3 8 6 3 -F 1 6 3 13 14 11 -F 1 6 4 8 18 15 -F 1 6 5 8 5 2 -F 1 17 6 7 5 2 -F 1 9 6 8 25 22 -F 1 18 7 5 25 22 -F 1 9 7 8 23 20 -F 1 16 8 3 6 3 -F 1 8 8 5 5 2 -F 1 5 9 8 12 9 -F 1 23 10 3 19 16 -F 1 12 10 8 23 20 -F 1 6 10 13 12 9 -F 1 12 11 0 4 1 -F 1 6 11 8 10 7 -F 1 13 12 0 4 1 -F 1 7 12 8 14 11 -F 1 4 0 12 4 2 -F 1 31 1 5 23 21 -F 1 16 1 7 6 4 -F 1 8 1 14 18 16 -F 1 12 2 8 6 4 -F 1 6 2 14 15 13 -F 1 7 3 8 6 4 -F 1 5 4 7 6 4 -F 1 10 5 8 5 3 -F 1 5 5 14 23 21 -F 1 5 6 7 5 3 -F 1 6 7 14 14 12 -F 1 6 8 5 5 3 -F 1 6 9 14 12 10 -F 1 14 10 8 23 21 -F 1 7 10 14 23 21 -F 1 5 11 14 15 13 -F 1 15 12 8 14 12 -F 1 7 12 14 9 7 -F 1 17 0 6 14 13 -F 1 9 0 11 4 3 -F 1 4 0 12 4 3 -F 1 31 1 0 11 10 -F 1 16 1 6 11 10 -F 1 8 1 11 13 12 -F 1 24 2 6 23 22 -F 1 12 2 8 6 5 -F 1 6 2 14 15 14 -F 1 10 3 6 19 18 -F 1 29 4 0 6 5 -F 1 15 4 6 10 9 -F 1 7 4 11 8 7 -F 1 6 5 6 28 27 -F 1 3 5 8 5 4 -F 1 7 6 7 5 4 -F 1 11 7 6 5 4 -F 1 6 7 14 14 13 -F 1 5 8 6 25 24 -F 1 17 9 6 22 21 -F 1 9 9 11 15 14 -F 1 23 10 6 16 15 -F 1 12 10 11 14 13 -F 1 6 10 14 23 22 -F 1 11 11 0 4 3 -F 1 6 11 6 17 16 -F 1 8 12 0 4 3 -F 1 4 12 6 11 10 -F 1 15 13 6 23 22 -F 1 7 13 11 9 8 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 21 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0 -player2 > engine: comparing 0 and 14, gives 1 0 0.11288940705410845 -player2 > engine: 0 14 11 -player2 > engine: comparing 0 and 15, gives 1 0 0.20807702359301603 -player2 > engine: 0 15 5 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 2 0 -player2 > engine: 1 1 24 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0 -player2 > engine: comparing 1 and 14, gives 1 0 0.04558863060331812 -player2 > engine: 1 14 12 -player2 > engine: comparing 1 and 15, gives 1 0 0.09421743304011854 -player2 > engine: 1 15 6 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0 -player2 > engine: comparing 2 and 14, gives 1 0 0.05549243454274729 -player2 > engine: 2 14 10 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0 -player2 > engine: comparing 3 and 14, gives 1 0 0.09988694591354103 -player2 > engine: 3 14 6 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 2 0 -player2 > engine: 4 1 24 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0 -player2 > engine: comparing 4 and 14, gives 1 0 0.10183210472368878 -player2 > engine: 4 14 12 -player2 > engine: comparing 4 and 15, gives 1 0 0.22708373983920746 -player2 > engine: 4 15 6 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 2 0 -player2 > engine: 6 6 12 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0 -player2 > engine: comparing 6 and 14, gives 1 0 0.34432768245496265 -player2 > engine: 6 14 6 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 2 0 -player2 > engine: 7 6 4 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 2 0 -player2 > engine: 9 11 16 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0 -player2 > engine: comparing 9 and 14, gives 1 0 0.3467010984295745 -player2 > engine: 9 14 8 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 0 0 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 0 0 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 2 0 -player2 > engine: 10 11 19 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 0 0 0 -player2 > engine: comparing 10 and 14, gives 1 0 0.17957565458240538 -player2 > engine: 10 14 10 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0 -player2 > engine: comparing 11 and 14, gives 1 0 0.05382426922307793 -player2 > engine: 11 14 5 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0 -player2 > engine: comparing 12 and 14, gives 1 0 0.08959020236950047 -player2 > engine: 12 14 6 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: comparing 13 and 0, gives 0 0 0 -player2 > engine: comparing 13 and 1, gives 0 0 0 -player2 > engine: comparing 13 and 2, gives 0 0 0 -player2 > engine: comparing 13 and 3, gives 0 0 0 -player2 > engine: comparing 13 and 4, gives 0 0 0 -player2 > engine: comparing 13 and 5, gives 0 0 0 -player2 > engine: comparing 13 and 6, gives 0 0 0 -player2 > engine: comparing 13 and 7, gives 0 0 0 -player2 > engine: comparing 13 and 8, gives 0 0 0 -player2 > engine: comparing 13 and 9, gives 0 0 0 -player2 > engine: comparing 13 and 10, gives 0 0 0 -player2 > engine: comparing 13 and 11, gives 0 0 0 -player2 > engine: comparing 13 and 12, gives 0 0 0 -player2 > engine: comparing 13 and 13, gives 0 0 0 -player2 > engine: comparing 13 and 14, gives 1 0 0.08466705183160025 -player2 > engine: 13 14 12 -player2 > engine: comparing 13 and 15, gives 1 0 0.14330624728818764 -player2 > engine: 13 15 6 -player2 > engine: comparing 13 and 16, gives 0 0 0.5937142863110723 -player2 > engine: comparing 13 and 17, gives 0 0 0.11410854030250688 -player2 > engine: comparing 13 and 18, gives 0 0 0.242703882791183 -player2 > engine: comparing 13 and 19, gives 0 0 0.11321970317438007 -player2 > engine: comparing 13 and 20, gives 0 0 0.04135343135737552 -player2 > engine: comparing 13 and 21, gives 0 0 0.8537779168222296 -player2 > engine: comparing 13 and 22, gives 0 0 0.14242224698289055 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 34 3 -P 9.319567 21.808874 2 49 5 -P 14.288424 0.622569 2 15 5 -P 11.865493 5.273785 2 5 3 -P 11.742498 17.157658 2 24 3 -P 4.254093 0.000000 2 17 1 -P 19.353899 22.431443 2 19 1 -P 14.743614 22.324001 2 8 3 -P 8.864377 0.107441 2 12 3 -P 19.854347 0.711934 2 11 1 -P 3.753644 21.719509 2 35 1 -P 8.864814 9.736624 2 17 5 -P 14.743177 12.694819 2 24 5 -P 0.000000 10.809889 2 27 2 -P 23.607991 11.621554 0 54 2 -P 20.396768 15.522861 1 143 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 15 5 6 28 3 -F 2 12 9 10 27 2 -F 2 7 9 10 27 3 -F 2 6 2 10 24 1 -F 2 12 5 6 28 5 -F 2 12 2 10 24 2 -F 2 8 8 10 23 1 -F 2 10 9 10 27 5 -F 2 6 1 5 23 2 -F 2 5 5 10 22 1 -F 2 9 6 5 28 7 -F 2 25 7 5 25 4 -F 2 12 8 7 23 2 -F 2 6 8 10 23 2 -F 2 9 9 10 27 6 -F 2 5 2 10 24 4 -F 2 5 5 10 22 2 -F 2 5 9 10 27 7 -F 2 6 2 10 24 5 -F 2 9 2 10 24 6 -F 2 14 3 10 19 1 -F 2 6 6 13 23 5 -F 2 17 9 4 19 1 -F 2 9 9 10 27 9 -F 2 40 2 1 22 5 -F 2 10 2 13 18 1 -F 2 8 6 13 23 6 -F 2 9 7 13 19 2 -F 2 6 9 13 23 6 -F 2 16 1 9 24 8 -F 2 5 6 13 23 7 -F 2 8 7 13 19 3 -F 2 13 10 9 27 11 -F 2 7 1 3 17 2 -F 2 3 1 9 24 9 -F 2 2 4 9 19 4 -F 2 5 5 9 16 1 -F 2 12 6 3 19 4 -F 2 6 6 9 22 7 -F 2 11 7 3 18 3 -F 2 6 7 9 23 8 -F 2 16 10 3 19 4 -F 2 8 10 9 27 12 -F 2 4 1 3 17 3 -F 2 6 6 3 19 5 -F 2 11 7 3 18 4 -F 2 5 7 13 19 5 -F 2 15 10 3 19 5 -F 2 7 10 8 23 9 -F 2 8 1 8 22 9 -F 2 22 2 1 22 9 -F 2 10 3 1 17 4 -F 2 13 4 8 18 5 -F 2 7 4 13 14 1 -F 2 4 5 1 23 10 -F 2 5 6 8 25 12 -F 2 8 8 1 22 9 -F 2 3 9 1 24 11 -F 2 7 10 8 23 10 -F 2 22 2 1 22 10 -F 2 11 2 4 17 5 -F 2 5 3 1 17 5 -F 2 2 5 1 23 11 -F 2 3 8 1 22 10 -F 2 2 9 1 24 12 -F 2 8 11 1 13 1 -F 2 10 2 12 13 2 -F 2 5 2 13 18 7 -F 2 5 5 12 17 6 -F 2 2 8 12 14 3 -F 2 1 9 12 14 3 -F 2 11 10 12 15 4 -F 2 5 10 13 12 1 -F 2 14 12 2 13 2 -F 2 29 0 2 11 1 -F 2 11 1 12 11 1 -F 2 5 1 13 15 5 -F 2 8 2 12 13 3 -F 2 8 5 12 17 7 -F 2 3 6 12 11 1 -F 2 13 7 2 22 12 -F 2 8 9 12 14 4 -F 2 16 10 2 24 14 -F 2 8 10 12 15 5 -F 2 5 1 13 15 6 -F 2 7 2 13 18 9 -F 2 11 3 13 14 5 -F 2 6 3 14 14 5 -F 2 5 4 13 14 5 -F 2 8 5 13 12 3 -F 2 6 6 13 23 14 -F 2 10 7 13 19 10 -F 2 6 8 13 14 5 -F 2 6 9 13 23 14 -F 2 29 10 2 24 15 -F 2 15 10 6 16 7 -F 2 7 10 13 12 3 -F 2 5 12 13 15 6 -F 2 22 0 9 14 6 -F 2 5 1 13 15 7 -F 2 6 2 13 18 10 -F 2 21 3 9 10 2 -F 2 11 3 13 14 6 -F 2 5 3 14 14 6 -F 2 6 7 13 19 11 -F 2 13 8 9 12 4 -F 2 7 8 13 14 6 -F 2 5 9 13 23 15 -F 2 29 10 9 27 19 -F 2 14 10 13 12 4 -F 2 7 10 14 23 15 -F 2 27 1 5 23 16 -F 2 14 1 9 24 17 -F 2 7 1 13 15 8 -F 2 6 2 13 18 11 -F 2 18 3 9 10 3 -F 2 9 3 13 14 7 -F 2 13 4 13 14 7 -F 2 7 4 14 14 7 -F 2 14 5 9 16 9 -F 2 7 5 13 12 5 -F 2 9 7 13 19 12 -F 2 9 8 13 14 7 -F 2 21 10 9 27 20 -F 2 11 10 13 12 5 -F 2 5 10 14 23 16 -F 2 10 11 13 9 2 -F 2 6 12 13 15 8 -F 2 6 0 13 12 6 -F 2 20 1 11 13 7 -F 2 10 1 13 15 9 -F 2 5 1 14 18 12 -F 2 5 2 13 18 12 -F 2 7 3 13 14 8 -F 2 11 4 13 14 8 -F 2 6 4 14 14 8 -F 2 10 6 13 23 17 -F 2 5 6 14 12 6 -F 2 16 7 11 14 8 -F 2 8 7 13 19 13 -F 2 14 8 11 10 4 -F 2 7 8 13 14 8 -F 2 9 9 13 23 17 -F 2 20 10 11 14 8 -F 2 10 10 13 12 6 -F 2 9 11 13 9 3 -F 2 9 12 13 15 9 -F 2 29 0 3 6 1 -F 2 14 0 5 14 9 -F 2 7 0 13 12 7 -F 2 25 1 5 23 18 -F 2 12 1 13 15 10 -F 2 6 1 14 18 13 -F 2 10 2 5 11 6 -F 2 14 3 5 10 5 -F 2 7 3 13 14 9 -F 2 18 4 5 19 14 -F 2 9 4 13 14 9 -F 2 7 5 13 12 7 -F 2 12 7 5 25 20 -F 2 6 7 13 19 14 -F 2 6 8 13 14 9 -F 2 8 9 13 23 18 -F 2 12 10 5 22 17 -F 2 6 10 13 12 7 -F 2 16 11 5 11 6 -F 2 8 11 13 9 4 -F 2 11 12 5 17 12 -F 2 5 12 13 15 10 -F 2 23 0 3 6 2 -F 2 12 0 8 12 8 -F 2 17 1 7 6 2 -F 2 8 1 8 22 18 -F 2 15 2 7 22 18 -F 2 7 2 8 6 2 -F 2 12 3 8 6 2 -F 2 6 3 13 14 10 -F 2 6 4 8 18 14 -F 2 6 5 8 5 1 -F 2 17 6 7 5 1 -F 2 9 6 8 25 21 -F 2 18 7 5 25 21 -F 2 9 7 8 23 19 -F 2 16 8 3 6 2 -F 2 8 8 5 5 1 -F 2 5 9 8 12 8 -F 2 23 10 3 19 15 -F 2 12 10 8 23 19 -F 2 6 10 13 12 8 -F 2 6 11 8 10 6 -F 2 7 12 8 14 10 -F 2 4 0 12 4 1 -F 2 31 1 5 23 20 -F 2 16 1 7 6 3 -F 2 8 1 14 18 15 -F 2 12 2 8 6 3 -F 2 6 2 14 15 12 -F 2 7 3 8 6 3 -F 2 5 4 7 6 3 -F 2 10 5 8 5 2 -F 2 5 5 14 23 20 -F 2 5 6 7 5 2 -F 2 6 7 14 14 11 -F 2 6 8 5 5 2 -F 2 6 9 14 12 9 -F 2 14 10 8 23 20 -F 2 7 10 14 23 20 -F 2 5 11 14 15 12 -F 2 15 12 8 14 11 -F 2 7 12 14 9 6 -F 2 17 0 6 14 12 -F 2 9 0 11 4 2 -F 2 4 0 12 4 2 -F 2 31 1 0 11 9 -F 2 16 1 6 11 9 -F 2 8 1 11 13 11 -F 2 24 2 6 23 21 -F 2 12 2 8 6 4 -F 2 6 2 14 15 13 -F 2 10 3 6 19 17 -F 2 29 4 0 6 4 -F 2 15 4 6 10 8 -F 2 7 4 11 8 6 -F 2 6 5 6 28 26 -F 2 3 5 8 5 3 -F 2 7 6 7 5 3 -F 2 11 7 6 5 3 -F 2 6 7 14 14 12 -F 2 5 8 6 25 23 -F 2 17 9 6 22 20 -F 2 9 9 11 15 13 -F 2 23 10 6 16 14 -F 2 12 10 11 14 12 -F 2 6 10 14 23 21 -F 2 11 11 0 4 2 -F 2 6 11 6 17 15 -F 2 8 12 0 4 2 -F 2 4 12 6 11 9 -F 2 15 13 6 23 21 -F 2 7 13 11 9 7 -F 2 21 0 11 4 3 -F 2 11 0 14 12 11 -F 2 5 0 15 10 9 -F 2 12 1 14 18 17 -F 2 6 1 15 13 12 -F 2 10 2 14 15 14 -F 2 6 3 14 14 13 -F 2 24 4 1 6 5 -F 2 12 4 14 14 13 -F 2 6 4 15 9 8 -F 2 6 6 14 12 11 -F 2 4 7 6 5 4 -F 2 16 9 11 15 14 -F 2 8 9 14 12 11 -F 2 19 10 11 14 13 -F 2 10 10 14 23 22 -F 2 5 11 14 15 14 -F 2 6 12 14 9 8 -F 2 12 13 14 24 23 -F 2 6 13 15 21 20 -go - -engine > player2: P 11.803996 11.215721 1 34 3 -P 9.319567 21.808874 1 49 5 -P 14.288424 0.622569 1 15 5 -P 11.865493 5.273785 1 5 3 -P 11.742498 17.157658 1 24 3 -P 4.254093 0.000000 1 17 1 -P 19.353899 22.431443 1 19 1 -P 14.743614 22.324001 1 8 3 -P 8.864377 0.107441 1 12 3 -P 19.854347 0.711934 1 11 1 -P 3.753644 21.719509 1 35 1 -P 8.864814 9.736624 1 17 5 -P 14.743177 12.694819 1 24 5 -P 0.000000 10.809889 1 27 2 -P 23.607991 11.621554 0 54 2 -P 20.396768 15.522861 2 143 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 15 5 6 28 3 -F 1 12 9 10 27 2 -F 1 7 9 10 27 3 -F 1 6 2 10 24 1 -F 1 12 5 6 28 5 -F 1 12 2 10 24 2 -F 1 8 8 10 23 1 -F 1 10 9 10 27 5 -F 1 6 1 5 23 2 -F 1 5 5 10 22 1 -F 1 9 6 5 28 7 -F 1 25 7 5 25 4 -F 1 12 8 7 23 2 -F 1 6 8 10 23 2 -F 1 9 9 10 27 6 -F 1 5 2 10 24 4 -F 1 5 5 10 22 2 -F 1 5 9 10 27 7 -F 1 6 2 10 24 5 -F 1 9 2 10 24 6 -F 1 14 3 10 19 1 -F 1 6 6 13 23 5 -F 1 17 9 4 19 1 -F 1 9 9 10 27 9 -F 1 40 2 1 22 5 -F 1 10 2 13 18 1 -F 1 8 6 13 23 6 -F 1 9 7 13 19 2 -F 1 6 9 13 23 6 -F 1 16 1 9 24 8 -F 1 5 6 13 23 7 -F 1 8 7 13 19 3 -F 1 13 10 9 27 11 -F 1 7 1 3 17 2 -F 1 3 1 9 24 9 -F 1 2 4 9 19 4 -F 1 5 5 9 16 1 -F 1 12 6 3 19 4 -F 1 6 6 9 22 7 -F 1 11 7 3 18 3 -F 1 6 7 9 23 8 -F 1 16 10 3 19 4 -F 1 8 10 9 27 12 -F 1 4 1 3 17 3 -F 1 6 6 3 19 5 -F 1 11 7 3 18 4 -F 1 5 7 13 19 5 -F 1 15 10 3 19 5 -F 1 7 10 8 23 9 -F 1 8 1 8 22 9 -F 1 22 2 1 22 9 -F 1 10 3 1 17 4 -F 1 13 4 8 18 5 -F 1 7 4 13 14 1 -F 1 4 5 1 23 10 -F 1 5 6 8 25 12 -F 1 8 8 1 22 9 -F 1 3 9 1 24 11 -F 1 7 10 8 23 10 -F 1 22 2 1 22 10 -F 1 11 2 4 17 5 -F 1 5 3 1 17 5 -F 1 2 5 1 23 11 -F 1 3 8 1 22 10 -F 1 2 9 1 24 12 -F 1 8 11 1 13 1 -F 1 10 2 12 13 2 -F 1 5 2 13 18 7 -F 1 5 5 12 17 6 -F 1 2 8 12 14 3 -F 1 1 9 12 14 3 -F 1 11 10 12 15 4 -F 1 5 10 13 12 1 -F 1 14 12 2 13 2 -F 1 29 0 2 11 1 -F 1 11 1 12 11 1 -F 1 5 1 13 15 5 -F 1 8 2 12 13 3 -F 1 8 5 12 17 7 -F 1 3 6 12 11 1 -F 1 13 7 2 22 12 -F 1 8 9 12 14 4 -F 1 16 10 2 24 14 -F 1 8 10 12 15 5 -F 1 5 1 13 15 6 -F 1 7 2 13 18 9 -F 1 11 3 13 14 5 -F 1 6 3 14 14 5 -F 1 5 4 13 14 5 -F 1 8 5 13 12 3 -F 1 6 6 13 23 14 -F 1 10 7 13 19 10 -F 1 6 8 13 14 5 -F 1 6 9 13 23 14 -F 1 29 10 2 24 15 -F 1 15 10 6 16 7 -F 1 7 10 13 12 3 -F 1 5 12 13 15 6 -F 1 22 0 9 14 6 -F 1 5 1 13 15 7 -F 1 6 2 13 18 10 -F 1 21 3 9 10 2 -F 1 11 3 13 14 6 -F 1 5 3 14 14 6 -F 1 6 7 13 19 11 -F 1 13 8 9 12 4 -F 1 7 8 13 14 6 -F 1 5 9 13 23 15 -F 1 29 10 9 27 19 -F 1 14 10 13 12 4 -F 1 7 10 14 23 15 -F 1 27 1 5 23 16 -F 1 14 1 9 24 17 -F 1 7 1 13 15 8 -F 1 6 2 13 18 11 -F 1 18 3 9 10 3 -F 1 9 3 13 14 7 -F 1 13 4 13 14 7 -F 1 7 4 14 14 7 -F 1 14 5 9 16 9 -F 1 7 5 13 12 5 -F 1 9 7 13 19 12 -F 1 9 8 13 14 7 -F 1 21 10 9 27 20 -F 1 11 10 13 12 5 -F 1 5 10 14 23 16 -F 1 10 11 13 9 2 -F 1 6 12 13 15 8 -F 1 6 0 13 12 6 -F 1 20 1 11 13 7 -F 1 10 1 13 15 9 -F 1 5 1 14 18 12 -F 1 5 2 13 18 12 -F 1 7 3 13 14 8 -F 1 11 4 13 14 8 -F 1 6 4 14 14 8 -F 1 10 6 13 23 17 -F 1 5 6 14 12 6 -F 1 16 7 11 14 8 -F 1 8 7 13 19 13 -F 1 14 8 11 10 4 -F 1 7 8 13 14 8 -F 1 9 9 13 23 17 -F 1 20 10 11 14 8 -F 1 10 10 13 12 6 -F 1 9 11 13 9 3 -F 1 9 12 13 15 9 -F 1 29 0 3 6 1 -F 1 14 0 5 14 9 -F 1 7 0 13 12 7 -F 1 25 1 5 23 18 -F 1 12 1 13 15 10 -F 1 6 1 14 18 13 -F 1 10 2 5 11 6 -F 1 14 3 5 10 5 -F 1 7 3 13 14 9 -F 1 18 4 5 19 14 -F 1 9 4 13 14 9 -F 1 7 5 13 12 7 -F 1 12 7 5 25 20 -F 1 6 7 13 19 14 -F 1 6 8 13 14 9 -F 1 8 9 13 23 18 -F 1 12 10 5 22 17 -F 1 6 10 13 12 7 -F 1 16 11 5 11 6 -F 1 8 11 13 9 4 -F 1 11 12 5 17 12 -F 1 5 12 13 15 10 -F 1 23 0 3 6 2 -F 1 12 0 8 12 8 -F 1 17 1 7 6 2 -F 1 8 1 8 22 18 -F 1 15 2 7 22 18 -F 1 7 2 8 6 2 -F 1 12 3 8 6 2 -F 1 6 3 13 14 10 -F 1 6 4 8 18 14 -F 1 6 5 8 5 1 -F 1 17 6 7 5 1 -F 1 9 6 8 25 21 -F 1 18 7 5 25 21 -F 1 9 7 8 23 19 -F 1 16 8 3 6 2 -F 1 8 8 5 5 1 -F 1 5 9 8 12 8 -F 1 23 10 3 19 15 -F 1 12 10 8 23 19 -F 1 6 10 13 12 8 -F 1 6 11 8 10 6 -F 1 7 12 8 14 10 -F 1 4 0 12 4 1 -F 1 31 1 5 23 20 -F 1 16 1 7 6 3 -F 1 8 1 14 18 15 -F 1 12 2 8 6 3 -F 1 6 2 14 15 12 -F 1 7 3 8 6 3 -F 1 5 4 7 6 3 -F 1 10 5 8 5 2 -F 1 5 5 14 23 20 -F 1 5 6 7 5 2 -F 1 6 7 14 14 11 -F 1 6 8 5 5 2 -F 1 6 9 14 12 9 -F 1 14 10 8 23 20 -F 1 7 10 14 23 20 -F 1 5 11 14 15 12 -F 1 15 12 8 14 11 -F 1 7 12 14 9 6 -F 1 17 0 6 14 12 -F 1 9 0 11 4 2 -F 1 4 0 12 4 2 -F 1 31 1 0 11 9 -F 1 16 1 6 11 9 -F 1 8 1 11 13 11 -F 1 24 2 6 23 21 -F 1 12 2 8 6 4 -F 1 6 2 14 15 13 -F 1 10 3 6 19 17 -F 1 29 4 0 6 4 -F 1 15 4 6 10 8 -F 1 7 4 11 8 6 -F 1 6 5 6 28 26 -F 1 3 5 8 5 3 -F 1 7 6 7 5 3 -F 1 11 7 6 5 3 -F 1 6 7 14 14 12 -F 1 5 8 6 25 23 -F 1 17 9 6 22 20 -F 1 9 9 11 15 13 -F 1 23 10 6 16 14 -F 1 12 10 11 14 12 -F 1 6 10 14 23 21 -F 1 11 11 0 4 2 -F 1 6 11 6 17 15 -F 1 8 12 0 4 2 -F 1 4 12 6 11 9 -F 1 15 13 6 23 21 -F 1 7 13 11 9 7 -F 1 21 0 11 4 3 -F 1 11 0 14 12 11 -F 1 5 0 15 10 9 -F 1 12 1 14 18 17 -F 1 6 1 15 13 12 -F 1 10 2 14 15 14 -F 1 6 3 14 14 13 -F 1 24 4 1 6 5 -F 1 12 4 14 14 13 -F 1 6 4 15 9 8 -F 1 6 6 14 12 11 -F 1 4 7 6 5 4 -F 1 16 9 11 15 14 -F 1 8 9 14 12 11 -F 1 19 10 11 14 13 -F 1 10 10 14 23 22 -F 1 5 11 14 15 14 -F 1 6 12 14 9 8 -F 1 12 13 14 24 23 -F 1 6 13 15 21 20 -go - -player1 > engine: 15 14 71 -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 17 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0 -player2 > engine: comparing 0 and 14, gives 1 0 0.11288940705410845 -player2 > engine: 0 14 8 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 2 0 -player2 > engine: 1 1 24 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0 -player2 > engine: comparing 1 and 14, gives 1 0 0.04558863060331812 -player2 > engine: 1 14 12 -player2 > engine: comparing 1 and 15, gives 1 0 0.09421743304011854 -player2 > engine: 1 15 6 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0 -player2 > engine: comparing 2 and 14, gives 1 0 0.05549243454274729 -player2 > engine: 2 14 7 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 2 0 -player2 > engine: 4 1 12 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0 -player2 > engine: comparing 4 and 14, gives 1 0 0.10183210472368878 -player2 > engine: 4 14 6 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0 -player2 > engine: comparing 5 and 14, gives 1 0 0.17718658719013242 -player2 > engine: 5 14 8 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0 -player2 > engine: comparing 6 and 14, gives 1 0 0.34432768245496265 -player2 > engine: 6 14 9 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 2 0 -player2 > engine: 7 6 4 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0 -player2 > engine: comparing 8 and 14, gives 1 0 0.07127486247407648 -player2 > engine: 8 14 6 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0 -player2 > engine: comparing 9 and 14, gives 1 0 0.3467010984295745 -player2 > engine: 9 14 5 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 2 0 -player2 > engine: 10 1 17 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 0 0 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 0 0 0 -player2 > engine: comparing 10 and 14, gives 1 0 0.17957565458240538 -player2 > engine: 10 14 9 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 8 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 12 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0 -player2 > engine: comparing 12 and 14, gives 1 0 0.08959020236950047 -player2 > engine: 12 14 6 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: comparing 13 and 0, gives 0 0 0 -player2 > engine: comparing 13 and 1, gives 0 0 0 -player2 > engine: comparing 13 and 2, gives 0 0 0 -player2 > engine: comparing 13 and 3, gives 0 0 0 -player2 > engine: comparing 13 and 4, gives 0 0 0 -player2 > engine: comparing 13 and 5, gives 0 0 0 -player2 > engine: comparing 13 and 6, gives 0 0 0 -player2 > engine: comparing 13 and 7, gives 0 0 0 -player2 > engine: comparing 13 and 8, gives 0 0 0 -player2 > engine: comparing 13 and 9, gives 0 0 0 -player2 > engine: comparing 13 and 10, gives 0 0 0 -player2 > engine: comparing 13 and 11, gives 0 0 0 -player2 > engine: comparing 13 and 12, gives 0 0 0 -player2 > engine: comparing 13 and 13, gives 0 0 0 -player2 > engine: comparing 13 and 14, gives 1 0 0.08466705183160025 -player2 > engine: 13 14 13 -player2 > engine: comparing 13 and 15, gives 1 0 0.14330624728818764 -player2 > engine: 13 15 7 -player2 > engine: comparing 13 and 16, gives 0 0 0.5937142863110723 -player2 > engine: comparing 13 and 17, gives 0 0 0.11410854030250688 -player2 > engine: comparing 13 and 18, gives 0 0 0.242703882791183 -player2 > engine: comparing 13 and 19, gives 0 0 0.11321970317438007 -player2 > engine: comparing 13 and 20, gives 0 0 0.04135343135737552 -player2 > engine: comparing 13 and 21, gives 0 0 0.8537779168222296 -player2 > engine: comparing 13 and 22, gives 0 0 0.14242224698289055 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 12 3 -P 9.319567 21.808874 2 44 5 -P 14.288424 0.622569 2 42 5 -P 11.865493 5.273785 2 37 3 -P 11.742498 17.157658 2 26 3 -P 4.254093 0.000000 2 18 1 -P 19.353899 22.431443 2 11 1 -P 14.743614 22.324001 2 24 3 -P 8.864377 0.107441 2 15 3 -P 19.854347 0.711934 2 12 1 -P 3.753644 21.719509 2 43 1 -P 8.864814 9.736624 2 14 5 -P 14.743177 12.694819 2 29 5 -P 0.000000 10.809889 2 31 2 -P 23.607991 11.621554 0 54 2 -P 20.396768 15.522861 1 75 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 15 5 6 28 2 -F 2 12 9 10 27 1 -F 2 7 9 10 27 2 -F 2 12 5 6 28 4 -F 2 12 2 10 24 1 -F 2 10 9 10 27 4 -F 2 6 1 5 23 1 -F 2 9 6 5 28 6 -F 2 25 7 5 25 3 -F 2 12 8 7 23 1 -F 2 6 8 10 23 1 -F 2 9 9 10 27 5 -F 2 5 2 10 24 3 -F 2 5 5 10 22 1 -F 2 5 9 10 27 6 -F 2 6 2 10 24 4 -F 2 9 2 10 24 5 -F 2 6 6 13 23 4 -F 2 9 9 10 27 8 -F 2 40 2 1 22 4 -F 2 8 6 13 23 5 -F 2 9 7 13 19 1 -F 2 6 9 13 23 5 -F 2 16 1 9 24 7 -F 2 5 6 13 23 6 -F 2 8 7 13 19 2 -F 2 13 10 9 27 10 -F 2 7 1 3 17 1 -F 2 3 1 9 24 8 -F 2 2 4 9 19 3 -F 2 12 6 3 19 3 -F 2 6 6 9 22 6 -F 2 11 7 3 18 2 -F 2 6 7 9 23 7 -F 2 16 10 3 19 3 -F 2 8 10 9 27 11 -F 2 4 1 3 17 2 -F 2 6 6 3 19 4 -F 2 11 7 3 18 3 -F 2 5 7 13 19 4 -F 2 15 10 3 19 4 -F 2 7 10 8 23 8 -F 2 8 1 8 22 8 -F 2 22 2 1 22 8 -F 2 10 3 1 17 3 -F 2 13 4 8 18 4 -F 2 4 5 1 23 9 -F 2 5 6 8 25 11 -F 2 8 8 1 22 8 -F 2 3 9 1 24 10 -F 2 7 10 8 23 9 -F 2 22 2 1 22 9 -F 2 11 2 4 17 4 -F 2 5 3 1 17 4 -F 2 2 5 1 23 10 -F 2 3 8 1 22 9 -F 2 2 9 1 24 11 -F 2 10 2 12 13 1 -F 2 5 2 13 18 6 -F 2 5 5 12 17 5 -F 2 2 8 12 14 2 -F 2 1 9 12 14 2 -F 2 11 10 12 15 3 -F 2 14 12 2 13 1 -F 2 5 1 13 15 4 -F 2 8 2 12 13 2 -F 2 8 5 12 17 6 -F 2 13 7 2 22 11 -F 2 8 9 12 14 3 -F 2 16 10 2 24 13 -F 2 8 10 12 15 4 -F 2 5 1 13 15 5 -F 2 7 2 13 18 8 -F 2 11 3 13 14 4 -F 2 6 3 14 14 4 -F 2 5 4 13 14 4 -F 2 8 5 13 12 2 -F 2 6 6 13 23 13 -F 2 10 7 13 19 9 -F 2 6 8 13 14 4 -F 2 6 9 13 23 13 -F 2 29 10 2 24 14 -F 2 15 10 6 16 6 -F 2 7 10 13 12 2 -F 2 5 12 13 15 5 -F 2 22 0 9 14 5 -F 2 5 1 13 15 6 -F 2 6 2 13 18 9 -F 2 21 3 9 10 1 -F 2 11 3 13 14 5 -F 2 5 3 14 14 5 -F 2 6 7 13 19 10 -F 2 13 8 9 12 3 -F 2 7 8 13 14 5 -F 2 5 9 13 23 14 -F 2 29 10 9 27 18 -F 2 14 10 13 12 3 -F 2 7 10 14 23 14 -F 2 27 1 5 23 15 -F 2 14 1 9 24 16 -F 2 7 1 13 15 7 -F 2 6 2 13 18 10 -F 2 18 3 9 10 2 -F 2 9 3 13 14 6 -F 2 13 4 13 14 6 -F 2 7 4 14 14 6 -F 2 14 5 9 16 8 -F 2 7 5 13 12 4 -F 2 9 7 13 19 11 -F 2 9 8 13 14 6 -F 2 21 10 9 27 19 -F 2 11 10 13 12 4 -F 2 5 10 14 23 15 -F 2 10 11 13 9 1 -F 2 6 12 13 15 7 -F 2 6 0 13 12 5 -F 2 20 1 11 13 6 -F 2 10 1 13 15 8 -F 2 5 1 14 18 11 -F 2 5 2 13 18 11 -F 2 7 3 13 14 7 -F 2 11 4 13 14 7 -F 2 6 4 14 14 7 -F 2 10 6 13 23 16 -F 2 5 6 14 12 5 -F 2 16 7 11 14 7 -F 2 8 7 13 19 12 -F 2 14 8 11 10 3 -F 2 7 8 13 14 7 -F 2 9 9 13 23 16 -F 2 20 10 11 14 7 -F 2 10 10 13 12 5 -F 2 9 11 13 9 2 -F 2 9 12 13 15 8 -F 2 14 0 5 14 8 -F 2 7 0 13 12 6 -F 2 25 1 5 23 17 -F 2 12 1 13 15 9 -F 2 6 1 14 18 12 -F 2 10 2 5 11 5 -F 2 14 3 5 10 4 -F 2 7 3 13 14 8 -F 2 18 4 5 19 13 -F 2 9 4 13 14 8 -F 2 7 5 13 12 6 -F 2 12 7 5 25 19 -F 2 6 7 13 19 13 -F 2 6 8 13 14 8 -F 2 8 9 13 23 17 -F 2 12 10 5 22 16 -F 2 6 10 13 12 6 -F 2 16 11 5 11 5 -F 2 8 11 13 9 3 -F 2 11 12 5 17 11 -F 2 5 12 13 15 9 -F 2 23 0 3 6 1 -F 2 12 0 8 12 7 -F 2 17 1 7 6 1 -F 2 8 1 8 22 17 -F 2 15 2 7 22 17 -F 2 7 2 8 6 1 -F 2 12 3 8 6 1 -F 2 6 3 13 14 9 -F 2 6 4 8 18 13 -F 2 9 6 8 25 20 -F 2 18 7 5 25 20 -F 2 9 7 8 23 18 -F 2 16 8 3 6 1 -F 2 5 9 8 12 7 -F 2 23 10 3 19 14 -F 2 12 10 8 23 18 -F 2 6 10 13 12 7 -F 2 6 11 8 10 5 -F 2 7 12 8 14 9 -F 2 31 1 5 23 19 -F 2 16 1 7 6 2 -F 2 8 1 14 18 14 -F 2 12 2 8 6 2 -F 2 6 2 14 15 11 -F 2 7 3 8 6 2 -F 2 5 4 7 6 2 -F 2 10 5 8 5 1 -F 2 5 5 14 23 19 -F 2 5 6 7 5 1 -F 2 6 7 14 14 10 -F 2 6 8 5 5 1 -F 2 6 9 14 12 8 -F 2 14 10 8 23 19 -F 2 7 10 14 23 19 -F 2 5 11 14 15 11 -F 2 15 12 8 14 10 -F 2 7 12 14 9 5 -F 2 17 0 6 14 11 -F 2 9 0 11 4 1 -F 2 4 0 12 4 1 -F 2 31 1 0 11 8 -F 2 16 1 6 11 8 -F 2 8 1 11 13 10 -F 2 24 2 6 23 20 -F 2 12 2 8 6 3 -F 2 6 2 14 15 12 -F 2 10 3 6 19 16 -F 2 29 4 0 6 3 -F 2 15 4 6 10 7 -F 2 7 4 11 8 5 -F 2 6 5 6 28 25 -F 2 3 5 8 5 2 -F 2 7 6 7 5 2 -F 2 11 7 6 5 2 -F 2 6 7 14 14 11 -F 2 5 8 6 25 22 -F 2 17 9 6 22 19 -F 2 9 9 11 15 12 -F 2 23 10 6 16 13 -F 2 12 10 11 14 11 -F 2 6 10 14 23 20 -F 2 11 11 0 4 1 -F 2 6 11 6 17 14 -F 2 8 12 0 4 1 -F 2 4 12 6 11 8 -F 2 15 13 6 23 20 -F 2 7 13 11 9 6 -F 2 21 0 11 4 2 -F 2 11 0 14 12 10 -F 2 5 0 15 10 8 -F 2 12 1 14 18 16 -F 2 6 1 15 13 11 -F 2 10 2 14 15 13 -F 2 6 3 14 14 12 -F 2 24 4 1 6 4 -F 2 12 4 14 14 12 -F 2 6 4 15 9 7 -F 2 6 6 14 12 10 -F 2 4 7 6 5 3 -F 2 16 9 11 15 13 -F 2 8 9 14 12 10 -F 2 19 10 11 14 12 -F 2 10 10 14 23 21 -F 2 5 11 14 15 13 -F 2 6 12 14 9 7 -F 2 12 13 14 24 22 -F 2 6 13 15 21 19 -F 1 71 15 14 6 5 -F 2 17 0 11 4 3 -F 2 8 0 14 12 11 -F 2 12 1 14 18 17 -F 2 6 1 15 13 12 -F 2 7 2 14 15 14 -F 2 12 4 1 6 5 -F 2 6 4 14 14 13 -F 2 8 5 14 23 22 -F 2 9 6 14 12 11 -F 2 4 7 6 5 4 -F 2 6 8 14 19 18 -F 2 5 9 14 12 11 -F 2 17 10 1 6 5 -F 2 9 10 14 23 22 -F 2 8 11 0 4 3 -F 2 12 12 0 4 3 -F 2 6 12 14 9 8 -F 2 13 13 14 24 23 -F 2 7 13 15 21 20 -go - -engine > player2: P 11.803996 11.215721 1 12 3 -P 9.319567 21.808874 1 44 5 -P 14.288424 0.622569 1 42 5 -P 11.865493 5.273785 1 37 3 -P 11.742498 17.157658 1 26 3 -P 4.254093 0.000000 1 18 1 -P 19.353899 22.431443 1 11 1 -P 14.743614 22.324001 1 24 3 -P 8.864377 0.107441 1 15 3 -P 19.854347 0.711934 1 12 1 -P 3.753644 21.719509 1 43 1 -P 8.864814 9.736624 1 14 5 -P 14.743177 12.694819 1 29 5 -P 0.000000 10.809889 1 31 2 -P 23.607991 11.621554 0 54 2 -P 20.396768 15.522861 2 75 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 15 5 6 28 2 -F 1 12 9 10 27 1 -F 1 7 9 10 27 2 -F 1 12 5 6 28 4 -F 1 12 2 10 24 1 -F 1 10 9 10 27 4 -F 1 6 1 5 23 1 -F 1 9 6 5 28 6 -F 1 25 7 5 25 3 -F 1 12 8 7 23 1 -F 1 6 8 10 23 1 -F 1 9 9 10 27 5 -F 1 5 2 10 24 3 -F 1 5 5 10 22 1 -F 1 5 9 10 27 6 -F 1 6 2 10 24 4 -F 1 9 2 10 24 5 -F 1 6 6 13 23 4 -F 1 9 9 10 27 8 -F 1 40 2 1 22 4 -F 1 8 6 13 23 5 -F 1 9 7 13 19 1 -F 1 6 9 13 23 5 -F 1 16 1 9 24 7 -F 1 5 6 13 23 6 -F 1 8 7 13 19 2 -F 1 13 10 9 27 10 -F 1 7 1 3 17 1 -F 1 3 1 9 24 8 -F 1 2 4 9 19 3 -F 1 12 6 3 19 3 -F 1 6 6 9 22 6 -F 1 11 7 3 18 2 -F 1 6 7 9 23 7 -F 1 16 10 3 19 3 -F 1 8 10 9 27 11 -F 1 4 1 3 17 2 -F 1 6 6 3 19 4 -F 1 11 7 3 18 3 -F 1 5 7 13 19 4 -F 1 15 10 3 19 4 -F 1 7 10 8 23 8 -F 1 8 1 8 22 8 -F 1 22 2 1 22 8 -F 1 10 3 1 17 3 -F 1 13 4 8 18 4 -F 1 4 5 1 23 9 -F 1 5 6 8 25 11 -F 1 8 8 1 22 8 -F 1 3 9 1 24 10 -F 1 7 10 8 23 9 -F 1 22 2 1 22 9 -F 1 11 2 4 17 4 -F 1 5 3 1 17 4 -F 1 2 5 1 23 10 -F 1 3 8 1 22 9 -F 1 2 9 1 24 11 -F 1 10 2 12 13 1 -F 1 5 2 13 18 6 -F 1 5 5 12 17 5 -F 1 2 8 12 14 2 -F 1 1 9 12 14 2 -F 1 11 10 12 15 3 -F 1 14 12 2 13 1 -F 1 5 1 13 15 4 -F 1 8 2 12 13 2 -F 1 8 5 12 17 6 -F 1 13 7 2 22 11 -F 1 8 9 12 14 3 -F 1 16 10 2 24 13 -F 1 8 10 12 15 4 -F 1 5 1 13 15 5 -F 1 7 2 13 18 8 -F 1 11 3 13 14 4 -F 1 6 3 14 14 4 -F 1 5 4 13 14 4 -F 1 8 5 13 12 2 -F 1 6 6 13 23 13 -F 1 10 7 13 19 9 -F 1 6 8 13 14 4 -F 1 6 9 13 23 13 -F 1 29 10 2 24 14 -F 1 15 10 6 16 6 -F 1 7 10 13 12 2 -F 1 5 12 13 15 5 -F 1 22 0 9 14 5 -F 1 5 1 13 15 6 -F 1 6 2 13 18 9 -F 1 21 3 9 10 1 -F 1 11 3 13 14 5 -F 1 5 3 14 14 5 -F 1 6 7 13 19 10 -F 1 13 8 9 12 3 -F 1 7 8 13 14 5 -F 1 5 9 13 23 14 -F 1 29 10 9 27 18 -F 1 14 10 13 12 3 -F 1 7 10 14 23 14 -F 1 27 1 5 23 15 -F 1 14 1 9 24 16 -F 1 7 1 13 15 7 -F 1 6 2 13 18 10 -F 1 18 3 9 10 2 -F 1 9 3 13 14 6 -F 1 13 4 13 14 6 -F 1 7 4 14 14 6 -F 1 14 5 9 16 8 -F 1 7 5 13 12 4 -F 1 9 7 13 19 11 -F 1 9 8 13 14 6 -F 1 21 10 9 27 19 -F 1 11 10 13 12 4 -F 1 5 10 14 23 15 -F 1 10 11 13 9 1 -F 1 6 12 13 15 7 -F 1 6 0 13 12 5 -F 1 20 1 11 13 6 -F 1 10 1 13 15 8 -F 1 5 1 14 18 11 -F 1 5 2 13 18 11 -F 1 7 3 13 14 7 -F 1 11 4 13 14 7 -F 1 6 4 14 14 7 -F 1 10 6 13 23 16 -F 1 5 6 14 12 5 -F 1 16 7 11 14 7 -F 1 8 7 13 19 12 -F 1 14 8 11 10 3 -F 1 7 8 13 14 7 -F 1 9 9 13 23 16 -F 1 20 10 11 14 7 -F 1 10 10 13 12 5 -F 1 9 11 13 9 2 -F 1 9 12 13 15 8 -F 1 14 0 5 14 8 -F 1 7 0 13 12 6 -F 1 25 1 5 23 17 -F 1 12 1 13 15 9 -F 1 6 1 14 18 12 -F 1 10 2 5 11 5 -F 1 14 3 5 10 4 -F 1 7 3 13 14 8 -F 1 18 4 5 19 13 -F 1 9 4 13 14 8 -F 1 7 5 13 12 6 -F 1 12 7 5 25 19 -F 1 6 7 13 19 13 -F 1 6 8 13 14 8 -F 1 8 9 13 23 17 -F 1 12 10 5 22 16 -F 1 6 10 13 12 6 -F 1 16 11 5 11 5 -F 1 8 11 13 9 3 -F 1 11 12 5 17 11 -F 1 5 12 13 15 9 -F 1 23 0 3 6 1 -F 1 12 0 8 12 7 -F 1 17 1 7 6 1 -F 1 8 1 8 22 17 -F 1 15 2 7 22 17 -F 1 7 2 8 6 1 -F 1 12 3 8 6 1 -F 1 6 3 13 14 9 -F 1 6 4 8 18 13 -F 1 9 6 8 25 20 -F 1 18 7 5 25 20 -F 1 9 7 8 23 18 -F 1 16 8 3 6 1 -F 1 5 9 8 12 7 -F 1 23 10 3 19 14 -F 1 12 10 8 23 18 -F 1 6 10 13 12 7 -F 1 6 11 8 10 5 -F 1 7 12 8 14 9 -F 1 31 1 5 23 19 -F 1 16 1 7 6 2 -F 1 8 1 14 18 14 -F 1 12 2 8 6 2 -F 1 6 2 14 15 11 -F 1 7 3 8 6 2 -F 1 5 4 7 6 2 -F 1 10 5 8 5 1 -F 1 5 5 14 23 19 -F 1 5 6 7 5 1 -F 1 6 7 14 14 10 -F 1 6 8 5 5 1 -F 1 6 9 14 12 8 -F 1 14 10 8 23 19 -F 1 7 10 14 23 19 -F 1 5 11 14 15 11 -F 1 15 12 8 14 10 -F 1 7 12 14 9 5 -F 1 17 0 6 14 11 -F 1 9 0 11 4 1 -F 1 4 0 12 4 1 -F 1 31 1 0 11 8 -F 1 16 1 6 11 8 -F 1 8 1 11 13 10 -F 1 24 2 6 23 20 -F 1 12 2 8 6 3 -F 1 6 2 14 15 12 -F 1 10 3 6 19 16 -F 1 29 4 0 6 3 -F 1 15 4 6 10 7 -F 1 7 4 11 8 5 -F 1 6 5 6 28 25 -F 1 3 5 8 5 2 -F 1 7 6 7 5 2 -F 1 11 7 6 5 2 -F 1 6 7 14 14 11 -F 1 5 8 6 25 22 -F 1 17 9 6 22 19 -F 1 9 9 11 15 12 -F 1 23 10 6 16 13 -F 1 12 10 11 14 11 -F 1 6 10 14 23 20 -F 1 11 11 0 4 1 -F 1 6 11 6 17 14 -F 1 8 12 0 4 1 -F 1 4 12 6 11 8 -F 1 15 13 6 23 20 -F 1 7 13 11 9 6 -F 1 21 0 11 4 2 -F 1 11 0 14 12 10 -F 1 5 0 15 10 8 -F 1 12 1 14 18 16 -F 1 6 1 15 13 11 -F 1 10 2 14 15 13 -F 1 6 3 14 14 12 -F 1 24 4 1 6 4 -F 1 12 4 14 14 12 -F 1 6 4 15 9 7 -F 1 6 6 14 12 10 -F 1 4 7 6 5 3 -F 1 16 9 11 15 13 -F 1 8 9 14 12 10 -F 1 19 10 11 14 12 -F 1 10 10 14 23 21 -F 1 5 11 14 15 13 -F 1 6 12 14 9 7 -F 1 12 13 14 24 22 -F 1 6 13 15 21 19 -F 2 71 15 14 6 5 -F 1 17 0 11 4 3 -F 1 8 0 14 12 11 -F 1 12 1 14 18 17 -F 1 6 1 15 13 12 -F 1 7 2 14 15 14 -F 1 12 4 1 6 5 -F 1 6 4 14 14 13 -F 1 8 5 14 23 22 -F 1 9 6 14 12 11 -F 1 4 7 6 5 4 -F 1 6 8 14 19 18 -F 1 5 9 14 12 11 -F 1 17 10 1 6 5 -F 1 9 10 14 23 22 -F 1 8 11 0 4 3 -F 1 12 12 0 4 3 -F 1 6 12 14 9 8 -F 1 13 13 14 24 23 -F 1 7 13 15 21 20 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 2 0 -player2 > engine: 0 4 6 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 2 0 -player2 > engine: 1 1 22 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 2 0 -player2 > engine: 1 4 11 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0 -player2 > engine: comparing 1 and 14, gives 1 0 0.04558863060331812 -player2 > engine: 1 14 5 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 21 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0 -player2 > engine: comparing 2 and 14, gives 1 0 0.05549243454274729 -player2 > engine: 2 14 10 -player2 > engine: comparing 2 and 15, gives 1 0 0.07451683324510384 -player2 > engine: 2 15 5 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 2 0 -player2 > engine: 3 2 18 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0 -player2 > engine: comparing 3 and 14, gives 1 0 0.09988694591354103 -player2 > engine: 3 14 9 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 2 0 -player2 > engine: 4 1 13 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 2 0 -player2 > engine: 4 4 6 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0 -player2 > engine: comparing 5 and 14, gives 1 0 0.17718658719013242 -player2 > engine: 5 14 9 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0 -player2 > engine: comparing 6 and 14, gives 1 0 0.34432768245496265 -player2 > engine: 6 14 5 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 2 0 -player2 > engine: 7 1 12 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 2 0 -player2 > engine: 7 4 6 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0 -player2 > engine: comparing 8 and 14, gives 1 0 0.07127486247407648 -player2 > engine: 8 14 7 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0 -player2 > engine: comparing 9 and 14, gives 1 0 0.3467010984295745 -player2 > engine: 9 14 6 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 2 0 -player2 > engine: 10 1 21 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 0 0 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 0 0 0 -player2 > engine: comparing 10 and 14, gives 1 0 0.17957565458240538 -player2 > engine: 10 14 11 -player2 > engine: comparing 10 and 15, gives 1 0 0.3378515362372791 -player2 > engine: 10 15 5 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0 -player2 > engine: comparing 11 and 14, gives 1 0 0.05382426922307793 -player2 > engine: 11 14 7 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 2 0 -player2 > engine: 12 4 14 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0 -player2 > engine: comparing 12 and 14, gives 1 0 0.08959020236950047 -player2 > engine: 12 14 7 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: comparing 13 and 0, gives 0 0 0 -player2 > engine: comparing 13 and 1, gives 0 0 0 -player2 > engine: comparing 13 and 2, gives 0 2 0 -player2 > engine: 13 2 15 -player2 > engine: comparing 13 and 3, gives 0 0 0 -player2 > engine: comparing 13 and 4, gives 0 0 0 -player2 > engine: comparing 13 and 5, gives 0 0 0 -player2 > engine: comparing 13 and 6, gives 0 0 0 -player2 > engine: comparing 13 and 7, gives 0 0 0 -player2 > engine: comparing 13 and 8, gives 0 0 0 -player2 > engine: comparing 13 and 9, gives 0 0 0 -player2 > engine: comparing 13 and 10, gives 0 0 0 -player2 > engine: comparing 13 and 11, gives 0 0 0 -player2 > engine: comparing 13 and 12, gives 0 0 0 -player2 > engine: comparing 13 and 13, gives 0 0 0 -player2 > engine: comparing 13 and 14, gives 1 0 0.08466705183160025 -player2 > engine: 13 14 8 -player2 > engine: comparing 13 and 15, gives 0 0 0.14330624728818764 -player2 > engine: comparing 13 and 16, gives 0 0 0.5937142863110723 -player2 > engine: comparing 13 and 17, gives 0 0 0.11410854030250688 -player2 > engine: comparing 13 and 18, gives 0 0 0.242703882791183 -player2 > engine: comparing 13 and 19, gives 0 0 0.11321970317438007 -player2 > engine: comparing 13 and 20, gives 0 0 0.04135343135737552 -player2 > engine: comparing 13 and 21, gives 0 0 0.8537779168222296 -player2 > engine: comparing 13 and 22, gives 0 0 0.14242224698289055 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 28 3 -P 9.319567 21.808874 2 33 5 -P 14.288424 0.622569 2 46 5 -P 11.865493 5.273785 2 59 3 -P 11.742498 17.157658 2 16 3 -P 4.254093 0.000000 2 22 1 -P 19.353899 22.431443 2 7 1 -P 14.743614 22.324001 2 43 3 -P 8.864377 0.107441 2 40 3 -P 19.854347 0.711934 2 28 1 -P 3.753644 21.719509 2 42 1 -P 8.864814 9.736624 2 21 5 -P 14.743177 12.694819 2 27 5 -P 0.000000 10.809889 2 29 2 -P 23.607991 11.621554 0 54 2 -P 20.396768 15.522861 1 78 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 15 5 6 28 1 -F 2 7 9 10 27 1 -F 2 12 5 6 28 3 -F 2 10 9 10 27 3 -F 2 9 6 5 28 5 -F 2 25 7 5 25 2 -F 2 9 9 10 27 4 -F 2 5 2 10 24 2 -F 2 5 9 10 27 5 -F 2 6 2 10 24 3 -F 2 9 2 10 24 4 -F 2 6 6 13 23 3 -F 2 9 9 10 27 7 -F 2 40 2 1 22 3 -F 2 8 6 13 23 4 -F 2 6 9 13 23 4 -F 2 16 1 9 24 6 -F 2 5 6 13 23 5 -F 2 8 7 13 19 1 -F 2 13 10 9 27 9 -F 2 3 1 9 24 7 -F 2 2 4 9 19 2 -F 2 12 6 3 19 2 -F 2 6 6 9 22 5 -F 2 11 7 3 18 1 -F 2 6 7 9 23 6 -F 2 16 10 3 19 2 -F 2 8 10 9 27 10 -F 2 4 1 3 17 1 -F 2 6 6 3 19 3 -F 2 11 7 3 18 2 -F 2 5 7 13 19 3 -F 2 15 10 3 19 3 -F 2 7 10 8 23 7 -F 2 8 1 8 22 7 -F 2 22 2 1 22 7 -F 2 10 3 1 17 2 -F 2 13 4 8 18 3 -F 2 4 5 1 23 8 -F 2 5 6 8 25 10 -F 2 8 8 1 22 7 -F 2 3 9 1 24 9 -F 2 7 10 8 23 8 -F 2 22 2 1 22 8 -F 2 11 2 4 17 3 -F 2 5 3 1 17 3 -F 2 2 5 1 23 9 -F 2 3 8 1 22 8 -F 2 2 9 1 24 10 -F 2 5 2 13 18 5 -F 2 5 5 12 17 4 -F 2 2 8 12 14 1 -F 2 1 9 12 14 1 -F 2 11 10 12 15 2 -F 2 5 1 13 15 3 -F 2 8 2 12 13 1 -F 2 8 5 12 17 5 -F 2 13 7 2 22 10 -F 2 8 9 12 14 2 -F 2 16 10 2 24 12 -F 2 8 10 12 15 3 -F 2 5 1 13 15 4 -F 2 7 2 13 18 7 -F 2 11 3 13 14 3 -F 2 6 3 14 14 3 -F 2 5 4 13 14 3 -F 2 8 5 13 12 1 -F 2 6 6 13 23 12 -F 2 10 7 13 19 8 -F 2 6 8 13 14 3 -F 2 6 9 13 23 12 -F 2 29 10 2 24 13 -F 2 15 10 6 16 5 -F 2 7 10 13 12 1 -F 2 5 12 13 15 4 -F 2 22 0 9 14 4 -F 2 5 1 13 15 5 -F 2 6 2 13 18 8 -F 2 11 3 13 14 4 -F 2 5 3 14 14 4 -F 2 6 7 13 19 9 -F 2 13 8 9 12 2 -F 2 7 8 13 14 4 -F 2 5 9 13 23 13 -F 2 29 10 9 27 17 -F 2 14 10 13 12 2 -F 2 7 10 14 23 13 -F 2 27 1 5 23 14 -F 2 14 1 9 24 15 -F 2 7 1 13 15 6 -F 2 6 2 13 18 9 -F 2 18 3 9 10 1 -F 2 9 3 13 14 5 -F 2 13 4 13 14 5 -F 2 7 4 14 14 5 -F 2 14 5 9 16 7 -F 2 7 5 13 12 3 -F 2 9 7 13 19 10 -F 2 9 8 13 14 5 -F 2 21 10 9 27 18 -F 2 11 10 13 12 3 -F 2 5 10 14 23 14 -F 2 6 12 13 15 6 -F 2 6 0 13 12 4 -F 2 20 1 11 13 5 -F 2 10 1 13 15 7 -F 2 5 1 14 18 10 -F 2 5 2 13 18 10 -F 2 7 3 13 14 6 -F 2 11 4 13 14 6 -F 2 6 4 14 14 6 -F 2 10 6 13 23 15 -F 2 5 6 14 12 4 -F 2 16 7 11 14 6 -F 2 8 7 13 19 11 -F 2 14 8 11 10 2 -F 2 7 8 13 14 6 -F 2 9 9 13 23 15 -F 2 20 10 11 14 6 -F 2 10 10 13 12 4 -F 2 9 11 13 9 1 -F 2 9 12 13 15 7 -F 2 14 0 5 14 7 -F 2 7 0 13 12 5 -F 2 25 1 5 23 16 -F 2 12 1 13 15 8 -F 2 6 1 14 18 11 -F 2 10 2 5 11 4 -F 2 14 3 5 10 3 -F 2 7 3 13 14 7 -F 2 18 4 5 19 12 -F 2 9 4 13 14 7 -F 2 7 5 13 12 5 -F 2 12 7 5 25 18 -F 2 6 7 13 19 12 -F 2 6 8 13 14 7 -F 2 8 9 13 23 16 -F 2 12 10 5 22 15 -F 2 6 10 13 12 5 -F 2 16 11 5 11 4 -F 2 8 11 13 9 2 -F 2 11 12 5 17 10 -F 2 5 12 13 15 8 -F 2 12 0 8 12 6 -F 2 8 1 8 22 16 -F 2 15 2 7 22 16 -F 2 6 3 13 14 8 -F 2 6 4 8 18 12 -F 2 9 6 8 25 19 -F 2 18 7 5 25 19 -F 2 9 7 8 23 17 -F 2 5 9 8 12 6 -F 2 23 10 3 19 13 -F 2 12 10 8 23 17 -F 2 6 10 13 12 6 -F 2 6 11 8 10 4 -F 2 7 12 8 14 8 -F 2 31 1 5 23 18 -F 2 16 1 7 6 1 -F 2 8 1 14 18 13 -F 2 12 2 8 6 1 -F 2 6 2 14 15 10 -F 2 7 3 8 6 1 -F 2 5 4 7 6 1 -F 2 5 5 14 23 18 -F 2 6 7 14 14 9 -F 2 6 9 14 12 7 -F 2 14 10 8 23 18 -F 2 7 10 14 23 18 -F 2 5 11 14 15 10 -F 2 15 12 8 14 9 -F 2 7 12 14 9 4 -F 2 17 0 6 14 10 -F 2 31 1 0 11 7 -F 2 16 1 6 11 7 -F 2 8 1 11 13 9 -F 2 24 2 6 23 19 -F 2 12 2 8 6 2 -F 2 6 2 14 15 11 -F 2 10 3 6 19 15 -F 2 29 4 0 6 2 -F 2 15 4 6 10 6 -F 2 7 4 11 8 4 -F 2 6 5 6 28 24 -F 2 3 5 8 5 1 -F 2 7 6 7 5 1 -F 2 11 7 6 5 1 -F 2 6 7 14 14 10 -F 2 5 8 6 25 21 -F 2 17 9 6 22 18 -F 2 9 9 11 15 11 -F 2 23 10 6 16 12 -F 2 12 10 11 14 10 -F 2 6 10 14 23 19 -F 2 6 11 6 17 13 -F 2 4 12 6 11 7 -F 2 15 13 6 23 19 -F 2 7 13 11 9 5 -F 2 21 0 11 4 1 -F 2 11 0 14 12 9 -F 2 5 0 15 10 7 -F 2 12 1 14 18 15 -F 2 6 1 15 13 10 -F 2 10 2 14 15 12 -F 2 6 3 14 14 11 -F 2 24 4 1 6 3 -F 2 12 4 14 14 11 -F 2 6 4 15 9 6 -F 2 6 6 14 12 9 -F 2 4 7 6 5 2 -F 2 16 9 11 15 12 -F 2 8 9 14 12 9 -F 2 19 10 11 14 11 -F 2 10 10 14 23 20 -F 2 5 11 14 15 12 -F 2 6 12 14 9 6 -F 2 12 13 14 24 21 -F 2 6 13 15 21 18 -F 1 71 15 14 6 4 -F 2 17 0 11 4 2 -F 2 8 0 14 12 10 -F 2 12 1 14 18 16 -F 2 6 1 15 13 11 -F 2 7 2 14 15 13 -F 2 12 4 1 6 4 -F 2 6 4 14 14 12 -F 2 8 5 14 23 21 -F 2 9 6 14 12 10 -F 2 4 7 6 5 3 -F 2 6 8 14 19 17 -F 2 5 9 14 12 10 -F 2 17 10 1 6 4 -F 2 9 10 14 23 21 -F 2 8 11 0 4 2 -F 2 12 12 0 4 2 -F 2 6 12 14 9 7 -F 2 13 13 14 24 22 -F 2 7 13 15 21 19 -F 2 6 0 4 6 5 -F 2 11 1 4 6 5 -F 2 5 1 14 18 17 -F 2 10 2 14 15 14 -F 2 5 2 15 17 16 -F 2 18 3 2 6 5 -F 2 9 3 14 14 13 -F 2 13 4 1 6 5 -F 2 9 5 14 23 22 -F 2 5 6 14 12 11 -F 2 12 7 1 6 5 -F 2 6 7 4 6 5 -F 2 7 8 14 19 18 -F 2 6 9 14 12 11 -F 2 21 10 1 6 5 -F 2 11 10 14 23 22 -F 2 5 10 15 18 17 -F 2 7 11 14 15 14 -F 2 14 12 4 6 5 -F 2 7 12 14 9 8 -F 2 15 13 2 18 17 -F 2 8 13 14 24 23 -go - -engine > player2: P 11.803996 11.215721 1 28 3 -P 9.319567 21.808874 1 33 5 -P 14.288424 0.622569 1 46 5 -P 11.865493 5.273785 1 59 3 -P 11.742498 17.157658 1 16 3 -P 4.254093 0.000000 1 22 1 -P 19.353899 22.431443 1 7 1 -P 14.743614 22.324001 1 43 3 -P 8.864377 0.107441 1 40 3 -P 19.854347 0.711934 1 28 1 -P 3.753644 21.719509 1 42 1 -P 8.864814 9.736624 1 21 5 -P 14.743177 12.694819 1 27 5 -P 0.000000 10.809889 1 29 2 -P 23.607991 11.621554 0 54 2 -P 20.396768 15.522861 2 78 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 15 5 6 28 1 -F 1 7 9 10 27 1 -F 1 12 5 6 28 3 -F 1 10 9 10 27 3 -F 1 9 6 5 28 5 -F 1 25 7 5 25 2 -F 1 9 9 10 27 4 -F 1 5 2 10 24 2 -F 1 5 9 10 27 5 -F 1 6 2 10 24 3 -F 1 9 2 10 24 4 -F 1 6 6 13 23 3 -F 1 9 9 10 27 7 -F 1 40 2 1 22 3 -F 1 8 6 13 23 4 -F 1 6 9 13 23 4 -F 1 16 1 9 24 6 -F 1 5 6 13 23 5 -F 1 8 7 13 19 1 -F 1 13 10 9 27 9 -F 1 3 1 9 24 7 -F 1 2 4 9 19 2 -F 1 12 6 3 19 2 -F 1 6 6 9 22 5 -F 1 11 7 3 18 1 -F 1 6 7 9 23 6 -F 1 16 10 3 19 2 -F 1 8 10 9 27 10 -F 1 4 1 3 17 1 -F 1 6 6 3 19 3 -F 1 11 7 3 18 2 -F 1 5 7 13 19 3 -F 1 15 10 3 19 3 -F 1 7 10 8 23 7 -F 1 8 1 8 22 7 -F 1 22 2 1 22 7 -F 1 10 3 1 17 2 -F 1 13 4 8 18 3 -F 1 4 5 1 23 8 -F 1 5 6 8 25 10 -F 1 8 8 1 22 7 -F 1 3 9 1 24 9 -F 1 7 10 8 23 8 -F 1 22 2 1 22 8 -F 1 11 2 4 17 3 -F 1 5 3 1 17 3 -F 1 2 5 1 23 9 -F 1 3 8 1 22 8 -F 1 2 9 1 24 10 -F 1 5 2 13 18 5 -F 1 5 5 12 17 4 -F 1 2 8 12 14 1 -F 1 1 9 12 14 1 -F 1 11 10 12 15 2 -F 1 5 1 13 15 3 -F 1 8 2 12 13 1 -F 1 8 5 12 17 5 -F 1 13 7 2 22 10 -F 1 8 9 12 14 2 -F 1 16 10 2 24 12 -F 1 8 10 12 15 3 -F 1 5 1 13 15 4 -F 1 7 2 13 18 7 -F 1 11 3 13 14 3 -F 1 6 3 14 14 3 -F 1 5 4 13 14 3 -F 1 8 5 13 12 1 -F 1 6 6 13 23 12 -F 1 10 7 13 19 8 -F 1 6 8 13 14 3 -F 1 6 9 13 23 12 -F 1 29 10 2 24 13 -F 1 15 10 6 16 5 -F 1 7 10 13 12 1 -F 1 5 12 13 15 4 -F 1 22 0 9 14 4 -F 1 5 1 13 15 5 -F 1 6 2 13 18 8 -F 1 11 3 13 14 4 -F 1 5 3 14 14 4 -F 1 6 7 13 19 9 -F 1 13 8 9 12 2 -F 1 7 8 13 14 4 -F 1 5 9 13 23 13 -F 1 29 10 9 27 17 -F 1 14 10 13 12 2 -F 1 7 10 14 23 13 -F 1 27 1 5 23 14 -F 1 14 1 9 24 15 -F 1 7 1 13 15 6 -F 1 6 2 13 18 9 -F 1 18 3 9 10 1 -F 1 9 3 13 14 5 -F 1 13 4 13 14 5 -F 1 7 4 14 14 5 -F 1 14 5 9 16 7 -F 1 7 5 13 12 3 -F 1 9 7 13 19 10 -F 1 9 8 13 14 5 -F 1 21 10 9 27 18 -F 1 11 10 13 12 3 -F 1 5 10 14 23 14 -F 1 6 12 13 15 6 -F 1 6 0 13 12 4 -F 1 20 1 11 13 5 -F 1 10 1 13 15 7 -F 1 5 1 14 18 10 -F 1 5 2 13 18 10 -F 1 7 3 13 14 6 -F 1 11 4 13 14 6 -F 1 6 4 14 14 6 -F 1 10 6 13 23 15 -F 1 5 6 14 12 4 -F 1 16 7 11 14 6 -F 1 8 7 13 19 11 -F 1 14 8 11 10 2 -F 1 7 8 13 14 6 -F 1 9 9 13 23 15 -F 1 20 10 11 14 6 -F 1 10 10 13 12 4 -F 1 9 11 13 9 1 -F 1 9 12 13 15 7 -F 1 14 0 5 14 7 -F 1 7 0 13 12 5 -F 1 25 1 5 23 16 -F 1 12 1 13 15 8 -F 1 6 1 14 18 11 -F 1 10 2 5 11 4 -F 1 14 3 5 10 3 -F 1 7 3 13 14 7 -F 1 18 4 5 19 12 -F 1 9 4 13 14 7 -F 1 7 5 13 12 5 -F 1 12 7 5 25 18 -F 1 6 7 13 19 12 -F 1 6 8 13 14 7 -F 1 8 9 13 23 16 -F 1 12 10 5 22 15 -F 1 6 10 13 12 5 -F 1 16 11 5 11 4 -F 1 8 11 13 9 2 -F 1 11 12 5 17 10 -F 1 5 12 13 15 8 -F 1 12 0 8 12 6 -F 1 8 1 8 22 16 -F 1 15 2 7 22 16 -F 1 6 3 13 14 8 -F 1 6 4 8 18 12 -F 1 9 6 8 25 19 -F 1 18 7 5 25 19 -F 1 9 7 8 23 17 -F 1 5 9 8 12 6 -F 1 23 10 3 19 13 -F 1 12 10 8 23 17 -F 1 6 10 13 12 6 -F 1 6 11 8 10 4 -F 1 7 12 8 14 8 -F 1 31 1 5 23 18 -F 1 16 1 7 6 1 -F 1 8 1 14 18 13 -F 1 12 2 8 6 1 -F 1 6 2 14 15 10 -F 1 7 3 8 6 1 -F 1 5 4 7 6 1 -F 1 5 5 14 23 18 -F 1 6 7 14 14 9 -F 1 6 9 14 12 7 -F 1 14 10 8 23 18 -F 1 7 10 14 23 18 -F 1 5 11 14 15 10 -F 1 15 12 8 14 9 -F 1 7 12 14 9 4 -F 1 17 0 6 14 10 -F 1 31 1 0 11 7 -F 1 16 1 6 11 7 -F 1 8 1 11 13 9 -F 1 24 2 6 23 19 -F 1 12 2 8 6 2 -F 1 6 2 14 15 11 -F 1 10 3 6 19 15 -F 1 29 4 0 6 2 -F 1 15 4 6 10 6 -F 1 7 4 11 8 4 -F 1 6 5 6 28 24 -F 1 3 5 8 5 1 -F 1 7 6 7 5 1 -F 1 11 7 6 5 1 -F 1 6 7 14 14 10 -F 1 5 8 6 25 21 -F 1 17 9 6 22 18 -F 1 9 9 11 15 11 -F 1 23 10 6 16 12 -F 1 12 10 11 14 10 -F 1 6 10 14 23 19 -F 1 6 11 6 17 13 -F 1 4 12 6 11 7 -F 1 15 13 6 23 19 -F 1 7 13 11 9 5 -F 1 21 0 11 4 1 -F 1 11 0 14 12 9 -F 1 5 0 15 10 7 -F 1 12 1 14 18 15 -F 1 6 1 15 13 10 -F 1 10 2 14 15 12 -F 1 6 3 14 14 11 -F 1 24 4 1 6 3 -F 1 12 4 14 14 11 -F 1 6 4 15 9 6 -F 1 6 6 14 12 9 -F 1 4 7 6 5 2 -F 1 16 9 11 15 12 -F 1 8 9 14 12 9 -F 1 19 10 11 14 11 -F 1 10 10 14 23 20 -F 1 5 11 14 15 12 -F 1 6 12 14 9 6 -F 1 12 13 14 24 21 -F 1 6 13 15 21 18 -F 2 71 15 14 6 4 -F 1 17 0 11 4 2 -F 1 8 0 14 12 10 -F 1 12 1 14 18 16 -F 1 6 1 15 13 11 -F 1 7 2 14 15 13 -F 1 12 4 1 6 4 -F 1 6 4 14 14 12 -F 1 8 5 14 23 21 -F 1 9 6 14 12 10 -F 1 4 7 6 5 3 -F 1 6 8 14 19 17 -F 1 5 9 14 12 10 -F 1 17 10 1 6 4 -F 1 9 10 14 23 21 -F 1 8 11 0 4 2 -F 1 12 12 0 4 2 -F 1 6 12 14 9 7 -F 1 13 13 14 24 22 -F 1 7 13 15 21 19 -F 1 6 0 4 6 5 -F 1 11 1 4 6 5 -F 1 5 1 14 18 17 -F 1 10 2 14 15 14 -F 1 5 2 15 17 16 -F 1 18 3 2 6 5 -F 1 9 3 14 14 13 -F 1 13 4 1 6 5 -F 1 9 5 14 23 22 -F 1 5 6 14 12 11 -F 1 12 7 1 6 5 -F 1 6 7 4 6 5 -F 1 7 8 14 19 18 -F 1 6 9 14 12 11 -F 1 21 10 1 6 5 -F 1 11 10 14 23 22 -F 1 5 10 15 18 17 -F 1 7 11 14 15 14 -F 1 14 12 4 6 5 -F 1 7 12 14 9 8 -F 1 15 13 2 18 17 -F 1 8 13 14 24 23 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 2 0 -player2 > engine: 0 2 14 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0 -player2 > engine: comparing 0 and 14, gives 1 0 0.11288940705410845 -player2 > engine: 0 14 7 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 2 0 -player2 > engine: 1 2 16 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0 -player2 > engine: comparing 1 and 14, gives 1 0 0.04558863060331812 -player2 > engine: 1 14 8 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 23 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0 -player2 > engine: comparing 2 and 14, gives 1 0 0.05549243454274729 -player2 > engine: 2 14 11 -player2 > engine: comparing 2 and 15, gives 1 0 0.07451683324510384 -player2 > engine: 2 15 6 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 2 0 -player2 > engine: 3 2 29 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 2 0 -player2 > engine: 3 4 15 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0 -player2 > engine: comparing 3 and 14, gives 1 0 0.09988694591354103 -player2 > engine: 3 14 7 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 2 0 -player2 > engine: 4 2 8 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 2 0 -player2 > engine: 5 2 11 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0 -player2 > engine: comparing 5 and 14, gives 1 0 0.17718658719013242 -player2 > engine: 5 14 5 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 2 0 -player2 > engine: 6 2 3 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 2 0 -player2 > engine: 7 2 21 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0 -player2 > engine: comparing 7 and 14, gives 1 0 0.095945721857336 -player2 > engine: 7 14 11 -player2 > engine: comparing 7 and 15, gives 1 0 0.22614589234384827 -player2 > engine: 7 15 5 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 2 0 -player2 > engine: 8 2 20 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0 -player2 > engine: comparing 8 and 14, gives 1 0 0.07127486247407648 -player2 > engine: 8 14 10 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 2 0 -player2 > engine: 9 2 14 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0 -player2 > engine: comparing 9 and 14, gives 1 0 0.3467010984295745 -player2 > engine: 9 14 7 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 0 0 -player2 > engine: comparing 10 and 2, gives 0 2 0 -player2 > engine: 10 2 21 -player2 > engine: comparing 10 and 3, gives 0 0 0 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 0 0 0 -player2 > engine: comparing 10 and 14, gives 1 0 0.17957565458240538 -player2 > engine: 10 14 10 -player2 > engine: comparing 10 and 15, gives 1 0 0.3378515362372791 -player2 > engine: 10 15 5 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 10 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 2 0 -player2 > engine: 11 2 5 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 13 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 2 0 -player2 > engine: 12 2 7 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: comparing 13 and 0, gives 0 0 0 -player2 > engine: comparing 13 and 1, gives 0 0 0 -player2 > engine: comparing 13 and 2, gives 0 2 0 -player2 > engine: 13 2 14 -player2 > engine: comparing 13 and 3, gives 0 0 0 -player2 > engine: comparing 13 and 4, gives 0 0 0 -player2 > engine: comparing 13 and 5, gives 0 0 0 -player2 > engine: comparing 13 and 6, gives 0 0 0 -player2 > engine: comparing 13 and 7, gives 0 0 0 -player2 > engine: comparing 13 and 8, gives 0 0 0 -player2 > engine: comparing 13 and 9, gives 0 0 0 -player2 > engine: comparing 13 and 10, gives 0 0 0 -player2 > engine: comparing 13 and 11, gives 0 0 0 -player2 > engine: comparing 13 and 12, gives 0 0 0 -player2 > engine: comparing 13 and 13, gives 0 0 0 -player2 > engine: comparing 13 and 14, gives 1 0 0.08466705183160025 -player2 > engine: 13 14 7 -player2 > engine: comparing 13 and 15, gives 0 0 0.14330624728818764 -player2 > engine: comparing 13 and 16, gives 0 0 0.5937142863110723 -player2 > engine: comparing 13 and 17, gives 0 0 0.11410854030250688 -player2 > engine: comparing 13 and 18, gives 0 0 0.242703882791183 -player2 > engine: comparing 13 and 19, gives 0 0 0.11321970317438007 -player2 > engine: comparing 13 and 20, gives 0 0 0.04135343135737552 -player2 > engine: comparing 13 and 21, gives 0 0 0.8537779168222296 -player2 > engine: comparing 13 and 22, gives 0 0 0.14242224698289055 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 10 3 -P 9.319567 21.808874 2 14 5 -P 14.288424 0.622569 2 34 5 -P 11.865493 5.273785 2 26 3 -P 11.742498 17.157658 2 11 3 -P 4.254093 0.000000 2 7 1 -P 19.353899 22.431443 2 31 1 -P 14.743614 22.324001 2 37 3 -P 8.864377 0.107441 2 35 3 -P 19.854347 0.711934 2 26 1 -P 3.753644 21.719509 2 14 1 -P 8.864814 9.736624 2 32 5 -P 14.743177 12.694819 2 23 5 -P 0.000000 10.809889 2 42 2 -P 23.607991 11.621554 0 54 2 -P 20.396768 15.522861 1 81 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 12 5 6 28 2 -F 2 10 9 10 27 2 -F 2 9 6 5 28 4 -F 2 25 7 5 25 1 -F 2 9 9 10 27 3 -F 2 5 2 10 24 1 -F 2 5 9 10 27 4 -F 2 6 2 10 24 2 -F 2 9 2 10 24 3 -F 2 6 6 13 23 2 -F 2 9 9 10 27 6 -F 2 40 2 1 22 2 -F 2 8 6 13 23 3 -F 2 6 9 13 23 3 -F 2 16 1 9 24 5 -F 2 5 6 13 23 4 -F 2 13 10 9 27 8 -F 2 3 1 9 24 6 -F 2 2 4 9 19 1 -F 2 12 6 3 19 1 -F 2 6 6 9 22 4 -F 2 6 7 9 23 5 -F 2 16 10 3 19 1 -F 2 8 10 9 27 9 -F 2 6 6 3 19 2 -F 2 11 7 3 18 1 -F 2 5 7 13 19 2 -F 2 15 10 3 19 2 -F 2 7 10 8 23 6 -F 2 8 1 8 22 6 -F 2 22 2 1 22 6 -F 2 10 3 1 17 1 -F 2 13 4 8 18 2 -F 2 4 5 1 23 7 -F 2 5 6 8 25 9 -F 2 8 8 1 22 6 -F 2 3 9 1 24 8 -F 2 7 10 8 23 7 -F 2 22 2 1 22 7 -F 2 11 2 4 17 2 -F 2 5 3 1 17 2 -F 2 2 5 1 23 8 -F 2 3 8 1 22 7 -F 2 2 9 1 24 9 -F 2 5 2 13 18 4 -F 2 5 5 12 17 3 -F 2 11 10 12 15 1 -F 2 5 1 13 15 2 -F 2 8 5 12 17 4 -F 2 13 7 2 22 9 -F 2 8 9 12 14 1 -F 2 16 10 2 24 11 -F 2 8 10 12 15 2 -F 2 5 1 13 15 3 -F 2 7 2 13 18 6 -F 2 11 3 13 14 2 -F 2 6 3 14 14 2 -F 2 5 4 13 14 2 -F 2 6 6 13 23 11 -F 2 10 7 13 19 7 -F 2 6 8 13 14 2 -F 2 6 9 13 23 11 -F 2 29 10 2 24 12 -F 2 15 10 6 16 4 -F 2 5 12 13 15 3 -F 2 22 0 9 14 3 -F 2 5 1 13 15 4 -F 2 6 2 13 18 7 -F 2 11 3 13 14 3 -F 2 5 3 14 14 3 -F 2 6 7 13 19 8 -F 2 13 8 9 12 1 -F 2 7 8 13 14 3 -F 2 5 9 13 23 12 -F 2 29 10 9 27 16 -F 2 14 10 13 12 1 -F 2 7 10 14 23 12 -F 2 27 1 5 23 13 -F 2 14 1 9 24 14 -F 2 7 1 13 15 5 -F 2 6 2 13 18 8 -F 2 9 3 13 14 4 -F 2 13 4 13 14 4 -F 2 7 4 14 14 4 -F 2 14 5 9 16 6 -F 2 7 5 13 12 2 -F 2 9 7 13 19 9 -F 2 9 8 13 14 4 -F 2 21 10 9 27 17 -F 2 11 10 13 12 2 -F 2 5 10 14 23 13 -F 2 6 12 13 15 5 -F 2 6 0 13 12 3 -F 2 20 1 11 13 4 -F 2 10 1 13 15 6 -F 2 5 1 14 18 9 -F 2 5 2 13 18 9 -F 2 7 3 13 14 5 -F 2 11 4 13 14 5 -F 2 6 4 14 14 5 -F 2 10 6 13 23 14 -F 2 5 6 14 12 3 -F 2 16 7 11 14 5 -F 2 8 7 13 19 10 -F 2 14 8 11 10 1 -F 2 7 8 13 14 5 -F 2 9 9 13 23 14 -F 2 20 10 11 14 5 -F 2 10 10 13 12 3 -F 2 9 12 13 15 6 -F 2 14 0 5 14 6 -F 2 7 0 13 12 4 -F 2 25 1 5 23 15 -F 2 12 1 13 15 7 -F 2 6 1 14 18 10 -F 2 10 2 5 11 3 -F 2 14 3 5 10 2 -F 2 7 3 13 14 6 -F 2 18 4 5 19 11 -F 2 9 4 13 14 6 -F 2 7 5 13 12 4 -F 2 12 7 5 25 17 -F 2 6 7 13 19 11 -F 2 6 8 13 14 6 -F 2 8 9 13 23 15 -F 2 12 10 5 22 14 -F 2 6 10 13 12 4 -F 2 16 11 5 11 3 -F 2 8 11 13 9 1 -F 2 11 12 5 17 9 -F 2 5 12 13 15 7 -F 2 12 0 8 12 5 -F 2 8 1 8 22 15 -F 2 15 2 7 22 15 -F 2 6 3 13 14 7 -F 2 6 4 8 18 11 -F 2 9 6 8 25 18 -F 2 18 7 5 25 18 -F 2 9 7 8 23 16 -F 2 5 9 8 12 5 -F 2 23 10 3 19 12 -F 2 12 10 8 23 16 -F 2 6 10 13 12 5 -F 2 6 11 8 10 3 -F 2 7 12 8 14 7 -F 2 31 1 5 23 17 -F 2 8 1 14 18 12 -F 2 6 2 14 15 9 -F 2 5 5 14 23 17 -F 2 6 7 14 14 8 -F 2 6 9 14 12 6 -F 2 14 10 8 23 17 -F 2 7 10 14 23 17 -F 2 5 11 14 15 9 -F 2 15 12 8 14 8 -F 2 7 12 14 9 3 -F 2 17 0 6 14 9 -F 2 31 1 0 11 6 -F 2 16 1 6 11 6 -F 2 8 1 11 13 8 -F 2 24 2 6 23 18 -F 2 12 2 8 6 1 -F 2 6 2 14 15 10 -F 2 10 3 6 19 14 -F 2 29 4 0 6 1 -F 2 15 4 6 10 5 -F 2 7 4 11 8 3 -F 2 6 5 6 28 23 -F 2 6 7 14 14 9 -F 2 5 8 6 25 20 -F 2 17 9 6 22 17 -F 2 9 9 11 15 10 -F 2 23 10 6 16 11 -F 2 12 10 11 14 9 -F 2 6 10 14 23 18 -F 2 6 11 6 17 12 -F 2 4 12 6 11 6 -F 2 15 13 6 23 18 -F 2 7 13 11 9 4 -F 2 11 0 14 12 8 -F 2 5 0 15 10 6 -F 2 12 1 14 18 14 -F 2 6 1 15 13 9 -F 2 10 2 14 15 11 -F 2 6 3 14 14 10 -F 2 24 4 1 6 2 -F 2 12 4 14 14 10 -F 2 6 4 15 9 5 -F 2 6 6 14 12 8 -F 2 4 7 6 5 1 -F 2 16 9 11 15 11 -F 2 8 9 14 12 8 -F 2 19 10 11 14 10 -F 2 10 10 14 23 19 -F 2 5 11 14 15 11 -F 2 6 12 14 9 5 -F 2 12 13 14 24 20 -F 2 6 13 15 21 17 -F 1 71 15 14 6 3 -F 2 17 0 11 4 1 -F 2 8 0 14 12 9 -F 2 12 1 14 18 15 -F 2 6 1 15 13 10 -F 2 7 2 14 15 12 -F 2 12 4 1 6 3 -F 2 6 4 14 14 11 -F 2 8 5 14 23 20 -F 2 9 6 14 12 9 -F 2 4 7 6 5 2 -F 2 6 8 14 19 16 -F 2 5 9 14 12 9 -F 2 17 10 1 6 3 -F 2 9 10 14 23 20 -F 2 8 11 0 4 1 -F 2 12 12 0 4 1 -F 2 6 12 14 9 6 -F 2 13 13 14 24 21 -F 2 7 13 15 21 18 -F 2 6 0 4 6 4 -F 2 11 1 4 6 4 -F 2 5 1 14 18 16 -F 2 10 2 14 15 13 -F 2 5 2 15 17 15 -F 2 18 3 2 6 4 -F 2 9 3 14 14 12 -F 2 13 4 1 6 4 -F 2 9 5 14 23 21 -F 2 5 6 14 12 10 -F 2 12 7 1 6 4 -F 2 6 7 4 6 4 -F 2 7 8 14 19 17 -F 2 6 9 14 12 10 -F 2 21 10 1 6 4 -F 2 11 10 14 23 21 -F 2 5 10 15 18 16 -F 2 7 11 14 15 13 -F 2 14 12 4 6 4 -F 2 7 12 14 9 7 -F 2 15 13 2 18 16 -F 2 8 13 14 24 22 -F 2 14 0 2 11 10 -F 2 7 0 14 12 11 -F 2 16 1 2 22 21 -F 2 8 1 14 18 17 -F 2 11 2 14 15 14 -F 2 6 2 15 17 16 -F 2 29 3 2 6 5 -F 2 15 3 4 12 11 -F 2 7 3 14 14 13 -F 2 8 4 2 17 16 -F 2 11 5 2 11 10 -F 2 5 5 14 23 22 -F 2 3 6 2 23 22 -F 2 21 7 2 22 21 -F 2 11 7 14 14 13 -F 2 5 7 15 9 8 -F 2 20 8 2 6 5 -F 2 10 8 14 19 18 -F 2 14 9 2 6 5 -F 2 7 9 14 12 11 -F 2 21 10 2 24 23 -F 2 10 10 14 23 22 -F 2 5 10 15 18 17 -F 2 10 11 0 4 3 -F 2 5 11 2 11 10 -F 2 13 12 0 4 3 -F 2 7 12 2 13 12 -F 2 14 13 2 18 17 -F 2 7 13 14 24 23 -go - -engine > player2: P 11.803996 11.215721 1 10 3 -P 9.319567 21.808874 1 14 5 -P 14.288424 0.622569 1 34 5 -P 11.865493 5.273785 1 26 3 -P 11.742498 17.157658 1 11 3 -P 4.254093 0.000000 1 7 1 -P 19.353899 22.431443 1 31 1 -P 14.743614 22.324001 1 37 3 -P 8.864377 0.107441 1 35 3 -P 19.854347 0.711934 1 26 1 -P 3.753644 21.719509 1 14 1 -P 8.864814 9.736624 1 32 5 -P 14.743177 12.694819 1 23 5 -P 0.000000 10.809889 1 42 2 -P 23.607991 11.621554 0 54 2 -P 20.396768 15.522861 2 81 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 12 5 6 28 2 -F 1 10 9 10 27 2 -F 1 9 6 5 28 4 -F 1 25 7 5 25 1 -F 1 9 9 10 27 3 -F 1 5 2 10 24 1 -F 1 5 9 10 27 4 -F 1 6 2 10 24 2 -F 1 9 2 10 24 3 -F 1 6 6 13 23 2 -F 1 9 9 10 27 6 -F 1 40 2 1 22 2 -F 1 8 6 13 23 3 -F 1 6 9 13 23 3 -F 1 16 1 9 24 5 -F 1 5 6 13 23 4 -F 1 13 10 9 27 8 -F 1 3 1 9 24 6 -F 1 2 4 9 19 1 -F 1 12 6 3 19 1 -F 1 6 6 9 22 4 -F 1 6 7 9 23 5 -F 1 16 10 3 19 1 -F 1 8 10 9 27 9 -F 1 6 6 3 19 2 -F 1 11 7 3 18 1 -F 1 5 7 13 19 2 -F 1 15 10 3 19 2 -F 1 7 10 8 23 6 -F 1 8 1 8 22 6 -F 1 22 2 1 22 6 -F 1 10 3 1 17 1 -F 1 13 4 8 18 2 -F 1 4 5 1 23 7 -F 1 5 6 8 25 9 -F 1 8 8 1 22 6 -F 1 3 9 1 24 8 -F 1 7 10 8 23 7 -F 1 22 2 1 22 7 -F 1 11 2 4 17 2 -F 1 5 3 1 17 2 -F 1 2 5 1 23 8 -F 1 3 8 1 22 7 -F 1 2 9 1 24 9 -F 1 5 2 13 18 4 -F 1 5 5 12 17 3 -F 1 11 10 12 15 1 -F 1 5 1 13 15 2 -F 1 8 5 12 17 4 -F 1 13 7 2 22 9 -F 1 8 9 12 14 1 -F 1 16 10 2 24 11 -F 1 8 10 12 15 2 -F 1 5 1 13 15 3 -F 1 7 2 13 18 6 -F 1 11 3 13 14 2 -F 1 6 3 14 14 2 -F 1 5 4 13 14 2 -F 1 6 6 13 23 11 -F 1 10 7 13 19 7 -F 1 6 8 13 14 2 -F 1 6 9 13 23 11 -F 1 29 10 2 24 12 -F 1 15 10 6 16 4 -F 1 5 12 13 15 3 -F 1 22 0 9 14 3 -F 1 5 1 13 15 4 -F 1 6 2 13 18 7 -F 1 11 3 13 14 3 -F 1 5 3 14 14 3 -F 1 6 7 13 19 8 -F 1 13 8 9 12 1 -F 1 7 8 13 14 3 -F 1 5 9 13 23 12 -F 1 29 10 9 27 16 -F 1 14 10 13 12 1 -F 1 7 10 14 23 12 -F 1 27 1 5 23 13 -F 1 14 1 9 24 14 -F 1 7 1 13 15 5 -F 1 6 2 13 18 8 -F 1 9 3 13 14 4 -F 1 13 4 13 14 4 -F 1 7 4 14 14 4 -F 1 14 5 9 16 6 -F 1 7 5 13 12 2 -F 1 9 7 13 19 9 -F 1 9 8 13 14 4 -F 1 21 10 9 27 17 -F 1 11 10 13 12 2 -F 1 5 10 14 23 13 -F 1 6 12 13 15 5 -F 1 6 0 13 12 3 -F 1 20 1 11 13 4 -F 1 10 1 13 15 6 -F 1 5 1 14 18 9 -F 1 5 2 13 18 9 -F 1 7 3 13 14 5 -F 1 11 4 13 14 5 -F 1 6 4 14 14 5 -F 1 10 6 13 23 14 -F 1 5 6 14 12 3 -F 1 16 7 11 14 5 -F 1 8 7 13 19 10 -F 1 14 8 11 10 1 -F 1 7 8 13 14 5 -F 1 9 9 13 23 14 -F 1 20 10 11 14 5 -F 1 10 10 13 12 3 -F 1 9 12 13 15 6 -F 1 14 0 5 14 6 -F 1 7 0 13 12 4 -F 1 25 1 5 23 15 -F 1 12 1 13 15 7 -F 1 6 1 14 18 10 -F 1 10 2 5 11 3 -F 1 14 3 5 10 2 -F 1 7 3 13 14 6 -F 1 18 4 5 19 11 -F 1 9 4 13 14 6 -F 1 7 5 13 12 4 -F 1 12 7 5 25 17 -F 1 6 7 13 19 11 -F 1 6 8 13 14 6 -F 1 8 9 13 23 15 -F 1 12 10 5 22 14 -F 1 6 10 13 12 4 -F 1 16 11 5 11 3 -F 1 8 11 13 9 1 -F 1 11 12 5 17 9 -F 1 5 12 13 15 7 -F 1 12 0 8 12 5 -F 1 8 1 8 22 15 -F 1 15 2 7 22 15 -F 1 6 3 13 14 7 -F 1 6 4 8 18 11 -F 1 9 6 8 25 18 -F 1 18 7 5 25 18 -F 1 9 7 8 23 16 -F 1 5 9 8 12 5 -F 1 23 10 3 19 12 -F 1 12 10 8 23 16 -F 1 6 10 13 12 5 -F 1 6 11 8 10 3 -F 1 7 12 8 14 7 -F 1 31 1 5 23 17 -F 1 8 1 14 18 12 -F 1 6 2 14 15 9 -F 1 5 5 14 23 17 -F 1 6 7 14 14 8 -F 1 6 9 14 12 6 -F 1 14 10 8 23 17 -F 1 7 10 14 23 17 -F 1 5 11 14 15 9 -F 1 15 12 8 14 8 -F 1 7 12 14 9 3 -F 1 17 0 6 14 9 -F 1 31 1 0 11 6 -F 1 16 1 6 11 6 -F 1 8 1 11 13 8 -F 1 24 2 6 23 18 -F 1 12 2 8 6 1 -F 1 6 2 14 15 10 -F 1 10 3 6 19 14 -F 1 29 4 0 6 1 -F 1 15 4 6 10 5 -F 1 7 4 11 8 3 -F 1 6 5 6 28 23 -F 1 6 7 14 14 9 -F 1 5 8 6 25 20 -F 1 17 9 6 22 17 -F 1 9 9 11 15 10 -F 1 23 10 6 16 11 -F 1 12 10 11 14 9 -F 1 6 10 14 23 18 -F 1 6 11 6 17 12 -F 1 4 12 6 11 6 -F 1 15 13 6 23 18 -F 1 7 13 11 9 4 -F 1 11 0 14 12 8 -F 1 5 0 15 10 6 -F 1 12 1 14 18 14 -F 1 6 1 15 13 9 -F 1 10 2 14 15 11 -F 1 6 3 14 14 10 -F 1 24 4 1 6 2 -F 1 12 4 14 14 10 -F 1 6 4 15 9 5 -F 1 6 6 14 12 8 -F 1 4 7 6 5 1 -F 1 16 9 11 15 11 -F 1 8 9 14 12 8 -F 1 19 10 11 14 10 -F 1 10 10 14 23 19 -F 1 5 11 14 15 11 -F 1 6 12 14 9 5 -F 1 12 13 14 24 20 -F 1 6 13 15 21 17 -F 2 71 15 14 6 3 -F 1 17 0 11 4 1 -F 1 8 0 14 12 9 -F 1 12 1 14 18 15 -F 1 6 1 15 13 10 -F 1 7 2 14 15 12 -F 1 12 4 1 6 3 -F 1 6 4 14 14 11 -F 1 8 5 14 23 20 -F 1 9 6 14 12 9 -F 1 4 7 6 5 2 -F 1 6 8 14 19 16 -F 1 5 9 14 12 9 -F 1 17 10 1 6 3 -F 1 9 10 14 23 20 -F 1 8 11 0 4 1 -F 1 12 12 0 4 1 -F 1 6 12 14 9 6 -F 1 13 13 14 24 21 -F 1 7 13 15 21 18 -F 1 6 0 4 6 4 -F 1 11 1 4 6 4 -F 1 5 1 14 18 16 -F 1 10 2 14 15 13 -F 1 5 2 15 17 15 -F 1 18 3 2 6 4 -F 1 9 3 14 14 12 -F 1 13 4 1 6 4 -F 1 9 5 14 23 21 -F 1 5 6 14 12 10 -F 1 12 7 1 6 4 -F 1 6 7 4 6 4 -F 1 7 8 14 19 17 -F 1 6 9 14 12 10 -F 1 21 10 1 6 4 -F 1 11 10 14 23 21 -F 1 5 10 15 18 16 -F 1 7 11 14 15 13 -F 1 14 12 4 6 4 -F 1 7 12 14 9 7 -F 1 15 13 2 18 16 -F 1 8 13 14 24 22 -F 1 14 0 2 11 10 -F 1 7 0 14 12 11 -F 1 16 1 2 22 21 -F 1 8 1 14 18 17 -F 1 11 2 14 15 14 -F 1 6 2 15 17 16 -F 1 29 3 2 6 5 -F 1 15 3 4 12 11 -F 1 7 3 14 14 13 -F 1 8 4 2 17 16 -F 1 11 5 2 11 10 -F 1 5 5 14 23 22 -F 1 3 6 2 23 22 -F 1 21 7 2 22 21 -F 1 11 7 14 14 13 -F 1 5 7 15 9 8 -F 1 20 8 2 6 5 -F 1 10 8 14 19 18 -F 1 14 9 2 6 5 -F 1 7 9 14 12 11 -F 1 21 10 2 24 23 -F 1 10 10 14 23 22 -F 1 5 10 15 18 17 -F 1 10 11 0 4 3 -F 1 5 11 2 11 10 -F 1 13 12 0 4 3 -F 1 7 12 2 13 12 -F 1 14 13 2 18 17 -F 1 7 13 14 24 23 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 2 0 -player2 > engine: 0 7 5 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 2 0 -player2 > engine: 1 7 7 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0 -player2 > engine: comparing 1 and 14, gives 0 0 0.04558863060331812 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 2 0 -player2 > engine: 2 2 17 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 2 0 -player2 > engine: 2 7 8 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 2 0 -player2 > engine: 3 2 13 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 2 0 -player2 > engine: 3 7 6 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0 -player2 > engine: comparing 3 and 14, gives 0 0 0.09988694591354103 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 2 0 -player2 > engine: 4 7 5 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 2 0 -player2 > engine: 5 7 3 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0 -player2 > engine: comparing 5 and 14, gives 0 0 0.17718658719013242 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 2 0 -player2 > engine: 6 7 15 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0 -player2 > engine: comparing 6 and 14, gives 1 0 0.34432768245496265 -player2 > engine: 6 14 8 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 2 0 -player2 > engine: 7 4 18 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 2 0 -player2 > engine: 7 7 9 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 2 0 -player2 > engine: 8 2 17 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 2 0 -player2 > engine: 8 7 9 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 2 0 -player2 > engine: 9 2 13 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 2 0 -player2 > engine: 9 7 6 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 0 0 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 0 0 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 2 0 -player2 > engine: 10 7 7 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 0 0 0 -player2 > engine: comparing 10 and 14, gives 0 0 0.17957565458240538 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 2 0 -player2 > engine: 11 7 16 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0 -player2 > engine: comparing 11 and 14, gives 1 0 0.05382426922307793 -player2 > engine: 11 14 8 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 2 0 -player2 > engine: 12 7 11 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0 -player2 > engine: comparing 12 and 14, gives 1 0 0.08959020236950047 -player2 > engine: 12 14 6 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: comparing 13 and 0, gives 0 0 0 -player2 > engine: comparing 13 and 1, gives 0 0 0 -player2 > engine: comparing 13 and 2, gives 0 2 0 -player2 > engine: 13 2 21 -player2 > engine: comparing 13 and 3, gives 0 0 0 -player2 > engine: comparing 13 and 4, gives 0 0 0 -player2 > engine: comparing 13 and 5, gives 0 0 0 -player2 > engine: comparing 13 and 6, gives 0 0 0 -player2 > engine: comparing 13 and 7, gives 0 2 0 -player2 > engine: 13 7 10 -player2 > engine: comparing 13 and 8, gives 0 0 0 -player2 > engine: comparing 13 and 9, gives 0 0 0 -player2 > engine: comparing 13 and 10, gives 0 0 0 -player2 > engine: comparing 13 and 11, gives 0 0 0 -player2 > engine: comparing 13 and 12, gives 0 0 0 -player2 > engine: comparing 13 and 13, gives 0 0 0 -player2 > engine: comparing 13 and 14, gives 1 0 0.08466705183160025 -player2 > engine: 13 14 5 -player2 > engine: comparing 13 and 15, gives 0 0 0.14330624728818764 -player2 > engine: comparing 13 and 16, gives 0 0 0.5937142863110723 -player2 > engine: comparing 13 and 17, gives 0 0 0.11410854030250688 -player2 > engine: comparing 13 and 18, gives 0 0 0.242703882791183 -player2 > engine: comparing 13 and 19, gives 0 0 0.11321970317438007 -player2 > engine: comparing 13 and 20, gives 0 0 0.04135343135737552 -player2 > engine: comparing 13 and 21, gives 0 0 0.8537779168222296 -player2 > engine: comparing 13 and 22, gives 0 0 0.14242224698289055 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 57 3 -P 9.319567 21.808874 2 22 5 -P 14.288424 0.622569 2 31 5 -P 11.865493 5.273785 2 49 3 -P 11.742498 17.157658 2 9 3 -P 4.254093 0.000000 2 30 1 -P 19.353899 22.431443 2 13 1 -P 14.743614 22.324001 2 22 3 -P 8.864377 0.107441 2 24 3 -P 19.854347 0.711934 2 23 1 -P 3.753644 21.719509 2 13 1 -P 8.864814 9.736624 2 44 5 -P 14.743177 12.694819 2 30 5 -P 0.000000 10.809889 2 30 2 -P 23.607991 11.621554 0 54 2 -P 20.396768 15.522861 1 84 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 12 5 6 28 1 -F 2 10 9 10 27 1 -F 2 9 6 5 28 3 -F 2 9 9 10 27 2 -F 2 5 9 10 27 3 -F 2 6 2 10 24 1 -F 2 9 2 10 24 2 -F 2 6 6 13 23 1 -F 2 9 9 10 27 5 -F 2 40 2 1 22 1 -F 2 8 6 13 23 2 -F 2 6 9 13 23 2 -F 2 16 1 9 24 4 -F 2 5 6 13 23 3 -F 2 13 10 9 27 7 -F 2 3 1 9 24 5 -F 2 6 6 9 22 3 -F 2 6 7 9 23 4 -F 2 8 10 9 27 8 -F 2 6 6 3 19 1 -F 2 5 7 13 19 1 -F 2 15 10 3 19 1 -F 2 7 10 8 23 5 -F 2 8 1 8 22 5 -F 2 22 2 1 22 5 -F 2 13 4 8 18 1 -F 2 4 5 1 23 6 -F 2 5 6 8 25 8 -F 2 8 8 1 22 5 -F 2 3 9 1 24 7 -F 2 7 10 8 23 6 -F 2 22 2 1 22 6 -F 2 11 2 4 17 1 -F 2 5 3 1 17 1 -F 2 2 5 1 23 7 -F 2 3 8 1 22 6 -F 2 2 9 1 24 8 -F 2 5 2 13 18 3 -F 2 5 5 12 17 2 -F 2 5 1 13 15 1 -F 2 8 5 12 17 3 -F 2 13 7 2 22 8 -F 2 16 10 2 24 10 -F 2 8 10 12 15 1 -F 2 5 1 13 15 2 -F 2 7 2 13 18 5 -F 2 11 3 13 14 1 -F 2 6 3 14 14 1 -F 2 5 4 13 14 1 -F 2 6 6 13 23 10 -F 2 10 7 13 19 6 -F 2 6 8 13 14 1 -F 2 6 9 13 23 10 -F 2 29 10 2 24 11 -F 2 15 10 6 16 3 -F 2 5 12 13 15 2 -F 2 22 0 9 14 2 -F 2 5 1 13 15 3 -F 2 6 2 13 18 6 -F 2 11 3 13 14 2 -F 2 5 3 14 14 2 -F 2 6 7 13 19 7 -F 2 7 8 13 14 2 -F 2 5 9 13 23 11 -F 2 29 10 9 27 15 -F 2 7 10 14 23 11 -F 2 27 1 5 23 12 -F 2 14 1 9 24 13 -F 2 7 1 13 15 4 -F 2 6 2 13 18 7 -F 2 9 3 13 14 3 -F 2 13 4 13 14 3 -F 2 7 4 14 14 3 -F 2 14 5 9 16 5 -F 2 7 5 13 12 1 -F 2 9 7 13 19 8 -F 2 9 8 13 14 3 -F 2 21 10 9 27 16 -F 2 11 10 13 12 1 -F 2 5 10 14 23 12 -F 2 6 12 13 15 4 -F 2 6 0 13 12 2 -F 2 20 1 11 13 3 -F 2 10 1 13 15 5 -F 2 5 1 14 18 8 -F 2 5 2 13 18 8 -F 2 7 3 13 14 4 -F 2 11 4 13 14 4 -F 2 6 4 14 14 4 -F 2 10 6 13 23 13 -F 2 5 6 14 12 2 -F 2 16 7 11 14 4 -F 2 8 7 13 19 9 -F 2 7 8 13 14 4 -F 2 9 9 13 23 13 -F 2 20 10 11 14 4 -F 2 10 10 13 12 2 -F 2 9 12 13 15 5 -F 2 14 0 5 14 5 -F 2 7 0 13 12 3 -F 2 25 1 5 23 14 -F 2 12 1 13 15 6 -F 2 6 1 14 18 9 -F 2 10 2 5 11 2 -F 2 14 3 5 10 1 -F 2 7 3 13 14 5 -F 2 18 4 5 19 10 -F 2 9 4 13 14 5 -F 2 7 5 13 12 3 -F 2 12 7 5 25 16 -F 2 6 7 13 19 10 -F 2 6 8 13 14 5 -F 2 8 9 13 23 14 -F 2 12 10 5 22 13 -F 2 6 10 13 12 3 -F 2 16 11 5 11 2 -F 2 11 12 5 17 8 -F 2 5 12 13 15 6 -F 2 12 0 8 12 4 -F 2 8 1 8 22 14 -F 2 15 2 7 22 14 -F 2 6 3 13 14 6 -F 2 6 4 8 18 10 -F 2 9 6 8 25 17 -F 2 18 7 5 25 17 -F 2 9 7 8 23 15 -F 2 5 9 8 12 4 -F 2 23 10 3 19 11 -F 2 12 10 8 23 15 -F 2 6 10 13 12 4 -F 2 6 11 8 10 2 -F 2 7 12 8 14 6 -F 2 31 1 5 23 16 -F 2 8 1 14 18 11 -F 2 6 2 14 15 8 -F 2 5 5 14 23 16 -F 2 6 7 14 14 7 -F 2 6 9 14 12 5 -F 2 14 10 8 23 16 -F 2 7 10 14 23 16 -F 2 5 11 14 15 8 -F 2 15 12 8 14 7 -F 2 7 12 14 9 2 -F 2 17 0 6 14 8 -F 2 31 1 0 11 5 -F 2 16 1 6 11 5 -F 2 8 1 11 13 7 -F 2 24 2 6 23 17 -F 2 6 2 14 15 9 -F 2 10 3 6 19 13 -F 2 15 4 6 10 4 -F 2 7 4 11 8 2 -F 2 6 5 6 28 22 -F 2 6 7 14 14 8 -F 2 5 8 6 25 19 -F 2 17 9 6 22 16 -F 2 9 9 11 15 9 -F 2 23 10 6 16 10 -F 2 12 10 11 14 8 -F 2 6 10 14 23 17 -F 2 6 11 6 17 11 -F 2 4 12 6 11 5 -F 2 15 13 6 23 17 -F 2 7 13 11 9 3 -F 2 11 0 14 12 7 -F 2 5 0 15 10 5 -F 2 12 1 14 18 13 -F 2 6 1 15 13 8 -F 2 10 2 14 15 10 -F 2 6 3 14 14 9 -F 2 24 4 1 6 1 -F 2 12 4 14 14 9 -F 2 6 4 15 9 4 -F 2 6 6 14 12 7 -F 2 16 9 11 15 10 -F 2 8 9 14 12 7 -F 2 19 10 11 14 9 -F 2 10 10 14 23 18 -F 2 5 11 14 15 10 -F 2 6 12 14 9 4 -F 2 12 13 14 24 19 -F 2 6 13 15 21 16 -F 1 71 15 14 6 2 -F 2 8 0 14 12 8 -F 2 12 1 14 18 14 -F 2 6 1 15 13 9 -F 2 7 2 14 15 11 -F 2 12 4 1 6 2 -F 2 6 4 14 14 10 -F 2 8 5 14 23 19 -F 2 9 6 14 12 8 -F 2 4 7 6 5 1 -F 2 6 8 14 19 15 -F 2 5 9 14 12 8 -F 2 17 10 1 6 2 -F 2 9 10 14 23 19 -F 2 6 12 14 9 5 -F 2 13 13 14 24 20 -F 2 7 13 15 21 17 -F 2 6 0 4 6 3 -F 2 11 1 4 6 3 -F 2 5 1 14 18 15 -F 2 10 2 14 15 12 -F 2 5 2 15 17 14 -F 2 18 3 2 6 3 -F 2 9 3 14 14 11 -F 2 13 4 1 6 3 -F 2 9 5 14 23 20 -F 2 5 6 14 12 9 -F 2 12 7 1 6 3 -F 2 6 7 4 6 3 -F 2 7 8 14 19 16 -F 2 6 9 14 12 9 -F 2 21 10 1 6 3 -F 2 11 10 14 23 20 -F 2 5 10 15 18 15 -F 2 7 11 14 15 12 -F 2 14 12 4 6 3 -F 2 7 12 14 9 6 -F 2 15 13 2 18 15 -F 2 8 13 14 24 21 -F 2 14 0 2 11 9 -F 2 7 0 14 12 10 -F 2 16 1 2 22 20 -F 2 8 1 14 18 16 -F 2 11 2 14 15 13 -F 2 6 2 15 17 15 -F 2 29 3 2 6 4 -F 2 15 3 4 12 10 -F 2 7 3 14 14 12 -F 2 8 4 2 17 15 -F 2 11 5 2 11 9 -F 2 5 5 14 23 21 -F 2 3 6 2 23 21 -F 2 21 7 2 22 20 -F 2 11 7 14 14 12 -F 2 5 7 15 9 7 -F 2 20 8 2 6 4 -F 2 10 8 14 19 17 -F 2 14 9 2 6 4 -F 2 7 9 14 12 10 -F 2 21 10 2 24 22 -F 2 10 10 14 23 21 -F 2 5 10 15 18 16 -F 2 10 11 0 4 2 -F 2 5 11 2 11 9 -F 2 13 12 0 4 2 -F 2 7 12 2 13 11 -F 2 14 13 2 18 16 -F 2 7 13 14 24 22 -F 2 5 0 7 12 11 -F 2 7 1 7 6 5 -F 2 8 2 7 22 21 -F 2 13 3 2 6 5 -F 2 6 3 7 18 17 -F 2 5 4 7 6 5 -F 2 3 5 7 25 24 -F 2 15 6 7 5 4 -F 2 8 6 14 12 11 -F 2 18 7 4 6 5 -F 2 17 8 2 6 5 -F 2 9 8 7 23 22 -F 2 13 9 2 6 5 -F 2 6 9 7 23 22 -F 2 7 10 7 12 11 -F 2 16 11 7 14 13 -F 2 8 11 14 15 14 -F 2 11 12 7 10 9 -F 2 6 12 14 9 8 -F 2 21 13 2 18 17 -F 2 10 13 7 19 18 -F 2 5 13 14 24 23 -go - -engine > player2: P 11.803996 11.215721 1 57 3 -P 9.319567 21.808874 1 22 5 -P 14.288424 0.622569 1 31 5 -P 11.865493 5.273785 1 49 3 -P 11.742498 17.157658 1 9 3 -P 4.254093 0.000000 1 30 1 -P 19.353899 22.431443 1 13 1 -P 14.743614 22.324001 1 22 3 -P 8.864377 0.107441 1 24 3 -P 19.854347 0.711934 1 23 1 -P 3.753644 21.719509 1 13 1 -P 8.864814 9.736624 1 44 5 -P 14.743177 12.694819 1 30 5 -P 0.000000 10.809889 1 30 2 -P 23.607991 11.621554 0 54 2 -P 20.396768 15.522861 2 84 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 12 5 6 28 1 -F 1 10 9 10 27 1 -F 1 9 6 5 28 3 -F 1 9 9 10 27 2 -F 1 5 9 10 27 3 -F 1 6 2 10 24 1 -F 1 9 2 10 24 2 -F 1 6 6 13 23 1 -F 1 9 9 10 27 5 -F 1 40 2 1 22 1 -F 1 8 6 13 23 2 -F 1 6 9 13 23 2 -F 1 16 1 9 24 4 -F 1 5 6 13 23 3 -F 1 13 10 9 27 7 -F 1 3 1 9 24 5 -F 1 6 6 9 22 3 -F 1 6 7 9 23 4 -F 1 8 10 9 27 8 -F 1 6 6 3 19 1 -F 1 5 7 13 19 1 -F 1 15 10 3 19 1 -F 1 7 10 8 23 5 -F 1 8 1 8 22 5 -F 1 22 2 1 22 5 -F 1 13 4 8 18 1 -F 1 4 5 1 23 6 -F 1 5 6 8 25 8 -F 1 8 8 1 22 5 -F 1 3 9 1 24 7 -F 1 7 10 8 23 6 -F 1 22 2 1 22 6 -F 1 11 2 4 17 1 -F 1 5 3 1 17 1 -F 1 2 5 1 23 7 -F 1 3 8 1 22 6 -F 1 2 9 1 24 8 -F 1 5 2 13 18 3 -F 1 5 5 12 17 2 -F 1 5 1 13 15 1 -F 1 8 5 12 17 3 -F 1 13 7 2 22 8 -F 1 16 10 2 24 10 -F 1 8 10 12 15 1 -F 1 5 1 13 15 2 -F 1 7 2 13 18 5 -F 1 11 3 13 14 1 -F 1 6 3 14 14 1 -F 1 5 4 13 14 1 -F 1 6 6 13 23 10 -F 1 10 7 13 19 6 -F 1 6 8 13 14 1 -F 1 6 9 13 23 10 -F 1 29 10 2 24 11 -F 1 15 10 6 16 3 -F 1 5 12 13 15 2 -F 1 22 0 9 14 2 -F 1 5 1 13 15 3 -F 1 6 2 13 18 6 -F 1 11 3 13 14 2 -F 1 5 3 14 14 2 -F 1 6 7 13 19 7 -F 1 7 8 13 14 2 -F 1 5 9 13 23 11 -F 1 29 10 9 27 15 -F 1 7 10 14 23 11 -F 1 27 1 5 23 12 -F 1 14 1 9 24 13 -F 1 7 1 13 15 4 -F 1 6 2 13 18 7 -F 1 9 3 13 14 3 -F 1 13 4 13 14 3 -F 1 7 4 14 14 3 -F 1 14 5 9 16 5 -F 1 7 5 13 12 1 -F 1 9 7 13 19 8 -F 1 9 8 13 14 3 -F 1 21 10 9 27 16 -F 1 11 10 13 12 1 -F 1 5 10 14 23 12 -F 1 6 12 13 15 4 -F 1 6 0 13 12 2 -F 1 20 1 11 13 3 -F 1 10 1 13 15 5 -F 1 5 1 14 18 8 -F 1 5 2 13 18 8 -F 1 7 3 13 14 4 -F 1 11 4 13 14 4 -F 1 6 4 14 14 4 -F 1 10 6 13 23 13 -F 1 5 6 14 12 2 -F 1 16 7 11 14 4 -F 1 8 7 13 19 9 -F 1 7 8 13 14 4 -F 1 9 9 13 23 13 -F 1 20 10 11 14 4 -F 1 10 10 13 12 2 -F 1 9 12 13 15 5 -F 1 14 0 5 14 5 -F 1 7 0 13 12 3 -F 1 25 1 5 23 14 -F 1 12 1 13 15 6 -F 1 6 1 14 18 9 -F 1 10 2 5 11 2 -F 1 14 3 5 10 1 -F 1 7 3 13 14 5 -F 1 18 4 5 19 10 -F 1 9 4 13 14 5 -F 1 7 5 13 12 3 -F 1 12 7 5 25 16 -F 1 6 7 13 19 10 -F 1 6 8 13 14 5 -F 1 8 9 13 23 14 -F 1 12 10 5 22 13 -F 1 6 10 13 12 3 -F 1 16 11 5 11 2 -F 1 11 12 5 17 8 -F 1 5 12 13 15 6 -F 1 12 0 8 12 4 -F 1 8 1 8 22 14 -F 1 15 2 7 22 14 -F 1 6 3 13 14 6 -F 1 6 4 8 18 10 -F 1 9 6 8 25 17 -F 1 18 7 5 25 17 -F 1 9 7 8 23 15 -F 1 5 9 8 12 4 -F 1 23 10 3 19 11 -F 1 12 10 8 23 15 -F 1 6 10 13 12 4 -F 1 6 11 8 10 2 -F 1 7 12 8 14 6 -F 1 31 1 5 23 16 -F 1 8 1 14 18 11 -F 1 6 2 14 15 8 -F 1 5 5 14 23 16 -F 1 6 7 14 14 7 -F 1 6 9 14 12 5 -F 1 14 10 8 23 16 -F 1 7 10 14 23 16 -F 1 5 11 14 15 8 -F 1 15 12 8 14 7 -F 1 7 12 14 9 2 -F 1 17 0 6 14 8 -F 1 31 1 0 11 5 -F 1 16 1 6 11 5 -F 1 8 1 11 13 7 -F 1 24 2 6 23 17 -F 1 6 2 14 15 9 -F 1 10 3 6 19 13 -F 1 15 4 6 10 4 -F 1 7 4 11 8 2 -F 1 6 5 6 28 22 -F 1 6 7 14 14 8 -F 1 5 8 6 25 19 -F 1 17 9 6 22 16 -F 1 9 9 11 15 9 -F 1 23 10 6 16 10 -F 1 12 10 11 14 8 -F 1 6 10 14 23 17 -F 1 6 11 6 17 11 -F 1 4 12 6 11 5 -F 1 15 13 6 23 17 -F 1 7 13 11 9 3 -F 1 11 0 14 12 7 -F 1 5 0 15 10 5 -F 1 12 1 14 18 13 -F 1 6 1 15 13 8 -F 1 10 2 14 15 10 -F 1 6 3 14 14 9 -F 1 24 4 1 6 1 -F 1 12 4 14 14 9 -F 1 6 4 15 9 4 -F 1 6 6 14 12 7 -F 1 16 9 11 15 10 -F 1 8 9 14 12 7 -F 1 19 10 11 14 9 -F 1 10 10 14 23 18 -F 1 5 11 14 15 10 -F 1 6 12 14 9 4 -F 1 12 13 14 24 19 -F 1 6 13 15 21 16 -F 2 71 15 14 6 2 -F 1 8 0 14 12 8 -F 1 12 1 14 18 14 -F 1 6 1 15 13 9 -F 1 7 2 14 15 11 -F 1 12 4 1 6 2 -F 1 6 4 14 14 10 -F 1 8 5 14 23 19 -F 1 9 6 14 12 8 -F 1 4 7 6 5 1 -F 1 6 8 14 19 15 -F 1 5 9 14 12 8 -F 1 17 10 1 6 2 -F 1 9 10 14 23 19 -F 1 6 12 14 9 5 -F 1 13 13 14 24 20 -F 1 7 13 15 21 17 -F 1 6 0 4 6 3 -F 1 11 1 4 6 3 -F 1 5 1 14 18 15 -F 1 10 2 14 15 12 -F 1 5 2 15 17 14 -F 1 18 3 2 6 3 -F 1 9 3 14 14 11 -F 1 13 4 1 6 3 -F 1 9 5 14 23 20 -F 1 5 6 14 12 9 -F 1 12 7 1 6 3 -F 1 6 7 4 6 3 -F 1 7 8 14 19 16 -F 1 6 9 14 12 9 -F 1 21 10 1 6 3 -F 1 11 10 14 23 20 -F 1 5 10 15 18 15 -F 1 7 11 14 15 12 -F 1 14 12 4 6 3 -F 1 7 12 14 9 6 -F 1 15 13 2 18 15 -F 1 8 13 14 24 21 -F 1 14 0 2 11 9 -F 1 7 0 14 12 10 -F 1 16 1 2 22 20 -F 1 8 1 14 18 16 -F 1 11 2 14 15 13 -F 1 6 2 15 17 15 -F 1 29 3 2 6 4 -F 1 15 3 4 12 10 -F 1 7 3 14 14 12 -F 1 8 4 2 17 15 -F 1 11 5 2 11 9 -F 1 5 5 14 23 21 -F 1 3 6 2 23 21 -F 1 21 7 2 22 20 -F 1 11 7 14 14 12 -F 1 5 7 15 9 7 -F 1 20 8 2 6 4 -F 1 10 8 14 19 17 -F 1 14 9 2 6 4 -F 1 7 9 14 12 10 -F 1 21 10 2 24 22 -F 1 10 10 14 23 21 -F 1 5 10 15 18 16 -F 1 10 11 0 4 2 -F 1 5 11 2 11 9 -F 1 13 12 0 4 2 -F 1 7 12 2 13 11 -F 1 14 13 2 18 16 -F 1 7 13 14 24 22 -F 1 5 0 7 12 11 -F 1 7 1 7 6 5 -F 1 8 2 7 22 21 -F 1 13 3 2 6 5 -F 1 6 3 7 18 17 -F 1 5 4 7 6 5 -F 1 3 5 7 25 24 -F 1 15 6 7 5 4 -F 1 8 6 14 12 11 -F 1 18 7 4 6 5 -F 1 17 8 2 6 5 -F 1 9 8 7 23 22 -F 1 13 9 2 6 5 -F 1 6 9 7 23 22 -F 1 7 10 7 12 11 -F 1 16 11 7 14 13 -F 1 8 11 14 15 14 -F 1 11 12 7 10 9 -F 1 6 12 14 9 8 -F 1 21 13 2 18 17 -F 1 10 13 7 19 18 -F 1 5 13 14 24 23 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 2 0 -player2 > engine: 0 0 28 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 0 0 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 14 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0 -player2 > engine: comparing 0 and 14, gives 1 0 0.11288940705410845 -player2 > engine: 0 14 7 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 2 0 -player2 > engine: 1 7 11 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0 -player2 > engine: comparing 1 and 14, gives 1 0 0.04558863060331812 -player2 > engine: 1 14 5 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 0 0 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0 -player2 > engine: comparing 2 and 14, gives 1 0 0.05549243454274729 -player2 > engine: 2 14 15 -player2 > engine: comparing 2 and 15, gives 1 0 0.07451683324510384 -player2 > engine: 2 15 8 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 2 0 -player2 > engine: 3 0 24 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 0 0 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0 -player2 > engine: comparing 3 and 14, gives 1 0 0.09988694591354103 -player2 > engine: 3 14 12 -player2 > engine: comparing 3 and 15, gives 1 0 0.14997957099539047 -player2 > engine: 3 15 6 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 2 0 -player2 > engine: 4 7 4 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 0 0 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0 -player2 > engine: comparing 5 and 14, gives 1 0 0.17718658719013242 -player2 > engine: 5 14 15 -player2 > engine: comparing 5 and 15, gives 1 0 0.2679145032420389 -player2 > engine: 5 15 7 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 0 0 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 2 0 -player2 > engine: 6 7 6 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 0 0 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 2 0 -player2 > engine: 7 7 11 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0 -player2 > engine: comparing 7 and 14, gives 1 0 0.095945721857336 -player2 > engine: 7 14 5 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 0 0 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0 -player2 > engine: comparing 8 and 14, gives 1 0 0.07127486247407648 -player2 > engine: 8 14 12 -player2 > engine: comparing 8 and 15, gives 1 0 0.1038864721510475 -player2 > engine: 8 15 6 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 0 0 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0 -player2 > engine: comparing 9 and 14, gives 1 0 0.3467010984295745 -player2 > engine: 9 14 11 -player2 > engine: comparing 9 and 15, gives 1 0 0.4048349103654399 -player2 > engine: 9 15 6 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 0 0 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 0 0 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 0 0 0 -player2 > engine: comparing 10 and 14, gives 1 0 0.17957565458240538 -player2 > engine: 10 14 6 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 22 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 0 0 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0 -player2 > engine: comparing 11 and 14, gives 1 0 0.05382426922307793 -player2 > engine: 11 14 11 -player2 > engine: comparing 11 and 15, gives 1 0 0.0930074676040492 -player2 > engine: 11 15 5 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 15 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 0 0 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0 -player2 > engine: comparing 12 and 14, gives 1 0 0.08959020236950047 -player2 > engine: 12 14 7 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: comparing 13 and 0, gives 0 0 0 -player2 > engine: comparing 13 and 1, gives 0 0 0 -player2 > engine: comparing 13 and 2, gives 0 0 0 -player2 > engine: comparing 13 and 3, gives 0 0 0 -player2 > engine: comparing 13 and 4, gives 0 0 0 -player2 > engine: comparing 13 and 5, gives 0 0 0 -player2 > engine: comparing 13 and 6, gives 0 0 0 -player2 > engine: comparing 13 and 7, gives 0 0 0 -player2 > engine: comparing 13 and 8, gives 0 0 0 -player2 > engine: comparing 13 and 9, gives 0 0 0 -player2 > engine: comparing 13 and 10, gives 0 0 0 -player2 > engine: comparing 13 and 11, gives 0 0 0 -player2 > engine: comparing 13 and 12, gives 0 0 0 -player2 > engine: comparing 13 and 13, gives 0 0 0 -player2 > engine: comparing 13 and 14, gives 1 0 0.08466705183160025 -player2 > engine: 13 14 15 -player2 > engine: comparing 13 and 15, gives 1 0 0.14330624728818764 -player2 > engine: 13 15 7 -player2 > engine: comparing 13 and 16, gives 0 0 0.5937142863110723 -player2 > engine: comparing 13 and 17, gives 0 0 0.11410854030250688 -player2 > engine: comparing 13 and 18, gives 0 0 0.242703882791183 -player2 > engine: comparing 13 and 19, gives 0 0 0.11321970317438007 -player2 > engine: comparing 13 and 20, gives 0 0 0.04135343135737552 -player2 > engine: comparing 13 and 21, gives 0 0 0.8537779168222296 -player2 > engine: comparing 13 and 22, gives 0 0 0.14242224698289055 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 39 3 -P 9.319567 21.808874 2 80 5 -P 14.288424 0.622569 2 13 5 -P 11.865493 5.273785 2 31 3 -P 11.742498 17.157658 2 19 3 -P 4.254093 0.000000 2 23 1 -P 19.353899 22.431443 2 24 1 -P 14.743614 22.324001 2 20 3 -P 8.864377 0.107441 2 22 3 -P 19.854347 0.711934 2 7 1 -P 3.753644 21.719509 2 24 1 -P 8.864814 9.736624 2 11 5 -P 14.743177 12.694819 2 21 5 -P 0.000000 10.809889 2 66 2 -P 23.607991 11.621554 0 48 2 -P 20.396768 15.522861 1 87 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 9 6 5 28 2 -F 2 9 9 10 27 1 -F 2 5 9 10 27 2 -F 2 9 2 10 24 1 -F 2 9 9 10 27 4 -F 2 8 6 13 23 1 -F 2 6 9 13 23 1 -F 2 16 1 9 24 3 -F 2 5 6 13 23 2 -F 2 13 10 9 27 6 -F 2 3 1 9 24 4 -F 2 6 6 9 22 2 -F 2 6 7 9 23 3 -F 2 8 10 9 27 7 -F 2 7 10 8 23 4 -F 2 8 1 8 22 4 -F 2 22 2 1 22 4 -F 2 4 5 1 23 5 -F 2 5 6 8 25 7 -F 2 8 8 1 22 4 -F 2 3 9 1 24 6 -F 2 7 10 8 23 5 -F 2 22 2 1 22 5 -F 2 2 5 1 23 6 -F 2 3 8 1 22 5 -F 2 2 9 1 24 7 -F 2 5 2 13 18 2 -F 2 5 5 12 17 1 -F 2 8 5 12 17 2 -F 2 13 7 2 22 7 -F 2 16 10 2 24 9 -F 2 5 1 13 15 1 -F 2 7 2 13 18 4 -F 2 6 6 13 23 9 -F 2 10 7 13 19 5 -F 2 6 9 13 23 9 -F 2 29 10 2 24 10 -F 2 15 10 6 16 2 -F 2 5 12 13 15 1 -F 2 22 0 9 14 1 -F 2 5 1 13 15 2 -F 2 6 2 13 18 5 -F 2 11 3 13 14 1 -F 2 5 3 14 14 1 -F 2 6 7 13 19 6 -F 2 7 8 13 14 1 -F 2 5 9 13 23 10 -F 2 29 10 9 27 14 -F 2 7 10 14 23 10 -F 2 27 1 5 23 11 -F 2 14 1 9 24 12 -F 2 7 1 13 15 3 -F 2 6 2 13 18 6 -F 2 9 3 13 14 2 -F 2 13 4 13 14 2 -F 2 7 4 14 14 2 -F 2 14 5 9 16 4 -F 2 9 7 13 19 7 -F 2 9 8 13 14 2 -F 2 21 10 9 27 15 -F 2 5 10 14 23 11 -F 2 6 12 13 15 3 -F 2 6 0 13 12 1 -F 2 20 1 11 13 2 -F 2 10 1 13 15 4 -F 2 5 1 14 18 7 -F 2 5 2 13 18 7 -F 2 7 3 13 14 3 -F 2 11 4 13 14 3 -F 2 6 4 14 14 3 -F 2 10 6 13 23 12 -F 2 5 6 14 12 1 -F 2 16 7 11 14 3 -F 2 8 7 13 19 8 -F 2 7 8 13 14 3 -F 2 9 9 13 23 12 -F 2 20 10 11 14 3 -F 2 10 10 13 12 1 -F 2 9 12 13 15 4 -F 2 14 0 5 14 4 -F 2 7 0 13 12 2 -F 2 25 1 5 23 13 -F 2 12 1 13 15 5 -F 2 6 1 14 18 8 -F 2 10 2 5 11 1 -F 2 7 3 13 14 4 -F 2 18 4 5 19 9 -F 2 9 4 13 14 4 -F 2 7 5 13 12 2 -F 2 12 7 5 25 15 -F 2 6 7 13 19 9 -F 2 6 8 13 14 4 -F 2 8 9 13 23 13 -F 2 12 10 5 22 12 -F 2 6 10 13 12 2 -F 2 16 11 5 11 1 -F 2 11 12 5 17 7 -F 2 5 12 13 15 5 -F 2 12 0 8 12 3 -F 2 8 1 8 22 13 -F 2 15 2 7 22 13 -F 2 6 3 13 14 5 -F 2 6 4 8 18 9 -F 2 9 6 8 25 16 -F 2 18 7 5 25 16 -F 2 9 7 8 23 14 -F 2 5 9 8 12 3 -F 2 23 10 3 19 10 -F 2 12 10 8 23 14 -F 2 6 10 13 12 3 -F 2 6 11 8 10 1 -F 2 7 12 8 14 5 -F 2 31 1 5 23 15 -F 2 8 1 14 18 10 -F 2 6 2 14 15 7 -F 2 5 5 14 23 15 -F 2 6 7 14 14 6 -F 2 6 9 14 12 4 -F 2 14 10 8 23 15 -F 2 7 10 14 23 15 -F 2 5 11 14 15 7 -F 2 15 12 8 14 6 -F 2 7 12 14 9 1 -F 2 17 0 6 14 7 -F 2 31 1 0 11 4 -F 2 16 1 6 11 4 -F 2 8 1 11 13 6 -F 2 24 2 6 23 16 -F 2 6 2 14 15 8 -F 2 10 3 6 19 12 -F 2 15 4 6 10 3 -F 2 7 4 11 8 1 -F 2 6 5 6 28 21 -F 2 6 7 14 14 7 -F 2 5 8 6 25 18 -F 2 17 9 6 22 15 -F 2 9 9 11 15 8 -F 2 23 10 6 16 9 -F 2 12 10 11 14 7 -F 2 6 10 14 23 16 -F 2 6 11 6 17 10 -F 2 4 12 6 11 4 -F 2 15 13 6 23 16 -F 2 7 13 11 9 2 -F 2 11 0 14 12 6 -F 2 5 0 15 10 4 -F 2 12 1 14 18 12 -F 2 6 1 15 13 7 -F 2 10 2 14 15 9 -F 2 6 3 14 14 8 -F 2 12 4 14 14 8 -F 2 6 4 15 9 3 -F 2 6 6 14 12 6 -F 2 16 9 11 15 9 -F 2 8 9 14 12 6 -F 2 19 10 11 14 8 -F 2 10 10 14 23 17 -F 2 5 11 14 15 9 -F 2 6 12 14 9 3 -F 2 12 13 14 24 18 -F 2 6 13 15 21 15 -F 1 71 15 14 6 1 -F 2 8 0 14 12 7 -F 2 12 1 14 18 13 -F 2 6 1 15 13 8 -F 2 7 2 14 15 10 -F 2 12 4 1 6 1 -F 2 6 4 14 14 9 -F 2 8 5 14 23 18 -F 2 9 6 14 12 7 -F 2 6 8 14 19 14 -F 2 5 9 14 12 7 -F 2 17 10 1 6 1 -F 2 9 10 14 23 18 -F 2 6 12 14 9 4 -F 2 13 13 14 24 19 -F 2 7 13 15 21 16 -F 2 6 0 4 6 2 -F 2 11 1 4 6 2 -F 2 5 1 14 18 14 -F 2 10 2 14 15 11 -F 2 5 2 15 17 13 -F 2 18 3 2 6 2 -F 2 9 3 14 14 10 -F 2 13 4 1 6 2 -F 2 9 5 14 23 19 -F 2 5 6 14 12 8 -F 2 12 7 1 6 2 -F 2 6 7 4 6 2 -F 2 7 8 14 19 15 -F 2 6 9 14 12 8 -F 2 21 10 1 6 2 -F 2 11 10 14 23 19 -F 2 5 10 15 18 14 -F 2 7 11 14 15 11 -F 2 14 12 4 6 2 -F 2 7 12 14 9 5 -F 2 15 13 2 18 14 -F 2 8 13 14 24 20 -F 2 14 0 2 11 8 -F 2 7 0 14 12 9 -F 2 16 1 2 22 19 -F 2 8 1 14 18 15 -F 2 11 2 14 15 12 -F 2 6 2 15 17 14 -F 2 29 3 2 6 3 -F 2 15 3 4 12 9 -F 2 7 3 14 14 11 -F 2 8 4 2 17 14 -F 2 11 5 2 11 8 -F 2 5 5 14 23 20 -F 2 3 6 2 23 20 -F 2 21 7 2 22 19 -F 2 11 7 14 14 11 -F 2 5 7 15 9 6 -F 2 20 8 2 6 3 -F 2 10 8 14 19 16 -F 2 14 9 2 6 3 -F 2 7 9 14 12 9 -F 2 21 10 2 24 21 -F 2 10 10 14 23 20 -F 2 5 10 15 18 15 -F 2 10 11 0 4 1 -F 2 5 11 2 11 8 -F 2 13 12 0 4 1 -F 2 7 12 2 13 10 -F 2 14 13 2 18 15 -F 2 7 13 14 24 21 -F 2 5 0 7 12 10 -F 2 7 1 7 6 4 -F 2 8 2 7 22 20 -F 2 13 3 2 6 4 -F 2 6 3 7 18 16 -F 2 5 4 7 6 4 -F 2 3 5 7 25 23 -F 2 15 6 7 5 3 -F 2 8 6 14 12 10 -F 2 18 7 4 6 4 -F 2 17 8 2 6 4 -F 2 9 8 7 23 21 -F 2 13 9 2 6 4 -F 2 6 9 7 23 21 -F 2 7 10 7 12 10 -F 2 16 11 7 14 12 -F 2 8 11 14 15 13 -F 2 11 12 7 10 8 -F 2 6 12 14 9 7 -F 2 21 13 2 18 16 -F 2 10 13 7 19 17 -F 2 5 13 14 24 22 -F 2 14 0 11 4 3 -F 2 7 0 14 12 11 -F 2 11 1 7 6 5 -F 2 5 1 14 18 17 -F 2 15 2 14 15 14 -F 2 8 2 15 17 16 -F 2 24 3 0 6 5 -F 2 12 3 14 14 13 -F 2 6 3 15 14 13 -F 2 4 4 7 6 5 -F 2 15 5 14 23 22 -F 2 7 5 15 23 22 -F 2 6 6 7 5 4 -F 2 5 7 14 14 13 -F 2 12 8 14 19 18 -F 2 6 8 15 20 19 -F 2 11 9 14 12 11 -F 2 6 9 15 15 14 -F 2 6 10 14 23 22 -F 2 22 11 0 4 3 -F 2 11 11 14 15 14 -F 2 5 11 15 13 12 -F 2 15 12 0 4 3 -F 2 7 12 14 9 8 -F 2 15 13 14 24 23 -F 2 7 13 15 21 20 -go - -engine > player2: P 11.803996 11.215721 1 39 3 -P 9.319567 21.808874 1 80 5 -P 14.288424 0.622569 1 13 5 -P 11.865493 5.273785 1 31 3 -P 11.742498 17.157658 1 19 3 -P 4.254093 0.000000 1 23 1 -P 19.353899 22.431443 1 24 1 -P 14.743614 22.324001 1 20 3 -P 8.864377 0.107441 1 22 3 -P 19.854347 0.711934 1 7 1 -P 3.753644 21.719509 1 24 1 -P 8.864814 9.736624 1 11 5 -P 14.743177 12.694819 1 21 5 -P 0.000000 10.809889 1 66 2 -P 23.607991 11.621554 0 48 2 -P 20.396768 15.522861 2 87 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 9 6 5 28 2 -F 1 9 9 10 27 1 -F 1 5 9 10 27 2 -F 1 9 2 10 24 1 -F 1 9 9 10 27 4 -F 1 8 6 13 23 1 -F 1 6 9 13 23 1 -F 1 16 1 9 24 3 -F 1 5 6 13 23 2 -F 1 13 10 9 27 6 -F 1 3 1 9 24 4 -F 1 6 6 9 22 2 -F 1 6 7 9 23 3 -F 1 8 10 9 27 7 -F 1 7 10 8 23 4 -F 1 8 1 8 22 4 -F 1 22 2 1 22 4 -F 1 4 5 1 23 5 -F 1 5 6 8 25 7 -F 1 8 8 1 22 4 -F 1 3 9 1 24 6 -F 1 7 10 8 23 5 -F 1 22 2 1 22 5 -F 1 2 5 1 23 6 -F 1 3 8 1 22 5 -F 1 2 9 1 24 7 -F 1 5 2 13 18 2 -F 1 5 5 12 17 1 -F 1 8 5 12 17 2 -F 1 13 7 2 22 7 -F 1 16 10 2 24 9 -F 1 5 1 13 15 1 -F 1 7 2 13 18 4 -F 1 6 6 13 23 9 -F 1 10 7 13 19 5 -F 1 6 9 13 23 9 -F 1 29 10 2 24 10 -F 1 15 10 6 16 2 -F 1 5 12 13 15 1 -F 1 22 0 9 14 1 -F 1 5 1 13 15 2 -F 1 6 2 13 18 5 -F 1 11 3 13 14 1 -F 1 5 3 14 14 1 -F 1 6 7 13 19 6 -F 1 7 8 13 14 1 -F 1 5 9 13 23 10 -F 1 29 10 9 27 14 -F 1 7 10 14 23 10 -F 1 27 1 5 23 11 -F 1 14 1 9 24 12 -F 1 7 1 13 15 3 -F 1 6 2 13 18 6 -F 1 9 3 13 14 2 -F 1 13 4 13 14 2 -F 1 7 4 14 14 2 -F 1 14 5 9 16 4 -F 1 9 7 13 19 7 -F 1 9 8 13 14 2 -F 1 21 10 9 27 15 -F 1 5 10 14 23 11 -F 1 6 12 13 15 3 -F 1 6 0 13 12 1 -F 1 20 1 11 13 2 -F 1 10 1 13 15 4 -F 1 5 1 14 18 7 -F 1 5 2 13 18 7 -F 1 7 3 13 14 3 -F 1 11 4 13 14 3 -F 1 6 4 14 14 3 -F 1 10 6 13 23 12 -F 1 5 6 14 12 1 -F 1 16 7 11 14 3 -F 1 8 7 13 19 8 -F 1 7 8 13 14 3 -F 1 9 9 13 23 12 -F 1 20 10 11 14 3 -F 1 10 10 13 12 1 -F 1 9 12 13 15 4 -F 1 14 0 5 14 4 -F 1 7 0 13 12 2 -F 1 25 1 5 23 13 -F 1 12 1 13 15 5 -F 1 6 1 14 18 8 -F 1 10 2 5 11 1 -F 1 7 3 13 14 4 -F 1 18 4 5 19 9 -F 1 9 4 13 14 4 -F 1 7 5 13 12 2 -F 1 12 7 5 25 15 -F 1 6 7 13 19 9 -F 1 6 8 13 14 4 -F 1 8 9 13 23 13 -F 1 12 10 5 22 12 -F 1 6 10 13 12 2 -F 1 16 11 5 11 1 -F 1 11 12 5 17 7 -F 1 5 12 13 15 5 -F 1 12 0 8 12 3 -F 1 8 1 8 22 13 -F 1 15 2 7 22 13 -F 1 6 3 13 14 5 -F 1 6 4 8 18 9 -F 1 9 6 8 25 16 -F 1 18 7 5 25 16 -F 1 9 7 8 23 14 -F 1 5 9 8 12 3 -F 1 23 10 3 19 10 -F 1 12 10 8 23 14 -F 1 6 10 13 12 3 -F 1 6 11 8 10 1 -F 1 7 12 8 14 5 -F 1 31 1 5 23 15 -F 1 8 1 14 18 10 -F 1 6 2 14 15 7 -F 1 5 5 14 23 15 -F 1 6 7 14 14 6 -F 1 6 9 14 12 4 -F 1 14 10 8 23 15 -F 1 7 10 14 23 15 -F 1 5 11 14 15 7 -F 1 15 12 8 14 6 -F 1 7 12 14 9 1 -F 1 17 0 6 14 7 -F 1 31 1 0 11 4 -F 1 16 1 6 11 4 -F 1 8 1 11 13 6 -F 1 24 2 6 23 16 -F 1 6 2 14 15 8 -F 1 10 3 6 19 12 -F 1 15 4 6 10 3 -F 1 7 4 11 8 1 -F 1 6 5 6 28 21 -F 1 6 7 14 14 7 -F 1 5 8 6 25 18 -F 1 17 9 6 22 15 -F 1 9 9 11 15 8 -F 1 23 10 6 16 9 -F 1 12 10 11 14 7 -F 1 6 10 14 23 16 -F 1 6 11 6 17 10 -F 1 4 12 6 11 4 -F 1 15 13 6 23 16 -F 1 7 13 11 9 2 -F 1 11 0 14 12 6 -F 1 5 0 15 10 4 -F 1 12 1 14 18 12 -F 1 6 1 15 13 7 -F 1 10 2 14 15 9 -F 1 6 3 14 14 8 -F 1 12 4 14 14 8 -F 1 6 4 15 9 3 -F 1 6 6 14 12 6 -F 1 16 9 11 15 9 -F 1 8 9 14 12 6 -F 1 19 10 11 14 8 -F 1 10 10 14 23 17 -F 1 5 11 14 15 9 -F 1 6 12 14 9 3 -F 1 12 13 14 24 18 -F 1 6 13 15 21 15 -F 2 71 15 14 6 1 -F 1 8 0 14 12 7 -F 1 12 1 14 18 13 -F 1 6 1 15 13 8 -F 1 7 2 14 15 10 -F 1 12 4 1 6 1 -F 1 6 4 14 14 9 -F 1 8 5 14 23 18 -F 1 9 6 14 12 7 -F 1 6 8 14 19 14 -F 1 5 9 14 12 7 -F 1 17 10 1 6 1 -F 1 9 10 14 23 18 -F 1 6 12 14 9 4 -F 1 13 13 14 24 19 -F 1 7 13 15 21 16 -F 1 6 0 4 6 2 -F 1 11 1 4 6 2 -F 1 5 1 14 18 14 -F 1 10 2 14 15 11 -F 1 5 2 15 17 13 -F 1 18 3 2 6 2 -F 1 9 3 14 14 10 -F 1 13 4 1 6 2 -F 1 9 5 14 23 19 -F 1 5 6 14 12 8 -F 1 12 7 1 6 2 -F 1 6 7 4 6 2 -F 1 7 8 14 19 15 -F 1 6 9 14 12 8 -F 1 21 10 1 6 2 -F 1 11 10 14 23 19 -F 1 5 10 15 18 14 -F 1 7 11 14 15 11 -F 1 14 12 4 6 2 -F 1 7 12 14 9 5 -F 1 15 13 2 18 14 -F 1 8 13 14 24 20 -F 1 14 0 2 11 8 -F 1 7 0 14 12 9 -F 1 16 1 2 22 19 -F 1 8 1 14 18 15 -F 1 11 2 14 15 12 -F 1 6 2 15 17 14 -F 1 29 3 2 6 3 -F 1 15 3 4 12 9 -F 1 7 3 14 14 11 -F 1 8 4 2 17 14 -F 1 11 5 2 11 8 -F 1 5 5 14 23 20 -F 1 3 6 2 23 20 -F 1 21 7 2 22 19 -F 1 11 7 14 14 11 -F 1 5 7 15 9 6 -F 1 20 8 2 6 3 -F 1 10 8 14 19 16 -F 1 14 9 2 6 3 -F 1 7 9 14 12 9 -F 1 21 10 2 24 21 -F 1 10 10 14 23 20 -F 1 5 10 15 18 15 -F 1 10 11 0 4 1 -F 1 5 11 2 11 8 -F 1 13 12 0 4 1 -F 1 7 12 2 13 10 -F 1 14 13 2 18 15 -F 1 7 13 14 24 21 -F 1 5 0 7 12 10 -F 1 7 1 7 6 4 -F 1 8 2 7 22 20 -F 1 13 3 2 6 4 -F 1 6 3 7 18 16 -F 1 5 4 7 6 4 -F 1 3 5 7 25 23 -F 1 15 6 7 5 3 -F 1 8 6 14 12 10 -F 1 18 7 4 6 4 -F 1 17 8 2 6 4 -F 1 9 8 7 23 21 -F 1 13 9 2 6 4 -F 1 6 9 7 23 21 -F 1 7 10 7 12 10 -F 1 16 11 7 14 12 -F 1 8 11 14 15 13 -F 1 11 12 7 10 8 -F 1 6 12 14 9 7 -F 1 21 13 2 18 16 -F 1 10 13 7 19 17 -F 1 5 13 14 24 22 -F 1 14 0 11 4 3 -F 1 7 0 14 12 11 -F 1 11 1 7 6 5 -F 1 5 1 14 18 17 -F 1 15 2 14 15 14 -F 1 8 2 15 17 16 -F 1 24 3 0 6 5 -F 1 12 3 14 14 13 -F 1 6 3 15 14 13 -F 1 4 4 7 6 5 -F 1 15 5 14 23 22 -F 1 7 5 15 23 22 -F 1 6 6 7 5 4 -F 1 5 7 14 14 13 -F 1 12 8 14 19 18 -F 1 6 8 15 20 19 -F 1 11 9 14 12 11 -F 1 6 9 15 15 14 -F 1 6 10 14 23 22 -F 1 22 11 0 4 3 -F 1 11 11 14 15 14 -F 1 5 11 15 13 12 -F 1 15 12 0 4 3 -F 1 7 12 14 9 8 -F 1 15 13 14 24 23 -F 1 7 13 15 21 20 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 2 0 -player2 > engine: 0 3 19 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 2 0 -player2 > engine: 0 11 10 -player2 > engine: comparing 0 and 12, gives 0 0 0 -player2 > engine: comparing 0 and 13, gives 0 0 0 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 2 0 -player2 > engine: 1 3 40 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 2 0 -player2 > engine: 1 7 20 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0 -player2 > engine: comparing 1 and 14, gives 1 0 0.04558863060331812 -player2 > engine: 1 14 10 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 2 0 -player2 > engine: 2 3 6 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 2 0 -player2 > engine: 3 3 15 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0 -player2 > engine: comparing 3 and 14, gives 1 0 0.09988694591354103 -player2 > engine: 3 14 8 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 2 0 -player2 > engine: 4 3 9 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 2 0 -player2 > engine: 5 3 11 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0 -player2 > engine: comparing 5 and 14, gives 1 0 0.17718658719013242 -player2 > engine: 5 14 6 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 2 0 -player2 > engine: 6 3 12 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 2 0 -player2 > engine: 6 7 6 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 2 0 -player2 > engine: 7 3 10 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 2 0 -player2 > engine: 8 3 11 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0 -player2 > engine: comparing 8 and 14, gives 1 0 0.07127486247407648 -player2 > engine: 8 14 5 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 2 0 -player2 > engine: 9 3 3 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0 -player2 > engine: comparing 9 and 14, gives 0 0 0.3467010984295745 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 0 0 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 2 0 -player2 > engine: 10 3 12 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 0 0 0 -player2 > engine: comparing 10 and 14, gives 1 0 0.17957565458240538 -player2 > engine: 10 14 6 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 0 0 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 2 0 -player2 > engine: 11 3 5 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 0 0 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 2 0 -player2 > engine: 12 3 10 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0 -player2 > engine: comparing 12 and 14, gives 1 0 0.08959020236950047 -player2 > engine: 12 14 5 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: comparing 13 and 0, gives 0 0 0 -player2 > engine: comparing 13 and 1, gives 0 0 0 -player2 > engine: comparing 13 and 2, gives 0 0 0 -player2 > engine: comparing 13 and 3, gives 0 2 0 -player2 > engine: 13 3 33 -player2 > engine: comparing 13 and 4, gives 0 0 0 -player2 > engine: comparing 13 and 5, gives 0 0 0 -player2 > engine: comparing 13 and 6, gives 0 0 0 -player2 > engine: comparing 13 and 7, gives 0 0 0 -player2 > engine: comparing 13 and 8, gives 0 0 0 -player2 > engine: comparing 13 and 9, gives 0 0 0 -player2 > engine: comparing 13 and 10, gives 0 0 0 -player2 > engine: comparing 13 and 11, gives 0 0 0 -player2 > engine: comparing 13 and 12, gives 0 2 0 -player2 > engine: 13 12 16 -player2 > engine: comparing 13 and 13, gives 0 0 0 -player2 > engine: comparing 13 and 14, gives 1 0 0.08466705183160025 -player2 > engine: 13 14 8 -player2 > engine: comparing 13 and 15, gives 0 0 0.14330624728818764 -player2 > engine: comparing 13 and 16, gives 0 0 0.5937142863110723 -player2 > engine: comparing 13 and 17, gives 0 0 0.11410854030250688 -player2 > engine: comparing 13 and 18, gives 0 0 0.242703882791183 -player2 > engine: comparing 13 and 19, gives 0 0 0.11321970317438007 -player2 > engine: comparing 13 and 20, gives 0 0 0.04135343135737552 -player2 > engine: comparing 13 and 21, gives 0 0 0.8537779168222296 -player2 > engine: comparing 13 and 22, gives 0 0 0.14242224698289055 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 36 3 -P 9.319567 21.808874 2 44 5 -P 14.288424 0.622569 2 12 5 -P 11.865493 5.273785 2 26 3 -P 11.742498 17.157658 2 13 3 -P 4.254093 0.000000 2 33 1 -P 19.353899 22.431443 2 7 1 -P 14.743614 22.324001 2 13 3 -P 8.864377 0.107441 2 15 3 -P 19.854347 0.711934 2 27 1 -P 3.753644 21.719509 2 25 1 -P 8.864814 9.736624 2 18 5 -P 14.743177 12.694819 2 16 5 -P 0.000000 10.809889 2 69 2 -P 23.607991 11.621554 1 23 2 -P 20.396768 15.522861 1 90 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 9 6 5 28 1 -F 2 5 9 10 27 1 -F 2 9 9 10 27 3 -F 2 16 1 9 24 2 -F 2 5 6 13 23 1 -F 2 13 10 9 27 5 -F 2 3 1 9 24 3 -F 2 6 6 9 22 1 -F 2 6 7 9 23 2 -F 2 8 10 9 27 6 -F 2 7 10 8 23 3 -F 2 8 1 8 22 3 -F 2 22 2 1 22 3 -F 2 4 5 1 23 4 -F 2 5 6 8 25 6 -F 2 8 8 1 22 3 -F 2 3 9 1 24 5 -F 2 7 10 8 23 4 -F 2 22 2 1 22 4 -F 2 2 5 1 23 5 -F 2 3 8 1 22 4 -F 2 2 9 1 24 6 -F 2 5 2 13 18 1 -F 2 8 5 12 17 1 -F 2 13 7 2 22 6 -F 2 16 10 2 24 8 -F 2 7 2 13 18 3 -F 2 6 6 13 23 8 -F 2 10 7 13 19 4 -F 2 6 9 13 23 8 -F 2 29 10 2 24 9 -F 2 15 10 6 16 1 -F 2 5 1 13 15 1 -F 2 6 2 13 18 4 -F 2 6 7 13 19 5 -F 2 5 9 13 23 9 -F 2 29 10 9 27 13 -F 2 7 10 14 23 9 -F 2 27 1 5 23 10 -F 2 14 1 9 24 11 -F 2 7 1 13 15 2 -F 2 6 2 13 18 5 -F 2 9 3 13 14 1 -F 2 13 4 13 14 1 -F 2 7 4 14 14 1 -F 2 14 5 9 16 3 -F 2 9 7 13 19 6 -F 2 9 8 13 14 1 -F 2 21 10 9 27 14 -F 2 5 10 14 23 10 -F 2 6 12 13 15 2 -F 2 20 1 11 13 1 -F 2 10 1 13 15 3 -F 2 5 1 14 18 6 -F 2 5 2 13 18 6 -F 2 7 3 13 14 2 -F 2 11 4 13 14 2 -F 2 6 4 14 14 2 -F 2 10 6 13 23 11 -F 2 16 7 11 14 2 -F 2 8 7 13 19 7 -F 2 7 8 13 14 2 -F 2 9 9 13 23 11 -F 2 20 10 11 14 2 -F 2 9 12 13 15 3 -F 2 14 0 5 14 3 -F 2 7 0 13 12 1 -F 2 25 1 5 23 12 -F 2 12 1 13 15 4 -F 2 6 1 14 18 7 -F 2 7 3 13 14 3 -F 2 18 4 5 19 8 -F 2 9 4 13 14 3 -F 2 7 5 13 12 1 -F 2 12 7 5 25 14 -F 2 6 7 13 19 8 -F 2 6 8 13 14 3 -F 2 8 9 13 23 12 -F 2 12 10 5 22 11 -F 2 6 10 13 12 1 -F 2 11 12 5 17 6 -F 2 5 12 13 15 4 -F 2 12 0 8 12 2 -F 2 8 1 8 22 12 -F 2 15 2 7 22 12 -F 2 6 3 13 14 4 -F 2 6 4 8 18 8 -F 2 9 6 8 25 15 -F 2 18 7 5 25 15 -F 2 9 7 8 23 13 -F 2 5 9 8 12 2 -F 2 23 10 3 19 9 -F 2 12 10 8 23 13 -F 2 6 10 13 12 2 -F 2 7 12 8 14 4 -F 2 31 1 5 23 14 -F 2 8 1 14 18 9 -F 2 6 2 14 15 6 -F 2 5 5 14 23 14 -F 2 6 7 14 14 5 -F 2 6 9 14 12 3 -F 2 14 10 8 23 14 -F 2 7 10 14 23 14 -F 2 5 11 14 15 6 -F 2 15 12 8 14 5 -F 2 17 0 6 14 6 -F 2 31 1 0 11 3 -F 2 16 1 6 11 3 -F 2 8 1 11 13 5 -F 2 24 2 6 23 15 -F 2 6 2 14 15 7 -F 2 10 3 6 19 11 -F 2 15 4 6 10 2 -F 2 6 5 6 28 20 -F 2 6 7 14 14 6 -F 2 5 8 6 25 17 -F 2 17 9 6 22 14 -F 2 9 9 11 15 7 -F 2 23 10 6 16 8 -F 2 12 10 11 14 6 -F 2 6 10 14 23 15 -F 2 6 11 6 17 9 -F 2 4 12 6 11 3 -F 2 15 13 6 23 15 -F 2 7 13 11 9 1 -F 2 11 0 14 12 5 -F 2 5 0 15 10 3 -F 2 12 1 14 18 11 -F 2 6 1 15 13 6 -F 2 10 2 14 15 8 -F 2 6 3 14 14 7 -F 2 12 4 14 14 7 -F 2 6 4 15 9 2 -F 2 6 6 14 12 5 -F 2 16 9 11 15 8 -F 2 8 9 14 12 5 -F 2 19 10 11 14 7 -F 2 10 10 14 23 16 -F 2 5 11 14 15 8 -F 2 6 12 14 9 2 -F 2 12 13 14 24 17 -F 2 6 13 15 21 14 -F 2 8 0 14 12 6 -F 2 12 1 14 18 12 -F 2 6 1 15 13 7 -F 2 7 2 14 15 9 -F 2 6 4 14 14 8 -F 2 8 5 14 23 17 -F 2 9 6 14 12 6 -F 2 6 8 14 19 13 -F 2 5 9 14 12 6 -F 2 9 10 14 23 17 -F 2 6 12 14 9 3 -F 2 13 13 14 24 18 -F 2 7 13 15 21 15 -F 2 6 0 4 6 1 -F 2 11 1 4 6 1 -F 2 5 1 14 18 13 -F 2 10 2 14 15 10 -F 2 5 2 15 17 12 -F 2 18 3 2 6 1 -F 2 9 3 14 14 9 -F 2 13 4 1 6 1 -F 2 9 5 14 23 18 -F 2 5 6 14 12 7 -F 2 12 7 1 6 1 -F 2 6 7 4 6 1 -F 2 7 8 14 19 14 -F 2 6 9 14 12 7 -F 2 21 10 1 6 1 -F 2 11 10 14 23 18 -F 2 5 10 15 18 13 -F 2 7 11 14 15 10 -F 2 14 12 4 6 1 -F 2 7 12 14 9 4 -F 2 15 13 2 18 13 -F 2 8 13 14 24 19 -F 2 14 0 2 11 7 -F 2 7 0 14 12 8 -F 2 16 1 2 22 18 -F 2 8 1 14 18 14 -F 2 11 2 14 15 11 -F 2 6 2 15 17 13 -F 2 29 3 2 6 2 -F 2 15 3 4 12 8 -F 2 7 3 14 14 10 -F 2 8 4 2 17 13 -F 2 11 5 2 11 7 -F 2 5 5 14 23 19 -F 2 3 6 2 23 19 -F 2 21 7 2 22 18 -F 2 11 7 14 14 10 -F 2 5 7 15 9 5 -F 2 20 8 2 6 2 -F 2 10 8 14 19 15 -F 2 14 9 2 6 2 -F 2 7 9 14 12 8 -F 2 21 10 2 24 20 -F 2 10 10 14 23 19 -F 2 5 10 15 18 14 -F 2 5 11 2 11 7 -F 2 7 12 2 13 9 -F 2 14 13 2 18 14 -F 2 7 13 14 24 20 -F 2 5 0 7 12 9 -F 2 7 1 7 6 3 -F 2 8 2 7 22 19 -F 2 13 3 2 6 3 -F 2 6 3 7 18 15 -F 2 5 4 7 6 3 -F 2 3 5 7 25 22 -F 2 15 6 7 5 2 -F 2 8 6 14 12 9 -F 2 18 7 4 6 3 -F 2 17 8 2 6 3 -F 2 9 8 7 23 20 -F 2 13 9 2 6 3 -F 2 6 9 7 23 20 -F 2 7 10 7 12 9 -F 2 16 11 7 14 11 -F 2 8 11 14 15 12 -F 2 11 12 7 10 7 -F 2 6 12 14 9 6 -F 2 21 13 2 18 15 -F 2 10 13 7 19 16 -F 2 5 13 14 24 21 -F 2 14 0 11 4 2 -F 2 7 0 14 12 10 -F 2 11 1 7 6 4 -F 2 5 1 14 18 16 -F 2 15 2 14 15 13 -F 2 8 2 15 17 15 -F 2 24 3 0 6 4 -F 2 12 3 14 14 12 -F 2 6 3 15 14 12 -F 2 4 4 7 6 4 -F 2 15 5 14 23 21 -F 2 7 5 15 23 21 -F 2 6 6 7 5 3 -F 2 5 7 14 14 12 -F 2 12 8 14 19 17 -F 2 6 8 15 20 18 -F 2 11 9 14 12 10 -F 2 6 9 15 15 13 -F 2 6 10 14 23 21 -F 2 22 11 0 4 2 -F 2 11 11 14 15 13 -F 2 5 11 15 13 11 -F 2 15 12 0 4 2 -F 2 7 12 14 9 7 -F 2 15 13 14 24 22 -F 2 7 13 15 21 19 -F 2 19 0 3 6 5 -F 2 10 0 11 4 3 -F 2 40 1 3 17 16 -F 2 20 1 7 6 5 -F 2 10 1 14 18 17 -F 2 6 2 3 6 5 -F 2 8 3 14 14 13 -F 2 9 4 3 12 11 -F 2 11 5 3 10 9 -F 2 6 5 14 23 22 -F 2 12 6 3 19 18 -F 2 6 6 7 5 4 -F 2 10 7 3 18 17 -F 2 11 8 3 6 5 -F 2 5 8 14 19 18 -F 2 3 9 3 10 9 -F 2 12 10 3 19 18 -F 2 6 10 14 23 22 -F 2 5 11 3 6 5 -F 2 10 12 3 8 7 -F 2 5 12 14 9 8 -F 2 33 13 3 14 13 -F 2 16 13 12 15 14 -F 2 8 13 14 24 23 -go - -engine > player2: P 11.803996 11.215721 1 36 3 -P 9.319567 21.808874 1 44 5 -P 14.288424 0.622569 1 12 5 -P 11.865493 5.273785 1 26 3 -P 11.742498 17.157658 1 13 3 -P 4.254093 0.000000 1 33 1 -P 19.353899 22.431443 1 7 1 -P 14.743614 22.324001 1 13 3 -P 8.864377 0.107441 1 15 3 -P 19.854347 0.711934 1 27 1 -P 3.753644 21.719509 1 25 1 -P 8.864814 9.736624 1 18 5 -P 14.743177 12.694819 1 16 5 -P 0.000000 10.809889 1 69 2 -P 23.607991 11.621554 2 23 2 -P 20.396768 15.522861 2 90 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 9 6 5 28 1 -F 1 5 9 10 27 1 -F 1 9 9 10 27 3 -F 1 16 1 9 24 2 -F 1 5 6 13 23 1 -F 1 13 10 9 27 5 -F 1 3 1 9 24 3 -F 1 6 6 9 22 1 -F 1 6 7 9 23 2 -F 1 8 10 9 27 6 -F 1 7 10 8 23 3 -F 1 8 1 8 22 3 -F 1 22 2 1 22 3 -F 1 4 5 1 23 4 -F 1 5 6 8 25 6 -F 1 8 8 1 22 3 -F 1 3 9 1 24 5 -F 1 7 10 8 23 4 -F 1 22 2 1 22 4 -F 1 2 5 1 23 5 -F 1 3 8 1 22 4 -F 1 2 9 1 24 6 -F 1 5 2 13 18 1 -F 1 8 5 12 17 1 -F 1 13 7 2 22 6 -F 1 16 10 2 24 8 -F 1 7 2 13 18 3 -F 1 6 6 13 23 8 -F 1 10 7 13 19 4 -F 1 6 9 13 23 8 -F 1 29 10 2 24 9 -F 1 15 10 6 16 1 -F 1 5 1 13 15 1 -F 1 6 2 13 18 4 -F 1 6 7 13 19 5 -F 1 5 9 13 23 9 -F 1 29 10 9 27 13 -F 1 7 10 14 23 9 -F 1 27 1 5 23 10 -F 1 14 1 9 24 11 -F 1 7 1 13 15 2 -F 1 6 2 13 18 5 -F 1 9 3 13 14 1 -F 1 13 4 13 14 1 -F 1 7 4 14 14 1 -F 1 14 5 9 16 3 -F 1 9 7 13 19 6 -F 1 9 8 13 14 1 -F 1 21 10 9 27 14 -F 1 5 10 14 23 10 -F 1 6 12 13 15 2 -F 1 20 1 11 13 1 -F 1 10 1 13 15 3 -F 1 5 1 14 18 6 -F 1 5 2 13 18 6 -F 1 7 3 13 14 2 -F 1 11 4 13 14 2 -F 1 6 4 14 14 2 -F 1 10 6 13 23 11 -F 1 16 7 11 14 2 -F 1 8 7 13 19 7 -F 1 7 8 13 14 2 -F 1 9 9 13 23 11 -F 1 20 10 11 14 2 -F 1 9 12 13 15 3 -F 1 14 0 5 14 3 -F 1 7 0 13 12 1 -F 1 25 1 5 23 12 -F 1 12 1 13 15 4 -F 1 6 1 14 18 7 -F 1 7 3 13 14 3 -F 1 18 4 5 19 8 -F 1 9 4 13 14 3 -F 1 7 5 13 12 1 -F 1 12 7 5 25 14 -F 1 6 7 13 19 8 -F 1 6 8 13 14 3 -F 1 8 9 13 23 12 -F 1 12 10 5 22 11 -F 1 6 10 13 12 1 -F 1 11 12 5 17 6 -F 1 5 12 13 15 4 -F 1 12 0 8 12 2 -F 1 8 1 8 22 12 -F 1 15 2 7 22 12 -F 1 6 3 13 14 4 -F 1 6 4 8 18 8 -F 1 9 6 8 25 15 -F 1 18 7 5 25 15 -F 1 9 7 8 23 13 -F 1 5 9 8 12 2 -F 1 23 10 3 19 9 -F 1 12 10 8 23 13 -F 1 6 10 13 12 2 -F 1 7 12 8 14 4 -F 1 31 1 5 23 14 -F 1 8 1 14 18 9 -F 1 6 2 14 15 6 -F 1 5 5 14 23 14 -F 1 6 7 14 14 5 -F 1 6 9 14 12 3 -F 1 14 10 8 23 14 -F 1 7 10 14 23 14 -F 1 5 11 14 15 6 -F 1 15 12 8 14 5 -F 1 17 0 6 14 6 -F 1 31 1 0 11 3 -F 1 16 1 6 11 3 -F 1 8 1 11 13 5 -F 1 24 2 6 23 15 -F 1 6 2 14 15 7 -F 1 10 3 6 19 11 -F 1 15 4 6 10 2 -F 1 6 5 6 28 20 -F 1 6 7 14 14 6 -F 1 5 8 6 25 17 -F 1 17 9 6 22 14 -F 1 9 9 11 15 7 -F 1 23 10 6 16 8 -F 1 12 10 11 14 6 -F 1 6 10 14 23 15 -F 1 6 11 6 17 9 -F 1 4 12 6 11 3 -F 1 15 13 6 23 15 -F 1 7 13 11 9 1 -F 1 11 0 14 12 5 -F 1 5 0 15 10 3 -F 1 12 1 14 18 11 -F 1 6 1 15 13 6 -F 1 10 2 14 15 8 -F 1 6 3 14 14 7 -F 1 12 4 14 14 7 -F 1 6 4 15 9 2 -F 1 6 6 14 12 5 -F 1 16 9 11 15 8 -F 1 8 9 14 12 5 -F 1 19 10 11 14 7 -F 1 10 10 14 23 16 -F 1 5 11 14 15 8 -F 1 6 12 14 9 2 -F 1 12 13 14 24 17 -F 1 6 13 15 21 14 -F 1 8 0 14 12 6 -F 1 12 1 14 18 12 -F 1 6 1 15 13 7 -F 1 7 2 14 15 9 -F 1 6 4 14 14 8 -F 1 8 5 14 23 17 -F 1 9 6 14 12 6 -F 1 6 8 14 19 13 -F 1 5 9 14 12 6 -F 1 9 10 14 23 17 -F 1 6 12 14 9 3 -F 1 13 13 14 24 18 -F 1 7 13 15 21 15 -F 1 6 0 4 6 1 -F 1 11 1 4 6 1 -F 1 5 1 14 18 13 -F 1 10 2 14 15 10 -F 1 5 2 15 17 12 -F 1 18 3 2 6 1 -F 1 9 3 14 14 9 -F 1 13 4 1 6 1 -F 1 9 5 14 23 18 -F 1 5 6 14 12 7 -F 1 12 7 1 6 1 -F 1 6 7 4 6 1 -F 1 7 8 14 19 14 -F 1 6 9 14 12 7 -F 1 21 10 1 6 1 -F 1 11 10 14 23 18 -F 1 5 10 15 18 13 -F 1 7 11 14 15 10 -F 1 14 12 4 6 1 -F 1 7 12 14 9 4 -F 1 15 13 2 18 13 -F 1 8 13 14 24 19 -F 1 14 0 2 11 7 -F 1 7 0 14 12 8 -F 1 16 1 2 22 18 -F 1 8 1 14 18 14 -F 1 11 2 14 15 11 -F 1 6 2 15 17 13 -F 1 29 3 2 6 2 -F 1 15 3 4 12 8 -F 1 7 3 14 14 10 -F 1 8 4 2 17 13 -F 1 11 5 2 11 7 -F 1 5 5 14 23 19 -F 1 3 6 2 23 19 -F 1 21 7 2 22 18 -F 1 11 7 14 14 10 -F 1 5 7 15 9 5 -F 1 20 8 2 6 2 -F 1 10 8 14 19 15 -F 1 14 9 2 6 2 -F 1 7 9 14 12 8 -F 1 21 10 2 24 20 -F 1 10 10 14 23 19 -F 1 5 10 15 18 14 -F 1 5 11 2 11 7 -F 1 7 12 2 13 9 -F 1 14 13 2 18 14 -F 1 7 13 14 24 20 -F 1 5 0 7 12 9 -F 1 7 1 7 6 3 -F 1 8 2 7 22 19 -F 1 13 3 2 6 3 -F 1 6 3 7 18 15 -F 1 5 4 7 6 3 -F 1 3 5 7 25 22 -F 1 15 6 7 5 2 -F 1 8 6 14 12 9 -F 1 18 7 4 6 3 -F 1 17 8 2 6 3 -F 1 9 8 7 23 20 -F 1 13 9 2 6 3 -F 1 6 9 7 23 20 -F 1 7 10 7 12 9 -F 1 16 11 7 14 11 -F 1 8 11 14 15 12 -F 1 11 12 7 10 7 -F 1 6 12 14 9 6 -F 1 21 13 2 18 15 -F 1 10 13 7 19 16 -F 1 5 13 14 24 21 -F 1 14 0 11 4 2 -F 1 7 0 14 12 10 -F 1 11 1 7 6 4 -F 1 5 1 14 18 16 -F 1 15 2 14 15 13 -F 1 8 2 15 17 15 -F 1 24 3 0 6 4 -F 1 12 3 14 14 12 -F 1 6 3 15 14 12 -F 1 4 4 7 6 4 -F 1 15 5 14 23 21 -F 1 7 5 15 23 21 -F 1 6 6 7 5 3 -F 1 5 7 14 14 12 -F 1 12 8 14 19 17 -F 1 6 8 15 20 18 -F 1 11 9 14 12 10 -F 1 6 9 15 15 13 -F 1 6 10 14 23 21 -F 1 22 11 0 4 2 -F 1 11 11 14 15 13 -F 1 5 11 15 13 11 -F 1 15 12 0 4 2 -F 1 7 12 14 9 7 -F 1 15 13 14 24 22 -F 1 7 13 15 21 19 -F 1 19 0 3 6 5 -F 1 10 0 11 4 3 -F 1 40 1 3 17 16 -F 1 20 1 7 6 5 -F 1 10 1 14 18 17 -F 1 6 2 3 6 5 -F 1 8 3 14 14 13 -F 1 9 4 3 12 11 -F 1 11 5 3 10 9 -F 1 6 5 14 23 22 -F 1 12 6 3 19 18 -F 1 6 6 7 5 4 -F 1 10 7 3 18 17 -F 1 11 8 3 6 5 -F 1 5 8 14 19 18 -F 1 3 9 3 10 9 -F 1 12 10 3 19 18 -F 1 6 10 14 23 22 -F 1 5 11 3 6 5 -F 1 10 12 3 8 7 -F 1 5 12 14 9 8 -F 1 33 13 3 14 13 -F 1 16 13 12 15 14 -F 1 8 13 14 24 23 -go - -player1 > engine: 15 20 45 -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 2 0 -player2 > engine: 0 3 18 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 9 -player2 > engine: comparing 0 and 13, gives 0 0 0 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 2 0 -player2 > engine: 1 3 22 -player2 > engine: comparing 1 and 4, gives 0 0 0 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 0 0 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 2 0 -player2 > engine: 1 12 11 -player2 > engine: comparing 1 and 13, gives 0 0 0 -player2 > engine: comparing 1 and 14, gives 1 0 0.04558863060331812 -player2 > engine: 1 14 5 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 2 0 -player2 > engine: 2 3 6 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0 -player2 > engine: comparing 2 and 14, gives 0 0 0.05549243454274729 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 2 0 -player2 > engine: 3 3 13 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0 -player2 > engine: comparing 3 and 14, gives 1 0 0.09988694591354103 -player2 > engine: 3 14 6 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 2 0 -player2 > engine: 4 3 6 -player2 > engine: comparing 4 and 4, gives 0 0 0 -player2 > engine: comparing 4 and 5, gives 0 0 0 -player2 > engine: comparing 4 and 6, gives 0 0 0 -player2 > engine: comparing 4 and 7, gives 0 0 0 -player2 > engine: comparing 4 and 8, gives 0 0 0 -player2 > engine: comparing 4 and 9, gives 0 0 0 -player2 > engine: comparing 4 and 10, gives 0 0 0 -player2 > engine: comparing 4 and 11, gives 0 0 0 -player2 > engine: comparing 4 and 12, gives 0 0 0 -player2 > engine: comparing 4 and 13, gives 0 0 0 -player2 > engine: comparing 4 and 14, gives 0 0 0.10183210472368878 -player2 > engine: comparing 4 and 15, gives 0 0 0.22708373983920746 -player2 > engine: comparing 4 and 16, gives 0 0 0.1499795623512657 -player2 > engine: comparing 4 and 17, gives 0 0 0.11343918955705505 -player2 > engine: comparing 4 and 18, gives 0 0 0.24940574636549834 -player2 > engine: comparing 4 and 19, gives 0 0 0.05936455545083338 -player2 > engine: comparing 4 and 20, gives 0 0 0.03679487268696793 -player2 > engine: comparing 4 and 21, gives 0 0 0.2005534900132256 -player2 > engine: comparing 4 and 22, gives 0 0 0.16427799602088494 -player2 > engine: comparing 5 and 0, gives 0 0 0 -player2 > engine: comparing 5 and 1, gives 0 0 0 -player2 > engine: comparing 5 and 2, gives 0 0 0 -player2 > engine: comparing 5 and 3, gives 0 2 0 -player2 > engine: 5 3 16 -player2 > engine: comparing 5 and 4, gives 0 0 0 -player2 > engine: comparing 5 and 5, gives 0 0 0 -player2 > engine: comparing 5 and 6, gives 0 0 0 -player2 > engine: comparing 5 and 7, gives 0 0 0 -player2 > engine: comparing 5 and 8, gives 0 0 0 -player2 > engine: comparing 5 and 9, gives 0 0 0 -player2 > engine: comparing 5 and 10, gives 0 0 0 -player2 > engine: comparing 5 and 11, gives 0 0 0 -player2 > engine: comparing 5 and 12, gives 0 0 0 -player2 > engine: comparing 5 and 13, gives 0 0 0 -player2 > engine: comparing 5 and 14, gives 1 0 0.17718658719013242 -player2 > engine: 5 14 8 -player2 > engine: comparing 5 and 15, gives 0 0 0.2679145032420389 -player2 > engine: comparing 5 and 16, gives 0 0 0.8587561239237547 -player2 > engine: comparing 5 and 17, gives 0 0 0.27765439419946414 -player2 > engine: comparing 5 and 18, gives 0 0 0.2509072471769588 -player2 > engine: comparing 5 and 19, gives 0 0 0.10043998197275285 -player2 > engine: comparing 5 and 20, gives 0 0 0.10647104051030622 -player2 > engine: comparing 5 and 21, gives 0 0 0.45195347856053425 -player2 > engine: comparing 5 and 22, gives 0 0 0.31345863573281063 -player2 > engine: comparing 6 and 0, gives 0 0 0 -player2 > engine: comparing 6 and 1, gives 0 0 0 -player2 > engine: comparing 6 and 2, gives 0 0 0 -player2 > engine: comparing 6 and 3, gives 0 2 0 -player2 > engine: 6 3 3 -player2 > engine: comparing 6 and 4, gives 0 0 0 -player2 > engine: comparing 6 and 5, gives 0 0 0 -player2 > engine: comparing 6 and 6, gives 0 0 0 -player2 > engine: comparing 6 and 7, gives 0 0 0 -player2 > engine: comparing 6 and 8, gives 0 0 0 -player2 > engine: comparing 6 and 9, gives 0 0 0 -player2 > engine: comparing 6 and 10, gives 0 0 0 -player2 > engine: comparing 6 and 11, gives 0 0 0 -player2 > engine: comparing 6 and 12, gives 0 0 0 -player2 > engine: comparing 6 and 13, gives 0 0 0 -player2 > engine: comparing 6 and 14, gives 0 0 0.34432768245496265 -player2 > engine: comparing 6 and 15, gives 0 0 0.8587560207361102 -player2 > engine: comparing 6 and 16, gives 0 0 0.2679144863270005 -player2 > engine: comparing 6 and 17, gives 0 0 0.2509072448814937 -player2 > engine: comparing 6 and 18, gives 0 0 0.2776543771094341 -player2 > engine: comparing 6 and 19, gives 0 0 0.10647103965820814 -player2 > engine: comparing 6 and 20, gives 0 0 0.10043997700588962 -player2 > engine: comparing 6 and 21, gives 0 0 0.3134586134786785 -player2 > engine: comparing 6 and 22, gives 0 0 0.4519534490208635 -player2 > engine: comparing 7 and 0, gives 0 0 0 -player2 > engine: comparing 7 and 1, gives 0 0 0 -player2 > engine: comparing 7 and 2, gives 0 0 0 -player2 > engine: comparing 7 and 3, gives 0 2 0 -player2 > engine: 7 3 6 -player2 > engine: comparing 7 and 4, gives 0 0 0 -player2 > engine: comparing 7 and 5, gives 0 0 0 -player2 > engine: comparing 7 and 6, gives 0 0 0 -player2 > engine: comparing 7 and 7, gives 0 0 0 -player2 > engine: comparing 7 and 8, gives 0 0 0 -player2 > engine: comparing 7 and 9, gives 0 0 0 -player2 > engine: comparing 7 and 10, gives 0 0 0 -player2 > engine: comparing 7 and 11, gives 0 0 0 -player2 > engine: comparing 7 and 12, gives 0 0 0 -player2 > engine: comparing 7 and 13, gives 0 0 0 -player2 > engine: comparing 7 and 14, gives 0 0 0.095945721857336 -player2 > engine: comparing 7 and 15, gives 0 0 0.22614589234384827 -player2 > engine: comparing 7 and 16, gives 0 0 0.1038864721510475 -player2 > engine: comparing 7 and 17, gives 0 0 0.08422807345454641 -player2 > engine: comparing 7 and 18, gives 0 0 0.12736596376291823 -player2 > engine: comparing 7 and 19, gives 0 0 0.04687401522001777 -player2 > engine: comparing 7 and 20, gives 0 0 0.03158308198757011 -player2 > engine: comparing 7 and 21, gives 0 0 0.1315350076000451 -player2 > engine: comparing 7 and 22, gives 0 0 0.13803868836148953 -player2 > engine: comparing 8 and 0, gives 0 0 0 -player2 > engine: comparing 8 and 1, gives 0 0 0 -player2 > engine: comparing 8 and 2, gives 0 0 0 -player2 > engine: comparing 8 and 3, gives 0 2 0 -player2 > engine: 8 3 7 -player2 > engine: comparing 8 and 4, gives 0 0 0 -player2 > engine: comparing 8 and 5, gives 0 0 0 -player2 > engine: comparing 8 and 6, gives 0 0 0 -player2 > engine: comparing 8 and 7, gives 0 0 0 -player2 > engine: comparing 8 and 8, gives 0 0 0 -player2 > engine: comparing 8 and 9, gives 0 0 0 -player2 > engine: comparing 8 and 10, gives 0 0 0 -player2 > engine: comparing 8 and 11, gives 0 0 0 -player2 > engine: comparing 8 and 12, gives 0 0 0 -player2 > engine: comparing 8 and 13, gives 0 0 0 -player2 > engine: comparing 8 and 14, gives 0 0 0.07127486247407648 -player2 > engine: comparing 8 and 15, gives 0 0 0.1038864721510475 -player2 > engine: comparing 8 and 16, gives 0 0 0.22614589234384827 -player2 > engine: comparing 8 and 17, gives 0 0 0.12736595614777202 -player2 > engine: comparing 8 and 18, gives 0 0 0.08422806818949993 -player2 > engine: comparing 8 and 19, gives 0 0 0.03158308256041272 -player2 > engine: comparing 8 and 20, gives 0 0 0.04687401198493261 -player2 > engine: comparing 8 and 21, gives 0 0 0.1380386883614895 -player2 > engine: comparing 8 and 22, gives 0 0 0.13153500760004508 -player2 > engine: comparing 9 and 0, gives 0 0 0 -player2 > engine: comparing 9 and 1, gives 0 0 0 -player2 > engine: comparing 9 and 2, gives 0 0 0 -player2 > engine: comparing 9 and 3, gives 0 2 0 -player2 > engine: 9 3 13 -player2 > engine: comparing 9 and 4, gives 0 0 0 -player2 > engine: comparing 9 and 5, gives 0 0 0 -player2 > engine: comparing 9 and 6, gives 0 0 0 -player2 > engine: comparing 9 and 7, gives 0 0 0 -player2 > engine: comparing 9 and 8, gives 0 0 0 -player2 > engine: comparing 9 and 9, gives 0 0 0 -player2 > engine: comparing 9 and 10, gives 0 0 0 -player2 > engine: comparing 9 and 11, gives 0 0 0 -player2 > engine: comparing 9 and 12, gives 0 0 0 -player2 > engine: comparing 9 and 13, gives 0 0 0 -player2 > engine: comparing 9 and 14, gives 1 0 0.3467010984295745 -player2 > engine: 9 14 7 -player2 > engine: comparing 9 and 15, gives 0 0 0.4048349103654399 -player2 > engine: comparing 9 and 16, gives 0 0 0.33785154287519886 -player2 > engine: comparing 9 and 17, gives 0 0 0.6074514794184357 -player2 > engine: comparing 9 and 18, gives 0 0 0.19924822135829154 -player2 > engine: comparing 9 and 19, gives 0 0 0.07449620809793456 -player2 > engine: comparing 9 and 20, gives 0 0 0.5487032223385839 -player2 > engine: comparing 9 and 21, gives 0 0 0.2819233766076424 -player2 > engine: comparing 9 and 22, gives 0 0 0.6956931696915103 -player2 > engine: comparing 10 and 0, gives 0 0 0 -player2 > engine: comparing 10 and 1, gives 0 0 0 -player2 > engine: comparing 10 and 2, gives 0 0 0 -player2 > engine: comparing 10 and 3, gives 0 2 0 -player2 > engine: 10 3 12 -player2 > engine: comparing 10 and 4, gives 0 0 0 -player2 > engine: comparing 10 and 5, gives 0 0 0 -player2 > engine: comparing 10 and 6, gives 0 0 0 -player2 > engine: comparing 10 and 7, gives 0 0 0 -player2 > engine: comparing 10 and 8, gives 0 0 0 -player2 > engine: comparing 10 and 9, gives 0 0 0 -player2 > engine: comparing 10 and 10, gives 0 0 0 -player2 > engine: comparing 10 and 11, gives 0 0 0 -player2 > engine: comparing 10 and 12, gives 0 0 0 -player2 > engine: comparing 10 and 13, gives 0 0 0 -player2 > engine: comparing 10 and 14, gives 1 0 0.17957565458240538 -player2 > engine: 10 14 6 -player2 > engine: comparing 10 and 15, gives 0 0 0.3378515362372791 -player2 > engine: comparing 10 and 16, gives 0 0 0.40483488306852417 -player2 > engine: comparing 10 and 17, gives 0 0 0.19924822135829154 -player2 > engine: comparing 10 and 18, gives 0 0 0.6074514794184359 -player2 > engine: comparing 10 and 19, gives 0 0 0.5487032578036376 -player2 > engine: comparing 10 and 20, gives 0 0 0.07449620417375695 -player2 > engine: comparing 10 and 21, gives 0 0 0.6956930897502994 -player2 > engine: comparing 10 and 22, gives 0 0 0.28192336885188074 -player2 > engine: comparing 11 and 0, gives 0 2 0 -player2 > engine: 11 0 9 -player2 > engine: comparing 11 and 1, gives 0 0 0 -player2 > engine: comparing 11 and 2, gives 0 0 0 -player2 > engine: comparing 11 and 3, gives 0 2 0 -player2 > engine: 11 3 4 -player2 > engine: comparing 11 and 4, gives 0 0 0 -player2 > engine: comparing 11 and 5, gives 0 0 0 -player2 > engine: comparing 11 and 6, gives 0 0 0 -player2 > engine: comparing 11 and 7, gives 0 0 0 -player2 > engine: comparing 11 and 8, gives 0 0 0 -player2 > engine: comparing 11 and 9, gives 0 0 0 -player2 > engine: comparing 11 and 10, gives 0 0 0 -player2 > engine: comparing 11 and 11, gives 0 0 0 -player2 > engine: comparing 11 and 12, gives 0 0 0 -player2 > engine: comparing 11 and 13, gives 0 0 0 -player2 > engine: comparing 11 and 14, gives 0 0 0.05382426922307793 -player2 > engine: comparing 11 and 15, gives 0 0 0.0930074676040492 -player2 > engine: comparing 11 and 16, gives 0 0 0.18982941772771 -player2 > engine: comparing 11 and 17, gives 0 0 0.09169582641334716 -player2 > engine: comparing 11 and 18, gives 0 0 0.1239667156398509 -player2 > engine: comparing 11 and 19, gives 0 0 0.03135435907250975 -player2 > engine: comparing 11 and 20, gives 0 0 0.025677251010321197 -player2 > engine: comparing 11 and 21, gives 0 0 0.16796875320067442 -player2 > engine: comparing 11 and 22, gives 0 0 0.09875298051708185 -player2 > engine: comparing 12 and 0, gives 0 2 0 -player2 > engine: 12 0 8 -player2 > engine: comparing 12 and 1, gives 0 0 0 -player2 > engine: comparing 12 and 2, gives 0 0 0 -player2 > engine: comparing 12 and 3, gives 0 2 0 -player2 > engine: 12 3 4 -player2 > engine: comparing 12 and 4, gives 0 0 0 -player2 > engine: comparing 12 and 5, gives 0 0 0 -player2 > engine: comparing 12 and 6, gives 0 0 0 -player2 > engine: comparing 12 and 7, gives 0 0 0 -player2 > engine: comparing 12 and 8, gives 0 0 0 -player2 > engine: comparing 12 and 9, gives 0 0 0 -player2 > engine: comparing 12 and 10, gives 0 0 0 -player2 > engine: comparing 12 and 11, gives 0 0 0 -player2 > engine: comparing 12 and 12, gives 0 0 0 -player2 > engine: comparing 12 and 13, gives 0 0 0 -player2 > engine: comparing 12 and 14, gives 0 0 0.08959020236950047 -player2 > engine: comparing 12 and 15, gives 0 0 0.18982943116197878 -player2 > engine: comparing 12 and 16, gives 0 0 0.09300746437118698 -player2 > engine: comparing 12 and 17, gives 0 0 0.12396671563985087 -player2 > engine: comparing 12 and 18, gives 0 0 0.09169582641334716 -player2 > engine: comparing 12 and 19, gives 0 0 0.025677253218881164 -player2 > engine: comparing 12 and 20, gives 0 0 0.03135435561387144 -player2 > engine: comparing 12 and 21, gives 0 0 0.09875298083647106 -player2 > engine: comparing 12 and 22, gives 0 0 0.16796874189371808 -player2 > engine: comparing 13 and 0, gives 0 0 0 -player2 > engine: comparing 13 and 1, gives 0 0 0 -player2 > engine: comparing 13 and 2, gives 0 0 0 -player2 > engine: comparing 13 and 3, gives 0 2 0 -player2 > engine: 13 3 34 -player2 > engine: comparing 13 and 4, gives 0 0 0 -player2 > engine: comparing 13 and 5, gives 0 0 0 -player2 > engine: comparing 13 and 6, gives 0 0 0 -player2 > engine: comparing 13 and 7, gives 0 0 0 -player2 > engine: comparing 13 and 8, gives 0 0 0 -player2 > engine: comparing 13 and 9, gives 0 0 0 -player2 > engine: comparing 13 and 10, gives 0 2 0 -player2 > engine: 13 10 17 -player2 > engine: comparing 13 and 11, gives 0 0 0 -player2 > engine: comparing 13 and 12, gives 0 2 0 -player2 > engine: 13 12 9 -player2 > engine: comparing 13 and 13, gives 0 0 0 -player2 > engine: comparing 13 and 14, gives 0 0 0.08466705183160025 -player2 > engine: comparing 13 and 15, gives 0 0 0.14330624728818764 -player2 > engine: comparing 13 and 16, gives 0 0 0.5937142863110723 -player2 > engine: comparing 13 and 17, gives 0 0 0.11410854030250688 -player2 > engine: comparing 13 and 18, gives 0 0 0.242703882791183 -player2 > engine: comparing 13 and 19, gives 0 0 0.11321970317438007 -player2 > engine: comparing 13 and 20, gives 0 0 0.04135343135737552 -player2 > engine: comparing 13 and 21, gives 0 0 0.8537779168222296 -player2 > engine: comparing 13 and 22, gives 0 0 0.14242224698289055 -player2 > engine: go -engine > player1: P 11.803996 11.215721 2 12 3 -P 9.319567 21.808874 2 57 5 -P 14.288424 0.622569 2 29 5 -P 11.865493 5.273785 2 23 3 -P 11.742498 17.157658 2 47 3 -P 4.254093 0.000000 2 19 1 -P 19.353899 22.431443 2 20 1 -P 14.743614 22.324001 2 10 3 -P 8.864377 0.107441 2 11 3 -P 19.854347 0.711934 2 14 1 -P 3.753644 21.719509 2 13 1 -P 8.864814 9.736624 2 37 5 -P 14.743177 12.694819 2 17 5 -P 0.000000 10.809889 2 77 2 -P 23.607991 11.621554 1 18 2 -P 20.396768 15.522861 1 48 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 2 9 9 10 27 2 -F 2 16 1 9 24 1 -F 2 13 10 9 27 4 -F 2 3 1 9 24 2 -F 2 6 7 9 23 1 -F 2 8 10 9 27 5 -F 2 7 10 8 23 2 -F 2 8 1 8 22 2 -F 2 22 2 1 22 2 -F 2 4 5 1 23 3 -F 2 5 6 8 25 5 -F 2 8 8 1 22 2 -F 2 3 9 1 24 4 -F 2 7 10 8 23 3 -F 2 22 2 1 22 3 -F 2 2 5 1 23 4 -F 2 3 8 1 22 3 -F 2 2 9 1 24 5 -F 2 13 7 2 22 5 -F 2 16 10 2 24 7 -F 2 7 2 13 18 2 -F 2 6 6 13 23 7 -F 2 10 7 13 19 3 -F 2 6 9 13 23 7 -F 2 29 10 2 24 8 -F 2 6 2 13 18 3 -F 2 6 7 13 19 4 -F 2 5 9 13 23 8 -F 2 29 10 9 27 12 -F 2 7 10 14 23 8 -F 2 27 1 5 23 9 -F 2 14 1 9 24 10 -F 2 7 1 13 15 1 -F 2 6 2 13 18 4 -F 2 14 5 9 16 2 -F 2 9 7 13 19 5 -F 2 21 10 9 27 13 -F 2 5 10 14 23 9 -F 2 6 12 13 15 1 -F 2 10 1 13 15 2 -F 2 5 1 14 18 5 -F 2 5 2 13 18 5 -F 2 7 3 13 14 1 -F 2 11 4 13 14 1 -F 2 6 4 14 14 1 -F 2 10 6 13 23 10 -F 2 16 7 11 14 1 -F 2 8 7 13 19 6 -F 2 7 8 13 14 1 -F 2 9 9 13 23 10 -F 2 20 10 11 14 1 -F 2 9 12 13 15 2 -F 2 14 0 5 14 2 -F 2 25 1 5 23 11 -F 2 12 1 13 15 3 -F 2 6 1 14 18 6 -F 2 7 3 13 14 2 -F 2 18 4 5 19 7 -F 2 9 4 13 14 2 -F 2 12 7 5 25 13 -F 2 6 7 13 19 7 -F 2 6 8 13 14 2 -F 2 8 9 13 23 11 -F 2 12 10 5 22 10 -F 2 11 12 5 17 5 -F 2 5 12 13 15 3 -F 2 12 0 8 12 1 -F 2 8 1 8 22 11 -F 2 15 2 7 22 11 -F 2 6 3 13 14 3 -F 2 6 4 8 18 7 -F 2 9 6 8 25 14 -F 2 18 7 5 25 14 -F 2 9 7 8 23 12 -F 2 5 9 8 12 1 -F 2 23 10 3 19 8 -F 2 12 10 8 23 12 -F 2 6 10 13 12 1 -F 2 7 12 8 14 3 -F 2 31 1 5 23 13 -F 2 8 1 14 18 8 -F 2 6 2 14 15 5 -F 2 5 5 14 23 13 -F 2 6 7 14 14 4 -F 2 6 9 14 12 2 -F 2 14 10 8 23 13 -F 2 7 10 14 23 13 -F 2 5 11 14 15 5 -F 2 15 12 8 14 4 -F 2 17 0 6 14 5 -F 2 31 1 0 11 2 -F 2 16 1 6 11 2 -F 2 8 1 11 13 4 -F 2 24 2 6 23 14 -F 2 6 2 14 15 6 -F 2 10 3 6 19 10 -F 2 15 4 6 10 1 -F 2 6 5 6 28 19 -F 2 6 7 14 14 5 -F 2 5 8 6 25 16 -F 2 17 9 6 22 13 -F 2 9 9 11 15 6 -F 2 23 10 6 16 7 -F 2 12 10 11 14 5 -F 2 6 10 14 23 14 -F 2 6 11 6 17 8 -F 2 4 12 6 11 2 -F 2 15 13 6 23 14 -F 2 11 0 14 12 4 -F 2 5 0 15 10 2 -F 2 12 1 14 18 10 -F 2 6 1 15 13 5 -F 2 10 2 14 15 7 -F 2 6 3 14 14 6 -F 2 12 4 14 14 6 -F 2 6 4 15 9 1 -F 2 6 6 14 12 4 -F 2 16 9 11 15 7 -F 2 8 9 14 12 4 -F 2 19 10 11 14 6 -F 2 10 10 14 23 15 -F 2 5 11 14 15 7 -F 2 6 12 14 9 1 -F 2 12 13 14 24 16 -F 2 6 13 15 21 13 -F 2 8 0 14 12 5 -F 2 12 1 14 18 11 -F 2 6 1 15 13 6 -F 2 7 2 14 15 8 -F 2 6 4 14 14 7 -F 2 8 5 14 23 16 -F 2 9 6 14 12 5 -F 2 6 8 14 19 12 -F 2 5 9 14 12 5 -F 2 9 10 14 23 16 -F 2 6 12 14 9 2 -F 2 13 13 14 24 17 -F 2 7 13 15 21 14 -F 2 5 1 14 18 12 -F 2 10 2 14 15 9 -F 2 5 2 15 17 11 -F 2 9 3 14 14 8 -F 2 9 5 14 23 17 -F 2 5 6 14 12 6 -F 2 7 8 14 19 13 -F 2 6 9 14 12 6 -F 2 11 10 14 23 17 -F 2 5 10 15 18 12 -F 2 7 11 14 15 9 -F 2 7 12 14 9 3 -F 2 15 13 2 18 12 -F 2 8 13 14 24 18 -F 2 14 0 2 11 6 -F 2 7 0 14 12 7 -F 2 16 1 2 22 17 -F 2 8 1 14 18 13 -F 2 11 2 14 15 10 -F 2 6 2 15 17 12 -F 2 29 3 2 6 1 -F 2 15 3 4 12 7 -F 2 7 3 14 14 9 -F 2 8 4 2 17 12 -F 2 11 5 2 11 6 -F 2 5 5 14 23 18 -F 2 3 6 2 23 18 -F 2 21 7 2 22 17 -F 2 11 7 14 14 9 -F 2 5 7 15 9 4 -F 2 20 8 2 6 1 -F 2 10 8 14 19 14 -F 2 14 9 2 6 1 -F 2 7 9 14 12 7 -F 2 21 10 2 24 19 -F 2 10 10 14 23 18 -F 2 5 10 15 18 13 -F 2 5 11 2 11 6 -F 2 7 12 2 13 8 -F 2 14 13 2 18 13 -F 2 7 13 14 24 19 -F 2 5 0 7 12 8 -F 2 7 1 7 6 2 -F 2 8 2 7 22 18 -F 2 13 3 2 6 2 -F 2 6 3 7 18 14 -F 2 5 4 7 6 2 -F 2 3 5 7 25 21 -F 2 15 6 7 5 1 -F 2 8 6 14 12 8 -F 2 18 7 4 6 2 -F 2 17 8 2 6 2 -F 2 9 8 7 23 19 -F 2 13 9 2 6 2 -F 2 6 9 7 23 19 -F 2 7 10 7 12 8 -F 2 16 11 7 14 10 -F 2 8 11 14 15 11 -F 2 11 12 7 10 6 -F 2 6 12 14 9 5 -F 2 21 13 2 18 14 -F 2 10 13 7 19 15 -F 2 5 13 14 24 20 -F 2 14 0 11 4 1 -F 2 7 0 14 12 9 -F 2 11 1 7 6 3 -F 2 5 1 14 18 15 -F 2 15 2 14 15 12 -F 2 8 2 15 17 14 -F 2 24 3 0 6 3 -F 2 12 3 14 14 11 -F 2 6 3 15 14 11 -F 2 4 4 7 6 3 -F 2 15 5 14 23 20 -F 2 7 5 15 23 20 -F 2 6 6 7 5 2 -F 2 5 7 14 14 11 -F 2 12 8 14 19 16 -F 2 6 8 15 20 17 -F 2 11 9 14 12 9 -F 2 6 9 15 15 12 -F 2 6 10 14 23 20 -F 2 22 11 0 4 1 -F 2 11 11 14 15 12 -F 2 5 11 15 13 10 -F 2 15 12 0 4 1 -F 2 7 12 14 9 6 -F 2 15 13 14 24 21 -F 2 7 13 15 21 18 -F 2 19 0 3 6 4 -F 2 10 0 11 4 2 -F 2 40 1 3 17 15 -F 2 20 1 7 6 4 -F 2 10 1 14 18 16 -F 2 6 2 3 6 4 -F 2 8 3 14 14 12 -F 2 9 4 3 12 10 -F 2 11 5 3 10 8 -F 2 6 5 14 23 21 -F 2 12 6 3 19 17 -F 2 6 6 7 5 3 -F 2 10 7 3 18 16 -F 2 11 8 3 6 4 -F 2 5 8 14 19 17 -F 2 3 9 3 10 8 -F 2 12 10 3 19 17 -F 2 6 10 14 23 21 -F 2 5 11 3 6 4 -F 2 10 12 3 8 6 -F 2 5 12 14 9 7 -F 2 33 13 3 14 12 -F 2 16 13 12 15 13 -F 2 8 13 14 24 22 -F 1 45 15 20 13 12 -F 2 18 0 3 6 5 -F 2 9 0 12 4 3 -F 2 22 1 3 17 16 -F 2 11 1 12 11 10 -F 2 5 1 14 18 17 -F 2 6 2 3 6 5 -F 2 6 3 14 14 13 -F 2 6 4 3 12 11 -F 2 16 5 3 10 9 -F 2 8 5 14 23 22 -F 2 3 6 3 19 18 -F 2 6 7 3 18 17 -F 2 7 8 3 6 5 -F 2 13 9 3 10 9 -F 2 7 9 14 12 11 -F 2 12 10 3 19 18 -F 2 6 10 14 23 22 -F 2 9 11 0 4 3 -F 2 4 11 3 6 5 -F 2 8 12 0 4 3 -F 2 4 12 3 8 7 -F 2 34 13 3 14 13 -F 2 17 13 10 12 11 -F 2 9 13 12 15 14 -go - -engine > player2: P 11.803996 11.215721 1 12 3 -P 9.319567 21.808874 1 57 5 -P 14.288424 0.622569 1 29 5 -P 11.865493 5.273785 1 23 3 -P 11.742498 17.157658 1 47 3 -P 4.254093 0.000000 1 19 1 -P 19.353899 22.431443 1 20 1 -P 14.743614 22.324001 1 10 3 -P 8.864377 0.107441 1 11 3 -P 19.854347 0.711934 1 14 1 -P 3.753644 21.719509 1 13 1 -P 8.864814 9.736624 1 37 5 -P 14.743177 12.694819 1 17 5 -P 0.000000 10.809889 1 77 2 -P 23.607991 11.621554 2 18 2 -P 20.396768 15.522861 2 48 3 -P 3.211223 6.908581 0 59 3 -P 17.028748 6.659769 0 4 2 -P 6.579243 15.771674 0 3 2 -P 0.782928 19.607505 0 55 1 -P 22.825064 2.823937 0 55 1 -P 2.601033 13.172383 0 58 3 -P 21.006958 9.259059 0 58 3 -F 1 9 9 10 27 2 -F 1 16 1 9 24 1 -F 1 13 10 9 27 4 -F 1 3 1 9 24 2 -F 1 6 7 9 23 1 -F 1 8 10 9 27 5 -F 1 7 10 8 23 2 -F 1 8 1 8 22 2 -F 1 22 2 1 22 2 -F 1 4 5 1 23 3 -F 1 5 6 8 25 5 -F 1 8 8 1 22 2 -F 1 3 9 1 24 4 -F 1 7 10 8 23 3 -F 1 22 2 1 22 3 -F 1 2 5 1 23 4 -F 1 3 8 1 22 3 -F 1 2 9 1 24 5 -F 1 13 7 2 22 5 -F 1 16 10 2 24 7 -F 1 7 2 13 18 2 -F 1 6 6 13 23 7 -F 1 10 7 13 19 3 -F 1 6 9 13 23 7 -F 1 29 10 2 24 8 -F 1 6 2 13 18 3 -F 1 6 7 13 19 4 -F 1 5 9 13 23 8 -F 1 29 10 9 27 12 -F 1 7 10 14 23 8 -F 1 27 1 5 23 9 -F 1 14 1 9 24 10 -F 1 7 1 13 15 1 -F 1 6 2 13 18 4 -F 1 14 5 9 16 2 -F 1 9 7 13 19 5 -F 1 21 10 9 27 13 -F 1 5 10 14 23 9 -F 1 6 12 13 15 1 -F 1 10 1 13 15 2 -F 1 5 1 14 18 5 -F 1 5 2 13 18 5 -F 1 7 3 13 14 1 -F 1 11 4 13 14 1 -F 1 6 4 14 14 1 -F 1 10 6 13 23 10 -F 1 16 7 11 14 1 -F 1 8 7 13 19 6 -F 1 7 8 13 14 1 -F 1 9 9 13 23 10 -F 1 20 10 11 14 1 -F 1 9 12 13 15 2 -F 1 14 0 5 14 2 -F 1 25 1 5 23 11 -F 1 12 1 13 15 3 -F 1 6 1 14 18 6 -F 1 7 3 13 14 2 -F 1 18 4 5 19 7 -F 1 9 4 13 14 2 -F 1 12 7 5 25 13 -F 1 6 7 13 19 7 -F 1 6 8 13 14 2 -F 1 8 9 13 23 11 -F 1 12 10 5 22 10 -F 1 11 12 5 17 5 -F 1 5 12 13 15 3 -F 1 12 0 8 12 1 -F 1 8 1 8 22 11 -F 1 15 2 7 22 11 -F 1 6 3 13 14 3 -F 1 6 4 8 18 7 -F 1 9 6 8 25 14 -F 1 18 7 5 25 14 -F 1 9 7 8 23 12 -F 1 5 9 8 12 1 -F 1 23 10 3 19 8 -F 1 12 10 8 23 12 -F 1 6 10 13 12 1 -F 1 7 12 8 14 3 -F 1 31 1 5 23 13 -F 1 8 1 14 18 8 -F 1 6 2 14 15 5 -F 1 5 5 14 23 13 -F 1 6 7 14 14 4 -F 1 6 9 14 12 2 -F 1 14 10 8 23 13 -F 1 7 10 14 23 13 -F 1 5 11 14 15 5 -F 1 15 12 8 14 4 -F 1 17 0 6 14 5 -F 1 31 1 0 11 2 -F 1 16 1 6 11 2 -F 1 8 1 11 13 4 -F 1 24 2 6 23 14 -F 1 6 2 14 15 6 -F 1 10 3 6 19 10 -F 1 15 4 6 10 1 -F 1 6 5 6 28 19 -F 1 6 7 14 14 5 -F 1 5 8 6 25 16 -F 1 17 9 6 22 13 -F 1 9 9 11 15 6 -F 1 23 10 6 16 7 -F 1 12 10 11 14 5 -F 1 6 10 14 23 14 -F 1 6 11 6 17 8 -F 1 4 12 6 11 2 -F 1 15 13 6 23 14 -F 1 11 0 14 12 4 -F 1 5 0 15 10 2 -F 1 12 1 14 18 10 -F 1 6 1 15 13 5 -F 1 10 2 14 15 7 -F 1 6 3 14 14 6 -F 1 12 4 14 14 6 -F 1 6 4 15 9 1 -F 1 6 6 14 12 4 -F 1 16 9 11 15 7 -F 1 8 9 14 12 4 -F 1 19 10 11 14 6 -F 1 10 10 14 23 15 -F 1 5 11 14 15 7 -F 1 6 12 14 9 1 -F 1 12 13 14 24 16 -F 1 6 13 15 21 13 -F 1 8 0 14 12 5 -F 1 12 1 14 18 11 -F 1 6 1 15 13 6 -F 1 7 2 14 15 8 -F 1 6 4 14 14 7 -F 1 8 5 14 23 16 -F 1 9 6 14 12 5 -F 1 6 8 14 19 12 -F 1 5 9 14 12 5 -F 1 9 10 14 23 16 -F 1 6 12 14 9 2 -F 1 13 13 14 24 17 -F 1 7 13 15 21 14 -F 1 5 1 14 18 12 -F 1 10 2 14 15 9 -F 1 5 2 15 17 11 -F 1 9 3 14 14 8 -F 1 9 5 14 23 17 -F 1 5 6 14 12 6 -F 1 7 8 14 19 13 -F 1 6 9 14 12 6 -F 1 11 10 14 23 17 -F 1 5 10 15 18 12 -F 1 7 11 14 15 9 -F 1 7 12 14 9 3 -F 1 15 13 2 18 12 -F 1 8 13 14 24 18 -F 1 14 0 2 11 6 -F 1 7 0 14 12 7 -F 1 16 1 2 22 17 -F 1 8 1 14 18 13 -F 1 11 2 14 15 10 -F 1 6 2 15 17 12 -F 1 29 3 2 6 1 -F 1 15 3 4 12 7 -F 1 7 3 14 14 9 -F 1 8 4 2 17 12 -F 1 11 5 2 11 6 -F 1 5 5 14 23 18 -F 1 3 6 2 23 18 -F 1 21 7 2 22 17 -F 1 11 7 14 14 9 -F 1 5 7 15 9 4 -F 1 20 8 2 6 1 -F 1 10 8 14 19 14 -F 1 14 9 2 6 1 -F 1 7 9 14 12 7 -F 1 21 10 2 24 19 -F 1 10 10 14 23 18 -F 1 5 10 15 18 13 -F 1 5 11 2 11 6 -F 1 7 12 2 13 8 -F 1 14 13 2 18 13 -F 1 7 13 14 24 19 -F 1 5 0 7 12 8 -F 1 7 1 7 6 2 -F 1 8 2 7 22 18 -F 1 13 3 2 6 2 -F 1 6 3 7 18 14 -F 1 5 4 7 6 2 -F 1 3 5 7 25 21 -F 1 15 6 7 5 1 -F 1 8 6 14 12 8 -F 1 18 7 4 6 2 -F 1 17 8 2 6 2 -F 1 9 8 7 23 19 -F 1 13 9 2 6 2 -F 1 6 9 7 23 19 -F 1 7 10 7 12 8 -F 1 16 11 7 14 10 -F 1 8 11 14 15 11 -F 1 11 12 7 10 6 -F 1 6 12 14 9 5 -F 1 21 13 2 18 14 -F 1 10 13 7 19 15 -F 1 5 13 14 24 20 -F 1 14 0 11 4 1 -F 1 7 0 14 12 9 -F 1 11 1 7 6 3 -F 1 5 1 14 18 15 -F 1 15 2 14 15 12 -F 1 8 2 15 17 14 -F 1 24 3 0 6 3 -F 1 12 3 14 14 11 -F 1 6 3 15 14 11 -F 1 4 4 7 6 3 -F 1 15 5 14 23 20 -F 1 7 5 15 23 20 -F 1 6 6 7 5 2 -F 1 5 7 14 14 11 -F 1 12 8 14 19 16 -F 1 6 8 15 20 17 -F 1 11 9 14 12 9 -F 1 6 9 15 15 12 -F 1 6 10 14 23 20 -F 1 22 11 0 4 1 -F 1 11 11 14 15 12 -F 1 5 11 15 13 10 -F 1 15 12 0 4 1 -F 1 7 12 14 9 6 -F 1 15 13 14 24 21 -F 1 7 13 15 21 18 -F 1 19 0 3 6 4 -F 1 10 0 11 4 2 -F 1 40 1 3 17 15 -F 1 20 1 7 6 4 -F 1 10 1 14 18 16 -F 1 6 2 3 6 4 -F 1 8 3 14 14 12 -F 1 9 4 3 12 10 -F 1 11 5 3 10 8 -F 1 6 5 14 23 21 -F 1 12 6 3 19 17 -F 1 6 6 7 5 3 -F 1 10 7 3 18 16 -F 1 11 8 3 6 4 -F 1 5 8 14 19 17 -F 1 3 9 3 10 8 -F 1 12 10 3 19 17 -F 1 6 10 14 23 21 -F 1 5 11 3 6 4 -F 1 10 12 3 8 6 -F 1 5 12 14 9 7 -F 1 33 13 3 14 12 -F 1 16 13 12 15 13 -F 1 8 13 14 24 22 -F 2 45 15 20 13 12 -F 1 18 0 3 6 5 -F 1 9 0 12 4 3 -F 1 22 1 3 17 16 -F 1 11 1 12 11 10 -F 1 5 1 14 18 17 -F 1 6 2 3 6 5 -F 1 6 3 14 14 13 -F 1 6 4 3 12 11 -F 1 16 5 3 10 9 -F 1 8 5 14 23 22 -F 1 3 6 3 19 18 -F 1 6 7 3 18 17 -F 1 7 8 3 6 5 -F 1 13 9 3 10 9 -F 1 7 9 14 12 11 -F 1 12 10 3 19 18 -F 1 6 10 14 23 22 -F 1 9 11 0 4 3 -F 1 4 11 3 6 5 -F 1 8 12 0 4 3 -F 1 4 12 3 8 7 -F 1 34 13 3 14 13 -F 1 17 13 10 12 11 -F 1 9 13 12 15 14 -go - -player1 > engine: go -player2 > engine: comparing 0 and 0, gives 0 0 0 -player2 > engine: comparing 0 and 1, gives 0 0 0 -player2 > engine: comparing 0 and 2, gives 0 0 0 -player2 > engine: comparing 0 and 3, gives 0 2 0 -player2 > engine: 0 3 6 -player2 > engine: comparing 0 and 4, gives 0 0 0 -player2 > engine: comparing 0 and 5, gives 0 0 0 -player2 > engine: comparing 0 and 6, gives 0 0 0 -player2 > engine: comparing 0 and 7, gives 0 0 0 -player2 > engine: comparing 0 and 8, gives 0 0 0 -player2 > engine: comparing 0 and 9, gives 0 0 0 -player2 > engine: comparing 0 and 10, gives 0 0 0 -player2 > engine: comparing 0 and 11, gives 0 0 0 -player2 > engine: comparing 0 and 12, gives 0 2 0 -player2 > engine: 0 12 3 -player2 > engine: comparing 0 and 13, gives 0 0 0 -player2 > engine: comparing 0 and 14, gives 0 0 0.11288940705410845 -player2 > engine: comparing 0 and 15, gives 0 0 0.20807702359301603 -player2 > engine: comparing 0 and 16, gives 0 0 0.20807700424013434 -player2 > engine: comparing 0 and 17, gives 0 0 0.19234046268936214 -player2 > engine: comparing 0 and 18, gives 0 0 0.19234042354181788 -player2 > engine: comparing 0 and 19, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 20, gives 0 0 0.04812681488955923 -player2 > engine: comparing 0 and 21, gives 0 0 0.21256991605855846 -player2 > engine: comparing 0 and 22, gives 0 0 0.2125699381575844 -player2 > engine: comparing 1 and 0, gives 0 0 0 -player2 > engine: comparing 1 and 1, gives 0 0 0 -player2 > engine: comparing 1 and 2, gives 0 0 0 -player2 > engine: comparing 1 and 3, gives 0 0 0 -player2 > engine: comparing 1 and 4, gives 0 2 0 -player2 > engine: 1 4 28 -player2 > engine: comparing 1 and 5, gives 0 0 0 -player2 > engine: comparing 1 and 6, gives 0 0 0 -player2 > engine: comparing 1 and 7, gives 0 0 0 -player2 > engine: comparing 1 and 8, gives 0 0 0 -player2 > engine: comparing 1 and 9, gives 0 0 0 -player2 > engine: comparing 1 and 10, gives 0 2 0 -player2 > engine: 1 10 14 -player2 > engine: comparing 1 and 11, gives 0 0 0 -player2 > engine: comparing 1 and 12, gives 0 0 0 -player2 > engine: comparing 1 and 13, gives 0 0 0 -player2 > engine: comparing 1 and 14, gives 1 0 0.04558863060331812 -player2 > engine: 1 14 7 -player2 > engine: comparing 1 and 15, gives 0 0 0.09421743304011854 -player2 > engine: comparing 1 and 16, gives 0 0 0.07451682896360891 -player2 > engine: comparing 1 and 17, gives 0 0 0.04706477996304538 -player2 > engine: comparing 1 and 18, gives 0 0 0.1206632939555284 -player2 > engine: comparing 1 and 19, gives 0 0 0.04537252517302185 -player2 > engine: comparing 1 and 20, gives 0 0 0.01716838951319582 -player2 > engine: comparing 1 and 21, gives 0 0 0.10966902183701732 -player2 > engine: comparing 1 and 22, gives 0 0 0.06997435889824213 -player2 > engine: comparing 2 and 0, gives 0 0 0 -player2 > engine: comparing 2 and 1, gives 0 0 0 -player2 > engine: comparing 2 and 2, gives 0 0 0 -player2 > engine: comparing 2 and 3, gives 0 2 0 -player2 > engine: 2 3 14 -player2 > engine: comparing 2 and 4, gives 0 0 0 -player2 > engine: comparing 2 and 5, gives 0 0 0 -player2 > engine: comparing 2 and 6, gives 0 0 0 -player2 > engine: comparing 2 and 7, gives 0 0 0 -player2 > engine: comparing 2 and 8, gives 0 0 0 -player2 > engine: comparing 2 and 9, gives 0 0 0 -player2 > engine: comparing 2 and 10, gives 0 0 0 -player2 > engine: comparing 2 and 11, gives 0 0 0 -player2 > engine: comparing 2 and 12, gives 0 0 0 -player2 > engine: comparing 2 and 13, gives 0 0 0 -player2 > engine: comparing 2 and 14, gives 1 0 0.05549243454274729 -player2 > engine: 2 14 7 -player2 > engine: comparing 2 and 15, gives 0 0 0.07451683324510384 -player2 > engine: comparing 2 and 16, gives 0 0 0.09421743669107437 -player2 > engine: comparing 2 and 17, gives 0 0 0.12066329395552837 -player2 > engine: comparing 2 and 18, gives 0 0 0.04706477996304538 -player2 > engine: comparing 2 and 19, gives 0 0 0.017168390540796136 -player2 > engine: comparing 2 and 20, gives 0 0 0.04537252147453554 -player2 > engine: comparing 2 and 21, gives 0 0 0.06997436188425468 -player2 > engine: comparing 2 and 22, gives 0 0 0.10966902974793312 -player2 > engine: comparing 3 and 0, gives 0 0 0 -player2 > engine: comparing 3 and 1, gives 0 0 0 -player2 > engine: comparing 3 and 2, gives 0 0 0 -player2 > engine: comparing 3 and 3, gives 0 2 0 -player2 > engine: 3 3 11 -player2 > engine: comparing 3 and 4, gives 0 0 0 -player2 > engine: comparing 3 and 5, gives 0 0 0 -player2 > engine: comparing 3 and 6, gives 0 0 0 -player2 > engine: comparing 3 and 7, gives 0 0 0 -player2 > engine: comparing 3 and 8, gives 0 0 0 -player2 > engine: comparing 3 and 9, gives 0 0 0 -player2 > engine: comparing 3 and 10, gives 0 0 0 -player2 > engine: comparing 3 and 11, gives 0 0 0 -player2 > engine: comparing 3 and 12, gives 0 0 0 -player2 > engine: comparing 3 and 13, gives 0 0 0 -player2 > engine: comparing 3 and 14, gives 1 0 0.09988694591354103 -player2 > engine: 3 14 6 -player2 > engine: comparing 3 and 15, gives 0 0 0.14997957099539047 -player2 > engine: comparing 3 and 16, gives 0 0 0.2270837446250879 -player2 > engine: comparing 3 and 17, gives 0 0 0.24940574636549834 -player2 > engine: comparing 3 and 18, gives 0 0 0.11343918955705505 -player2 > engine: comparing 3 and 19, gives 0 0 0.03679487553573258 -player2 > engine: comparing 3 and 20, gives 0 0 0.05936454913873094 -player2 > engine: comparing 3 and 21, gives 0 0 0.16427800477532298 -player2 > engine: comparing 3 and 22, gives 0 0 0.20055349805013264 -player2 > engine: comparing 4 and 0, gives 0 0 0 -player2 > engine: comparing 4 and 1, gives 0 0 0 -player2 > engine: comparing 4 and 2, gives 0 0 0 -player2 > engine: comparing 4 and 3, gives 0 0 0 -player2 > engine: comparing 4 and 4, gives 0 2 0 -player2 > engine: 4 4 23 diff --git a/mybot.rb b/mybot.rb old mode 100644 new mode 100755 index c1c2775..d2340ac --- a/mybot.rb +++ b/mybot.rb @@ -1,19 +1,63 @@ +# FINCHBOT + $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), 'lib')) +require 'logger' + +logging_dir = File.join(File.dirname(__FILE__), "logs") +if File.directory?(logging_dir) + $log = Logger.new(File.join(logging_dir, "botlog#{Time.now.to_i}.txt")) + $log.level = Logger::DEBUG +else + $log = Logger.new(STDERR) + $log.level = Logger::FATAL +end + +$log.info("Finchbot Started") -require 'planetwars' -require 'finchbot' +# Error rescuing and logging code +begin + require 'bundler' + Bundler.setup(:default) + require 'finchbot' + require 'yaml' + require 'active_support/core_ext/hash/indifferent_access' -$bot = Finch::Bot.new([]) + $log.debug("Requires present.") -map_data = '' -loop do - current_line = gets.strip - if current_line.length >= 2 and current_line[0..1] == "go" - pw = PlanetWars.new(map_data) - $bot.do_turn(pw) - pw.finish_turn - map_data = '' + if ARGV.length == Finch.parameter_count + $log.debug("Using arguments from command line.") + params = ARGV.dup + until ARGV.empty? + ARGV.shift + end else - map_data += current_line + "\n" + $log.debug("Using YAML arguments.") + params = YAML.load(File.read(File.join(File.dirname(__FILE__), 'parameters.yml'))).with_indifferent_access end + + $bot = Finch::Bot.new(params) + + map_data = '' + turn = 0 + loop do + x = gets + if x + current_line = x.strip + if current_line.length >= 2 and current_line[0..1] == "go" + turn += 1 + $log.debug("Doing turn #{turn}.") + pw = PlanetWars.new(map_data) + $bot.do_turn(pw) + $log.debug("Finishing turn #{turn}.") + pw.finish_turn + map_data = '' + else + map_data += current_line + "\n" + end + end + end + +rescue => err + $log.fatal("Caught exception; exiting") + $log.fatal(err) end diff --git a/parameters.yml b/parameters.yml new file mode 100644 index 0000000..a06c884 --- /dev/null +++ b/parameters.yml @@ -0,0 +1,8 @@ +--- +angle_weights: + attackable : 2 + defendable: 1 + investment : 2 + defense_assist: 1 + crippling: 1 +score_threshold: 1.5 \ No newline at end of file diff --git a/spec/finchbot_spec.rb b/spec/finchbot_spec.rb index e02f16e..2ac00ef 100644 --- a/spec/finchbot_spec.rb +++ b/spec/finchbot_spec.rb @@ -2,43 +2,32 @@ describe "Finchbot" do before do - @bot = Finch::Bot.new([]) - state = "P 11.803996 11.215721 1 13 3 - P 9.319567 21.808874 2 105 5 - P 14.288424 0.622569 1 11 5 - P 11.865493 5.273785 0 75 3 - P 11.742498 17.157658 0 81 3 - P 4.254093 0.000000 0 22 1 - P 19.353899 22.431443 0 22 1 - P 14.743614 22.324001 0 83 3 - P 8.864377 0.107441 0 83 3 - P 19.854347 0.711934 0 84 1 - P 3.753644 21.719509 0 84 1 - P 8.864814 9.736624 0 12 5 - P 14.743177 12.694819 0 12 5 - P 0.000000 10.809889 0 59 2 - P 23.607991 11.621554 0 59 2 - P 20.396768 15.522861 0 59 3 - P 3.211223 6.908581 0 59 3 - P 17.028748 6.659769 0 4 2 - P 6.579243 15.771674 0 4 2 - P 0.782928 19.607505 0 55 1 - P 22.825064 2.823937 0 55 1 - P 2.601033 13.172383 0 58 3 - P 21.006958 9.259059 0 58 3 - F 2 50 1 14 18 7 - F 1 25 2 1 22 11 - F 1 12 2 0 11 1 - F 1 6 2 1 22 12 - F 1 5 2 0 11 2 - F 1 5 2 0 11 3 - F 1 5 2 0 11 4 - F 1 5 2 0 11 5 - F 1 5 2 0 11 6 - F 1 5 2 0 11 7 - F 1 5 2 0 11 8 - F 1 5 2 0 11 9 - F 1 5 2 0 11 10" + params = YAML.load(File.read(File.join(File.dirname(__FILE__), '..', 'parameters.yml'))).with_indifferent_access + @bot = Finch::Bot.new(params) + state = "P 11.6135908004 11.6587374197 0 119 0 + P 1.2902863101 9.04078582767 1 100 5 + P 21.9368952907 14.2766890117 2 100 5 + P 5.64835767563 18.2659924733 0 21 4 + P 17.5788239251 5.05148236609 0 21 4 + P 0.0 17.5664628114 0 32 2 + P 23.2271816008 5.75101202793 0 32 2 + P 15.9964071303 22.4925373322 0 60 5 + P 7.23077447046 0.824937507164 0 60 5 + P 12.096860926 23.3174748393 0 74 5 + P 11.1303206747 0.0 0 74 5 + P 5.90572926007 2.48227346488 0 85 1 + P 17.3214523407 20.8352013745 0 85 1 + P 18.2860133478 0.765777669475 0 72 3 + P 4.94116825299 22.5516971699 0 72 3 + P 20.1067105381 18.0593851211 0 9 5 + P 3.12047106262 5.25808971821 0 9 5 + P 4.594838746 13.7860000656 0 69 2 + P 18.6323428548 9.5314747737 0 69 2 + P 8.80119206169 20.0157034284 0 41 1 + P 14.4259895391 3.30177141098 0 41 1 + P 19.4667873213 20.0561682576 0 35 5 + P 3.76039427948 3.26130658173 0 35 5 + go" @pw = PlanetWars.new(state) end diff --git a/spec/game_player_spec.rb b/spec/game_player_spec.rb new file mode 100644 index 0000000..6f68b32 --- /dev/null +++ b/spec/game_player_spec.rb @@ -0,0 +1,31 @@ +require File.expand_path(File.dirname(__FILE__) + '/spec_helper') +require 'darwin/game_player' + +describe "Finch::GamePlayer" do + before do + @player = Finch::GamePlayer.new + end + it "should successfuly parse errors" do + output = "WARNING: player 2 timed out. + Turn 1 + 11.8039955755,11.2157212798,0,37,3:9.31956732508,21.8088737532,1,100,5:14.2884238258,0.622568806433,2,100,5:11.8654926942,5.2737846552,0,81,3:11.7424984567,17.1576579045,0,81,3:4.25409258443,0.0,0,22,1:19.3538985665,22.4314425597,0,22,1:14.7436138612,22.3240014889,0,83,3:8.86437728973,0.107441070771,0,83,3:19.8543468498,0.711933891201,0,84,1:3.75364430115,21.7195086685,0,84,1:8.86481414847,9.73662367883,0,12,5:14.7431770024,12.6948188808,0,12,5:0.0,10.8098889721,0,59,2:23.6079911509,11.6215535875,0,59,2:20.3967683707,15.5228613809,0,59,3:3.21122278016,6.90858117873,0,59,3:17.0287479269,6.65976901033,0,4,2:6.57924322402,15.7716735493,0,4,2:0.782927536597,19.6075053882,0,55,1:22.8250636143,2.82393717142,0,55,1:2.60103334076,13.172383428,0,58,3:21.0069578101,9.25905913169,0,58,3|Player 1 Wins! + 0.37,1.55,0.100,0.81,0.81,0.22,0.22,0.83,0.83,0.84,0.84,0.12,0.12,0.59,0.59,0.59,0.59,0.4,0.4,0.55,0.55,0.58,0.58,1.50.1.6.11.10:" + @player.parse_output(output).should == -1001 + end + + it "should successfully count the number of turns" do + output = "5.28.9,2.7.6.5.28.9,2.5.6.5.28.9,2.8.6.5.28.10,2.8.6.5.28.10,2.8.6.5.28.10,2.8.6.5.28.10,2.3.6.5.28.10,2.63.6.3.19.5,2.47.5.17.15.2,2.4.5.17.15.2,2.47.13.17.18.5,2.8.13.20.25.12,2.50.6.17.16.6,2.51.13.17.18.8,2.55.2.19.24.16,2.63.5.3.10.2,2.47.5.4.19.11,2.55.11.20.16.8,2.55.12.19.16.9,2.63.5.3.10.4,2.55.16.19.13.7,2.1.16.20.21.15,2.55.1.19.9.4,2.2.1.20.24.19,1.33.17.20.7.4,2.75.5.4.19.16,2.2.5.7.25.22,2.38.21.8.15.12,2.38.5.8.5.3,2.21.5.14.23.21,2.38.18.8.16.14:Turn 101 + 0.0,2.6,2.5,2.9,0.75,2.2,2.2,0.83,0.38,0.84,0.84,2.5,2.26,2.11,0.3,0.59,2.13,1.42,2.3,0.55,0.55,2.25,0.58,2.7.6.5.28.8,2.7.6.5.28.8,2.7.6.5.28.8,2.7.6.5.28.8,2.7.6.5.28.8,2.7.6.5.28.8,2.5.6.5.28.8,2.8.6.5.28.9,2.8.6.5.28.9,2.8.6.5.28.9,2.8.6.5.28.9,2.3.6.5.28.9,2.63.6.3.19.4,2.47.5.17.15.1,2.4.5.17.15.1,2.47.13.17.18.4,2.8.13.20.25.11,2.50.6.17.16.5,2.51.13.17.18.7,2.55.2.19.24.15,2.63.5.3.10.1,2.47.5.4.19.10,2.55.11.20.16.7,2.55.12.19.16.8,2.63.5.3.10.3,2.55.16.19.13.6,2.1.16.20.21.14,2.55.1.19.9.3,2.2.1.20.24.18,1.33.17.20.7.3,2.75.5.4.19.15,2.2.5.7.25.21,2.38.21.8.15.11,2.38.5.8.5.2,2.21.5.14.23.20,2.38.18.8.16.13,2.3.1.14.18.17,2.3.1.14.18.17,2.38.2.8.6.5,2.3.2.14.15.14,2.3.1.14.18.17,2.3.3.14.14.13,2.3.1.14.18.17,2.3.3.14.14.13,2.3.5.14.23.22,2.3.1.14.18.17,2.3.3.14.14.13,2.3.5.14.23.22,2.3.6.14.12.11,2.3.1.14.18.17,2.3.3.14.14.13,2.3.5.14.23.22,2.3.6.14.12.11,2.38.11.8.10.9,2.3.11.14.15.14,2.3.1.14.18.17,2.3.3.14.14.13,2.1.5.14.23.22,2.3.6.14.12.11,2.3.12.14.9.8,2.3.1.14.18.17,2.3.3.14.14.13,2.1.6.14.12.11,2.3.12.14.9.8,2.3.13.14.24.23,2.1.1.14.18.17,2.3.3.14.14.13,2.3.12.14.9.8,2.3.13.14.24.23,2.3.16.14.21.20,2.3.3.14.14.13,2.3.12.14.9.8,2.3.13.14.24.23,2.3.16.14.21.20,2.3.18.14.18.17,2.3.3.14.14.13,2.3.12.14.9.8,2.3.13.14.24.23,2.3.16.14.21.20,2.3.21.14.22.21:Turn 102 + 0.0,2.5,2.6,2.66,0.75,2.2,2.2,0.83,0.38,0.84,0.84,2.6,2.16,2.3,0.3,0.59,2.7,2.7,2.2,0.55,0.55,2.25,0.58,2.7.6.5.28.7,2.7.6.5.28.7,2.7.6.5.28.7,2.7.6.5.28.7,2.7.6.5.28.7,2.7.6.5.28.7,2.5.6.5.28.7,2.8.6.5.28.8,2.8.6.5.28.8,2.8.6.5.28.8,2.8.6.5.28.8,2.3.6.5.28.8,2.63.6.3.19.3,2.47.13.17.18.3,2.8.13.20.25.10,2.50.6.17.16.4,2.51.13.17.18.6,2.55.2.19.24.14,2.47.5.4.19.9,2.55.11.20.16.6,2.55.12.19.16.7,2.63.5.3.10.2,2.55.16.19.13.5,2.1.16.20.21.13,2.55.1.19.9.2,2.2.1.20.24.17,1.33.17.20.7.2,2.75.5.4.19.14,2.2.5.7.25.20,2.38.21.8.15.10,2.38.5.8.5.1,2.21.5.14.23.19,2.38.18.8.16.12,2.3.1.14.18.16,2.3.1.14.18.16,2.38.2.8.6.4,2.3.2.14.15.13,2.3.1.14.18.16,2.3.3.14.14.12,2.3.1.14.18.16,2.3.3.14.14.12,2.3.5.14.23.21,2.3.1.14.18.16,2.3.3.14.14.12,2.3.5.14.23.21,2.3.6.14.12.10,2.3.1.14.18.16,2.3.3.14.14.12,2.3.5.14.23.21,2.3.6.14.12.10,2.38.11.8.10.8,2.3.11.14.15.13,2.3.1.14.18.16,2.3.3.14.14.12,2.1.5.14.23.21,2.3.6.14.12.10,2.3.12.14.9.7,2.3.1.14.18.16,2.3.3.14.14.12,2.1.6.14.12.10,2.3.12.14.9.7,2.3.13.14.24.22,2.1.1.14.18.16,2.3.3.14.14.12,2.3.12.14.9.7,2.3.13.14.24.22,2.3.16.14.21.19,2.3.3.14.14.12,2.3.12.14.9.7,2.3.13.14.24.22,2.3.16.14.21.19,2.3.18.14.18.16,2.3.3.14.14.12,2.3.12.14.9.7,2.3.13.14.24.22,2.3.16.14.21.19,2.3.21.14.22.20,2.3.1.14.18.17,2.3.1.14.18.17,2.3.2.14.15.14,2.1.2.14.15.14,2.3.3.14.14.13,2.3.3.14.14.13,2.1.5.14.23.22,2.3.3.14.14.13,2.1.6.14.12.11,2.3.11.14.15.14,2.1.11.14.15.14,2.3.12.14.9.8,2.3.12.14.9.8,2.3.13.14.24.23,2.3.12.14.9.8,2.3.13.14.24.23,2.3.16.14.21.20,2.3.12.14.9.8,2.3.13.14.24.23,2.3.16.14.21.20,2.3.18.14.18.17,2.3.12.14.9.8,2.1.13.14.24.23,2.3.16.14.21.20,2.3.21.14.22.21:Turn 103 + 0.0,2.6,2.5,2.4,0.75,2.2,2.2,0.83,0.0,0.84,0.84,2.5,2.6,2.2,0.3,0.59,2.4,2.3,2.3,0.55,0.55,2.25,0.58,2.7.6.5.28.6,2.7.6.5.28.6,2.7.6.5.28.6,2.7.6.5.28.6,2.7.6.5.28.6,2.7.6.5.28.6,2.5.6.5.28.6,2.8.6.5.28.7,2.8.6.5.28.7,2.8.6.5.28.7,2.8.6.5.28.7,2.3.6.5.28.7,2.63.6.3.19.2,2.47.13.17.18.2,2.8.13.20.25.9,2.50.6.17.16.3,2.51.13.17.18.5,2.55.2.19.24.13,2.47.5.4.19.8,2.55.11.20.16.5,2.55.12.19.16.6,2.63.5.3.10.1,2.55.16.19.13.4,2.1.16.20.21.12,2.55.1.19.9.1,2.2.1.20.24.16,1.33.17.20.7.1,2.75.5.4.19.13,2.2.5.7.25.19,2.38.21.8.15.9,2.21.5.14.23.18,2.38.18.8.16.11,2.3.1.14.18.15,2.3.1.14.18.15,2.38.2.8.6.3,2.3.2.14.15.12,2.3.1.14.18.15,2.3.3.14.14.11,2.3.1.14.18.15,2.3.3.14.14.11,2.3.5.14.23.20,2.3.1.14.18.15,2.3.3.14.14.11,2.3.5.14.23.20,2.3.6.14.12.9,2.3.1.14.18.15,2.3.3.14.14.11,2.3.5.14.23.20,2.3.6.14.12.9,2.38.11.8.10.7,2.3.11.14.15.12,2.3.1.14.18.15,2.3.3.14.14.11,2.1.5.14.23.20,2.3.6.14.12.9,2.3.12.14.9.6,2.3.1.14.18.15,2.3.3.14.14.11,2.1.6.14.12.9,2.3.12.14.9.6,2.3.13.14.24.21,2.1.1.14.18.15,2.3.3.14.14.11,2.3.12.14.9.6,2.3.13.14.24.21,2.3.16.14.21.18,2.3.3.14.14.11,2.3.12.14.9.6,2.3.13.14.24.21,2.3.16.14.21.18,2.3.18.14.18.15,2.3.3.14.14.11,2.3.12.14.9.6,2.3.13.14.24.21,2.3.16.14.21.18,2.3.21.14.22.19,2.3.1.14.18.16,2.3.1.14.18.16,2.3.2.14.15.13,2.1.2.14.15.13,2.3.3.14.14.12,2.3.3.14.14.12,2.1.5.14.23.21,2.3.3.14.14.12,2.1.6.14.12.10,2.3.11.14.15.13,2.1.11.14.15.13,2.3.12.14.9.7,2.3.12.14.9.7,2.3.13.14.24.22,2.3.12.14.9.7,2.3.13.14.24.22,2.3.16.14.21.19,2.3.12.14.9.7,2.3.13.14.24.22,2.3.16.14.21.19,2.3.18.14.18.16,2.3.12.14.9.7,2.1.13.14.24.22,2.3.16.14.21.19,2.3.21.14.22.20,2.3.1.14.18.17,2.1.1.14.18.17,2.3.2.14.15.14,2.3.2.14.15.14,2.38.3.8.6.5,2.3.3.14.14.13,2.24.3.15.14.13,2.1.5.14.23.22,2.1.6.14.12.11,2.3.11.14.15.14,2.3.11.14.15.14,2.3.12.14.9.8,2.3.12.14.9.8,2.3.13.14.24.23,2.3.12.14.9.8,2.3.16.14.21.20,2.3.12.14.9.8,2.3.16.14.21.20,2.3.17.14.9.8,2.3.12.14.9.8,2.3.17.14.9.8,2.1.18.14.18.17,2.3.21.14.22.21:Player 2 Wins! + 0.0,2.5,2.6,2.67,0.75,2.2,2.2,0.83,0.0,0.84,0.84,2.6,2.5,2.3,0.3,0.59,2.4,2.2,2.2,0.0,0.22,2.25,0.58,2.7.6.5.28.5,2.7.6.5.28.5,2.7.6.5.28.5,2.7.6.5.28.5,2.7.6.5.28.5,2.7.6.5.28.5,2.5.6.5.28.5,2.8.6.5.28.6,2.8.6.5.28.6,2.8.6.5.28.6,2.8.6.5.28.6,2.3.6.5.28.6,2.63.6.3.19.1,2.47.13.17.18.1,2.8.13.20.25.8,2.50.6.17.16.2,2.51.13.17.18.4,2.55.2.19.24.12,2.47.5.4.19.7,2.55.11.20.16.4,2.55.12.19.16.5,2.55.16.19.13.3,2.1.16.20.21.11,2.2.1.20.24.15,2.75.5.4.19.12,2.2.5.7.25.18,2.38.21.8.15.8,2.21.5.14.23.17,2.38.18.8.16.10,2.3.1.14.18.14,2.3.1.14.18.14,2.38.2.8.6.2,2.3.2.14.15.11,2.3.1.14.18.14,2.3.3.14.14.10,2.3.1.14.18.14,2.3.3.14.14.10,2.3.5.14.23.19,2.3.1.14.18.14,2.3.3.14.14.10,2.3.5.14.23.19,2.3.6.14.12.8,2.3.1.14.18.14,2.3.3.14.14.10,2.3.5.14.23.19,2.3.6.14.12.8,2.38.11.8.10.6,2.3.11.14.15.11,2.3.1.14.18.14,2.3.3.14.14.10,2.1.5.14.23.19,2.3.6.14.12.8,2.3.12.14.9.5,2.3.1.14.18.14,2.3.3.14.14.10,2.1.6.14.12.8,2.3.12.14.9.5,2.3.13.14.24.20,2.1.1.14.18.14,2.3.3.14.14.10,2.3.12.14.9.5,2.3.13.14.24.20,2.3.16.14.21.17,2.3.3.14.14.10,2.3.12.14.9.5,2.3.13.14.24.20,2.3.16.14.21.17,2.3.18.14.18.14,2.3.3.14.14.10,2.3.12.14.9.5,2.3.13.14.24.20,2.3.16.14.21.17,2.3.21.14.22.18,2.3.1.14.18.15,2.3.1.14.18.15,2.3.2.14.15.12,2.1.2.14.15.12,2.3.3.14.14.11,2.3.3.14.14.11,2.1.5.14.23.20,2.3.3.14.14.11,2.1.6.14.12.9,2.3.11.14.15.12,2.1.11.14.15.12,2.3.12.14.9.6,2.3.12.14.9.6,2.3.13.14.24.21,2.3.12.14.9.6,2.3.13.14.24.21,2.3.16.14.21.18,2.3.12.14.9.6,2.3.13.14.24.21,2.3.16.14.21.18,2.3.18.14.18.15,2.3.12.14.9.6,2.1.13.14.24.21,2.3.16.14.21.18,2.3.21.14.22.19,2.3.1.14.18.16,2.1.1.14.18.16,2.3.2.14.15.13,2.3.2.14.15.13,2.38.3.8.6.4,2.3.3.14.14.12,2.24.3.15.14.12,2.1.5.14.23.21,2.1.6.14.12.10,2.3.11.14.15.13,2.3.11.14.15.13,2.3.12.14.9.7,2.3.12.14.9.7,2.3.13.14.24.22,2.3.12.14.9.7,2.3.16.14.21.19,2.3.12.14.9.7,2.3.16.14.21.19,2.3.17.14.9.7,2.3.12.14.9.7,2.3.17.14.9.7,2.1.18.14.18.16,2.3.21.14.22.20,2.3.1.14.18.17,2.3.1.14.18.17,2.3.2.14.15.14,2.1.2.14.15.14,2.3.3.14.14.13,2.1.5.14.23.22,2.1.6.14.12.11,2.3.11.14.15.14,2.1.11.14.15.14,2.3.12.14.9.8,2.3.12.14.9.8,2.1.13.14.24.23,2.3.16.14.21.20,2.3.17.14.9.8,2.3.18.14.18.17,2.3.21.14.22.21:" + @player.parse_output(output).should == 997 + + + output = "9.13.22.22.2,2.89.13.22.22.2,2.40.13.22.22.2,1.19.15.8.20.3,2.39.10.15.18.1,2.27.10.15.18.1,2.39.13.15.21.4,2.23.2.15.17.1,2.12.2.15.17.1,2.23.8.15.20.4,2.16.8.15.20.4,2.23.13.15.21.5,2.23.13.15.21.5,2.23.13.15.21.5,2.23.16.15.20.4,2.23.13.15.21.5,2.16.16.15.20.4,2.23.13.15.21.5,2.19.13.15.21.5,2.23.21.15.18.2,2.4.21.15.18.2,2.26.13.15.21.6,2.26.13.15.21.6,2.26.13.15.21.6,2.26.13.15.21.6,2.26.13.15.21.6,2.21.13.15.21.6,2.29.13.15.21.7,2.29.13.15.21.7,2.29.13.15.21.7,2.29.13.15.21.7,2.6.13.15.21.7,2.35.13.15.21.9,2.35.13.15.21.9,2.35.13.15.21.9,2.35.13.15.21.9,2.7.13.15.21.9,2.38.13.15.21.10,2.15.13.15.21.10,2.334.15.12.7.1,2.15.15.12.7.1:Turn 190 + 2.52,2.86,2.86,2.52,2.55,2.30,2.30,2.52,2.52,2.30,2.19,2.86,2.370,2.216,2.35,2.331,2.52,2.35,2.35,2.30,2.30,2.52,2.482,2.89.13.22.22.1,2.89.13.22.22.1,2.40.13.22.22.1,1.19.15.8.20.2,2.39.13.15.21.3,2.23.8.15.20.3,2.16.8.15.20.3,2.23.13.15.21.4,2.23.13.15.21.4,2.23.13.15.21.4,2.23.16.15.20.3,2.23.13.15.21.4,2.16.16.15.20.3,2.23.13.15.21.4,2.19.13.15.21.4,2.23.21.15.18.1,2.4.21.15.18.1,2.26.13.15.21.5,2.26.13.15.21.5,2.26.13.15.21.5,2.26.13.15.21.5,2.26.13.15.21.5,2.21.13.15.21.5,2.29.13.15.21.6,2.29.13.15.21.6,2.29.13.15.21.6,2.29.13.15.21.6,2.6.13.15.21.6,2.35.13.15.21.8,2.35.13.15.21.8,2.35.13.15.21.8,2.35.13.15.21.8,2.7.13.15.21.8,2.38.13.15.21.9,2.15.13.15.21.9:Turn 191 + 2.55,2.91,2.91,2.55,2.58,2.31,2.31,2.55,2.55,2.31,2.20,2.91,2.375,2.218,2.37,2.361,2.55,2.37,2.37,2.31,2.31,2.55,2.703,1.19.15.8.20.1,2.39.13.15.21.2,2.23.8.15.20.2,2.16.8.15.20.2,2.23.13.15.21.3,2.23.13.15.21.3,2.23.13.15.21.3,2.23.16.15.20.2,2.23.13.15.21.3,2.16.16.15.20.2,2.23.13.15.21.3,2.19.13.15.21.3,2.26.13.15.21.4,2.26.13.15.21.4,2.26.13.15.21.4,2.26.13.15.21.4,2.26.13.15.21.4,2.21.13.15.21.4,2.29.13.15.21.5,2.29.13.15.21.5,2.29.13.15.21.5,2.29.13.15.21.5,2.6.13.15.21.5,2.35.13.15.21.7,2.35.13.15.21.7,2.35.13.15.21.7,2.35.13.15.21.7,2.7.13.15.21.7,2.38.13.15.21.8,2.15.13.15.21.8:Player 1 Wins! + 2.58,2.96,2.96,2.58,2.61,2.32,2.32,2.58,2.39,2.32,2.21,2.96,2.380,2.220,2.39,2.364,2.58,2.39,2.39,2.32,2.32,2.58,2.706,2.39.13.15.21.1,2.23.8.15.20.1,2.16.8.15.20.1,2.23.13.15.21.2,2.23.13.15.21.2,2.23.13.15.21.2,2.23.16.15.20.1,2.23.13.15.21.2,2.16.16.15.20.1,2.23.13.15.21.2,2.19.13.15.21.2,2.26.13.15.21.3,2.26.13.15.21.3,2.26.13.15.21.3,2.26.13.15.21.3,2.26.13.15.21.3,2.21.13.15.21.3,2.29.13.15.21.4,2.29.13.15.21.4,2.29.13.15.21.4,2.29.13.15.21.4,2.6.13.15.21.4,2.35.13.15.21.6,2.35.13.15.21.6,2.35.13.15.21.6,2.35.13.15.21.6,2.7.13.15.21.6,2.38.13.15.21.7,2.15.13.15.21.7:" + @player.parse_output(output).should == -998 + end +end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 5f02b03..8042e02 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -13,6 +13,7 @@ require 'finchbot' require 'rspec' require 'rspec/autorun' +require 'active_support/core_ext/hash/indifferent_access' # Requires supporting files with custom matchers and macros, etc, # in ./support/ and its subdirectories. diff --git a/stderr.txt b/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/tools/PlayGame.jar b/tools/PlayGame.jar index 63bb81889cb1cecdf97fae7a65cbc188f0ca3a02..23eb9a74d324d192f8f4e263a51e52475bb153ff 100644 GIT binary patch delta 11652 zcmZvC18^o?w{9}AZQHhO+n!i&?7VR@!5iDQJrmoS*qmTuPk871Po4k#=ia+_b@l45 zy`I&pyKB{|{X8G#;BkfENU91DkeFbwe`i`5Ln0DC#6Kr_B{)1<8(wV8!xH+$Y6>9W zi>Qz)7#P^Uj(Uo3(&IHFp$Cx7J)!pPj9@o0pYzusZYj1L#pDB;ieXva&~))}bZ#ezvtJ6&C{u zSTEi(PEIp@CNDm#6f5p9KBOns`uRQKQEPl$bo}+kf;1^42>Qz;e#Yt}w^m9%b^HNc zo07rkB>(E?vqHl;*~@wM+MEL&)rYxHGVPHUB3nf(KZ-Yp{S&KNO$CZ;SpEjO`F`CZrAbdn#~ zGeFTQxO~G!E92E$hpUX$-d4iEF{&;9qtwD+ z*iK|xxVfF~F7N2j{k+dSBSVflJ&Dc2;A?4O`*4qY9FtfByR>a2cj&EE#kNK$lKCR7 zrdX`2;QS3{8;G$&tPq3Tofow#B;Esfh}Ab^Il(Msq0|9ou|$sg@zd2=pnhyO$c;*c|^#YS}0X-KQ=F# zkxUHGDX9|=wh_@HLebK~SEnef!#7K<^W(l{UjpEFc7rm4kC(=^v6hOZjjTJZeOk~k z&LrVo?{GYG(5YBtoriB1TMvNu98!)}u#&&3%Zw;H8QLZ1AIlueNz-o^uw+eewKvOP zexU7l)&7h4*3KIxgj?9&VAyWfzXhBA&Y>;p%&*+3sABK?~9zKgd|)VQuo+| zZsF;gGC_|pR#53vZFTJ5r?q#UYR|RsuCl^*h3-(zzG(NqiWHA>0>xGEy6s_DzmZV{ zh})9Pv#U#sI7*5^rCS7Q+${en!@btHto~$Ul?R%h_0GoI&jA#Oh&qCuHj9)&$y-DV zLzO*p=6l==L+Roha64#p_`JfEHM9vREJbz6z}MgE zfK7`C%U*6HkgL&d96@4PzHLw*9(GD8&>Qr6_JKo5uj-gWBFWn7Ak?`Altx!?^1|rY z>&`xMUjvX(R@f&z1Px~grIC0V{t#$w9*)3uti>4s7-oAW2dRV++#8A=bng^h)7Pssn>WLZ_Pnv zPasY`$pP5;FEb1ll9dLTLE}8(!hIO}JWSdQ^f;M|$}g_NC&OPR5SzzQY3sg?#QBV; zVMVmEc9Ba9$a>qDx!lq{r7@neHzMpzoAq$v_J1ee6rt1TMCwUbf|u@q(r0*KM<;bacJ z9APQkrJOl1;KwIKLM2btXJG zspvOUU$_AxBBNRm&F=FNi45I+DV1sbc|(!*(Fn@lg$j0QwzEH8frhYWw`*ZSQN3swVcAsn9rp=mGFdL>t2apXsNyT9gGF({;4vxJQ zMp>@8wIo&Ss+kzNKzG&q>HORM_3m%@SDrDvZC168ocb3Pcq@%y$MA>(5slL2yQ>R+ z&v8J|(@hx&<+>2Gb9?Uf+zk@hjo0i#`&oNH;m^oA)`-qEI;*l?E0^8HKEU*#y~xez z`KF>t!!K<1pmJkPlyAnI>c@?y(H#7B^n;wVaj$ouiU>G(%>Mxbp6JH<5}E8OR522n zuuX~hJmYLH-#8;nib01=#O|_p^n;m6DFTUL*1mlfgx>Tn&wpd7T*TqMrBqipF%n?m zboOMO3~7Uhh|}h6T(H3}KR`7$Q>}|G3(9O6o!`@y)e<8_Ie;QEk`xPCh3^-}f;=m} z83LeZ*@mwmu7n>pOfCxJ{gxYf!>W#zHYli}2`7uzUgaK-2@J?-H(t*a3NG5V&ISq^ z%a3}_&7ZBoXKxyzrc|j4rqh8lWpNlAvwi<%qh3;3he-1a&)%`z(ZwrDAm(H1)+eyh zJvp&~$<4@l`!{-<*srgHOCdHVq4Y7OEkm0 zQ&;4~T{fZsJ~p*x3}$n;xTIvk^8vu~Nbylt+-Mn&J<{P2fPFQZGdk`D&MnVZ$>!-x z|3{D|^PNxKBK3h`?4l7xM6SWJ@2O=wjQ|=OK9ux3iuBeKSSPxZ9X~nuS}Z@FiX;p7 z^Dcohm_z_|PY_5nC$u&KeW~%pjv^UNoyEwsu8vEei9+n1YAW}HHYI0r_$!d2Hxm}| z{P8A=TVmiNx@QLfg0FCqIZt(`Tmgs_U2a&1=q)Z0Dp1S1%9`Z(-fEq5w&8QIr<-Gg z0HWxG32In{!UM}XQSt=IX;N&uvU*txI{ut{nDcz@1>+aSFm9rGD?Ti+B?+FzjZ={! z;(jSS;TcJwQEvMwt_UuQ9AJSL)QHqLAeOO1;+y0`hBF_Jl8=-L7m@j~wSV%RA|TB& zQ=3QZNpaG_D8aFpy;XMKAA2;>S!mltET3lU;lg!>l_B%oFW0d}9YIhZeem?a0r^=a zcy|^G|9IYxR;Y4kK&unQ97PH8*H7JDhqS^3XKq>03Hy5TDPL0)5fI%hXAxP?6ajic z63rXAuG7Leh@UzxL~}(ZmWof;@+`CCOP5s@p6CYDDizpQH^MQ;@2 z!chuUdyprkFLFvbVx3?EL}_X$jYGJ?cBgTa=F0KJOirBZOEhGJC`DxSm^|F{SS;9ts zvK5b!_T2pn0Gc<9nH;WI_U4U@aZ3M*S*W=F@!g0}2@J1mf*qMW#&VM=SzK;zvZIK| z!qRnBViCu>QdojTNNDEwtz`Xdwwp!6&cU6P(&8VF{B**nq{m1{T%PgYD;unV)!qr% zN5&Ro5z`w(*gocs^&JK#h6?=*c@5!BhqqV)WUJzZE5KZ#-291w6kX}fXg_~pKHYs5 zxr3C8)v?(sB@BgtQmRY8dGW8&)r9%fkdtqk%;i>AouoM0r) zJ*w`e5UsTu#!1Uzx~a~!p*i;#Hbj+I5k#*od233P@+_AVRBbD;M{|CXTs+&U5?lOc zZx8J%w|Y14T#Z&DESa#mH7oLFH%VH%P5+t8U?AeWI||np(tWlM##@oGAh~Bh%XDJ; zWZa^3?k^hTzQZ=f3kOWD-ucDn5!GfQ702tZc5UTzRna4Gycp%?+{%NlIUw4Q23EXu zQ~0_8ysvwTO>DU}ii1{~2g*}@+*3mV8R73G4~*j8-wsX64GxXIiwKtzlpt^og#QsQ zCIO02=~70RHD-kQq79*|#h02>rG0~(!O_|M(g=>UkH(4q+OQgjwNIA>M4sN)k{lAy zr4yFc^bgkBC!I#2pdOD>fH0M(n5S17m0DP9DB+WppKOq}8_=hV@KFDPqoA{kZcD+O z>UqFkNtCWIdmw+xWysVW^RV!`N*WMiUkaQBAGcK>P=3lc6`9=+>{p zSvy zTCQq}a!QPvK8?I)4KHNqun-aLS&*~=|4>t0%Z{AZBKQMo$tmPLR~cHu&`7+OO6jRs zj%T!dyJxc74#6kXKP@#o`SJr60vMPG#(%cdn%Z>DeaMm!5CriI$uQ{5z_EcOB-KUH z0c}#~VmQ+f(E|O5udonu)H8~@Ez8=r^S#&`y=`?Bt#+E~SmBZ-cI_q?RkaFU)oo6- z3e{VprXN?EPgYH=ZNN`fx1H|eJip7%;~c* z&lvtX)A;sIZ(&iELnq6p$)lFj1A3OnJDAbX=9-*E=}0`7W#%yc2HiHz*E=)lcemz% zwL*RW;G`u0#2MFgZwQ`GGe~WlCDbKO${^G=p->v4LC;a@-^0lSTxgMRUZ2Fd#2p{q?DZEv~VE#_I#&1O1i@hIDQ}N_7~ftu6CY@!Z*fGrL02CP$^T&g{>2D4*%+ z`)@udCI`dkIFOe0>Gek}-&uexg`b;W-y8jI_6Uxys53v4I6s+w`0GJ><@(*gSf7Z1 z2T(yA_R>#3uy=_8oKvJ(y7fH2OZmQ*cva^dakK2qnB3h0iQYV(M$eI;+{+8Lj*Q>7 z-#gR0n%)AR_P1`wx;0s^uwCwBcrO!w8QWeaTlGf59R5LK*_lO&LL^DKgYfSgMDckx z3q`^AA5(Z84!SxJvyCXJL_d^~EQ!bU*R|1{n2&D#KUG@e=uQFHoV5#_zgWJs`MK%HCNs## zuao}7=V%sK-9WvBe}McU#y2VsQ#i9$dt=j4jzJ5pdKP*^noP5a0pgM24;qhCw4%W_ zTQSNGx!A~fD`zxbZ})Mdg-6%h>d&1F-o!jRjdcbG7UuO_E(OdJ12WdIP6@608f56~ z_Qo7y*&}{n z8`5v0Wz@viAbUmX9~2rhkxvEVI9o6-6*LX7sNER8(l~uDwh8p#k&e~? zHr0)qSR6!QRg>=#H%6WVX0bQJ^1KxqC^m5jO7neTOQ;r$!+XCB)RPz!Uq616~vfK7jk#H2o-Y&T@o2t6Uy1zRS=dJpkw)Pc9 zkQa_|_fi`YX*3fFTFsD?B_sbV*Y;fRVKe)o7A1BCcLXyJ&^7|CEs9U z#oOX10Y7WM3LXF8aX!KR!yB8E*ZWXPjq+#B&HTg-eNl(8o%CNY)W2(iVa<2(rGMar ztZzBq7!{dMHw|CRv+o6b@o=sdnSBq0HImF-nzYYjk5rVll8S6Ze!lul7aob zDckj^hF~wPv4Np+Cr|e5P#82qch*Yk2BwZI-I-{JBQvj zAJo%3;g`Sfp_R3nBHtr9KZjroBY$U%#7LZnQ^xqU>M)LsG)G&k%UjoO1`ACvMB{wP z(sH!mT&5WnYODWwAh$HGC5KailXb6Sc0h~oi*!4J7oYi72z$tz&-$k%WA4X&-Z&gv zAKR@%_^&@gqzAe*ic--^z|s_mbgz3M61X{Gq_-WWRCuXsAiR`$-Tcu5jUl}zQJva8n31F~zw{=H?@*qTw|Ch2 z@@a$VNtBvz-2Lca6=U^tn@YlZ7rPf^3d1;u_4^{J$V&RV($8%lm3m5(xc!XW98_GT|FF_A zlq)WK56;L8>Nts~tTOWu`*NFCRJzNK<24$SYU{7rDwS_e$7(cWE&QQkTf79sXNY%m z1Gc}_pYWv7lTxR}3;k%zoJQT1-wf4sX&Gt4^wU!I$-?h%rlWtzFm#NM8q&YIgq3cG zb0AFHkOrcj{yyzvODjvfsqB0h8}x`E-)c4}5U4qUC;M#$?|)b_e6tRS+`LD0Paj&B z;CDjs8o!mNo`HiqST~CdQAdqX%Ra|MNkIF(f!WMPlgd-Zplv2~;(kzK)VAXi$$W|6 zIV>Ii{Y5q(1edukpIqGX5X{Of9yudD3d?Y!4-XX2+A@QRd`sj^bA*#NXbgabVn?kE zL!L)1dZjp|qQVn-k%^l7r0$82!xaIsB>8WBw!KUKs?Vo|xWAM0drNuuUmua^0a>Hj zye9;PJ&xiE$soJ#b=IQ4>Okj2%4!jl$!wq&{>H!jKF>AxKv)zzF(7eRD=54DzHHE7 zrv%)3VMtg3JS*4M@JnXCr_iZ1=M$zvMbcI;xI{If*xctA)D}Cm3?GJpb!o~A(+}Fv zYt3`=$Cdr0r!PmS2w4VqC2L!QwTV(LujP!)>z|N2lm#2NoNI=DPr*Y4M?_4s~6_N{=u`$eckK9$Rg0>a6R0htFDxK3<|GfTY1>#i=JQK~BB_!Voa-Sm0 z;@rjUixmssajzHQOKoHiEjbYwA`QtrC7}bSP&)R_2!< z>NAeh<`Fym!Y`qN&{u8>HW*|Pk3kyW8k0rpl1s3!hbPq z=`GtSDZFYsNe7kg#9%|^br-=te*t>vREg0O#QY#)I#WhSH!v&gpgb26*KmO;<1(<$ z>oNajmeuc0;V4y}<1#IOmb1jIt~^Y-Cys=UsgcX^lXyxV`PP#26^-99L0M&b29J+d z0@~V~Ro1%DXe0l*i7I9D&UiKx+8Dd}aCZSgpca1lhf7)Llo!lw&>#{lM6OF#85 z63tNfyaqxkp32*pp#)?JtF+H?ofom#-eoGzU~q01=pgz&;7Wle-zATe8yGbA+Sq5> zmU!r{uro$Q1Gg^@U6Bt3ZpH}4NMs$;Af!;YqM4kF8NU;8zjJkeiy?Gsx4CS^9A_rA z+|?5q*w>cr?K@lHa~Yzq%?HltGHT$goOH*w>xmMH4O! zk&DmEv0L-E$ICR#%p&|&*?v`i`bj*wlpkgL{ShRkHCPN1(=Uy5gE@T*yw&6b!$lUz z9*ch@O@TD|mLY(2oDB@eHHg9e@dfP(BdX&Es^yh<*j7BQugLzHndH(HSy4~0jc-oR zEXE1UxkRa8e&CeY3*J+KU2kmOarLRxHo_>4whz8#UV$xiH(ZQ}axHYXmPf4N8D(lw zwFp=w(#ruGy^yqB1P1gyjqe6`F&8XYgJ;jCC%2MT+jY4nRW4A8qi+A)fUfzwzF$n* z$B;r>q%7Gnb)o`PXRFA~vaV~7nQQ8jM9X)Pn=*^wxJ5%p3Z`0R^4hUpG?zD0%R@s} zS^J?_4uFpp%7XsZtRBx7ewl(9sP}Ia+y->MJd~%YW#v3POx-@Vg{`)Q9=3&dKgDri zTSU+nFdTi0E=Ylv0z9Az?K)9K@}V$)U#QNB>M?X<8BAcP_5w*_;@h{Pd*xQ ziY8^fbHctP#`_Sy86WT#F9cJ^BvEvqVH*PSS95GFBu$~9J6`^NaQ^Y1wEfL!_rEyq z)@q*pJ+GlXZ?!$$a)jRKX6CF~6PiHDFe4gYisfE@iZ%h0y+YV^4YV7@t_Vv{m&1sA zJTL>(k4m#ID0ha5f~t$^|>fj3&<^%-`^pdL;_6xG2FSd<(gO<3a_%4U9~L42Z!mcRYCD@C#du70zC`q0E=@ zOT)D;*szJ@70 z&qTU2E5BRQj_|*_3;dF${#}=3gj}-O^>uHknRI+j-}q|7o;kvv=UPx=^csZ4LE^O& zK_JBX6MU4o%4Np=tlYj#L1ZiSk8t_yQRt~Nv9K60F=4lPY!^SroH_15KWoZ^6Kduw zG|QYJ1%aUQ0irI-q`ju!tAME3m))$!m1e-R?@WvPapo!NPP(_x`7{G=kB{qYklpUu zTE6#DA1-pbx-d&IdtEubu`-fBG9iG%s87lB@}jKg13Jw)yJ~QY*)eboG#I(f z_JRlY!alu!+lja2zQVL(5**dF%|kIZ=(A^-TbW}wj;Uw`Y2QT5cVU-!Gc|a>TeI&R z)|)a`z3;+01}8>lkK7t^PPr{9G8B-M)xv}G-27Tr|U*XFyo$zI?Sez}C_;!`|DWb}PG|NLH&K(K>~YG2#Mtkc7`QSeS{#Njxb}Tz6u>Y{tA`sNf(5 z!A5Vsmt$Iu^Owz$(F!So_^{W&xfrJ&P_bMDd^#Wo5a%;DzoB-8bKh#Ok8Icoc+D$c zmMNfKIsJkS$n`rl?#Z}3rX@PWMRLg@KDxNay(*yb#_66)U#O0X0q#v+MA@8uy{-Uy zYFWzVYk4Ngm-zZUKq|(?t5c`ArF3L8_un>ZP6#(qj^UP!Wt8NKL_Q8;KI(by9b=rA zp&i*TRg|u&Ti@V}g*OQ0)kEF$<~GO`;4c3$j_1hL5N6It!kE8r2qm`qn~|idV_ymPj>{g&*^W=WIuZfG<)Wg)<-$o zP1KY|0%_=iwLuNADs+?qe_%f~E-4Sl&H@_NCn8yhXZD%sHlc=hl&E)#PX(fse%C@w zrt7VlcY@(a!9V@|CFy&ce_lyr-1s~>Y#3O)u!HAnZJ$1+K%~Lx$|x8ippN6|%g~Z1#%JtZew9zrL>U*HHgozEB+}joV{?(D$ zNZ(#QIaeWl36xGfx*TZaM7jc8KK4CbgWg4WmPB3S*%UY4s-12lJ*e;Hg2Q8p*Zat! z{HpB;f?`Xqwpz-1|0eKu@V=JY+WA4)yQU{Vm(E=O@Y?*|8Ti>Yv+kfMU*GN7wR5ks zz>1NP%sFM{I$?oXJ2~hh7F98!yNHOS;Yc)$Sj#j_JLm>B2vh+%hm9Qu;6z7Q5tp+bUwj2(5AC z4i9k<=ZRUiKUo-PEvgLGAgZiR{`^QNq0N_E_=M4rEa1JhVx!sR~N@+sheM^ zr&!kyvJ7<(_#Dp$n{05PlGup8_#VL}I$Of2s;@&hhJoJdCV9J1ovoq6ugs6|C@TO| zDQRw-GD%b5G3;dl-h{b3g?#(*ih%+nUr1700upNd`PIF38B3aj(>orR)r(kWSlI9P z#&KUU!GF@VC}zFRpKbs9Jf<=f4%AD|%0UGQOht4`6ni!1b27K0pB5_ufUlFNaerpO zKhto=t&6KNWtF-<_@x`a`ehFy}9vjn~=V|C)Mo(P3D!}?D2PZ=Gy;I`DOuS zX0InJ-i!;=pS66Gfht#bBnivC5h?E;#G}p)`8)gK9~3%w`QB)~(@Jm1^~YYF$vYC} zpVr&cz&-otfS$jUxWIFL7l}7akjT*IF3mG7Ff#sz;f>5nWp_vJ=rC*|446}*JFSM? zs>!$HGf@iEW@v|}mvB@gUaDqaw4A7RlKFJ9ta7ek>|Vp-yS;D2$hCiD^C8lJe~HG(3vuJRxC*V?Vn2?u#<9iC`w5DI8E9?)x@b;zaiJyzO+-tE30G-U00 z%clw$t73sxv{DZ$sywl)*Jju~vLI1D(2uBX@GOD&_l(Vhrh}&O{dmxR4>TAg;tBK# z4!aa=gwGPH6k&&WW4knpywcAVkVcZpAJgo5<7NGN$Z1Cy&$t2b!%uKowBQ_K?P}wn zxnHzR{X(0A<9T5rQH7*EM%73Oi~qpsf8^gDtSHu$ynQBoYwv>;Mo!$a{%lsdP!&er zxe)~R2aX3VMvaIW@#s2v<$F9mX^k`Vf~-c12F^yWc5OWN2*>qD2F*704{kf1%4&js zl8v7@YID22k_KE*Z@L(x1I{L7x3Prk$N)7UK0YtRg%#(LNH9VctYiz)-8A*n8GVXf z&r@aTzKdlk4XZxK6A&K2&mHDeLN1#{104w4yEltl^y7@u(G#kv)UG+H|A%wy4tWdJ z@0YKQ>+$%D&SUl~2qo!>=YQBs#g~LQmL}z~tL&E_H4K{rmP zO{3nf#OTcMyLhflzK)W6u3cGx9h6Xo_Cm28R)9*biilcmPO-Mzx9>p=i}-cwzn>MC zMi7>Kom2_DOJ8{FHE?dJJRc96;si1AEPk-m12R}x2#zBG?lT} zx_nn`C$fkhNF!OjWfpFB1`Tii`{5$5p#}oVR3eUe#77DJCzXK!xBd{fB;eD&lXuDIfcd27R7)hd@vE5 zYpXt;{k0-tscLY8$Pef~<{_Y4@p`S)j?6YjiuJW*sM{SrqHhoJ4y0w$26lBG+iIjM zJO^WIh}$7%pCBFCRfM!yqRri5ygqs4E7_}KZH@F6OX?@Wi}mmx31;;O=2GdPRO_bA z*sIw6&AiSR%f)My1T71@^MyTp11GdJVo?$jKe}s<{1QS{?}}RaPj}$cHQ9vZEFm}- z*J6$2ieFTh_gCHKh^c`k!jv6>`RODRmYXT!2l<9z>H^Ru};om^H`$P3gTdd3=HRE0=4o=G{Yu_=n_+ms^JUmvGKTjTh;!fKCYT z-=g5;S~V`pf5gE5DZ2Yd4E#T1_OB_Sm~5tjYxoybh~1am^z;iD*ymq`-v3_c4fS`S zvxBp%xU=_vX^2%7z`tOE{ad0e^q({&;{QbWYvsZw3#;S*^RUSV>I4Gke|bu22TM!$ z{}<;kS1I(Lxx@c291fi1Ms?hO;Y_I$kX*6~=1R`gAo-We l4-EoZ1!*uaZChW}zfKPS9UTh#pCIsmr`F%h$(8@P`ajd8DEI&X delta 12519 zcmZ{K1#BM8wxpSvnVFfHnHghdh?&Rin3)|jQ(}zmm>tt+#+aFzDTdAe-tN73-)c{* zH8awjqdC(DyA)&Cq;Qo$RWQJs90my$Y3d&dpbhc2L2lP+YG`Rb? zx;UAo2RMw$g_QUOmTYc@U|?YX%zx)TAu}{ZKvO{elbu=(M+zYNU@c(3UyfVba0uoq zLlEkbG(H7WNlX{^IitZteWn&uqCgKDGUL>T;T1eRV*)=lr0XVqf}&>-S%kH3IZydg zytw#7d)2_OZlTq_WpQN%*EFW|aMC#g8R`%BX67HhN1+e*i}t2(XZ~)y!3JmQ-_del z8PTr`5d}y)sHFgGEHiC(q}q(n^`UrvmcOu9auG22R71;pW2s0T;pw5vrY&o?-C0Q& z74#~4QI-3ipLj@Fl3a^IQ$Hui#kO}TKDpA9vg{hL91i%2I3`^aI|r47Ghz`%Gh!P> z)I6UMh!`>M3OH~3;q$sa5VprCueId1z2vqZF(Wt+It2i2UlCmn25|7bN0u0Ne+K-B zkKGu(U!&f2#$SDYC&7ONwI#A%W+rD`2gkwk!=Zkj9l-FC^9k=0Uj0J&Km^m!XpbM} z(7jy7`IHma)=jn0r14{=Ii0=O2M51l={2ip_?&8>5>&phLf|9=;xXsUi7Pdpis-6q z#o_mE$Z!QLsf0jkYxYvRIbR#)r1wK4nwtJ(;UrGlwvKz$m=rb9M zlMVX}TT{499G4|5Y|!c87gr0#&6sntowOk5BQx0KlhDW4)nc|Cs;1^m1piRvjoB%N#zG}davRHF(m#e|fgEz6SnCa!DY1%YEKaWiqDCOdAv4^{G5P2kk`OvMXSLhUFINs zo?&*1gZc`|fPqcwcD=d%$nYM_w&2Ht?(Qab(<@?**0!B^ofo5eC5v6K!->sot9?xy zpkh_FGi5Y^8}Ni^qI*pZ+y7Nt+)C!8(N9u*7Mol9H68YvH(>Do<7-iKSCN&x&uBlO zHp$e04NIAkVN~Y5Q27L#e`w%??*ToLW-O^&6b}l{d!c)Q^Emh{38~0oYZpyL)#-BBg%)zsv355E5a?^Fx7=E3xW-oF%J>-;)PAL0;J7320 zIBxiCO3bZ!sTaY*`RkCV5{qoTH`)v(lIBO0tfX;)#7svAN-s^OI_<9fZot<~k9BZ1 zA@iMe57ZqZNBTU+FZd33jxutcwaZ3x#k5Sq^2pM=b%$ik&q;xnCExwo;)r9egS#ch zLqN%@J_&2{RV5D$9hqI7;OajCV)nkgmP)}41&qV+r zT*pvV4Q!sIs^I!}e8IO;m!w)YnmOKii7QcDJmAbuDBTOw&YBBX`x44O4+kmM)t@tIS$tfSkZ$HC|O|Ba_eKsA$gvH?UZjHB#tp5E|wxJr; zh2E5&-<9I;gwA+`7Xc_5vGQPr5e51>Mmk$(*=;YV17fm#^XBclTCc|_tbMxvl48Ff zox~RT!CEXfYU4H$*1DuZ3+7ImEj6vEC(#Si0XdrI^~mjBeLr7;qiFNq7EJ1*Vlj1? zZsshp(4T4@0kj~{7$=@5*P9Jn4wn_TW7hr#v?#G|xMfxSlIb|5fzCN=Ju*Gh-tj;d zST-@?O(}VlRxy+itGR;M#XuXx#I8K!;aJsy3d~+`1t}&}^EXx+Jrbmmx2%z?G)66^ zMfxD>ADapCA?Dq{E#n)X5?C21JyOxp@LSTn|1S_^cC)sRN$u^Euy2*We1B@{5*FQ! zztN#3+M0y?&_4gS$ja2wZ#M%?lM(ZsMA|Yivf-USUH5K+y=fB=(xDU}s`1n~vr_uz z#pGeqLyC*gYUIRqOg;HwlbfstzGleSjf~wl1}Wjve?n~sx|t47<~)v;Njn)9ecv_$ z@OB|ddU$P$xeH&qu-Y<9MUNyWm|Vop2jZ9=1)LZ-EZuqm<-5i)~;tfj(hIs!M_g5d+NO};xxyBRW<$IjozX?OJ{GB4QB$9puKyD?b8YdA59@I4 zI5QOjn|g@XNZcox(I3c-Pb~L4Q&&xubW7oPBKn`K+znWU&UBC2{?@q|=s zz#7JpuB)I0mmDADQq&AfbT59XY#-KUq7LMWu`q>Ww3=9wB zKXvQFU)}nQDFq4n{8zV%;j#d7{TWIaJmfjw;eUPN0#`zV)3TC_WJ{VDg_>q*&A?eT zI5R)(-cB*7#7>9$RTiu5P~&9W@w;QezNOw6E9AMyeKR+kD(>y$-Rz*-{ZjaG&3%gh zk;%np=hqu5`V0~Gl%hBbs8CX9bjzHTzg8uhs|-fL=O+J}Md z;)-M}t-5nf#|`5|%BP>wpB=|(=7%XTzcONl#`Aw^H^|W}<5$ihSnkltd4^$S^C@C7 zvb-{9Ro(m&j zy}9ByVZg4{$Y$KPwle@q^_eHyLtBQ%9DKiW)xmswoHb_w?IFLyPlQd2s&*VIx`*@; zS~VrPw#d^pkGlHPL_K?i@!Dum%9buO#5tyxYv!y}+YWn|2H8CtIWD6tn>fqH`zEjN^e?KB^^;)F4yEln9lzl(?q}D?CgL0C zlp)rcrkUL`x=euXbeG$k^MI&79{!T}1Zd5dZMZ#wx)+12EInggKAA#pqV!qbF;d;9 z+kq6xZ?gfaIX_FEyQ3~M4#C;8{H0PJW8l~V3gG?}M!^aTSzeKcq52=QG#p%Bzs(XQ zmuu(L5GqMxv#95-WfDKEuj3h3% z%!~PLHirQP@p_RSz%|ZAPdphqq@6SLD&6bla)IRFCVi}aYGq(y?G@p7O8IsBLJgPh zQ16Irp1p}0C*H#wY!FPrm=4GMMyi9dp*-K~lN)5}a)|WOeX(*;tCP}uDh})UW+y)p zbaZX~^dzt^=8WX+{i`)t%^UcA@@~t^H-2_@EXV$7sf(&bZb~Uup)Jsf3uA764KX}X zT4~>k_I7pJ^+xZRfaZ{6;xTJT&f7;C_+9Sm;c1)dn6`ic`A50PWIf8DkfxCL6C#bQ zzAq#Z#^Uihp}#;*e_&t{O6_ggvJuZs=u36D04IN(av=R`a7}4?H8X z!61q0{*%z61-dnenNhVO_j8S3D{qv4$#%D^HxpLuod==?vYqQT8uB~(!(dDXak3ua z{1$_QEnO6au;=#}HE%+dbbZp}B@9D?m_aF?Y%BQ4vEO*F7JRx-G;I36n*?UDouecC zTfP8nKfp?m0|Vc-(`O!Bv0|X?a-UKj9`?4+N}}^<(#qzrO5eUXqMaXOk6~!2AU_Zm&;L+jn0>}r2T&uEf1C)8Le?J;v| zKG|BvwcVuEEV^HBY1A<|-eIXg!T86b z>y4cWHLAn%ax>?Z(+@F&(u4)$B+dvx>Y#ax49eY-z4RWMY<2y%=94jHuerh@Ck zoinSjXS#;tAyj@iq5`+fH`5@nJq)(>co~0X)LsW^O-qlwR96x&o^olo4zwsY~hv1W4NE#ZT2zZPV|>i{vMF? z%KHApOLkx!2CE`(hB(#)>UbGYZ4!T7Y@AdxHEo;PL*?7tL!H_3_{hL4;b)kTm3ZX# zBc5s1nDkT1**%)*{ec64#k!2xhx=%+tIu>x`~6Scj)>DTr_M#MjMe@iVl4V0gHv;4 zhg8q%Lt=+$5k~{VHqX68>N|DkubFAnB3M6-SF@uMW>rS^HX#rCrqOtG`7 z)p96~RUn|6eBryNwFZIeUutFLIY?t#nuUJc+P=!%${ln2dvPY&M2$w!%G%c!aI@@qE1}%rp7Ki{QV8A0w#0@?{U-V?YgMQgg}+hRqk5MfHv_bPNbm zQU4k_n0yzZlAi1y89WjY*i$NTtFk=0l1k~%NrGdc45#zG%~0Enxl&<_mFnI(TO>BA zfIX41t*fsvEf@lpNKT|sTJ*i@3A>vjz^c~}bnd$r>E~UERvG0j4N;zdwQ`-RoouXO zo+FqY=5SH0xZWJk(&SvIxv<`#lvjI%@GBpDlMLAt)k#v8O8V@%-K|$@SWz9_z+U5T zUNpHdBj-{qGO{=*?%u{2jz?EzoCyTaH+iUjNJ+3PiY?Z-6c$OY87Eb9r$s>e0f>&gl#BS}zEoZ$%PUZJE(?4V*mdf;kI!?&=4U>X+ipIyS0}*ngk-qL44u1|` zF(az)-cSMPbIU7s>FY4B?-X`^lTEJsdX-`-aG47WEMPomRL5_YBn<-DU}{@}a*wambJ6TtV-Z8}@d7JXJoG^L zttK+HX{`e}DlgxTY0cu#R=@B?mN3pTXJ}N!=XwJ>j3<|hIIO#4G6lxD^VV>#)IxHN zuLc(QDP0T|Ov-^f%UJ0#s%z1*Qs#BuKcb3PEgg|ER&}Q5HrEp@n3O4ZQ*U3kqfX%- zJtiC@FTNLZ#>ExTUp1uS3_DPsyNz*zu^c-fo-VPjQ7Z^$^Kml8ox-7^$dBTS8#ikP z*vJ5;ALSy1?h^Wv9d39!P=$!J=gol$f&pegr6!2kDFr?;uN4iQMY>;YnxLJ_^W%6H z2~kYvsWmOaqh~!v=y~9WUMn@06F8$;+OAkBhJci~c}GEKY3U8vD;fG$)K#F5-UsYc z@zV5F;yEn?+M5)AaY5qhTfxc{t)tL9vJZe0x|n*0wPITMh{Qhhe!i{;!uK}nGVRl#IEbiF$u|db4-SW@ zw6<`U%!+jSs7K0BaoIL@6dv5CDlLEuzl&Z=T+1)wKnr-`} zGD#LsN@inmBBecml2#yucEA}m^1~F&{R_>R_t|h9cnFSWePA)!q__uxjDwxfL`8Hn z*llb`1DcJILWL$Vx0*2bT=ol;i5uX=b@W?n?>ZQ#S~T~RQM@nY5X0=A-HoKzea9jV zmifsrQB91rk6+4HG7U(g0WqOyl1+&-G?Pg4Y0ZJ7-33PvmgqV5!!WYBqr`)A&e?KL z1Xmu;5Nx$V_%rJnf72f)tEh1O$_B5|qX=rjQ%#PA&25LVn+;;7UGA+Lo&scJS3pDg zp%c=@<)02wHLg)B_b${KS7zSXnFGBEUeKF?;={RVZ^Ju9*||&U*p+D$b*KP*PuK-A zWs>-x#LOqAh?$3CdT#P2q7s^}u;o1ZHuqOWxL`j`x%G%Wk~CzKu?}ZNbA0d(5?@N&oJ%{PsJyZDiXk*8Dw(Y8k#1N$4~Ze;y$Ok*RG_ zANtq<+he{BOxKRsV;(OkbF*c_g6URf;N9!Q`G-1$>qmTxOfR33vLhx+@0n^>JkU=G`_&H(quvwVDcdMH zk0_z)2Wg?*hhT;S*+#|jiXe`5so!~6vxavKtla{bF9Q*toOHVKp6s7Mx?`|_%PzH@ zKv!qjsz{jao5&*wsMT0Bdly-~^(ZiZ+*aYZ!WX#yJyUe8#2HGVgrI&AzqG@-T_Op) zb!FA-ieubYYTyO?Qala4CQmwh*sfX}2pc3V!3o=_L5-w@>GDleNKDDO z2nT=ry3sgci~K5B`<1mJP~IYf`Bfep-gGv+hHqB}RQt<)lI$xd8nEF7C%?A_JhjgE=n41un~e zBo}o--U7a;+xvlj+3z9Qz--hVtJidoFH&GH_)Aj7ta`pYXqZTDkMDFC7;#z)>`whjrXK-eawzOLs571dcXf_t8=Q& ze&XPoV#7#5nas5!{AXUxgem&1GsDqccN0~{P{7M$%ubprSkbtk2|RcxW0Dr5VvcVJ>fe)2HhNnc#OeP>~f9O0e^#KXB89Y3cvaOWwO6&GYq1( z>978@NT8~|Kv>=vo1IWhQ8q%6hiU12H~ZF(R=?hRn+76!%DRfFj#}g0mbv`qM#kb& z@1?_kKc~GvtLn|Rd3e_z!1k6f4<8c_HAN9-vy0_!i!@ahEtE*}nVV&}D#wA!f7mwe zFF*O-+Pn1NVo`zB;|B^OYW{8l&3>%_0p#7R@BK%)x=9_rZd1YbTkTe4?>iytL@cEN zCQ_-s?Aliv)rVGBL!KTitUojzepp4Mrs(K-XjLeY_BJvHximjJkxaO3$iGso{oQLM z6OJ45;|4wnGqa9R-;}pJp{J*ctk&X!7bI$YCge;IQ#x_1VWk4!3N`Nep;^?#_B7*yhD>zUzf zZ_;q;7B))F*LXn(ZdKM0JeHslcrg(bvV*ylAQdAW-NWm5>pU1; zN(9?eFLqcuP}yC-_#XvzCz0&Y36Hb;h5VRP>`dL*k3Iildt!M-d0tIJ8?d;CsYNlk z%s6aj|4MEp!T-I;d=h4CI0gUtDo)fQ$xn8F@0GuK_&7X1UP7DJ;XEOt1ZcXRHCt|* zY&Fx%h8CFHXmcfdkDAf7lrID!t3B2ZW z#95iwb_txq-M73bnJ%IYYGC|$=!|glWlg`WTk0QW@sGt=ZL$tt%3B{P>Je2?|Fb9h zv32&6He_iz$N42sGeHe-nDjc-o1YZ47w-5m$Im0{hc8RFB9K6W2gsr(l)OoLsMkG` zbhPnsZuzA(Ldx{+yIzq6x;e1~Ru84o2xf|Ca_Zy|8UAT$4_TAqrb%)F>kd|hN)Eig z-&^>k+{(@IP)&$QX|b=qKP4ZhwXmm0X>G2p9nX)pc}jXZbx}EbfA}|7h=yF;)I#ep=1aMotl>?z9oFV+;iOWhVen~I(x2_~pWXATwBBr^lhxD#mxX&?; zwO!4_x_fJS!lS(O{EfzBrpd$uv7Rm|>x}Sea&?-u4qr8nwd7$3C$WI49*dwR_+3HkDh z2Uk*i44<%O9%UiQ=)}|mi@_-LRKH*1+iWZHaXo-^k@xBxQ@dd`c9HJ^Alu&PP%L;xUt&%z20!> zk0wRt%xhUjZ8Iiq>b!bcYe%PgZH#b5!Z;(iL+U6&lI7j{gm>u|C{VD+Afp!@)#3aT zjmRYP&aZZi%7g45OPqxpGVy_!w^mirc^W8tKtM9sN zJtHEr5X%Tv;S(5!9;w0cDg@n0ncA^@q1>qPVqQfc)+cnCwoRoMW-@E<6N-&02% z@BGGNsfagb!CPzDOSlZ?CW{d!laC zAJMqiw`(K7!Tl?Q_f_l&$aKf}mBV!M+f_R7in}rP?M7sa80;ObXA3p;`8t^2qo}l0Cv4+MEtqBJ5>pBa+W-W%{xUdb!bA)Y)+H+P4KsROj~CM)1S#yIpx^q4N7p zQ5R7iQy!)Mm>yqTZjG_XZ_hMrR{^Tj&Owm%1IldO@12C(lwi$F?wjI6a$$gjbIWUd zwB0GmxhL|XZ%dEfo9GXubCvr=B|C(3CJYCJ^N)HT4oGK7NbBD78L-)?6dluYDzu=1 z0(L3LmXzBLh-D2o{p>Yw=VnvzT1Bk=XoXu9tfZi)_)E}gNc(#n)ZSRyjfSK(21r3G z`>>w4Fv~iyz&fz$yEBqSpgYhq@p53V8hRfGb-Dp{$~Ug(FqsCiVDlu@jZ~nE@^^JJ z>Q$Te@E|4pGQ(h1&SnmmScUjB^|!s%TT^mWA{j~?wN*s0OC_|$%c@ftw6G^MI4gA~ ziaF;U1vI}(99FhB>r9l~pJ=Vrs+2fuOLp0d7?L>RQJaMKX{Pimd+D*8x66P# zL3_H^nMdV@K@N>%&=ikW8Io56~ter0ROA<;P58wP4$? z$=uFIXqA{Zi%HuhpHxs+$7WPHR}Vkw(8`k;_ZNXPYunl~!YKT%b%c33HADsN6PPKCO(MIjoM$7-n z!HPS^i+;6W4iJ4V3p%U8(?-uMXE1M{NqX!GzMj#Au+lmi?u$`}cC)J%%PXC*RPcg;09w)gL z`IbKf{>sC@pv@&?tSs({%&hZUT=Tc4-ntlWP41EV31Iz_(-Bdx;eU+c$+%wTToQKT zWz;HobZ8%(ukCGLm!5gC&(z}iG9rmB2Kom0K?oL85Fn`YfaTF*F*7VNd4gtI% zGYJ2+xBV+n{@&@>S$SKzQL(dFIGVY;ORKLc42Yo#uNtm6Ia+jWcQyM~qC4JcUzgFr z{oVSPb{)-zJ1}lDml#-su%f+*7&e$?h=QE{598y@%a;XHtYEZD--^Pu6F3(64D@)v zn|&JV<&mV$9$oUnuLcH^v8E^lsLzxbvhz6S{Xe$)z7%o6(S{cBrzxzJCR(5i`|JiM znWr%{3M=nCnh`wjXq?3QR?zKbQuMB%$F}|53ty)>U(_Vi=Kch8&{=X7s)VEuqFAN*89qe1N%L){`WE3K zWG8f@Nr3odRvLYxHZ{WPhWaH2+tHdRCED=~;-4ib0iMAH|+5`$L^Si_#buk#@}#}IEKDpHLCQ&g)mtdWP*mE2rcBOmhbVYxjdM=mJn;! z&o2TxXhhMSJJ<2a`>-QjQQSL`BuZemN zH`aUJfy2{NFuyBW{HWyQYYR*1Jxi!-cl_NfH1_3idL_lI=^mSSU-EzA3zj8oA2temgJ;dP~60fT-QzT+PlL9}LCGAaI7{^+Ria7NA0 zjv%Ge+WtKD2}_xRV7VUWla1iuPXQmz!P80FmJkLU9iwjhvrO(ZE&5?}%2dn4K={O&s1<=Ka? z0nV_NBcAxB2U?!Oy!Qk|1U}l}YA@=r|OfQmN2L zS141QOZDun57kzfu%q_U;hoYqe&`IW^TF!`m3)#x&4X<~0L zG$2VcW*BI&JQqJNCB93qe#K#eeq9~<`${0wFYF}fKm^)lhZ)*smm2!=iVJEo3qaTy z^k+Q2VOO!c=+tHWAy(g+hzjM{&d*n!>13Ok?Y_v79g6zdDSk)0b^+l9S?236{ib>y?ng?8)|mG!SP*8Jm;Zxu96*&*-I zqt`QQBf+M>nyXb#o%K2IV6#hfxBy+|+%^A&rb@4b0fhX|`Yqg1)h832>9pF+_W6r5 z1=YK*v9G3mq`nCQw2`nCGPZQ~z2py|gAQRU9 zQc8sKs)xoXwe)Kq){d9aFeF`DyjAO$kVtan=X}fDRmpD$Ed5_(G<_FYDH94fq zm(`UQ8CJ2ojZzM0>6{o=UBz3Tu;*?frQYoj4s1tK@Qe0 zf9qAtSY(H@knJQ7JCvpWc?Ljn-lbebwO;~J?LiXooR*D>THnZopyLe{(I7BYR|aOg7izE<;%9((@e!{tAdf`zqm4u8UMB zTC&Qra*Q43YK|T<70}03hhE@ASQl7Rta)dKRv0*p5$cP98W?c}kv4vaR-%EeT<|O~ zv81#DPHH9C-&`%VDm&k0D^9zDE-R`o4dq6Wpg<+?-JIeIr;1@u(iz?@2z^4mEJiu{ z=zziCNNq4<9HaFBl?kB8F_v(6|Af6-ZEN`J!H8qUWH2Gy61&0U$o(uXVx&Zm&d(5A zR3R$!d+e51#h@M^^I+*|mvWy;yRx%GM`V50Jk4WiuEoU6YP%y9PCLm9o}q;~6UJGz zw1lvBC8w^Hnc4HtE8e3KSPS#J1cr-O9AeC8G~``f(r-6c4(?|Q%jmS?1_#$zS-U(pT2jSi$=fZiVzdUY{j_knh zUAe>|fXBfrkH9nI;mRCY(8t>KECDie9D%4jv3xW;Ea=11NH0<3Ct;Y)@O#@FC|oI5 zfCGn_T)aA;I~oN0vzrJ0D%v%5lyn{zd;h`*e7Yfgz2Yo-S~$+j%;)UJ<^*&DtE6b4 z$SO8m6YGAc3Y|wq8O(c*q;M~8hQ zkIhI=W)b$k?D6a>e8_)o^1}ae(x-ZBHpD&e8jr1QVQx((*=|biIsqLp`=4|Eof4YVKy8>Wfh<`^S1Q?jU I`ae(q3js{Qe*gdg diff --git a/tools/ShowGame.jar b/tools/ShowGame.jar index c53a87c1bdd16e47d4e9911eac39e41dabbea06b..99efacacf8a934c64275147478074a37f35a22ea 100644 GIT binary patch delta 10879 zcmZ{KWmH^Ev+m$-!QEYh+u-glg9HigZXp8%4ekQ)HE2etGiZ8yw zs_k!eyWjc-)yCY=NB857DQK`ycAq=j?mPH4|GakGxBp~6_cNmp@V&9+N5f)QYVgDA z*C1no8|B8?0)0|#OZ78lO&)CfA+t?w z$x8KxG=+yn;u_{rMk#6=4&1RFnDSuQ>5bm|GzEn*Ya90eT4ZVh^{O|?^!{jy(OtZD z{_>T0xknI}@BPzw#SWh5sg4eqIC7)P6v%twjDX^_2i`_t;w^2`>^D+cAJ6-yKM7@By)Qr1xCDefQ_LFhUxax#1rCR43+L^q9-z^h$vKQbv?YI2zrOWZr*FR9V0k7~-!S zGwpe156+)WR==PQ%%fu_;>%1@W-3F+$wO{z4c5AOxbSJ4$x;@LH7(rBs8 z`&!D7eHUm(rblHItT zRAguaMioI3cP0jT`Mu$?G12kKIi|9jq^SCpLD@$S0$KPq6V|qA0@OI%MzTSqG6y@J zt`071hbFfBW)jRDOSN@4HlAJy-Fj5Vt}RjD-}YjQ6KU@97H~ zgS#S;jb|=7jVTeW5-0{CWicO2QoG_{;xjYq%&=zh_^F5uTgC6F#Obk=1Vc|@^9yoQ zjL_jc+Co1ZKj0b{yDnuf!msk`xVYj%K!Z*f2Bc0~<05#A3sK1qmc{0@JA%K=vbu&O z3GCd;qgkKPI~OnUJdeDI&kwy*b-`VJV8NI0`%>3@B;~>E3#&lWDqLoDKE8eTB9gBo z+=3wc(f1DM5E!O+q~vuEvJZNL^wtHSNjftPJUR3eO{fU8SGdXF52)bzOTJH4yQnNv zmv9{gbu*W^<$p55I(I!tUri{GxtL1E=kVs$mC|*Lq^)Kttg{)}T;Dg|U zF;t83cLwS;3}Fs@|?lSdDs4riwKcdnQtZ6dTG z-FVDdB+@6d4(9y~q)&!}oEEB<_XnnD2^N;$sMR_|{Y;@poZsPem7iyn<-iMhOT zDR(!{xR83*csDlD-ONK@jF|N}#hgS+cotf2j zNE6qRsX8KfH->P3L`?`y$mX37BCToQG1Oh}wj=@SU?nOEjh?l;XU1iC7q}M2<|QSn zL?w?s`?+?^LWDi(Pbq&YEzd&9(H*Hsx(LO@yQ>d>1}mIvNr8VEvp(fpdQ_bEa$DckAIo9~y3!v6Yr*I<2`J6M_IvkO zfw}(g$)-%h1=M&h@F&zMZ^0)e^+_>%$d1x;-Uvz@^>__~8uB|N@8eXTuC;gW8V01? zc}*>)2;*pAH1u)F0F8kZOm>RPyrxr1`Wec)t;z0@hunfwIG&wf1Zdcg+b{|W!aXbX zeg$sj0!O}u3DXi*Ct532aGcu6By`|r927o(GHZkp9{#_BXg# zaTl5vU|+SiIF8=iVMHa~bZYAiHm3C7H{2rA$5U`FQI1)bCp|Y&iOM@zwAm8HfE7ix z&QzW=B>OJJcWZ$&A**US##sY7=7*xu-35&KrsEGiq!+UX zU*pQ6n6L0%q)==j(zle#!ELMWX~ZnULfeegBn3}l+t^Lq#nxj?eKNulb$*SOS<=JU zcCAKZy#wjsV}V&P;O87k=q?KAwP<2zA)u6vsQ5stA_#~NJyopq%DtPKuX;i5*uiXH zOvW*3BWcj*c_VYKoo0Jnp#lZxp*_oO2GKExX7{Q>*S|G?sQQYUb0Xv>lSEsFNH+A7 zkn>zmfD>^HIxfOjm==<$S%U8}7CHRUWn$tV!siPp^1;%cj95)zZ5(bkW6d(7b1p;+BJ%JXbT_1KNYO-<`*MZ-yRNe4J=r$GZ20s~=aI0ku zTz;!bIRHO;?2bSz3RjE{DXbKZ*V6_kK|e)2j0ErK=|s#NZ)>i#12qb&<@7 zR+cv>(wuF*(`h*vV!co<8A;6UUb^BHa#fg!XY+2x7+b5p(gHaazWjt=G$)15leWi- zrJxv35J?m%j`?**S&NQ!7B{EQREnXki9sakUmYVj<1%+2LtmCPP@5Ko&4Eq7Ly`%L zLJ3|<3qaw(O5Ofg$B}NYM9Zw{%tho(Tx3dJwCgz5g`VJ>0s5oZ_e%8R@@GjrSYf>) z)p!^#jae&`O~ECUAOg-z7$k*=B8>v-*I;=kpGnKsy=;bt7s+Z(eU5fXkP=QG{z}*o zsf&f{WLElsnDRh0+UE#5msCo?N)4r;j0VdTbK@S!7x$!CQqr>aATtIfYoL}F&`hMV zb;Heo3>ko-kp+&1EWk*`LZc=_UzGAfuUeT$SY5g7Z9$3O3P*~Dw5i*+0^xRhwua1$ zl$6=Q#QW)b^gnm#{@AZk{oK`A?m4{z*~cyJqWf_1j$mL;<}cAW^?$!&Zc_XV;{_f) zH>rn+oW+ZFwOQn>$Pc=1(z{-r*$SXZ2W-JQ;koZOFA}@O<_UcEC-)1JKf6{M{_5Jo$pr) zxCv}dcOSnOD<-xlhen>*#sKoWVyFsd0ZTBGkI9mlIPQ8rdOBfz^~;&A6inXh=*CG% zTw1_dp#hx@L<};!Be1zRO*Xzlt0^KNj)dzQW+MXtPVfGG$klo~+}dGF!N3r|9d7IJ z*uXpk!0$?jpG-Kg zw^6}vm_^GnzaTV5zDPH|y4IhWljG9O@Tv2tF|@v*Vpram2xOnwi@khj zlj7^09`L(etH(;Qy1RGO!a0UJy6(mhDx1ES&L#ucCPBdrY#UK54ANxcD*V*J%?h4r zP^e!S#lIl3Ss-egP>i&=-d{@@{_XR{QnCbW7>cjp7T=wX864fCr^aCa&e@O7>%#1d zWcu8gK>-p9u|eT7opNf9CrTw5hOE>``;6hqc1f5yS&U!PWbZ1lt+!VQ&LOp;ManmI zWJVR4J=N!k@+HY0+^qBoL?>c?feSWX=?UrSwwN(wbZaftWgfS($WA77e-ED60>XdT zFJy4ye6YoMO-YPHn4$e7@gVzZz=S;yA~1xryXIi~nV8bCzh?8HTX;2aSDm5+fXy zJn0(dQ&%sB&x7d~45Cj%ickFk=ey!Ip#`Py_GG0BVhKL!S!<1q$fAi*A^a)ojwOWf zCr+>8o*?y`D|HlAcAs`H`(J{c7f)!Xt(|o>`SG$RlctHzPLKwk@+gZKkDT$iD`&WW zu|qfdx#`L!GAqQcP|Ol>)e9}HVxA%2!nTSF3`!v6PApemS~nGAGr+4If4QVcq+i31 z;gb~%7>-u5q{lN|H2M~Fx|#+lW-(s*>Ep(L{7!$p`}=6%8qV=iloJ#=}p-hZ0R zIc*vDh{Uq1MwZcbd&oXgp~T#Qn`Cir4J9~MS_yZ*_-b{@o2kMKEzvFgm!F|#6MaKo zwVx(Ki(r#H?}%;mm*-z5)nt-fQ#ez^wQz~~ZFyLZh`(>nl;bCUsj=Xl^a*~*7`LEi zFR4~2<1+VQa71&Sxf=KiE=b^jX@ECSBr`b@(LqTlB-gtK$ z9cq@F<;_7BbAxCeZR5NRkMQ3Use9&~C0VE7e#azLPo20zQZke2OTYD;L)o!G3fo zM>-*rF=V6RBd9FCvYCRG7jIn4Lb>1P6X3)>km4TlGmNFnH?4ccSyh$6_QK1gX;e1N zOv5sfxaHBzU}oH#0}Rjiz5wyUT10yxBWd%ze>J~IbbeGKegzX3 z#!t%HM{`vp%a~KDQ=QpB^3RO&*G}YWU>2JwiH`8_gZd=FPy71tq9GV8oo(_%)@4<9 zRdTAVHg+XOu%`~uH`1$;DfA<8+V!xb1>`fUbU@`zvy8M~hIFJwvdX?uWFbDq zUZHgUu`h!K=TlzFzCj%pGd~M`G(uIUy|(WXj8*T9m+{X}Bj0kq#Ol{+eKmW-%OVT; zz`ums0qYJ{_6;;vy2`&7^0V?Q(ft%SEFj#ycWHh2bn}Hqv-m-4EjxY{BxXOfnfeQX z?sp|Pxc)k}@DCEu>WT}(qQrKzX836K?MBF#5dVCxKCIOwo$fUW4A1`Y$_>&s%_95nm{Z1Q*lspNciS+xS%Q7%f|J8g& z!K!jC5IDm86(2f7+rgZBfqoF!SUtNdKR>K3k6(hHaieRx%RuCdb~Qj4n-0lE+~d#Y z_*0NJ)q0aPjP$95M*!X%hfuNxpa(v%1qq!56HMd)Yn1z5YY zpvK)ssKj9P?wz89VUa5{LS}p^>i&D}(5nn4&2&1UC7UvqWCzZA&UyYdMjm6f1$l)u z+n|y6^HRxnOxYP9%Z6tjEC|Ff8gDp1Wt3iNb>t!|X(RsDl%8tJ$P@da7fL%7&y)-U zPAM%d%8+4Cw{77a&@Rg8b|NlY)50y&XsR%yY3f6J_{=%}!wv~fNTt~mPfbVnn=M_5 zn;6^BLv5-&hY6mFi(($bD+9@BSo9UbXy2m#u*yWu4w1{?7Z-Jf1qSSa8MGsfXe_-- z*IksCKSaSShA)s?d^!8N?f!3mE4T=cS$*ezqx48_fec6Q=)n_RH*Q!Eh*C!i_Sy1Q^3 z?{307?4NGh)4uI#tq0IyRD9xIT znLo7e=gypC({*_`#|Ssh%!Hs>`78qWx$w6zmK}!rxe9smNwrG^?HO-t=Ajm2vr;+Q~tI@{peHGHK&H-Ut-yJ8v^q=6Z#{_O+@BM$5LDo*`-`eeQ$W*t-M zL-*YRqsC2_Ft#%k&wiPZmPfhl7^L(Sg~a@Z+dvLBiLeQoK}6<55HeUIW8D-k3=+?s z;(#P$Q0tEf$B9`Qj6RK-_e8x%OG_yFC>uWYO4kt^O&}V>p73e?weeZ%S9LZ6%+0mD zA0+Ad)5?HkM~oGg^>f_k;JZNrpe(xUc5~&sCtdi=Fga~9O4(J++}}iJEz>+xwbx5&qx{0xfw@nf zH_RE?i!_3}g^AVQi|Em`p|fbSAoslSFg2!dGZGIjt340#0UGR~TPDs#9N9|BdaQzyYG9h% zL~{a^&~!m4;xVww>M;9dn$hh}?I2y8=`yZxoH@^{q0&#WErIq9NAo+^EZLX>`jrLu z6PBPuoQmrB1fc-GB)pXwhn!We(Q5WX9c|>czZcCtD`~Bha>C=<`?-T?lDQa?xoDCx zasfSOWNdJDxy*g{9O(qL&(mi(r6UDvQw;wM5!IhlJSTbVHrMG&6WH7vIl8F6w*=BL zqt8+Yi8ahx+l`zPjq`kr=Xhy@VxKoo_gvBUgf54Ohsfm|QedPp*T1ql<+HSq@;>vl zM?{i1{(fiuiTVX>tz+Owl0*V%QvDB#k^RGAH)0O3E@H~0$Lp>>X)ul(YJ3^d-! zT5nS~SfAIND$h(@k#QawBTxBXXg+Pn!grA|IoMfgqmW?W8Ttj|Nm7#ARaMPo7zYiK z2&2zxAXNU)YGx@MVU{h?K>1AWLGPjY!Gq7CqEY+ntrc@i1hOWeausL$a|Y1Yvabg| z1T6)OF(W{%dAQUVUn=S{jK$>O#vgjPCV1eysO_H?Cq!CAS0w1w<-q0la?ovm(d+hM0R!oa?iQx5E0$2{7VUSi zGFR2ki2-AM3&<}r<)u%tF-(r~fG%DUuK9=P<$|7ThpB7wyktX*=w*?4VDy}!12t=< z3RUG$CzcC@!eY;mL(Z-*ip$x@5@QCmKB>;A;cFmqEjWNMAaAk$rrA9qLHF#A>;e6_S19{z-m}`E) zZYaUwS%&UGqlI9y4iB8qsr!ZBPH8s#NdwCBs-xYb*qSBlubqlXvNc=WI#kHAukk?Y z=}{cNX?x^MmMGMF3g^MT6N8CUDASh$gq@ID1pdNALg{E5% zd_fT_@!ZK%H;m~bLCGjO6I2cG6KK#Gaq0*~HIF4rX_h~>$509=9OBy??CH#CG+}Xr zTa~lgq@l>H`7v1WVIs_(P375&VLVd=p@e6MqSFDXQz!7&I%*QkugV^ z$LBR}k(&k%pA81CzIh>oI}z`nBQ|3#c+YVxS%nAnY_c$n4Z7@@rxvF;jU!8b#OPdx zPPgF|c(c}cKU;Bb?p2$xls#`DIt0dteH*wkrvyT!zH5%Ot*=|P=NUyHzO z3*o)eSs7Th7V?@_IV)1cJa_zs=>OgC$hafz?0|uEj{wajlWhO=hTuGh-W$JtEOn+l zJQBP;dKzwh{PCg$?5S-bpRMhgpitoJcMGc&9jif?9lFFqBsC zT{P^j7w1mjbNc}MqzG%@ZoZ^&S;OiQe<-8|m{kpT!~eZTK8Il8k8zm!_EJ=*yVO86 zm(P-=W#Gg%AKQs4#Mi#aSdgy$+qa(V;!Bj!WVNz-*(GW)IQi>?Z$)R|uZ!^}|DRK! z4cTuGo|_%=tc+`L z{hP{koB2mV;mW@&VMbH+m(7|1_|nMtZ(EY7vwrqm2K&eG*Ix zlAf&c0@l|?@E@fQ3z+=_3NKJ2`v|2$7$ztPLZ_?>_6IB@g60@A7YGA~j~pFro(9F- zBXMz)RIVyOiOa@Jkpu6!gVo={z74$sBC;}svWGj3NH^n1H%qWY1bN>*Ho~lRjV!xv zX)F+;0!FvD#9KZ(uo;2u6cWEHrq0Kt(hV+rHgcp`1TP%;9xcOfp*%=oF7vHP7_V23 zH&X0Yck&<+vd8MbWYT=pafpF?pIB}=pYa?a1lfIF{{Ex+g`{&?Ux+c4t@`$<{<-<{ zYvaUVs)`0{&u_^8ul94QCP(8*%*cHo>n3L|Yzrr2`35eOU}^=j9)7VCoC z3)!}&6fxscJ(}T3WjYxLQ%L(V)E>zzk6iYB@?%kJi=eIL!$^gSPuIoxMep@8>uF0UkJw}Zw;D*7WC;7+4>zf+ zneuO%x`HZ#D0gx~VAX>9#<346ihPEh?BL5_cgLWJ)+cNX1chAk%7Pf+kJ*pzKNfIh zxVXJz!5N*XMTWWEeh{vkk`ckfwmEUD6~S+IzfU4dzaYhQQgLw6!h(}g9plBHj0GIc zESbi|^PHhp$klmY(~uwNxg)c4xgPX021TWjFNMGNva4}*%CSP+_%}XKJU%B>?SMZ_ zD?{vvwl=4J{-O2F0LxBZjFv!*b5kF*eG|c|=hx(M3!R}!&mLrhPBqz^I}$I{y4Ts> zSe@g_5cKK;uja%}NwZh0jdAd{-GhHejOdooLvQtl}G>S$5sRKmhjQa8^& z&wnfU=u}SPA+ax5mo$l`mPpz^a?WoAM`Bg>Y4DTwR*7y%jHmYAp^herkXG$3llF0w ze6qk@sZGqYZOd*=#beL8DG3oy|QOMS0N zuSsk-A-vx$JvO;S98;YA7WI3Q2T3*R;61{jEqWz>nTHZsBdNrfaZdf=qHcZklzr?6 z0)OQGd!!5oC@%4z>cg+!p><6BzSIZC@*~1x0%be~)hS5w{~&>0vafa*l`0A#uW=DS zyI@7oy=N{M9?=cg~8pQhXdxq2gHr|^c=miJ?`(dhnYKLEC=&?jt9@TtUb0# zhCu_prfZoJXk zCtO{jZGA#_tJ9B7ss`HMj~{DSVu|LQhU^wm3R2@w{%{sb%mcaRM-}kO>=y1c4eLM0 zTKd=5I7XQOwan|u$}Va2C*|tSlo!lM0@Y(0k*s(l%$EO%G&0gRo z)bzS%>>uM7f^guh;|(Tf`k+xlq>W}#-n^%IU7|LxQCgPI#FMR}iBh7%npZz>CMe6A zdp)lKDo>gA_26~TL7U4@(X6&DFgiADk@zl~t*h+*-L}Zz77kdVGm~$N>#zD0Lr|tqZ+Yy;Uj;wCjJ$j2iCb7DFjT2yR&Y~1y&i~wbM%L zENeVIacOUZWJDpSs17|-yKAUkfmoJTi2Z>4LA40114OoAn zq0w*j&A~i#OM*89sNQ?cHL(PgPn^1;%@GdA)0+sZN5BeFi9S(00V8c~p!O5++iAUd zr<&*NV-5DKh@Y`Brfos8!~iGpY76(|!n{58_g7^iBbq|iWh+QLXL;`s{)rHg-w`(F) z-wv`(Sc`;Jyz;E~OJT0aTr59=-1cy~gc&K%LuJI{t*`fDK~!N+lur(o6*BAW$*(An zR{h)LIOPL4^M$?AKh~^=p2Tl1r*)w%<}NVew9Rc#X10k89I;Z!#K_707%#Z83rN(w zODYv!-NE-4lp|7;Bv3p&a}`pHe&KE2ANA@($9m>Tk~W2=#}huVUyhO8D%1qh<@nJH z%o}m5tScv%W#g6m<(57%6x_|y9uwaXdWia~1H~505sn-^0?u?XrYUbZ*jB|K;{~NA z%PA{=yyJXVazp|un>?=Zin1grCNZL#y!eA0u`k`}RLDdV#umDLfc`^#6{b)Bfz*?{v#yT-r?2i>AWN!f@1fV88Pjbmy&1RY!NjS!$jl93ZS3;=)%4*;P2hp{&{ z03c&;Vd2hZZg1-5rltr5jRW{!O@wb%QsBQ?f2*hdYjmbYLeL4pf1~>ra|nn)0|4f4 zYxvKp_;J1^%ih%S{}ujiQ9yrWkZ>U;0KiWQ0AT$qH~?_X4FKraSa?~us=c|}|KGFw z`(ZR29q-d`Z>)K|(e|IrElU6O_x=AkzvTv~Dv^uu<84FLyaD4szFno9dj9-I`919V3b|J+4gk>chBpTOHSqfY02>D@b~kqm=hT`PbewI9g=mhB4Z&L_-%XZ$?-}nCoQwmY? delta 12971 zcmZ{L1ymi&wk_`N?(XjH?ykXIf_vixcPF@8f(8gqaM$4O?iS>ebKigO-uK6^9&_~C zYuBo-T2*`0?C!Z+&-udw1rSx_!67g}U_OplM7l&oKJdRMIYkUT8f%F3ecDG$D(pRM zZLIX-eJuLKd`etrSdUyo5D<{R_>b7S^->7%M?|`Y2uLz;@E1h7=!rf}C-EZ$EuGK; zv~AN_(wD-8g&&$Ldipi<&9+So%gfltQN;%nj%kPxe>gYN|L{Bryt|&aHheqvb>R-w zJ5~LTk_AnVdX*2)N8Cm!0bpX7XtE+yr+uys#_=)#g}Iy!hsL8ET+$s)L2M683t2K{ zUcKeYOuQhcQ`U{F*z@$rMa-1oTo9c6IWZ=>wL|{VnUa8G!GfC&>q2+FZlNa zP<8dTxFL3(OC{`&Suri06!Q&gKb9L)Sqr_eaO)OdG71LIDEi7rO6QmH9Hd6LOxd$y ziVY{jI%=A+cs=XVoB?wRff1EeTZx^luk|vLdqH9i4SzDQ;wP+|$G+q$EKGjpkVUN1 z$xbCJC>)7nubQA3^x+_%P*Gh{C7H9;mlBXeLnBJQ6qG9t9i-h#A%s64A)ChupKd!@RQD?P+3wq*PMobh!ep4$@8F2mpkAXo(0Ls zD6cQpV>B8g9r78vDu0PECPPqAuiefkrW%5iKI?cZVP3{ds=vW2u7{_i$z&^7Ma7c< z_TD;j!qKIMz4q>MZCOc-e%%JYmC(k6X86-s3||hC8Chw~Y>g6ouJLk*<@ch&#@h)7 zQtz}V;w^7jVJ+Yayg zI%6zHCmX(lIF$S>e@Xqdzzy^FBJ<&V(02YOz(Zjj?ChT_@xG2eR~G2cB_hq3r^SK{AhQmgL1jH`4CTbTq)Hz>OJ&cXb!%Wz8@P+@za zQvX8eCOb&TkV{|jTmYB98oKi|$1)_f?j>oVIoks$B^Ecz$umv=URFxp?jSk0mqNb6 z{?*_5^S0O_^CbLF2b0Z-xzZeC{jL+z$9Jki84)&p#B~qEpC`6Hr>{S)J>JHO1&ey zfDHQ-Z&F(RW{# z7{aKlz)rETppisnuejB@ilTeEw)Bp6P}QFRA!|=gQ#pT{9NIx>qTg~JbKdN5*4UwG zuR^qoND@IpMd}vnCw$n#dYO@Wm=La!8B?FB*kW~wvYD{b?-7P$tdOeM1PMu|g?M$R zRzcC$Dctc6T$vqhoW}AlWKW8CtIyuFj8a%B&TN@8>3S2hYO1_yiV@zIH(j(|CDUvG z`grSoB}bM(sFuF63dkH$Mc&o#*t~DWP6^d4RI}W3Vwb|$IKZimK&l72jU@-R<^_ar z4i-YRwHyC07mOQE*xC0%wpivuw^~(8Bv| z5YpPbnGjND1peGa;cx_DAZaL)VJ+A|QfSEz)R%^(E#X*(nb{=Q+Dsa-akKuVohnZ! zY2CZWOnnuKbDc>YpG*1QaqY2i&wLP6BBgco2r_Tk0a+L{j${0Y7tvKdVanDhmoe; zP3V*bg(9j@os1bG!9P{n{HRApM%i)PIbN+;vN$X_?KAe)A%zLGL(MB{7mdfr^|a2I zYY}M~c8~fpKr#vOuZu||GzuXEm`&wG&ih)x#&=}t4@N8Ym7sP5%ZSk-8ox19=@20d zy=DwurqF9JEYJo}{@93<4KnQnZs=cm6hKNwQp4r#^}i*|`TiOK&urB6GOE6L6!fm} zmF-PVUc{ie_BA*#M_Cn<9oXaj7G9n_{O!80VIpjKqte&@vPh7 z5^+1-g7@pXAI=UqQ5UyWA!q(`2S!VJvGAezID?bOSzipJJ)Z+z`*SEFx06M3KVRMk zH^rnMM6T1m<%nA1#(~K9%zSOatPv}1eLUhsr_NVaVstvh6ieq*F8f{Av(h#;K)1pL zTPvBpQ!h@?|vcO;arCqh2=P~MIz>11)_j-51uDPS9 z(YhlZQNY0gzh_q>J4627&fE#trjNZ?U{gcHA~_69bf|LJWQ8xUV1%Khuu28K8g{0f zU|H1jILGm4_VPaj;)3To%kwil=+s+0wjF~z1UVvIyyD+g;^A5F)3+q*oza#uq_y_9 zEjc#1#s;-GwjCMrfejt_D+JEt^vHL_`bVa_?a6X{#I+aXlh~ zgp4UBh*m*VEF0S9%;C{7}^0m_BNOaIlzSBu}MZ65*=pcTyaUq zguUM5vt?+HA~YbirEVZ?ZAj`DMBk5Qz^L?#a~s2eUMYl@C?3CG${ua9ThSES5tY0} z^K{^BTgo2Qsh@EB>muE{v;eYM_9M+XhH8HWrH_+rE~Q)D-8v2+jn%TxjXD7&a@gxxXGV`sQF83Hsb z>`2e)3yfGAXoNY+(-73=zVf6Ijr|A-r4eCfwiDqExXMxLaztQg!($If+#-Cs9W&jc zhBvbuWzH+7MdG3$I1O%~81sQZ(jVmgq?~RC!rHNdJvt%+?`nw)gR&d3+#6#Rd1x52 zYse=bI1msVw14NX_aD493|#^o{ON+d zABLD>YEHvi(K|Ig>D)@vE5}TQ_*D|EX;* z)Ad5|Vbyh#_kqF5Yx~zLGU_w|=cK$S(@4I!!0@IiGjFw0Bu5F9@_mv?tU{t?CC6+r zkjbQ&$*~6o-N6w~UtDqPoQfU7j*v?`sXH@<)yNB#XL@PC42k3W+^UzQUc#%Gg}2nE zmGuP0%;HtRU|@b}%B;9WhAS+XoPMchljhwrvB}=9(R*iPG+_ldM>4Kke{9b@?^@)R zU97uR64I_VRDFHPYea`xt(Hl@XKAAc6zejMw+1&2jM{mB<*0%B_Aq10G_s5M0y`cu zC9K?bAnzK~gKyE0;M^oj(>UzxOBM0t7Q$_%MlM~vL>FV9T&kYMBzlIWCrEUTiE2!v zIM?S-6zAPy{J40&MM$)Mv=uGjSGO6UmKGqFuRQuZ2_v5F_1NIjISGrOKC*fMSU9Hl z7+KdT6~#xTX`lGb4abf!ApT%Y+x{BiRY$HhZwylBDh^4C7^XJ+ae?eIz$ za1o}>@Qjk^JlXOmOMIR2Q_lKX{L~q7k#+#en&B&v^biHZ;+F^WCqDvOP{90>Gz8iA zh^cP>;_7vVAhA?UOMs-%zk3rpOeKr~7}|{36A@;4j8KqrvMT2%I5E2hI2{okkjGEs zCHbtFBBjK!Ii;RWZ!+2R$OzX8bO4Sq4qC#A-~r97ffvbc52tekI~U0#)e{RnGfR&! zpA+)0Tjwg+GzU6|By+3{lvuHDo*?}oa)vZmrq>c}gf3y`XBN|p?`u7jT|L;2W&vn<3gbZ=oQ* zq2BjLr4c6T;LmN+*;&&>kO{hfk5ci(S4!0-K3YW6$BXKh;L5as4IllD^J2!M{Yb^4 z`@4Z}2GcPz%(v+a!14p62+`mFbt`rH-Wekb!Y2DM>HdCq>$E5`hbpCH7Nhv}i#^KO z5#}hGno3)(FlQ$c#Wyf0v|5w|z<*9-SfSc(PH>(5n}~J6=Px zImuQpyZb}4-O>}^lWsTp*3u&!23RdWzOT^4`UzRu<#=n-EMsF)ZgUL?oqKQ&y`I4~ z?bI(w`?md31xTi+YCTJPlsCcuFxg?SWmQ(yG?eiRJYQF@Hgc{~1>ZN{-b%0ZrgaS` zXtG0$7E>QFCg+l@rd`=gSj?dMbQeb)f#Q7jNw=CQy3LS{pHfzMCVd?$CYHZxaRcO7 zw1M6q!|U{a%sO6K8IU8|%r7>wUf6x$)5wjO(2ipa0E9NG*YJSsP3a5Ifr)14Z>wI( zgRXJIJ5y7WhX=5wO4m6plzl&%pz2894YH^e1LT_DASWieQueiPbB2{~*jZXb;a!hT z>}H~G(Pn=oPZAx4T4cR22tym2U4MJxrg~4i=~u>7UaJ;9TNoVW@Mx4%cq4pY-xSVx zk$y`a1}1MV6yMl0^1G(0*zSX62gAy+OS~hExt=iJ;2ZVxinGX^uB(FYv~7%%_uWZv zt$cbmyE0#(x@@jDo)lTq)Gm*$c@Rc}^Vpvl16GPR&~>~cHZW=1(?#ZAxZDPN30-C$ z!fu6s8RYH)Suf0QKRl%S#-K3Da;6ERjUbMe0ObbJmxcNX6=UO;$z5cgja}sFO}FM9x@IBZMw%WQ3H`L$%#B2*WEU{~ycS~99 z^}|P_9?&^7hPO#{t=z}A2^X-{(QR?vi6y^Lw*Q)*GA@AjQA@1I*nmXtFI5{cp)1Q+ z2l#JmD-29qip-b6qPGB%7@iGS_107qy7-aq65=D`aAa#^7@}nGJHeTU=Fql3QTn~p zLzX7LvT=^&W6ZNgG;p0wOGng}O7V&YvTSpD@0{yLHFh*>hogGxkv&xv6X0Q0~&&zd2+5c*?k4~$xJnzG!*+8#~4!w z0qwYtS;Lq$4^?ld-1@L0L zl))q}0>u{*HTFEbAp3DsKI%C5&3Cap-N%g6xr7U#zXl(|D8KS#4&I?b45U-C%kqcJ z6_`YH57D*t@l#O#8rq+D6QYou=p5=ldi`kVImKu@xDn@*@(JS zqK}s7+&*0(G%ABWma?v?Ei=v=02YakC6JnQJ!Z>oC#LwWzF@G zo_;lRoTwbHucDv9nH*$skS#l3AI(r@ovS!8Un7-Px&`qn?tc>x+7;GHP?Sjc?7r2h zQ>Yz$zD$(;lDZD?W$TnFv_iTQ*+F06(mf9nUv{2b?blW+qDdumM!hm~{>@yThYCq1w zhdP9nXPLsbT7`kPty2Rsj7@1p#^cRrJcLeU_cl`BrNb6WbOPFrNqF@W0=Nps#w`8e zvLg|`?&uGG4qY}OsO?-=0%)^K%XVmM(64UgwttgMta*DBqswua3i8dPJ*AhiDwEXO z>U`#^og5y%|J4XtaCyMgfa}iaU{H@x#lBorK-g@@SHd7UGGc|UX+DyDbd{QoV$&QA zAB2nJU%u?7GlJV}BvqZ#+?S>F{OyR^B=&UW3r~0v{S0H8T3KwiC$LR_d?Am;yfZ45 zXP7-_3FAyDAXERMXNH^9L0870=)b*$ks77E8YwMdTI2a6qHx9B9wBW-Yif35EzXQV zk$fll=6NgP1m?kQ+&=vLdm(#FOdjoJT{7079r>BdC_4z#ksbWWBJ(Px9DgPcJ44I~ z3<{F$Fs`U!qq?7!6kz;bDunMUrYqj&f};hI4^Ms8=pV=LX9AR~k1#qU!N%t_qo6WL z_Nq+bwQ{(>AI%`Zi)cMIr-Zq6twjku_5ILkro?anr8i005h+IFlMpp+%WE$#z6N(@#Dblpw$pnx4}{@($tVTP~)xX z8}eSXB$w*r0J58B2%a&ult`orWSBy7xejqHIV8eCp>j(OPQe49p)vNgLQL*xFo_CS zYrv3tnlun*T0SXFki-&`SeYG5X!aqcV_v}XCp9P7TE}L6CG5CVr3v#rcTJIBFH(L`3zy?0yuCS{?^#N3dE`u&OV_R?Fl+S zGr41RA?kMBHcNqKeAJIu5h3p3mGBl%0TQT27?9LSCPnEQi6nV6W5h?aH1_1f-*vM+S0($0Z9(KOG>eT_Kn6o~zO?PrtD;`g`I%qc#GC2eVV2`nU4Zvlo)l z%Tq?G5PrDs(DNjUM6o{!8IO(O(+@;+Tx5-e#nhdlOSyEda+?c}Sro0>!WY14%nT-y z^sFqDS`S3wn)$#cL@RkDQWZ6)0LA>o0p5CRfq2s5iq z;8*$|Jm7vQXR%DaLF-gb(7^99w{NRw9v{#?mu zS|I7+DZN)s2$}RE7{zmT&keUDSgYEMj5mH(C&Y;BFty07hqW~Tq`AjlWoo5fsBd8c z2yH(pczu2H=1v}M72b%HUVnRe9UgbtgoPP&n{7&w{M}>z?RR#|(3VHE>01`X5^OPo zz)3jn99$4QL(76L{W2}Qig!LAwUL&=I9(rSz6J@ev z5y%=6w;S~8ILM-SnB!TsZQxE%Fn!z^it-K9j&v)h6F4`mR?kJu)uZXN|idvv7kQ{|3WpqCu_ zs}BlVtvjqkra@v3L0rWT;(VKT{xmz1^|GU7ek{#mpR>}rC-w4g`3I7luv^^(}eMz)|vvUj{t;OGwxxz!!X zS9;5wpiy?SgavCJtF!OZOKismEGWXJ4XMSR?!iVjK0fm{M_;o%ZW|kmIBlfuX5%K( zr-Qt7l&fdaYaUdaU3b2i@2Z6oh;@%hqtHoOSBQb|pp$;0Bv{gV{7NGr67wddJ%xX( z=#%Ui$aWFRcTw^qv7iI|2JlAS+Vl6xd<)71W+HBxJ*K+65&XMBpA*VvRC8sCdy3<( zaNTky3((txw%b!P%}zHbzpH1@i;eI}5#cDq#!zi3gTse@iIUMQ{5v z5OGVZ^ZSEaol$J`5(ZWk>WA}7rLPv?K5?tZP10_j>JRU@8Y$BU10HUpHj)&9@`ia0 zpn(Hv6Vzx$2cVa{kbE1t5v0}9b0S2T5Cf35KsO}}eh6e(2u7vH$qAF2-$bxj-pT<{ zp<+`wj$$`XadT6g2F%nFY^^cY!IXwU4~+TmaqqcN$i@)(BQ&N$rz?y$*lP?Mi>Mf9 z*p0U@6TKB1Az;-FAN9>`tOF3nXhFd0BI-lTkm1Ec0!xC%VePK zW~&9s+jfvD0aLM`kwmgLtLCLz<$=ZJfV&$L^AB~q9~NQBNm@E?8f6N^-SvzCPK{3v zMB`5DvM*$-A8U z@(bgwWYYyPPyiF-XSZXW8?7dwt)UD0%Hp67({d#ozyFh_|Hq~l@?eegp;6fkuLxJC z?hn->y>cu~9TTjr4Jvl+{CbJGDi28i&GIU|hawa_4+esKRuHEmggm=~$qs9hH?N)m zlq1V!PqnpF8g)3r;F-SN470?wZ)&{;$f~G$%0!(YK<}!It2cVhF4yvq$?`z94Zr7< z(z+P7YiR9GjT^mF5r1p)`8HDVzVJ2<9)-rnifK~Y zoyCO}0S#9(CQB_7%_cgTkbJZ2EzTrw5!1TvN9C*4e33xq0JDtjca5@upR!jL8lm=| z_<+p)OYP6@_fvYE!CY6|r;UsLIqfd{w6fV4Fz?$8zjk4wFH^`S)8iKfkGR;*3*awm z86t|ohG8j~TTRhRtyFOD37LKo)_ zzLko`R8mzVd@s3dF&3uP9egJ+cTLX<#tSI@YG^<1+rwPEnNx3S7JG-8e527;8Y}}B zbJm6mx`gFa|Lh9CZ=OD<449kGvVX}@k5d8cCOi&w<|g=U1>1hi@^VT0;7Zdh^TiS2 z0Mf{DMX%y+sx=QpZ7p2vn?5P^;8NXt&X*+qE)Gool>;eM{OLmK>{?j_`hS{QgH|Ot zsS+GOIs=s<68-P)cIQ7SHgmGwSK_0So9(IYP0Ge-%J4U@e9l1@8q z)MX_=l*#{d_C5>gv22iRTDf6DKJU*gkEjBNyWer>v@m4xcus zddL(=gbg?2Os6cTWfFhQq)0)aX>Z~fwn_3q4GMAl4A}fGSdecxk6D{%z_x z5(Mk(YH5 z+S{Vkxz3-KmA9SM?qTb0g6%89^TN2L2DK5Mf67jb!rZ6Slc8(s-L)J}PEUqIVB@+3 zR8ld5yTtgoWy&1l3Al}b)G<|*rAf&@C>A$;8r{PAxG&;-VSq&0RXplDv83uB9JqnO zicA1*@DGI8@5w{9H(tY0<(YthsDPm^iKBb^6no{_h8G0E$;lbJ7lMw#E~&Ry{QFBM zZ-n=_*B5A}U11l>_ekuko7Ev;|Lz6M^D=s9#CY5Ah0S>4+hr>7g1tWa?OJG)5abP| zYXbQO|AjmNJp(v+cybV$xS*l#s$zQ*Imfrou{&~(}EYO{7OjhR28_Pq2zARN~k;H451NTq~lH4pjm2GJK{2?y%fjC zIWS#1z}Gg%Gl&GF?zAZE@zrVy4IYj~^g>#W3ijw$yshd?BmK@A-i$3pxmD7;?yUM|F5&va1Y*e!Hh&I`dH^xA%`&-XqP_{N9ecNeWa? z=e#aFAQc4I*f%}KhFcvH9J|8Ldp31wJqiARJ65=!m$QO7rbDrTIsT~iVgq*+2e<4# zn+BPQNYXMcr9cVj%VU)QZ%Vpp16xva(al`-bZj&Rt(M2wirOQ$ULYe%+Ij&&$IMz`0j{c=I;tLjX&?(DhJ=iK%A^YobZh4*iEE> z&09SRbRy(wBYn(nTCH-!E)KYuPkIQn(&_ZUBC`OGy6%>zYI9PSQaD|ay{3{7X0e#2 zXh~%fod)K(8hg3ccp>|oJ)inlv4ir~My>IpyJL;zYNaAaP4Ny}A;V&#P4ughXBDMem!4dFxy5Y?Ux=%QV0!tULG8pYoIBQJn6GX*UaJx3m0VNs?~2rR z*_v%aTSP#qX3x-;5Kx7Da%l?csu3z^7`(gQw05pwEDG(QD4BAF;0pSG#1Y^9pK=9HGFaXZN@QDsBu(Cx*Zzn@5%WD8Ko z!zF9GtK>#aVKiadu1ej^g=rL-Hi}5vBp#PhRz{~)I93im>f$){KFSGXYckgiEb?{Z zvv?5Y;?H|9J_lSAl?jBnBHr)KxF>TU7nGy3U#ic2)MF>oH*YoYfXq ztLA%z|xN%e|TUUn5*e&Ta%iADy?`hrRJ{}(NVqZGL>{*VfCL~aqqWQ;J5w3BRS)!GZxi|yQ8{D&n{SEr>t3V_Y!p?Sl5D;JX z|Mej|+iJ(rKDquJ54i$z?J5B%18R!jB-!App*$2$ z3r%`O<|P!ReK#p6l^f!5yFVGxQWlDC_Sb#EWiYHJ_Oe~>BAg7%V`;>iGOW~Ks!Rf~ zNtd2kDaLO6QD@Z+u^sTFGv&0q8RR|7XfdsScf;1G&lNOCwYWY)?Y9?Q1}h-wj*zWT z{R|x--k|z6U3mj{AG94j-oQtAJR^xZUY#6faZULgg=ud|kQ8bE3ifvjN;utf_&`BG z8b9zqYQq1@JMiC$NBHl=|10gWT1T$v2e|JwwT9oY5!eR4VALyh!vryy>7|bhK;WCn zP%PcyQgXO4b}YhIt(~32i5{kgu0Hr1Q^d{&$WtYD6{P4VWHWaD2pGE|c^UOW;u5k* zq?n&>2U2Y?qBe&bUloz}U~b9Mj4nn;E1H+~Iv6IQ_ENHr|LTiqStj_YQj3ClWBCr}0Zp{6` z&C?U!I_`JJ;SSdxY!z^du_*g>#io|EZNd(l6B3-KaI=g@Ow0CGFakm(&}Eq;lil39 zcGQ6Bv)(UF$oOqm&>90y3+sIY+efvarCi5EyLfspFl9I%&QqSWBD^%Mxp7`iZo&PW zS-5I(BKC}Zwx&;+7=>lFZ;`ETbZKttHHYi%$KxlpBRpaeU&;Usfmo{#bq#LLC4m?r z!--TPFId}w;G|NSTB=-${A{v&cWtny+_(*;hZgswuHk*Vf3*iak>({sE;`A=1zheR zJe<)ld5n6eesd#RTY)}ts!@G^y`|aMISJ7nTGdN7Bh;(P;NO>g={_OH0sBIbPTP!- zPCJy47nd9m6Bz*9dcQCI(KV}*&3U^v{ST4a_IP9n`&M3_%5(?o^i0Nv0E7$fBkct7@U`{-81+Y60H2ayXY-NuNrX9!DAg^G?Ht@Oj26= zI&H~22L4(`)sPwV7CC%1y*dBLc&{T4d2NQ(o|X3Spooo^`ji0gyP{jA%> z8BuvW&YnuG$!MFqFr8Pq;~f2B+(Yag*GC-=T_$BsV@o=h+;BYld4&rHQS{_BGrK`7 zx$%z_U6{a;iWwq)^)H2Z2#;Fm?9CGl3&RJu{h3ck`;sSM{Ek>w975J-SMJt37PIkV z#OZgKt*1UfwM2tms%%M3X@PzPtIII?V20MQe#K?1`7vwu214@fHh$k$I9Zkhdjk#0 zlFTRYiuF5ll}xksjD3|h!Q5XHAGGk6Vp8v@&fzK?Et~P$dZ!_+ALOj zW(D6BCY(UPVR>)fyzyJNO4Jfigih-eKEgJn0bm)H14 zA}CXSV6d_Y=~TY{eL9%y+kN8Qby33sZF6UA$}7Gs1k2#hmIhD}@hh+PApBT;s&dQ< zV>Ea3n(dPC>Lf*EI9JR+Qe>P$ybWB8U~`Xe`iN@RSh*Xk@obqxGo#YkX18gA3K#Bg zNU)bc1j<)2w^D6{8sVZ9rsX5d5NA`=ph>?TjvCZFFZ>$+szUW!6O?@aL9}3RG-Us< zOR$u&1C$~)OvSt>zVStcWl&-Z{@%t)i52O&4r@{BWmIWlRY?dJvN$;kzVD`Fmsk~a zyW)v zZilX?F=0bRIy64|n8I=q>EEL_J<9rZco_SOPdXHPj9L{P?b^a?Gv=rsinGner&n6- zDX?0Jo^kZeOc~HlBPGQIHOtwxElfx=u5+A{?==sk);U9|0q0JKM zkj4mN)ZDTyYr}^xk>zFfwbf=M&DE5q_oFEa*HUu3L`p}~AVZ5HY%BC6l$jEDE$zad zhyY{8G4Io2&M+LLEu?2K0SQBw&}TCskZ+el(==ryfH`%zN7aDzxQ{0s`|u49O0^&6 zEqpeVTk^}pCh^cV^zNlo3>;_-tl|(XBM!FIp&4zoP1hnIHOuCY%oWW;watV&D2ebK zL3$j5-Uz$9#fHR@bP3q8naISd^0=aau|B!D;jW-uQASASV6gVizr&{L!`8~rpr(Xk zJx_nmtZ$4%)w4*51PUyoL)9_v1}adwloUZcXNmH6W2Tv0KRp8Pkbn0xSJ=MnFHj&L zuJHf9pM9v}>p8bj!2ha@b|vSa!C5P*8-6NY;QwRP*jWC{zzV}d|Hs3gagO7zW6{{zLE~`xpFoh1K7U`+rI$30* zzZW!0f4M=z=Ya_;;4^m&5%} zLFN44jPBn@^EdY2XY@Zu6Tt-nlCFG%g!4~wqCYMMCi`)Ra*IU#ccRlrJ{-`DN`Kq; zN&kL}gl+hdc|m2d0_dg>&iVZV$p6!i4+}yI1jNR{irLD^%}LVHoXOeI>fihFH&`^6 z`8(Z5Ams;8|0DSRbNZ({Bw~`kwJy{V&bB|)ZEGJu{Eu43vFUktNdGLh^o|b$%r8HE z`3{Nb@0v*e^Vi|foQ`vkMEZ|I;Qp^;EM52hziRmWby#ktr~ls?KR+C1#rOZ}x2v;> znFW)r^Z(Q9>idejt&iUX%f}S{XZBZakp3C6y_1Q#g$t9Fjirh_|gzu**n~O&hOrP&OP_sk4Mhi_r@0=eRZi2c?Cl3%ojpjhAb`-B2J2Q6|#YBnpMm0 z^KS62evq{jQ{F^)K}0>}7{D~wde^U=*hR{FCe{g!VVfvKhDkD+rsZ$7GyuugcjO98 z2K9@JR3Bo_E0ZRPof#gCX-2m-)-(mpsMTDv@O*tAU#;{#qlMBqt)ocm8?&!AYDEH} zO}az2eI3^*eLcFJ7{1S>3AUmZ_Q5c-!5<9!BN9*a-@0p+zUg`qh$p1;=Gz?F8VJ>y zflz(Z1@whyD}CuDBAzrs;Y47X{syx?;%oG)`t14kX?>O2KH~B7#eUm3UL*I(F7!3c zdzP(THm=2^>=LEA4p=6QxlgD!ZL4X9BTbuNm)YWrME|wEa-~HGkJ@Kxm`zPHggv6R zO4y2=XJ0wwIYkheh{vxb_s1;NBumo_`Yxu=fIRi}YZ>D4`Z!;>GLuZR&S&{D@I3ow zUO&-3;_>S+CaJiwbH8%M1NVFHS&`ll6ZNWNVCLDWd$GI)*{m zq#x*8xsUSOz~zn29rItaEo%82=P#cRKLl#foJ%59Bvj%mw3`z=&k^R@sc2Fy!XMW@piGP zZNR+?G(GMm&Z+@>RnqY$4QIx85jilNRU^hN#a5wPh;FaF%*of=ZKEXzy`x=&MRqrt z`YyL&D7G)%#8YlS# zBq`Cn(ZRS&DAe|;dyAx} zG4P;U0Iitj&>kp;gkg6Z1yX}sazO0LFFBBZM{&vSq>=Kv?MZ7px}=hJ(kSo__DItQ z4>JG*L#IQL`w{@$ezoB=4;rzaLhQtR)T;@E(0ICBHYM&n4WO#O4^FA=W}DM?(%p$F zOoBu7dPkvOoGwVgILAw?U`GiAV#)j^-hqlGVJ{x z5~r|_=OcZhdgIA+JQb-_Z~T=E*O%eWfaB0Hsie@l*>K`YPX(s6IAi})h&=ViXJP~{ z&d_@}(?&w-HWF311vDF;l$MVrJy=_}{L56zj&qdQQ8`vg`!vWNXAsa`3#DWIOWB`_ zakjM)v1Ab|dmwJh5gb{@lO?-;j|*a~+f2iO5l4s7(MZgA7J82{R;GOai8NL=y8i(0 z9Hmc;#D3Y`?sm_zLuN?Wfq%*i(g1qm;f%HfI`_mYK8N2*4oJEyUO~?%j#fbJv7MZm zhr>u)?f3v{9a$QkMweTNqvh<5v#*n2TkO5-4$-M61}FF1?fYeeTq`?%Qi`%XUzD{M z5H)(^FQ5hbuwIA2xisaMTzh5EZQUiSx)ZH=STlBn8#v+$JNY7IHPuOQyV!|qu*j#UIB^~xJ5H3Ig3&ct z%sVBaHbP#%98GRGM~WThW^^BhU`ozf>CP*8;&b?As2gWw%sHp$r`0;`(lfD6Y&)E!3_?%zl}^NxpE3#=b|m{p=lT|ju2;i4Vpz0}G1cYRoBINo7rdWW-WbZl>4-~ZanB2`ue zEvd5AvgFB6m93NIdRcCey}yN%pFa^EBO9JwEm+e0ou?pNem z$o-t$ht&Kyxp&C5lKTU>5IOFvp*nKECAWdx9&%OWI>_lGM zkef|z6}jo;mXa$bcMCZ|ZVtJ#I8zNJABpreRIDYuc{q6Pk8v`mCnUYkEM_q^1{} zYpyNlft&|&9>{qh=YgCDavsQeAm@Rc2XY?Bc_8P3|2GdzTWazr=Dyl3W^Kb3b5pY~ zQYRjYly|85I)5Y*79C6Z%UJbG^cwtl9KS?oz=$bgNDb)L#L7rjmO{qmSic_iKC3A} zek1sr?fys;K?6W-uqo;%2otENA7LwCU2}L5`JH(HGT=wFOQC>8&_TecAVH@DVf+N& zswdt<90>U>(^pp~P29^G#_HJo0zsp{G3uA94iPfc$hM>e8BKkJjP|jupFo8HZ(LZh zxPo;jWnIwkhsQ)@P@>S7C9bTH@lCc5OK3$ht{c%6L4SztJM%e$6$#ZgN`1SC8H!|M zhXj#;MMGuEH^mgJW5g2oi%F)K)94F?MAZZ9mqj*-YJaFD5NQgDO(MUsL3**-^5dfd zAD8kz`BQm@L`9HcxB_ux4vMb%h|1N9AGU~^0@1k~HG5d>W%0stHK>Z)O+~;5@i-ax zVYrX@GX&%q2SPYS;u$j(F4K7JHxKQ&XxfbK?y)p~mkcG>$a77lr zH4ERBh40D24`t!?S-2((Z_dJ27Je)X$Fs1Lg`bpoY<;G}f83+rK*p98j2mNX3T#J# zEg*j%&u<@QAv3(p*fIAo!ja-SWDoN7$TuK=3;9N5?&)tMGw5B8d=qjh@-$?mrOf}S zaXrGcYQvdJ)HEMlvu3L=ydq>Ryj7Sr;ifQd7c&|T1}rm(YcYy1MeylJ1m6Ui_4q0% z%8Ss$Z;m|bntWu94_3+S-4gJ6vo27h6=%)h+?nw1KFzfa8JMIafuKx6$uP%GcL_ROn^*-TV oH>2`GH>2sB+*Gfq;KcOZO^%m#=C)SXw7FH@&*wclxhKRw0o4Q*1^@s6 literal 0 HcmV?d00001 diff --git a/tools/tcp.c b/tools/tcp.c new file mode 100644 index 0000000..3a78d7d --- /dev/null +++ b/tools/tcp.c @@ -0,0 +1,200 @@ +/* + * Connects your local bot to a remote map server for one game. + * The map server connects random available bots on random maps, + * updating the map and enforcing the rules. + * + * gcc -o tcp tcp.c + * ./tcp 213.3.30.106 9999 username ./MyBot + * + * See http://www.benzedrine.cx/planetwars/ for ELO ratings. + * + * History + * 2.1 20100907 kill() child + * 2.0 20100906 rename from previous contest + * + * Copyright (c) 2010 Daniel Hartmeier + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +static int +tcp_connect(const char *host, unsigned port) +{ + int fd; + struct sockaddr_in sa; + + if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) { + printf("socket: %s\n", strerror(errno)); + return (-1); + } + memset(&sa, 0, sizeof(sa)); + sa.sin_family = AF_INET; + sa.sin_addr.s_addr = inet_addr(host); + sa.sin_port = htons(port); + if (connect(fd, (struct sockaddr *)&sa, sizeof(sa))) { + printf("connect: %s\n", strerror(errno)); + close(fd); + return (-1); + } + return (fd); +} + +static pid_t +bpopen(char *cmd, int *fdr, int *fdw) +{ + int p2c[2], c2p[2]; + pid_t pid; + char *argv[] = { NULL, NULL }; + + argv[0] = cmd; + if (pipe(p2c) || pipe(c2p)) { + printf("pipe: %s\n", strerror(errno)); + return (0); + } + if ((pid = fork()) < 0) { + printf("fork: %s\n", strerror(errno)); + return (0); + } + if (!pid) { + close(c2p[0]); + close(p2c[1]); + dup2(c2p[1], STDOUT_FILENO); + dup2(p2c[0], STDIN_FILENO); + execv(argv[0], argv); + fprintf(stderr, "execv: %s: failed\n", argv[0]); + exit(1); + } + close(c2p[1]); + close(p2c[0]); + *fdw = p2c[1]; + *fdr = c2p[0]; + return (pid); +} + +static void +split_lines(const char *s, char *d, unsigned len, int fd) +{ + unsigned off = strlen(d); + while (*s && off + 2 < len) { + if ((d[off] = *s++) == '\n') { + d[off + 1] = 0; + if (!strncmp(d, "INFO ", 5)) + printf("%s", d + 5); + else { + printf("%s", d); + write(fd, d, off + 1); + } + *d = 0; + off = 0; + } else + off++; + } + d[off] = 0; +} + +int main(int argc, char *argv[]) +{ + int fd[3] = { -1, -1, -1 }; + pid_t child = 0; + int i, r, len; + fd_set read_fds; + struct timeval tv; + char buf[1024], line[2][1024]; + + if (argc != 5) { + printf("usage: %s ip port username command\n", argv[0]); + return (1); + } + + if (!(child = bpopen(argv[4], &fd[1], &fd[2]))) + goto done; + sleep(3); /* allow child to properly startup... */ + + if ((fd[0] = tcp_connect(argv[1], atoi(argv[2]))) < 0) + goto done; + snprintf(buf, sizeof(buf), "USER %s\n", argv[3]); + write(fd[0], buf, strlen(buf)); + + printf("connected to %s:%s, waiting for game\n", argv[1], argv[2]); + line[0][0] = line[1][0] = 0; + while (1) { + FD_ZERO(&read_fds); + FD_SET(fd[0], &read_fds); + FD_SET(fd[1], &read_fds); + tv.tv_sec = 0; + tv.tv_usec = 1000; + r = select(((fd[0] > fd[1]) ? fd[0] : fd[1]) + 1, &read_fds, + NULL, NULL, &tv); + if (r < 0) { + if (errno != EINTR) { + printf("select: %s\n", strerror(errno)); + goto done; + } + continue; + } + if (r == 0) + continue; + for (i = 0; i < 2; ++i) { + if (!FD_ISSET(fd[i], &read_fds)) + continue; + len = read(fd[i], buf, sizeof(buf) - 1); + if (len < 0) { + if (errno != EINTR) { + printf("read: %s\n", strerror(errno)); + goto done; + } + continue; + } + if (len == 0) + goto done; + buf[len] = 0; + split_lines(buf, line[i], sizeof(line[i]), + i ? fd[0] : fd[2]); + } + } + +done: + for (i = 0; i < 3; ++i) + if (fd[i] != -1) + close(fd[i]); + if (child) { + if (kill(child, SIGKILL)) + printf("kill: %s\n", strerror(errno)); + wait(NULL); + } + return (0); +}