├── lib
└── guava-18.0.jar
├── .settings
├── org.eclipse.m2e.core.prefs
└── org.eclipse.jdt.core.prefs
├── resources
├── images
│ └── analyse_4784903.png
├── igrida
│ ├── job.sh
│ └── param-file.txt
└── fen
│ ├── input
│ └── input_output
├── .gitignore
├── src
└── main
│ └── java
│ ├── engine
│ ├── Engine.java
│ ├── EngineFactory.java
│ ├── EnginePreferences.java
│ └── SimpleUciEngine.java
│ ├── GenerateArguments.java
│ └── StockfishAnalyze.java
├── .project
├── pom.xml
├── .classpath
└── README.md
/lib/guava-18.0.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ChessAnalysis/chess-analysis/HEAD/lib/guava-18.0.jar
--------------------------------------------------------------------------------
/.settings/org.eclipse.m2e.core.prefs:
--------------------------------------------------------------------------------
1 | activeProfiles=
2 | eclipse.preferences.version=1
3 | resolveWorkspaceProjects=true
4 | version=1
5 |
--------------------------------------------------------------------------------
/resources/images/analyse_4784903.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ChessAnalysis/chess-analysis/HEAD/resources/images/analyse_4784903.png
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /target/
2 | /src/main/java/config/ConfigSQL.java
3 | /resources/csv/*
4 | Igrida/job.sh
5 |
6 | Igrida/oardel.sh
7 |
8 | Igrida/param-file.txt
9 |
--------------------------------------------------------------------------------
/src/main/java/engine/Engine.java:
--------------------------------------------------------------------------------
1 | package engine;
2 |
3 | /**
4 | * @author Nicola Ferraro, François Esnault
5 | * @date 28 août 2015
6 | */
7 | public interface Engine {
8 |
9 | /**
10 | * Method computeScore.
11 | * @param fen String
12 |
13 | * @return String */
14 | public String computeScore(String fen);
15 |
16 | public void debugEngine();
17 |
18 | }
19 |
--------------------------------------------------------------------------------
/resources/igrida/job.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | #OAR -n chess_analyse
3 | #OAR -l /core=1,walltime=64:00:00
4 | #OAR --array-param-file /udd/fesnault/param-file.txt
5 | #OAR -O /temp_dd/igrida-fs1/fesnault/SCRATCH/igrida.%jobid%.output
6 | #OAR -E /temp_dd/igrida-fs1/fesnault/SCRATCH/igrida.%jobid%.output
7 |
8 |
9 | . /etc/profile.d/modules.sh
10 |
11 | module load java/7
12 |
13 | cd /udd/fesnault
14 |
15 | echo "=============== RUN ==============="
16 | echo "Running ..."
17 | java -jar run.jar $*
18 | echo "Done"
19 | echo "==================================="
20 |
21 |
--------------------------------------------------------------------------------
/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | chess-analysis
4 |
5 |
6 |
7 |
8 |
9 | org.eclipse.jdt.core.javabuilder
10 |
11 |
12 |
13 |
14 | org.eclipse.m2e.core.maven2Builder
15 |
16 |
17 |
18 |
19 |
20 | org.eclipse.jdt.core.javanature
21 | org.eclipse.m2e.core.maven2Nature
22 | org.eclipse.sirius.nature.modelingproject
23 |
24 |
25 |
--------------------------------------------------------------------------------
/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
1 | eclipse.preferences.version=1
2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3 | org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
5 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
6 | org.eclipse.jdt.core.compiler.compliance=1.7
7 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate
8 | org.eclipse.jdt.core.compiler.debug.localVariable=generate
9 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate
10 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
11 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
12 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
13 | org.eclipse.jdt.core.compiler.source=1.7
14 |
--------------------------------------------------------------------------------
/src/main/java/GenerateArguments.java:
--------------------------------------------------------------------------------
1 | import java.io.File;
2 | import java.io.IOException;
3 | import java.nio.charset.Charset;
4 | import java.text.DecimalFormat;
5 |
6 | import com.google.common.io.Files;
7 |
8 | /**
9 | * @author François Esnault
10 | * @date 28 août 2015
11 | */
12 | public class GenerateArguments {
13 |
14 | /**
15 | * Method main.
16 | * @param args String[]
17 | * @throws IOException */
18 | public static void main(String[] args) throws IOException {
19 |
20 | int min = 381;
21 | int max = 492;
22 |
23 | StringBuilder sb = new StringBuilder();
24 | DecimalFormat nf = new DecimalFormat("0000");
25 |
26 | for(int i = min; i <= max; i++) {
27 | sb.append("-e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/" + nf.format(i) + "\n");
28 | }
29 |
30 | Files.write(sb, new File("./resources/igrida/param-file.txt"), Charset.defaultCharset());
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/pom.xml:
--------------------------------------------------------------------------------
1 |
3 | 4.0.0
4 | chess-analysis
5 | chess-analysis
6 | 0.0.1
7 |
8 |
9 |
10 |
11 | org.apache.maven.plugins
12 | maven-jar-plugin
13 | 2.4
14 |
15 |
16 |
17 | true
18 | main.java.Main
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 | com.beust
29 | jcommander
30 | 1.48
31 |
32 |
33 |
--------------------------------------------------------------------------------
/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/src/main/java/engine/EngineFactory.java:
--------------------------------------------------------------------------------
1 | package engine;
2 |
3 | /**
4 | * @author Nicola Ferraro, François Esnault
5 | * @date 28 août 2015
6 | */
7 | public enum EngineFactory {
8 |
9 | INSTANCE;
10 |
11 | private EngineFactory() {
12 | }
13 |
14 | /**
15 | * Method getInstance.
16 |
17 | * @return EngineFactory */
18 | public static EngineFactory getInstance() {
19 | return INSTANCE;
20 | }
21 |
22 | /**
23 | * Method createEngine.
24 | * @param uciEngineStartCommand String
25 |
26 | * @return Engine */
27 | public Engine createEngine(String uciEngineStartCommand) {
28 | return createEngine(uciEngineStartCommand, new EnginePreferences());
29 | }
30 |
31 | /**
32 | * Method createEngine.
33 | * @param uciEngineStartCommand String
34 | * @param preferences EnginePreferences
35 |
36 | * @return Engine */
37 | public Engine createEngine(String uciEngineStartCommand, EnginePreferences preferences) {
38 | if(uciEngineStartCommand==null || preferences==null) {
39 | throw new IllegalArgumentException("null parameters");
40 | }
41 |
42 | SimpleUciEngine engine = new SimpleUciEngine(uciEngineStartCommand, preferences);
43 | return engine;
44 | }
45 |
46 |
47 | }
48 |
--------------------------------------------------------------------------------
/src/main/java/engine/EnginePreferences.java:
--------------------------------------------------------------------------------
1 | package engine;
2 |
3 | import java.util.HashMap;
4 | import java.util.Map;
5 |
6 | /**
7 | * @author Nicola Ferraro, François Esnault
8 | * @date 28 août 2015
9 | */
10 | public class EnginePreferences {
11 |
12 | private long maxComputationTimeMillis = 5000;
13 |
14 | private int depth = 20;
15 |
16 | /**
17 | * Method getDepth.
18 |
19 | * @return int */
20 | public int getDepth() {
21 | return depth;
22 | }
23 |
24 | /**
25 | * Method setDepth.
26 | * @param depth int
27 | */
28 | public void setDepth(int depth) {
29 | this.depth = depth;
30 | }
31 |
32 | private Map options;
33 |
34 | public EnginePreferences() {
35 | this.options = new HashMap();
36 | }
37 |
38 | /**
39 | * Method getMaxComputationTimeMillis.
40 |
41 | * @return long */
42 | public long getMaxComputationTimeMillis() {
43 | return maxComputationTimeMillis;
44 | }
45 |
46 | /**
47 | * Method setMaxComputationTimeMillis.
48 | * @param maxComputationTimeMillis long
49 | */
50 | public void setMaxComputationTimeMillis(long maxComputationTimeMillis) {
51 | this.maxComputationTimeMillis = maxComputationTimeMillis;
52 | }
53 |
54 | /**
55 | * Method setOption.
56 | * @param name String
57 | * @param value String
58 | */
59 | public void setOption(String name, String value) {
60 | this.options.put(name, value);
61 | }
62 |
63 | /**
64 | * Method removeOption.
65 | * @param name String
66 | */
67 | public void removeOption(String name) {
68 | this.options.remove(name);
69 | }
70 |
71 | /**
72 | * Method getOptions.
73 |
74 | * @return Map */
75 | public Map getOptions() {
76 | return options;
77 | }
78 |
79 | }
80 |
--------------------------------------------------------------------------------
/resources/fen/input:
--------------------------------------------------------------------------------
1 | rnbqkbnr/pppppppp/8/8/4P3/8/PPPP1PPP/RNBQKBNR b KQkq e3 0 1
2 | rnbqkbnr/pp1ppppp/8/2p5/4P3/8/PPPP1PPP/RNBQKBNR w KQkq c6 0 2
3 | rnbqkbnr/pp1ppppp/8/2p5/4P3/5N2/PPPP1PPP/RNBQKB1R b KQkq - 1 2
4 | rnbqkbnr/pp1p1ppp/4p3/2p5/4P3/5N2/PPPP1PPP/RNBQKB1R w KQkq - 0 3
5 | rnbqkbnr/pp1p1ppp/4p3/2p5/4P3/2N2N2/PPPP1PPP/R1BQKB1R b KQkq - 1 3
6 | rnbqkbnr/1p1p1ppp/p3p3/2p5/4P3/2N2N2/PPPP1PPP/R1BQKB1R w KQkq - 0 4
7 | rnbqkbnr/1p1p1ppp/p3p3/2p5/4P3/2N2N2/PPPPBPPP/R1BQK2R b KQkq - 1 4
8 | r1bqkbnr/1p1p1ppp/p1n1p3/2p5/4P3/2N2N2/PPPPBPPP/R1BQK2R w KQkq - 2 5
9 | r1bqkbnr/1p1p1ppp/p1n1p3/2p5/3PP3/2N2N2/PPP1BPPP/R1BQK2R b KQkq d3 0 5
10 | r1bqkbnr/1p1p1ppp/p1n1p3/8/3pP3/2N2N2/PPP1BPPP/R1BQK2R w KQkq - 0 6
11 | r1bqkbnr/1p1p1ppp/p1n1p3/8/3NP3/2N5/PPP1BPPP/R1BQK2R b KQkq - 0 6
12 | r1b1kbnr/1pqp1ppp/p1n1p3/8/3NP3/2N5/PPP1BPPP/R1BQK2R w KQkq - 1 7
13 | r1b1kbnr/1pqp1ppp/p1n1p3/8/3NP3/2N5/PPP1BPPP/R1BQ1RK1 b kq - 2 7
14 | r1b1kb1r/1pqp1ppp/p1n1pn2/8/3NP3/2N5/PPP1BPPP/R1BQ1RK1 w kq - 3 8
15 | r1b1kb1r/1pqp1ppp/p1n1pn2/8/3NP3/2N1B3/PPP1BPPP/R2Q1RK1 b kq - 4 8
16 | r1b1k2r/1pqpbppp/p1n1pn2/8/3NP3/2N1B3/PPP1BPPP/R2Q1RK1 w kq - 5 9
17 | r1b1k2r/1pqpbppp/p1n1pn2/8/3NPP2/2N1B3/PPP1B1PP/R2Q1RK1 b kq f3 0 9
18 | r1b1k2r/1pq1bppp/p1nppn2/8/3NPP2/2N1B3/PPP1B1PP/R2Q1RK1 w kq - 0 10
19 | r1b1k2r/1pq1bppp/p1nppn2/8/3NPP2/2N1B3/PPP1B1PP/R2Q1R1K b kq - 1 10
20 | r1b2rk1/1pq1bppp/p1nppn2/8/3NPP2/2N1B3/PPP1B1PP/R2Q1R1K w - - 2 11
21 | r1b2rk1/1pq1bppp/p1nppn2/8/3NPP2/2N1B3/PPP1B1PP/R3QR1K b - - 3 11
22 | r1b2rk1/1pq1bppp/p2ppn2/8/3nPP2/2N1B3/PPP1B1PP/R3QR1K w - - 0 12
23 | r1b2rk1/1pq1bppp/p2ppn2/8/3BPP2/2N5/PPP1B1PP/R3QR1K b - - 0 12
24 | r1b2rk1/2q1bppp/p2ppn2/1p6/3BPP2/2N5/PPP1B1PP/R3QR1K w - b6 0 13
25 | r1b2rk1/2q1bppp/p2ppn2/1p6/3BPP2/2N3Q1/PPP1B1PP/R4R1K b - - 1 13
26 | r4rk1/1bq1bppp/p2ppn2/1p6/3BPP2/2N3Q1/PPP1B1PP/R4R1K w - - 2 14
27 | r4rk1/1bq1bppp/p2ppn2/1p6/3BPP2/P1N3Q1/1PP1B1PP/R4R1K b - - 0 14
28 | 3r1rk1/1bq1bppp/p2ppn2/1p6/3BPP2/P1N3Q1/1PP1B1PP/R4R1K w - - 1 15
29 | 3r1rk1/1bq1bppp/p2ppn2/1p6/3BPP2/P1N3Q1/1PP1B1PP/4RR1K b - - 2 15
30 | 5rk1/1bqrbppp/p2ppn2/1p6/3BPP2/P1N3Q1/1PP1B1PP/4RR1K w - - 3 16
31 | 5rk1/1bqrbppp/p2ppn2/1p6/3BPP2/P1NB2Q1/1PP3PP/4RR1K b - - 4 16
32 | 3q1rk1/1b1rbppp/p2ppn2/1p6/3BPP2/P1NB2Q1/1PP3PP/4RR1K w - - 5 17
33 | 3q1rk1/1b1rbppp/p2ppn2/1p6/3BPP2/P1NB3Q/1PP3PP/4RR1K b - - 6 17
34 | 3q1rk1/1b1rbp1p/p2ppnp1/1p6/3BPP2/P1NB3Q/1PP3PP/4RR1K w - - 0 18
35 | 3q1rk1/1b1rbp1p/p2ppnp1/1p3P2/3BP3/P1NB3Q/1PP3PP/4RR1K b - - 0 18
36 | 3q1rk1/1b1rbp1p/p2p1np1/1p2pP2/3BP3/P1NB3Q/1PP3PP/4RR1K w - - 0 19
37 | 3q1rk1/1b1rbp1p/p2p1np1/1p2pP2/4P3/P1NBB2Q/1PP3PP/4RR1K b - - 1 19
38 | 3qr1k1/1b1rbp1p/p2p1np1/1p2pP2/4P3/P1NBB2Q/1PP3PP/4RR1K w - - 2 20
39 | 3qr1k1/1b1rbp1p/p2p1nP1/1p2p3/4P3/P1NBB2Q/1PP3PP/4RR1K b - - 0 20
40 | 3qr1k1/1b1rbp2/p2p1np1/1p2p3/4P3/P1NBB2Q/1PP3PP/4RR1K w - - 0 21
41 | 3qr1k1/1b1rbp2/p2p1np1/1p1Np3/4P3/P2BB2Q/1PP3PP/4RR1K b - - 1 21
42 | 3qr1k1/1b1rbp2/p2p2p1/1p1np3/4P3/P2BB2Q/1PP3PP/4RR1K w - - 0 22
43 | 3qr1k1/1b1rbR2/p2p2p1/1p1np3/4P3/P2BB2Q/1PP3PP/4R2K b - - 0 22
44 | 3qr3/1b1rbk2/p2p2p1/1p1np3/4P3/P2BB2Q/1PP3PP/4R2K w - - 0 23
45 | 3qr3/1b1rbk1Q/p2p2p1/1p1np3/4P3/P2BB3/1PP3PP/4R2K b - - 1 23
46 | 3qr3/1b1rb2Q/p2pk1p1/1p1np3/4P3/P2BB3/1PP3PP/4R2K w - - 2 24
47 | 3qr3/1b1rb2Q/p2pk1p1/1p1Pp3/8/P2BB3/1PP3PP/4R2K b - - 0 24
48 | 3qr3/1b1rb2Q/p2p2p1/1p1kp3/8/P2BB3/1PP3PP/4R2K w - - 0 25
49 | 3qr3/1b1rb2Q/p2p2p1/1p1kp3/4B3/P3B3/1PP3PP/4R2K b - - 1 25
50 | 3qr3/1b1rb2Q/p2p2p1/1p2p3/4k3/P3B3/1PP3PP/4R2K w - - 0 26
51 | 3qr3/1b1rbQ2/p2p2p1/1p2p3/4k3/P3B3/1PP3PP/4R2K b - - 1 26
52 |
--------------------------------------------------------------------------------
/src/main/java/engine/SimpleUciEngine.java:
--------------------------------------------------------------------------------
1 | package engine;
2 |
3 | import java.io.BufferedReader;
4 | import java.io.IOException;
5 | import java.io.InputStreamReader;
6 | import java.io.OutputStreamWriter;
7 | import java.io.PrintWriter;
8 | import java.util.Map;
9 |
10 | /**
11 | * @author Nicola Ferraro, François Esnault
12 | * @date 28 août 2015
13 | */
14 | class SimpleUciEngine implements Engine {
15 |
16 | private String command;
17 |
18 | private EnginePreferences preferences;
19 |
20 | private Process process;
21 |
22 | private PrintWriter toEngine;
23 |
24 | private BufferedReader fromEngine;
25 |
26 | /**
27 | * Constructor for SimpleUciEngine.
28 | * @param command String
29 | * @param preferences EnginePreferences
30 | */
31 | public SimpleUciEngine(String command, EnginePreferences preferences) {
32 | this.command = command;
33 | this.preferences = preferences;
34 | }
35 |
36 | private void connect() {
37 |
38 | if(this.process == null) {
39 | try {
40 | this.process = new ProcessBuilder(this.command).start();
41 |
42 | this.toEngine = new PrintWriter(new OutputStreamWriter(process.getOutputStream(), "UTF-8"));
43 | this.fromEngine = new BufferedReader(new InputStreamReader(process.getInputStream(), "UTF-8"));
44 |
45 | skipLines(1);
46 |
47 | write("uci");
48 |
49 | readUntil("uciok");
50 |
51 | Map options = preferences.getOptions();
52 | for(String name : options.keySet()) {
53 | String value = options.get(name);
54 | write("setoption name " + name + " value " + value);
55 | }
56 |
57 | write("isready");
58 |
59 | assertReply("readyok");
60 |
61 | write("ucinewgame");
62 |
63 | } catch(Exception e) {
64 | throw new IllegalStateException("Unable to initialize", e);
65 | }
66 | } else {
67 | write("isready");
68 | assertReply("readyok");
69 | write("ucinewgame");
70 | }
71 | }
72 |
73 | /**
74 | * Method debugEngine.
75 | * @see engine.Engine#debugEngine()
76 | */
77 | @Override
78 | public void debugEngine() {
79 | this.process = null;
80 | }
81 |
82 | /**
83 | * Method read.
84 |
85 | * @return String */
86 | private String read() {
87 | try {
88 | String read = fromEngine.readLine();
89 | return read;
90 | } catch(IOException e) {
91 | throw new IllegalStateException("Unable to read from stream", e);
92 | }
93 | }
94 |
95 | /**
96 | * Method assertReply.
97 | * @param result String
98 | */
99 | private void assertReply(String result) {
100 | String reply = read();
101 | if(!result.equalsIgnoreCase(reply)) {
102 | throw new IllegalStateException("Unexpected reply: " + reply);
103 | }
104 | }
105 |
106 | /**
107 | * Method skipLines.
108 | * @param number int
109 | */
110 | private void skipLines(int number) {
111 | for(int i=0; i)
31 | * @param -pv, -multipv Multipv - search x best moves (Default: 1)
32 | * @param -o, -output Path to output file (Default: )
33 | * @param -t, -thread Threads (Default: 1)
34 | * @param -log, -verbose Level of verbosity (Default: 0)
35 | * @throws IOException
36 | * @throws InterruptedException
37 | * @throws ClassNotFoundException * @throws SQLException * @throws IOException * @throws InterruptedException * @throws SQLException * @throws SQLException
38 | * @throws IOException
39 | * @throws InterruptedException
40 | */
41 | public static void main(String[] args) throws ClassNotFoundException, SQLException, IOException, InterruptedException {
42 | StockfishAnalyze proc = new StockfishAnalyze();
43 | JCommander commands = new JCommander(proc, args);
44 | try {
45 | proc.init();
46 | } catch (Exception e) {
47 | e.printStackTrace();
48 | commands.usage();
49 | }
50 | }
51 |
52 | private static final String STOCKFISH_IGRIDA = "/temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish";
53 |
54 | private static EnginePreferences prefs = new EnginePreferences();
55 | private static int count;
56 | private static Engine engine;
57 |
58 | @Parameter
59 | private List parameters = new ArrayList();
60 |
61 | @Parameter(names = { "-log", "-verbose" }, description = "Level of verbosity")
62 | private Integer verbose = 0;
63 |
64 | @Parameter(names = { "-d", "-depth" }, description = "Depth - search x plies only")
65 | private Integer depth = 20;
66 |
67 | @Parameter(names = { "-pv", "-multipv" }, description = "Multipv - search x best moves")
68 | private String multipv = "1";
69 |
70 | @Parameter(names = { "-t", "-thread" }, description = "Threads (default 1)")
71 | private String threads = "1";
72 |
73 | @Parameter(names = { "-i", "-input" }, description = "Path to input file", required = true)
74 | private String input = "";
75 |
76 | @Parameter(names = { "-e", "-engine" }, description = "Path to engine")
77 | private String pathToEngine = "/Users/fesnault/Documents/uci-engine/stockfish-6-mac/Mac/stockfish-6-64";
78 |
79 | @Parameter(names = "--help", help = true)
80 | private boolean help;
81 |
82 | private BufferedReader br;
83 |
84 | /**
85 | * Method init.
86 | * @throws SQLException * @throws IOException * @throws IOException * @throws IOException
87 | */
88 | public void init() throws SQLException, IOException {
89 | // Set chess engine options
90 | prefs.setOption("multipv", multipv);
91 | prefs.setOption("Threads", threads);
92 | prefs.setDepth(depth);
93 |
94 | // Create the chess engine process
95 | engine = EngineFactory.getInstance().createEngine(pathToEngine, prefs);
96 | analyse();
97 | }
98 |
99 | /**
100 | * Method initFile.
101 | * @throws SQLException * @throws IOException * @throws IOException * @throws IOException * @throws IOException
102 | */
103 | private void analyse() throws SQLException, IOException {
104 |
105 | br = new BufferedReader(new InputStreamReader(new FileInputStream(new File(input))));
106 | String currentFEN;
107 | StringBuilder sb = new StringBuilder();
108 | while ((currentFEN = br.readLine()) != null) {
109 | // Analyse FEN to get log
110 | sb.append(currentFEN + "\t" + engine.computeScore(currentFEN) + '\n');
111 | if(verbose==1) {
112 | System.out.println(sb.toString());
113 | }
114 | // Catch exception when the chess engine is off
115 | if(sb.length() < 200) {
116 | if(!sb.toString().contains("info depth 0 score mate 0. bestmove (none).")) {
117 | sb.setLength(0);
118 | engine.debugEngine();
119 | sb.append(currentFEN + "\t" + engine.computeScore(currentFEN) + '\n');
120 | }
121 | }
122 | // Write log
123 | Files.append(sb, new File(input + "_output"), Charset.defaultCharset());
124 | sb.setLength(0);
125 | }
126 | }
127 |
128 | /**
129 | * Method getPrefs.
130 |
131 | * @return EnginePreferences */
132 | public static EnginePreferences getPrefs() {
133 | return prefs;
134 | }
135 |
136 | /**
137 | * Method setPrefs.
138 | * @param prefs EnginePreferences
139 | */
140 | public static void setPrefs(EnginePreferences prefs) {
141 | StockfishAnalyze.prefs = prefs;
142 | }
143 |
144 | /**
145 | * Method getCount.
146 |
147 | * @return int */
148 | public static int getCount() {
149 | return count;
150 | }
151 |
152 | /**
153 | * Method setCount.
154 | * @param count int
155 | */
156 | public static void setCount(int count) {
157 | StockfishAnalyze.count = count;
158 | }
159 |
160 | /**
161 | * Method getEngine.
162 |
163 | * @return Engine */
164 | public static Engine getEngine() {
165 | return engine;
166 | }
167 |
168 | /**
169 | * Method setEngine.
170 | * @param engine Engine
171 | */
172 | public static void setEngine(Engine engine) {
173 | StockfishAnalyze.engine = engine;
174 | }
175 |
176 | /**
177 | * Method getParameters.
178 |
179 | * @return List */
180 | public List getParameters() {
181 | return parameters;
182 | }
183 |
184 | /**
185 | * Method setParameters.
186 | * @param parameters List
187 | */
188 | public void setParameters(List parameters) {
189 | this.parameters = parameters;
190 | }
191 |
192 | /**
193 | * Method getDepth.
194 |
195 | * @return Integer */
196 | public Integer getDepth() {
197 | return depth;
198 | }
199 |
200 | /**
201 | * Method setDepth.
202 | * @param depth Integer
203 | */
204 | public void setDepth(Integer depth) {
205 | this.depth = depth;
206 | }
207 |
208 | /**
209 | * Method getMultipv.
210 |
211 | * @return String */
212 | public String getMultipv() {
213 | return multipv;
214 | }
215 |
216 | /**
217 | * Method setMultipv.
218 | * @param multipv String
219 | */
220 | public void setMultipv(String multipv) {
221 | this.multipv = multipv;
222 | }
223 |
224 | /**
225 | * Method getThreads.
226 |
227 | * @return String */
228 | public String getThreads() {
229 | return threads;
230 | }
231 |
232 | /**
233 | * Method setThreads.
234 | * @param threads String
235 | */
236 | public void setThreads(String threads) {
237 | this.threads = threads;
238 | }
239 |
240 | /**
241 | * Method getFile.
242 |
243 | * @return String */
244 | public String getFile() {
245 | return input;
246 | }
247 |
248 | /**
249 | * Method setFile.
250 | * @param file String
251 | */
252 | public void setFile(String file) {
253 | this.input = file;
254 | }
255 |
256 | /**
257 | * Method getStockfishIgrida.
258 |
259 | * @return String */
260 | public static String getStockfishIgrida() {
261 | return STOCKFISH_IGRIDA;
262 | }
263 |
264 |
265 |
266 |
267 |
268 | }
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | Large-scale Analysis of Chess Games
2 | ===================
3 |
4 | 5 millions of chess games (300+ million of chess positions) have been recorded from the very beginning of chess history to the last tournaments of Magnus Carlsen.
5 | It's time to analyse all of them!
6 |
7 | This repository contains different resources (e.g., Java code) to analyse chess games. *Current status*:
8 | * We are writing a technical report on various statistics of the chessgame database (e.g., number of unique positions);
9 | * We are using [Igrida Cluster](http://igrida.gforge.inria.fr/) for large computations with Stockfish UCI Engine
10 |
11 | **Do not hesitate to participate or contact us!**
12 |
13 | #### Objectives
14 |
15 | We hope to gather various interesting insights on the skills, ratings, or styles of (famous) chess players.
16 | In fact numerous applications can be and have been considered such as cheat detection, computation of an intrinsic, "universal" rating, or the determination of key moments chess players blunder. For instance we would like to answer a question like "Who are the best chess players in history?"
17 |
18 | For doing so, you typically need to analyze millions of moves with chess engines; it requires lots of computations.
19 | Our goal is to propose an open infrastructure for **large-scale analysis of chess games**.
20 | Specifically, we aim to:
21 | * replicate state-of-the-art research results (e.g., on cheat detection or intrinsic ratings);
22 | * provide open data and procedures for exploring new directions;
23 | * investigate software engineering/scalability issues when computing millions of moves;
24 | * organize a community of potential contributors for fun and profit.
25 |
26 | #### Static analysis
27 |
28 | We are essentially analysing headers information (related to players' ratings, dates, openings, etc.).
29 | We qualify the analysis as "static" (as opposed to "dynamic", see below) since we do not analyse moves with chess engines.
30 | Until now we have:
31 | * parsed various PGN files and structure each game in a (relational) database
32 | * processed games with [Spark SQL](https://spark.apache.org/sql/) in order to generate CSV files together with [R](http://www.r-project.org/) scripts to compute statistics
33 |
34 | *We are writing a technical report on various statistics of the database (e.g., number of unique positions)*
35 |
36 | Chess games are saved in PGN file, for example
37 | ```
38 | [Event "FIDE Candidates 2014"]
39 | [Site "Khanty-Mansiysk RUS"]
40 | [Date "2014.03.25"]
41 | [Round "10.1"]
42 | [White "Karjakin,Sergey"]
43 | [Black "Andreikin,D"]
44 | [Result "1/2-1/2"]
45 | [WhiteTitle "GM"]
46 | [BlackTitle "GM"]
47 | [WhiteElo "2766"]
48 | [BlackElo "2709"]
49 | [ECO "B46"]
50 | [Opening "Sicilian"]
51 | [Variation "Taimanov variation"]
52 |
53 | 1. e4 c5 2. Nf3 e6 3. d4 cxd4 4. Nxd4 Nc6 5. Nc3 a6 6. Nxc6 bxc6 7. Qd3 Qc7 8. Qg3 Qxg3 9. hxg3 d5 10. g4 Rb8 11. g5 f6 12. gxf6 Nxf6 13. e5 Nd7 14. f4 Nc5 15. Rh3 a5 16. b3 Ba6 17. Bxa6 Nxa6 18. Na4 Rb4 19. Bd2 Re4+ 20. Kf1 Bb4 21. c3 Ba3
54 | 22. Re1 Rxe1+ 23. Kxe1 O-O 24. Ke2 h6 25. Rg3 Kf7 26. Rh3 Kg6 27. Rg3+ Kf7 28. Rh3 Kg6 29. Rg3+ Kf7 1/2-1/2
55 | ```
56 |
57 | As you can notice, each PGN file is separated in two parts: (1) headers (2) moves
58 |
59 | The static analysis first parses each file and inspects each interesting headers information like *White Elo Rating*, *Result* or *Date*. We can also get an iterator on moves to get information about *Pieces Captured Count* or *Pieces Moves Count*...
60 | We parse all games with a [Java parser](http://sourceforge.net/projects/pgnparse/) in order to analyze different moves (promotions, king castling, captured pieces...) and generate FENs.
61 |
62 | #### Dynamic analysis
63 |
64 | We will analyse all generated [FEN](https://en.wikipedia.org/wiki/Forsyth%E2%80%93Edwards_Notation) on [Igrida Cluster](http://igrida.gforge.inria.fr/) with [Stockfish](https://stockfishchess.org/) UCI Engine (e.g., depth 20 with multi-pv 1). All logs are saved in files and afterwards in a (relational) database.
65 |
66 | ```
67 | rnbqkbnr/pppppppp/8/8/8/5N2/PPPPPPPP/RNBQKB1R b KQkq - 1 1
68 | info depth 1 seldepth 1 multipv 1 score cp 783 nodes 47 nps 47000 time 1 pv e4b4.
69 | info depth 2 seldepth 2 multipv 1 score cp 807 nodes 119 nps 119000 time 1 pv e4b4 e6e7 b4b2 c2c1.
70 | info depth 3 seldepth 4 multipv 1 score cp 813 nodes 213 nps 106500 time 2 pv e4b4 e6e7 b4b2 c2c1 f4d3 c1d1.
71 | info depth 4 seldepth 6 multipv 1 score cp 813 nodes 351 nps 175500 time 2 pv e4b4 e6e7 b4b2 c2c1 f4d3 c1d1.
72 | info depth 5 seldepth 7 multipv 1 score cp 905 nodes 711 nps 355500 time 2 pv e4b4 e6e7 b4b2 c2c1 f4d3 c1d1 a3a2.
73 | info depth 6 seldepth 9 multipv 1 score cp 1056 nodes 2120 nps 706666 time 3 pv e4b4 e6e7 b4b2 c2c3 f4d5 c3d3 d5e7 h4h5.
74 | ...
75 | ```
76 |
77 | For instance, Stockfish can calculate a score and evaluation of each move:
78 |
79 | | Ply | Move | White | Black | Score | Eval | Comment |
80 | |-----|------|-------|-------|-------|-------|---------|
81 | | 0 | [1] | e4 | | 0.26 | 0.26 | |
82 | | 1 | [1] | | c6 | 0.4 | -0.14 | |
83 | | 2 | [2] | d4 | | 0.34 | -0.06 | |
84 | | 3 | [2] | | d5 | 0.31 | 0.03 | |
85 | | 4 | [3] | Nc3 | | 0.41 | 0.1 | |
86 | | 5 | [3] | | dxe4 | 0.3 | 0.11 | |
87 | | 6 | [4] | Nxe4 | | 0.31 | 0.01 | |
88 | | 7 | [4] | | Bf5 | 0.37 | -0.06 | |
89 | | 8 | [5] | Ng3 | | 0.32 | -0.05 | |
90 | | ... | ... | ... | ... | ... | ... | |
91 | | 69 | [35] | | Ne5 | 0.0 | -0.03 | |
92 | | 70 | [36] | Kd2 | | -0.06 | -0.06 | |
93 | | 71 | [36] | | Nd7 | -0.16 | 0.1 | |
94 | | 72 | [37] | Ke3 | | -2.6 | -2.44 | Erreur |
95 | | 73 | [37] | | c5 | -2.91 | 0.31 | |
96 |
97 | We can easily generates the evolution score of the game, in fact :
98 |
99 | 
100 |
101 |
102 | ### Key numbers
103 |
104 | Because it's not possible to make a lot of reservation on Igrida, I run 3 sort of jobs :
105 | - Small job during the day (9h-17h)
106 | - Medium job during the night (17h-5h)
107 | - Long job during the week and week-end
108 |
109 | | Name | Number of jobs | Duration | Number of FEN to analyse per job | Total of FEN to analyse | Total worktime |
110 | |------------|----------------|----------|----------------------------------|-------------------------|----------------|
111 | | Short Job | 10 000 | 8h | 6 000 | 60 000 000 | 80 000h |
112 | | Medium Job | 9 000 | 12h | 10 000 | 90 000 000 | 108 000h |
113 | | Long Job | 4 000 | 64h | 30 000 | 120 000 000 | 256 000h |
114 | | Total | 23 000 | - | | 270 000 000 | 444 000h |
115 |
116 | We can see that it takes **444k hours to analyse our 270 millions FEN**. To give you an idea, that represents 18 500 days (50 years) on a unique machine.
117 |
118 | Our 270 millions FEN takes only 15.5 Go memory before analysis. Yet, each analysis has 3 ko logs (~3000 characters per log). So, we expect about **800 Go logs**.
119 |
120 | In average, Stockfish calculates 7 millions combinaisons at depth 20. So, we can think Igrida has, at total, calculates more than 2e15 nodes (~2 000 000 000 000 000).
121 |
122 | #### Contact
123 |
124 | This project is part of a research internship at Inria/IRISA laboratory [DiverSE team](http://diverse.irisa.fr) on chess analysis:
125 | * François Esnault (MSc Student, University of Rennes 1) is the main developer and contributor of the project.
126 | * Mathieu Acher (Associate Professor, University of Rennes 1) is supervising the project.
127 |
128 |
--------------------------------------------------------------------------------
/resources/igrida/param-file.txt:
--------------------------------------------------------------------------------
1 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0381
2 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0382
3 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0383
4 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0384
5 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0385
6 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0386
7 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0387
8 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0388
9 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0389
10 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0390
11 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0391
12 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0392
13 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0393
14 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0394
15 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0395
16 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0396
17 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0397
18 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0398
19 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0399
20 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0400
21 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0401
22 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0402
23 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0403
24 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0404
25 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0405
26 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0406
27 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0407
28 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0408
29 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0409
30 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0410
31 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0411
32 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0412
33 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0413
34 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0414
35 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0415
36 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0416
37 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0417
38 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0418
39 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0419
40 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0420
41 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0421
42 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0422
43 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0423
44 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0424
45 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0425
46 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0426
47 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0427
48 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0428
49 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0429
50 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0430
51 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0431
52 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0432
53 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0433
54 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0434
55 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0435
56 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0436
57 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0437
58 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0438
59 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0439
60 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0440
61 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0441
62 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0442
63 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0443
64 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0444
65 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0445
66 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0446
67 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0447
68 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0448
69 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0449
70 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0450
71 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0451
72 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0452
73 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0453
74 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0454
75 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0455
76 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0456
77 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0457
78 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0458
79 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0459
80 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0460
81 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0461
82 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0462
83 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0463
84 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0464
85 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0465
86 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0466
87 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0467
88 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0468
89 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0469
90 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0470
91 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0471
92 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0472
93 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0473
94 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0474
95 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0475
96 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0476
97 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0477
98 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0478
99 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0479
100 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0480
101 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0481
102 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0482
103 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0483
104 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0484
105 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0485
106 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0486
107 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0487
108 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0488
109 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0489
110 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0490
111 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0491
112 | -e /temp_dd/igrida-fs1/fesnault/SCRATCH/uci-engine/stockfish-6-igrida/src/stockfish -i /temp_dd/igrida-fs1/fesnault/PASSE5/input/0492
113 |
--------------------------------------------------------------------------------
/resources/fen/input_output:
--------------------------------------------------------------------------------
1 | rnbqkbnr/pppppppp/8/8/4P3/8/PPPP1PPP/RNBQKBNR b KQkq e3 0 1 info depth 1 seldepth 1 multipv 1 score cp 3 nodes 120 nps 60000 tbhits 0 time 2 pv d7d5. info depth 1 seldepth 1 multipv 2 score cp -6 nodes 120 nps 60000 tbhits 0 time 2 pv e7e5. info depth 1 seldepth 1 multipv 3 score cp -14 nodes 120 nps 60000 tbhits 0 time 2 pv g8f6. info depth 1 seldepth 1 multipv 4 score cp -18 nodes 120 nps 60000 tbhits 0 time 2 pv e7e6. info depth 1 seldepth 1 multipv 5 score cp -25 nodes 120 nps 60000 tbhits 0 time 2 pv b8c6. info depth 2 seldepth 3 multipv 1 score cp 47 nodes 351 nps 175500 tbhits 0 time 2 pv d7d5 f1b5 c7c6. info depth 2 seldepth 3 multipv 2 score cp -30 nodes 351 nps 175500 tbhits 0 time 2 pv e7e5 d2d3. info depth 2 seldepth 3 multipv 3 score cp -48 nodes 351 nps 175500 tbhits 0 time 2 pv e7e6 d2d3. info depth 2 seldepth 3 multipv 4 score cp -54 nodes 351 nps 175500 tbhits 0 time 2 pv b8c6 d2d3. info depth 2 seldepth 3 multipv 5 score cp -62 nodes 351 nps 175500 tbhits 0 time 2 pv g8f6 d2d3. info depth 3 seldepth 4 multipv 1 score cp 12 nodes 684 nps 342000 tbhits 0 time 2 pv b8c6 d2d3 e7e6. info depth 3 seldepth 4 multipv 2 score cp 2 nodes 684 nps 342000 tbhits 0 time 2 pv d7d5 d2d3 d5e4 d3e4 d8d1 e1d1. info depth 3 seldepth 4 multipv 3 score cp -5 nodes 684 nps 342000 tbhits 0 time 2 pv g8f6 d2d3 e7e6. info depth 3 seldepth 4 multipv 4 score cp -6 nodes 684 nps 342000 tbhits 0 time 2 pv e7e5 d2d3 d7d6. info depth 3 seldepth 4 multipv 5 score cp -40 nodes 684 nps 342000 tbhits 0 time 2 pv e7e6 d2d3 b7b6. info depth 4 seldepth 5 multipv 1 score cp 5 nodes 2396 nps 798666 tbhits 0 time 3 pv d7d5 d2d3 e7e6 a2a3 d5e4 d3e4. info depth 4 seldepth 5 multipv 2 score cp -92 nodes 2396 nps 798666 tbhits 0 time 3 pv b8c6 d2d4 e7e6 b1c3. info depth 4 seldepth 5 multipv 3 score cp -94 nodes 2396 nps 798666 tbhits 0 time 3 pv g8f6 b1c3 d7d6 d2d4. info depth 4 seldepth 5 multipv 4 score cp -97 nodes 2396 nps 798666 tbhits 0 time 3 pv e7e5 g1f3 d7d6 d2d4. info depth 4 seldepth 5 multipv 5 score cp -122 nodes 2396 nps 798666 tbhits 0 time 3 pv c7c5 d2d4 e7e6 b1c3 c5d4 d1d4. info depth 5 seldepth 5 multipv 1 score cp -22 nodes 7193 nps 719300 tbhits 0 time 10 pv e7e5 d2d4 b8c6 g1f3 g8f6. info depth 5 seldepth 5 multipv 2 score cp -29 nodes 7193 nps 719300 tbhits 0 time 10 pv b8c6 b1c3 g8f6 d2d4 d7d5. info depth 5 seldepth 5 multipv 3 score cp -43 nodes 7193 nps 719300 tbhits 0 time 10 pv e7e6 d2d4 b8c6 b1c3 g8f6. info depth 5 seldepth 5 multipv 4 score cp -49 nodes 7193 nps 719300 tbhits 0 time 10 pv d7d6 d2d4 g8f6 b1c3 b8c6. info depth 5 seldepth 5 multipv 5 score cp -82 upperbound nodes 7193 nps 719300 tbhits 0 time 10 pv d7d5 d2d4 a7a6 b1c3 e7e6. info depth 6 seldepth 6 multipv 1 score cp -43 nodes 13273 nps 737388 tbhits 0 time 18 pv d7d5 e4e5 d5d4 g1f3 b8c6 d2d3. info depth 6 seldepth 6 multipv 2 score cp -56 nodes 13273 nps 737388 tbhits 0 time 18 pv b8c6 d2d4 d7d5 e4e5 e7e6 g1f3. info depth 6 seldepth 6 multipv 3 score cp -68 nodes 13273 nps 737388 tbhits 0 time 18 pv e7e5 g1f3 d7d5 e4d5 d8d5 b1c3. info depth 6 seldepth 6 multipv 4 score cp -77 nodes 13273 nps 737388 tbhits 0 time 18 pv e7e6 d2d4 d7d5 b1c3 g8f6 e4e5. info depth 6 seldepth 6 multipv 5 score cp -85 nodes 13273 nps 737388 tbhits 0 time 18 pv d7d6 b1c3 g8f6 g1f3 d6d5 e4e5. info depth 7 seldepth 8 multipv 1 score cp -10 nodes 21307 nps 734724 tbhits 0 time 29 pv d7d5 e4e5 d5d4 g1f3 b8c6 d2d3 e7e6. info depth 7 seldepth 8 multipv 2 score cp -43 nodes 21307 nps 734724 tbhits 0 time 29 pv b8c6 d2d4 d7d5 b1c3 e7e6 g1f3 g8f6. info depth 7 seldepth 8 multipv 3 score cp -43 nodes 21307 nps 734724 tbhits 0 time 29 pv e7e6 d2d4 b8c6 g1f3 g8f6 b1c3 d7d5. info depth 7 seldepth 8 multipv 4 score cp -44 nodes 21307 nps 734724 tbhits 0 time 29 pv g8f6 b1c3 e7e5 g1f3 b8c6 d2d4 d7d6. info depth 7 seldepth 8 multipv 5 score cp -44 nodes 21307 nps 734724 tbhits 0 time 29 pv e7e5 d2d4 e5d4 g1f3 g8f6 e4e5 f8b4 c2c3. info depth 8 seldepth 8 multipv 1 score cp -26 nodes 36814 nps 836681 tbhits 0 time 44 pv d7d5 e4e5 c7c5 d2d4 c5d4 c2c3 d4c3 b1c3. info depth 8 seldepth 8 multipv 2 score cp -57 nodes 36814 nps 836681 tbhits 0 time 44 pv b8c6 d2d4 d7d5 b1c3 e7e5 e4d5 c6d4 g1f3. info depth 8 seldepth 8 multipv 3 score cp -61 nodes 36814 nps 836681 tbhits 0 time 44 pv e7e5 b1c3 b8c6 g1f3 f8b4 f1b5 g8f6 e1g1. info depth 8 seldepth 8 multipv 4 score cp -67 nodes 36814 nps 836681 tbhits 0 time 44 pv e7e6 d2d4 d7d5 e4e5 g8e7 g1f3 b8c6 f1b5. info depth 8 seldepth 8 multipv 5 score cp -68 nodes 36814 nps 836681 tbhits 0 time 44 pv g8f6 b1c3 d7d6 d2d4 e7e6 g1f3 b8c6 d4d5. info depth 9 seldepth 10 multipv 1 score cp -29 nodes 58684 nps 931492 tbhits 0 time 63 pv d7d5 e4e5 c7c5 d2d4 b8c6 f1b5 d8a5 b1c3 a7a6 b5c6 b7c6. info depth 9 seldepth 10 multipv 2 score cp -33 nodes 58684 nps 931492 tbhits 0 time 63 pv e7e5 b1c3 b8c6 g1f3 g8f6 f1b5 a7a6 b5c6 d7c6 f3e5. info depth 9 seldepth 10 multipv 3 score cp -40 nodes 58684 nps 931492 tbhits 0 time 63 pv e7e6 d2d4 d7d5 e4e5 g8e7 g1f3 e7f5 b1c3 f8b4. info depth 9 seldepth 10 multipv 4 score cp -41 nodes 58684 nps 931492 tbhits 0 time 63 pv g8f6 e4e5 f6d5 g1f3 d7d6 b1c3 d6e5 d2d4 d5c3. info depth 9 seldepth 10 multipv 5 score cp -43 nodes 58684 nps 931492 tbhits 0 time 63 pv b8c6 d2d4 d7d5 e4e5 e7e6 g1f3 g8e7 b1c3 a7a6. info depth 10 seldepth 16 multipv 1 score cp -25 nodes 185469 nps 1426684 tbhits 0 time 130 pv d7d5 e4d5 g8f6 g1f3 d8d5 b1c3 d5e6 d1e2 a7a6 d2d4 e6e2 f1e2. info depth 10 seldepth 16 multipv 2 score cp -49 nodes 185469 nps 1426684 tbhits 0 time 130 pv e7e5 b1c3 b8c6 g1f3 g8f6 f1c4 f8b4 e1g1 e8g8 d2d3. info depth 10 seldepth 16 multipv 3 score cp -53 nodes 185469 nps 1426684 tbhits 0 time 130 pv b8c6 d2d4 d7d5 b1c3 e7e6 e4d5 e6d5 d1e2 f8e7 g1f3 g8f6. info depth 10 seldepth 16 multipv 4 score cp -53 nodes 185469 nps 1426684 tbhits 0 time 130 pv e7e6 g1f3 d7d5 e4d5 g8f6 d5e6 c8e6 d1e2 b8c6 b1c3. info depth 10 seldepth 16 multipv 5 score cp -61 nodes 185469 nps 1426684 tbhits 0 time 130 pv c7c5 g1f3 e7e6 b1c3 b8c6 f1e2 d7d5 d2d3 g8f6 e1g1 a7a6. info depth 11 seldepth 17 multipv 1 score cp -32 nodes 470808 nps 1693553 tbhits 0 time 278 pv b8c6 d2d4 d7d5 b1c3 g8f6 e4e5 f6e4 g1f3 e4c3 b2c3 c8f5. info depth 11 seldepth 17 multipv 2 score cp -33 nodes 470808 nps 1693553 tbhits 0 time 278 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1b5 f8c5 d2d3 d7d6 c1g5 e8g8. info depth 11 seldepth 17 multipv 3 score cp -37 nodes 470808 nps 1693553 tbhits 0 time 278 pv d7d5 e4d5 g8f6 d2d4 c8f5 c2c4 e7e6 d5e6 b8c6 d4d5 c6b4. info depth 11 seldepth 17 multipv 4 score cp -47 nodes 470808 nps 1693553 tbhits 0 time 278 pv e7e6 d2d4 d7d5 b1c3 b8c6 g1f3 f8b4 e4d5 e6d5 d1e2 g8e7 c1d2. info depth 11 seldepth 17 multipv 5 score cp -48 nodes 470808 nps 1693553 tbhits 0 time 278 pv c7c5 g1f3 b8c6 f1b5 a7a6 b5c6 d7c6 d2d3 h7h6 e1g1 g8f6. info depth 12 seldepth 20 multipv 1 score cp -30 nodes 873256 nps 1927717 tbhits 0 time 453 pv e7e5 g1f3 b8c6 b1c3 g8f6 f1c4 f8b4 c3d5 d7d6 d5f6 g7f6 e1g1 b4c5. info depth 12 seldepth 20 multipv 2 score cp -37 nodes 873256 nps 1927717 tbhits 0 time 453 pv b8c6 d2d4 d7d5 b1c3 g8f6 e4e5 f6e4 c3e4 d5e4 c2c3 h7h6 d1a4 a7a6. info depth 12 seldepth 20 multipv 3 score cp -38 nodes 873256 nps 1927717 tbhits 0 time 453 pv e7e6 b1c3 d7d5 d2d4 b8c6 e4e5 h7h6 f1b5 g8e7 g1f3 a7a6 b5c6 e7c6 e1g1. info depth 12 seldepth 20 multipv 4 score cp -53 nodes 873256 nps 1927717 tbhits 0 time 453 pv d7d5 e4d5 g8f6 g1f3 e7e6 d5e6 c8e6 b1c3 f8e7 d2d4 b8c6 f1e2 e8g8 e1g1 a7a6. info depth 12 seldepth 20 multipv 5 score cp -60 nodes 873256 nps 1927717 tbhits 0 time 453 pv c7c5 g1f3 b8c6 f1b5 g8f6 b1c3 a7a6 b5c6 b7c6 d2d4 d7d5 e4e5 c5d4. info depth 13 seldepth 22 multipv 1 score cp -27 nodes 1519863 nps 2062229 tbhits 0 time 737 pv e7e5 g1f3 b8c6 b1c3 g8f6 f1c4 f6e4 c3e4 d7d5 d2d4 f8e7 e1g1 d5c4 d4e5. info depth 13 seldepth 22 multipv 2 score cp -36 nodes 1519863 nps 2062229 tbhits 0 time 737 pv b8c6 d2d4 d7d5 b1c3 d5e4 d4d5 c6e5 d1d4 e5g6 c1e3 g8f6 e1c1 c8f5 f1b5 f5d7 b5d7 d8d7 c3e4. info depth 13 seldepth 22 multipv 3 score cp -38 nodes 1519863 nps 2062229 tbhits 0 time 737 pv e7e6 b1c3 d7d5 d2d4 b8c6 e4e5 h7h6 f1b5 g8e7 g1f3 a7a6 b5c6 e7c6. info depth 13 seldepth 22 multipv 4 score cp -48 nodes 1519863 nps 2062229 tbhits 0 time 737 pv c7c5 g1f3 b8c6 b1c3 g8f6 f1b5 c6d4 e4e5 d4b5 c3b5 f6d5 e1g1 d8a5. info depth 13 seldepth 22 multipv 5 score cp -60 nodes 1519863 nps 2062229 tbhits 0 time 737 pv d7d5 e4d5 g8f6 g1f3 e7e6 d5e6 c8e6 f1e2 f8e7 e1g1 c7c5 b1c3 b8c6 d2d3 e8g8 c1g5. info depth 14 seldepth 22 multipv 1 score cp -19 nodes 2345149 nps 2068032 tbhits 0 time 1134 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1b5 f8b4 a2a3 b4c3 d2c3 d7d6 c1g5 e8g8 e1g1. info depth 14 seldepth 22 multipv 2 score cp -38 nodes 2345149 nps 2068032 tbhits 0 time 1134 pv b8c6 d2d4 d7d5 b1c3 d5e4 d4d5 c6e5 f2f3 e4f3 g1f3 e5f3 d1f3 g8f6 f1b5 c8d7 e1g1 d7b5 c3b5. info depth 14 seldepth 22 multipv 3 score cp -49 nodes 2345149 nps 2068032 tbhits 0 time 1134 pv d7d5 e4d5 g8f6 d2d4 c8f5 c2c4 e7e6 d5e6 f7e6 g1f3 b8c6 a2a3 f8e7 b1c3. info depth 14 seldepth 22 multipv 4 score cp -51 nodes 2345149 nps 2068032 tbhits 0 time 1134 pv e7e6 d2d4 d7d5 b1d2 b8c6 g1f3 f8e7 c2c3 d5e4 d2e4 g8f6 f1d3 e8g8 e1g1. info depth 14 seldepth 22 multipv 5 score cp -56 nodes 2345149 nps 2068032 tbhits 0 time 1134 pv c7c5 g1f3 e7e6 b1c3 b8c6 f1b5 c6d4 e1g1 a7a6 b5e2 d7d5 e4d5 e6d5 f3d4 c5d4. info depth 15 seldepth 24 multipv 1 score cp -22 nodes 4026586 nps 2202727 tbhits 0 time 1828 pv e7e5 g1f3 b8c6 f1b5 c6d4 b1c3 c7c6 b5e2 g8f6 d2d3 f8d6 e1g1 e8g8 c1g5 b7b5 f3d4. info depth 15 seldepth 24 multipv 2 score cp -37 nodes 4026586 nps 2202727 tbhits 0 time 1828 pv e7e6 d2d4 d7d5 b1c3 b8c6 e4e5 a7a6 a2a3 g8e7 g1f3 e7f5 f1e2 f8e7 g2g4 f5h4 e1g1 e8g8. info depth 15 seldepth 24 multipv 3 score cp -39 nodes 4026586 nps 2202727 tbhits 0 time 1828 pv b8c6 d2d4 d7d5 e4e5 c8f5 g1f3 e7e6 a2a3 g8e7 b1c3 a7a6 f1d3 f5d3 d1d3 e7f5 e1g1 f8e7. info depth 15 seldepth 24 multipv 4 score cp -43 nodes 4026586 nps 2202727 tbhits 0 time 1828 pv c7c5 b1c3 e7e6 g1f3 b8c6 f1b5 g8e7 d2d4 c5d4 f3d4 c6d4 d1d4 e7c6 b5c6 b7c6 c1f4. info depth 15 seldepth 24 multipv 5 score cp -59 nodes 4026586 nps 2202727 tbhits 0 time 1828 pv d7d5 e4d5 g8f6 d2d4 c8f5 f1b5 c7c6 d5c6 b8c6 b1c3 f6d5 g1f3 d8a5 b5c6 b7c6 c1d2 a5b6 c3d5. info depth 16 seldepth 24 multipv 1 score cp -26 nodes 6554764 nps 2312086 tbhits 0 time 2835 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 g1f3 g8f6 f1d3 d8e7 d1e2 f6e4 e1g1 e4c3 e2e7 b4e7 b2c3 b8c6. info depth 16 seldepth 24 multipv 2 score cp -29 nodes 6554764 nps 2312086 tbhits 0 time 2835 pv e7e5 g1f3 b8c6 f1b5 a7a6 b5c6 d7c6 e1g1 g8f6 d2d3 f8d6 c1e3 f6g4 b1d2 g4e3 f2e3 e8g8 d2c4. info depth 16 seldepth 24 multipv 3 score cp -38 nodes 6554764 nps 2312086 tbhits 0 time 2835 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1d2 e5d4 f1c4 d5d6 e1g1 f8e7 f1e1 g8f6 d2b3 e8g8 b3d4. info depth 16 seldepth 24 multipv 4 score cp -53 nodes 6554764 nps 2312086 tbhits 0 time 2835 pv c7c5 b1c3 b8c6 g1f3 g8f6 f1b5 c6d4 e4e5 d4b5 c3b5 f6e4 e1g1 a7a6 b5c3 d7d5 d2d3 e4c3. info depth 16 seldepth 24 multipv 5 score cp -53 nodes 6554764 nps 2312086 tbhits 0 time 2835 pv d7d5 e4d5 g8f6 d2d4 c8f5 f1b5 c7c6 d5c6 b8c6 g1f3 d8a5 b1c3 f6d5 b5c6 b7c6 c1d2 a5b6 c3d5 c6d5 e1g1. info depth 17 seldepth 24 multipv 1 score cp -21 nodes 7502064 nps 2322620 tbhits 0 time 3230 pv e7e5 g1f3 b8c6 f1b5 a7a6 b5c6 d7c6 e1g1 f8d6 b1c3 g8e7 h2h3 e8g8 a2a3 f7f6 d2d3 c8e6 c1e3 g8h8. info depth 16 seldepth 24 multipv 2 score cp -26 nodes 7502064 nps 2322620 tbhits 0 time 3230 pv e7e6 d2d4. info depth 16 seldepth 24 multipv 3 score cp -38 nodes 7502064 nps 2322620 tbhits 0 time 3230 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1d2 e5d4 f1c4 d5d6 e1g1 f8e7 f1e1 g8f6 d2b3 e8g8 b3d4. info depth 16 seldepth 24 multipv 4 score cp -53 nodes 7502064 nps 2322620 tbhits 0 time 3230 pv c7c5 b1c3 b8c6 g1f3 g8f6 f1b5 c6d4 e4e5 d4b5 c3b5 f6e4 e1g1 a7a6 b5c3 d7d5 d2d3 e4c3. info depth 16 seldepth 24 multipv 5 score cp -53 nodes 7502064 nps 2322620 tbhits 0 time 3230 pv d7d5 e4d5 g8f6 d2d4 c8f5 f1b5 c7c6 d5c6 b8c6 g1f3 d8a5 b1c3 f6d5 b5c6 b7c6 c1d2 a5b6 c3d5 c6d5 e1g1. info depth 17 seldepth 26 multipv 1 score cp -21 nodes 8602608 nps 2321891 tbhits 0 time 3705 pv e7e5 g1f3 b8c6 f1b5 a7a6 b5c6 d7c6 e1g1 f8d6 b1c3 g8e7 h2h3 e8g8 a2a3 f7f6 d2d3 c8e6 c1e3 g8h8. info depth 17 seldepth 26 multipv 2 score cp -22 nodes 8602608 nps 2321891 tbhits 0 time 3705 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 f1d3 c7c5 d4c5 f8c5 d1e2 c5e7 e1g1 b8c6 b1c3 e8g8 c1f4 c8d7. info depth 16 seldepth 26 multipv 3 score cp -38 nodes 8602608 nps 2321891 tbhits 0 time 3705 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1d2 e5d4 f1c4 d5d6 e1g1 f8e7 f1e1 g8f6 d2b3 e8g8 b3d4. info depth 16 seldepth 26 multipv 4 score cp -53 nodes 8602608 nps 2321891 tbhits 0 time 3705 pv c7c5 b1c3 b8c6 g1f3 g8f6 f1b5 c6d4 e4e5 d4b5 c3b5 f6e4 e1g1 a7a6 b5c3 d7d5 d2d3 e4c3. info depth 16 seldepth 26 multipv 5 score cp -53 nodes 8602608 nps 2321891 tbhits 0 time 3705 pv d7d5 e4d5 g8f6 d2d4 c8f5 f1b5 c7c6 d5c6 b8c6 g1f3 d8a5 b1c3 f6d5 b5c6 b7c6 c1d2 a5b6 c3d5 c6d5 e1g1. info depth 17 seldepth 26 multipv 1 score cp -21 nodes 9010413 nps 2331284 tbhits 0 time 3865 pv e7e5 g1f3 b8c6 f1b5 a7a6 b5c6 d7c6 e1g1 f8d6 b1c3 g8e7 h2h3 e8g8 a2a3 f7f6 d2d3 c8e6 c1e3 g8h8. info depth 17 seldepth 26 multipv 2 score cp -22 nodes 9010413 nps 2331284 tbhits 0 time 3865 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 f1d3 c7c5 d4c5 f8c5 d1e2 c5e7 e1g1 b8c6 b1c3 e8g8 c1f4 c8d7. info depth 17 seldepth 26 multipv 3 score cp -50 nodes 9010413 nps 2331284 tbhits 0 time 3865 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 c8f5 d4e5 g8e7 f1e2 e8g8 e1g1 d5e4 f1e1 e4c2. info depth 16 seldepth 26 multipv 4 score cp -53 nodes 9010413 nps 2331284 tbhits 0 time 3865 pv c7c5 b1c3 b8c6 g1f3 g8f6 f1b5 c6d4 e4e5 d4b5 c3b5 f6e4 e1g1 a7a6 b5c3 d7d5 d2d3 e4c3. info depth 16 seldepth 26 multipv 5 score cp -53 nodes 9010413 nps 2331284 tbhits 0 time 3865 pv d7d5 e4d5 g8f6 d2d4 c8f5 f1b5 c7c6 d5c6 b8c6 g1f3 d8a5 b1c3 f6d5 b5c6 b7c6 c1d2 a5b6 c3d5 c6d5 e1g1. info depth 17 seldepth 26 multipv 1 score cp -21 nodes 9785820 nps 2331622 tbhits 0 time 4197 pv e7e5 g1f3 b8c6 f1b5 a7a6 b5c6 d7c6 e1g1 f8d6 b1c3 g8e7 h2h3 e8g8 a2a3 f7f6 d2d3 c8e6 c1e3 g8h8. info depth 17 seldepth 26 multipv 2 score cp -22 nodes 9785820 nps 2331622 tbhits 0 time 4197 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 f1d3 c7c5 d4c5 f8c5 d1e2 c5e7 e1g1 b8c6 b1c3 e8g8 c1f4 c8d7. info depth 17 seldepth 26 multipv 3 score cp -48 nodes 9785820 nps 2331622 tbhits 0 time 4197 pv c7c5 b1c3 b8c6 g1f3 e7e6 f1e2 g8f6 e1g1 d7d5 e4d5 f6d5 c3d5 e6d5 d2d4 f8e7 d4c5 e7c5. info depth 17 seldepth 26 multipv 4 score cp -50 nodes 9785820 nps 2331622 tbhits 0 time 4197 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 c8f5 d4e5 g8e7 f1e2 e8g8 e1g1 d5e4 f1e1 e4c2. info depth 16 seldepth 26 multipv 5 score cp -53 nodes 9785820 nps 2331622 tbhits 0 time 4197 pv d7d5 e4d5 g8f6 d2d4 c8f5 f1b5 c7c6 d5c6 b8c6 g1f3 d8a5 b1c3 f6d5 b5c6 b7c6 c1d2 a5b6 c3d5 c6d5 e1g1. info depth 17 seldepth 26 multipv 1 score cp -21 nodes 11465034 nps 2354216 tbhits 0 time 4870 pv e7e5 g1f3 b8c6 f1b5 a7a6 b5c6 d7c6 e1g1 f8d6 b1c3 g8e7 h2h3 e8g8 a2a3 f7f6 d2d3 c8e6 c1e3 g8h8. info depth 17 seldepth 26 multipv 2 score cp -22 nodes 11465034 nps 2354216 tbhits 0 time 4870 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 f1d3 c7c5 d4c5 f8c5 d1e2 c5e7 e1g1 b8c6 b1c3 e8g8 c1f4 c8d7. info depth 17 seldepth 26 multipv 3 score cp -48 nodes 11465034 nps 2354216 tbhits 0 time 4870 pv c7c5 b1c3 b8c6 g1f3 e7e6 f1e2 g8f6 e1g1 d7d5 e4d5 f6d5 c3d5 e6d5 d2d4 f8e7 d4c5 e7c5. info depth 17 seldepth 26 multipv 4 score cp -50 nodes 11465034 nps 2354216 tbhits 0 time 4870 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 c8f5 d4e5 g8e7 f1e2 e8g8 e1g1 d5e4 f1e1 e4c2. info depth 17 seldepth 26 multipv 5 score cp -53 nodes 11465034 nps 2354216 tbhits 0 time 4870 pv g8f6 e4e5 f6d5 c2c4 d5b6 c4c5 b6d5 b1c3 d5c3 b2c3 d7d6 g1f3 d6c5 f1c4 b8c6 e1g1 a7a6 h2h3. info depth 18 seldepth 26 multipv 1 score cp -20 nodes 13417310 nps 2388696 tbhits 0 time 5617 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 b1c3 f8b4 f1d3 d8e7 c1e3 f6g4 e1g1 g4e3 f2e3 b4c3 b2c3 b8c6. info depth 17 seldepth 26 multipv 2 score cp -21 nodes 13417310 nps 2388696 tbhits 0 time 5617 pv e7e5 g1f3. info depth 17 seldepth 26 multipv 3 score cp -48 nodes 13417310 nps 2388696 tbhits 0 time 5617 pv c7c5 b1c3 b8c6 g1f3 e7e6 f1e2 g8f6 e1g1 d7d5 e4d5 f6d5 c3d5 e6d5 d2d4 f8e7 d4c5 e7c5. info depth 17 seldepth 26 multipv 4 score cp -50 nodes 13417310 nps 2388696 tbhits 0 time 5617 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 c8f5 d4e5 g8e7 f1e2 e8g8 e1g1 d5e4 f1e1 e4c2. info depth 17 seldepth 26 multipv 5 score cp -53 nodes 13417310 nps 2388696 tbhits 0 time 5617 pv g8f6 e4e5 f6d5 c2c4 d5b6 c4c5 b6d5 b1c3 d5c3 b2c3 d7d6 g1f3 d6c5 f1c4 b8c6 e1g1 a7a6 h2h3. info depth 18 seldepth 26 multipv 1 score cp -20 nodes 13805010 nps 2384284 tbhits 0 time 5790 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 b1c3 f8b4 f1d3 d8e7 c1e3 f6g4 e1g1 g4e3 f2e3 b4c3 b2c3 b8c6. info depth 18 seldepth 26 multipv 2 score cp -27 nodes 13805010 nps 2384284 tbhits 0 time 5790 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f8c5 b1c3 e8g8 d2d3 d7d6 c1g5 c8e6 b5c6 b7c6 a2a3 c5b6 d3d4 e5d4 f3d4. info depth 17 seldepth 26 multipv 3 score cp -48 nodes 13805010 nps 2384284 tbhits 0 time 5790 pv c7c5 b1c3 b8c6 g1f3 e7e6 f1e2 g8f6 e1g1 d7d5 e4d5 f6d5 c3d5 e6d5 d2d4 f8e7 d4c5 e7c5. info depth 17 seldepth 26 multipv 4 score cp -50 nodes 13805010 nps 2384284 tbhits 0 time 5790 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 c8f5 d4e5 g8e7 f1e2 e8g8 e1g1 d5e4 f1e1 e4c2. info depth 17 seldepth 26 multipv 5 score cp -53 nodes 13805010 nps 2384284 tbhits 0 time 5790 pv g8f6 e4e5 f6d5 c2c4 d5b6 c4c5 b6d5 b1c3 d5c3 b2c3 d7d6 g1f3 d6c5 f1c4 b8c6 e1g1 a7a6 h2h3. info depth 18 seldepth 26 multipv 1 score cp -20 nodes 15376468 nps 2410104 tbhits 0 time 6380 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 b1c3 f8b4 f1d3 d8e7 c1e3 f6g4 e1g1 g4e3 f2e3 b4c3 b2c3 b8c6. info depth 18 seldepth 26 multipv 2 score cp -27 nodes 15376468 nps 2410104 tbhits 0 time 6380 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f8c5 b1c3 e8g8 d2d3 d7d6 c1g5 c8e6 b5c6 b7c6 a2a3 c5b6 d3d4 e5d4 f3d4. info depth 18 seldepth 26 multipv 3 score cp -44 nodes 15376468 nps 2410104 tbhits 0 time 6380 pv c7c5 g1f3 b8c6 f1b5 c6d4 f3d4 c5d4 e1g1 g8f6 e4e5 d8a5 b1a3 a7a6 b2b4 a5b4 b5d3 f6d5 a3c4 e7e6 a2a3. info depth 17 seldepth 26 multipv 4 score cp -50 nodes 15376468 nps 2410104 tbhits 0 time 6380 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 c8f5 d4e5 g8e7 f1e2 e8g8 e1g1 d5e4 f1e1 e4c2. info depth 17 seldepth 26 multipv 5 score cp -53 nodes 15376468 nps 2410104 tbhits 0 time 6380 pv g8f6 e4e5 f6d5 c2c4 d5b6 c4c5 b6d5 b1c3 d5c3 b2c3 d7d6 g1f3 d6c5 f1c4 b8c6 e1g1 a7a6 h2h3. info depth 18 seldepth 26 multipv 1 score cp -20 nodes 15836054 nps 2409258 tbhits 0 time 6573 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 b1c3 f8b4 f1d3 d8e7 c1e3 f6g4 e1g1 g4e3 f2e3 b4c3 b2c3 b8c6. info depth 18 seldepth 26 multipv 2 score cp -27 nodes 15836054 nps 2409258 tbhits 0 time 6573 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f8c5 b1c3 e8g8 d2d3 d7d6 c1g5 c8e6 b5c6 b7c6 a2a3 c5b6 d3d4 e5d4 f3d4. info depth 18 seldepth 26 multipv 3 score cp -43 nodes 15836054 nps 2409258 tbhits 0 time 6573 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 c8f5 d4e5 g8e7 f1e2 e8c8 e1g1 d5d1 f1d1 f5c2. info depth 18 seldepth 26 multipv 4 score cp -44 nodes 15836054 nps 2409258 tbhits 0 time 6573 pv c7c5 g1f3 b8c6 f1b5 c6d4 f3d4 c5d4 e1g1 g8f6 e4e5 d8a5 b1a3 a7a6 b2b4 a5b4 b5d3 f6d5 a3c4 e7e6 a2a3. info depth 17 seldepth 26 multipv 5 score cp -53 nodes 15836054 nps 2409258 tbhits 0 time 6573 pv g8f6 e4e5 f6d5 c2c4 d5b6 c4c5 b6d5 b1c3 d5c3 b2c3 d7d6 g1f3 d6c5 f1c4 b8c6 e1g1 a7a6 h2h3. info depth 18 seldepth 27 multipv 1 score cp -20 nodes 17707697 nps 2447166 tbhits 0 time 7236 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 b1c3 f8b4 f1d3 d8e7 c1e3 f6g4 e1g1 g4e3 f2e3 b4c3 b2c3 b8c6. info depth 18 seldepth 27 multipv 2 score cp -27 nodes 17707697 nps 2447166 tbhits 0 time 7236 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f8c5 b1c3 e8g8 d2d3 d7d6 c1g5 c8e6 b5c6 b7c6 a2a3 c5b6 d3d4 e5d4 f3d4. info depth 18 seldepth 27 multipv 3 score cp -43 nodes 17707697 nps 2447166 tbhits 0 time 7236 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 c8f5 d4e5 g8e7 f1e2 e8c8 e1g1 d5d1 f1d1 f5c2. info depth 18 seldepth 27 multipv 4 score cp -44 nodes 17707697 nps 2447166 tbhits 0 time 7236 pv c7c5 g1f3 b8c6 f1b5 c6d4 f3d4 c5d4 e1g1 g8f6 e4e5 d8a5 b1a3 a7a6 b2b4 a5b4 b5d3 f6d5 a3c4 e7e6 a2a3. info depth 18 seldepth 27 multipv 5 score cp -47 nodes 17707697 nps 2447166 tbhits 0 time 7236 pv g8f6 e4e5 f6d5 c2c4 d5b6 b1c3 d7d6 g1f3 b8c6 d2d4 c8g4 e5d6 g4f3 g2f3 c7d6 c4c5 b6d7 c5d6 e7d6 d4d5. info depth 19 seldepth 27 multipv 1 score cp -26 nodes 20582309 nps 2472052 tbhits 0 time 8326 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f8d6 b1c3 a7a6 b5c6 d7c6 d2d3 c8e6 c1e3 e8g8 h2h3 g8h8 a2a3 h7h6. info depth 18 seldepth 27 multipv 2 score cp -20 nodes 20582309 nps 2472052 tbhits 0 time 8326 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 b1c3 f8b4 f1d3 b8c6 e1g1 e8g8 h2h3 c8d7 c1f4 f8e8 f1e1 b4c3 b2c3 f6e4 c3c4. info depth 18 seldepth 27 multipv 3 score cp -43 nodes 20582309 nps 2472052 tbhits 0 time 8326 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 c8f5 d4e5 g8e7 f1e2 e8c8 e1g1 d5d1 f1d1 f5c2. info depth 18 seldepth 27 multipv 4 score cp -44 nodes 20582309 nps 2472052 tbhits 0 time 8326 pv c7c5 g1f3 b8c6 f1b5 c6d4 f3d4 c5d4 e1g1 g8f6 e4e5 d8a5 b1a3 a7a6 b2b4 a5b4 b5d3 f6d5 a3c4 e7e6 a2a3. info depth 18 seldepth 27 multipv 5 score cp -47 nodes 20582309 nps 2472052 tbhits 0 time 8326 pv g8f6 e4e5 f6d5 c2c4 d5b6 b1c3 d7d6 g1f3 b8c6 d2d4 c8g4 e5d6 g4f3 g2f3 c7d6 c4c5 b6d7 c5d6 e7d6 d4d5. info depth 19 seldepth 27 multipv 1 score cp -26 nodes 21155860 nps 2479008 tbhits 0 time 8534 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f8d6 b1c3 a7a6 b5c6 d7c6 d2d3 c8e6 c1e3 e8g8 h2h3 g8h8 a2a3 h7h6. info depth 19 seldepth 27 multipv 2 score cp -27 nodes 21155860 nps 2479008 tbhits 0 time 8534 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 b1c3 f8b4 f1d3 b8c6 e1g1 e8g8 h2h3 b4c3 b2c3 f6e4 c1b2 c8f5 c3c4. info depth 18 seldepth 27 multipv 3 score cp -43 nodes 21155860 nps 2479008 tbhits 0 time 8534 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 c8f5 d4e5 g8e7 f1e2 e8c8 e1g1 d5d1 f1d1 f5c2. info depth 18 seldepth 27 multipv 4 score cp -44 nodes 21155860 nps 2479008 tbhits 0 time 8534 pv c7c5 g1f3 b8c6 f1b5 c6d4 f3d4 c5d4 e1g1 g8f6 e4e5 d8a5 b1a3 a7a6 b2b4 a5b4 b5d3 f6d5 a3c4 e7e6 a2a3. info depth 18 seldepth 27 multipv 5 score cp -47 nodes 21155860 nps 2479008 tbhits 0 time 8534 pv g8f6 e4e5 f6d5 c2c4 d5b6 b1c3 d7d6 g1f3 b8c6 d2d4 c8g4 e5d6 g4f3 g2f3 c7d6 c4c5 b6d7 c5d6 e7d6 d4d5. info depth 19 seldepth 28 multipv 1 score cp -26 nodes 24398335 nps 2522052 tbhits 0 time 9674 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f8d6 b1c3 a7a6 b5c6 d7c6 d2d3 c8e6 c1e3 e8g8 h2h3 g8h8 a2a3 h7h6. info depth 19 seldepth 28 multipv 2 score cp -27 nodes 24398335 nps 2522052 tbhits 0 time 9674 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 b1c3 f8b4 f1d3 b8c6 e1g1 e8g8 h2h3 b4c3 b2c3 f6e4 c1b2 c8f5 c3c4. info depth 19 seldepth 28 multipv 3 score cp -37 nodes 24398335 nps 2522052 tbhits 0 time 9674 pv c7c5 g1f3 b8c6 f1b5 c6d4 f3d4 c5d4 e1g1 e7e6 c2c3 g8f6 e4e5 f6d5 d1g4 a7a6 b5d3 d7d6 e5d6 d4c3 d2c3. info depth 18 seldepth 28 multipv 4 score cp -43 nodes 24398335 nps 2522052 tbhits 0 time 9674 pv b8c6 d2d4. info depth 18 seldepth 28 multipv 5 score cp -47 nodes 24398335 nps 2522052 tbhits 0 time 9674 pv g8f6 e4e5 f6d5 c2c4 d5b6 b1c3 d7d6 g1f3 b8c6 d2d4 c8g4 e5d6 g4f3 g2f3 c7d6 c4c5 b6d7 c5d6 e7d6 d4d5. info depth 19 seldepth 31 multipv 1 score cp -26 nodes 26459166 nps 2545864 tbhits 0 time 10393 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f8d6 b1c3 a7a6 b5c6 d7c6 d2d3 c8e6 c1e3 e8g8 h2h3 g8h8 a2a3 h7h6. info depth 19 seldepth 31 multipv 2 score cp -27 nodes 26459166 nps 2545864 tbhits 0 time 10393 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 b1c3 f8b4 f1d3 b8c6 e1g1 e8g8 h2h3 b4c3 b2c3 f6e4 c1b2 c8f5 c3c4. info depth 19 seldepth 31 multipv 3 score cp -37 nodes 26459166 nps 2545864 tbhits 0 time 10393 pv c7c5 g1f3 b8c6 f1b5 c6d4 f3d4 c5d4 e1g1 e7e6 c2c3 g8f6 e4e5 f6d5 d1g4 a7a6 b5d3 d7d6 e5d6 d4c3 d2c3. info depth 19 seldepth 31 multipv 4 score cp -43 nodes 26459166 nps 2545864 tbhits 0 time 10393 pv g8f6 e4e5 f6d5 c2c4 d5b6 g1f3 d7d6 b1c3 b8c6 e5d6 e7d6 d2d4 c8g4 b2b3 f8e7 f1e2 e8g8 h2h3 g4f5 e1g1 c6b4 g2g4 f5g6 d4d5. info depth 18 seldepth 31 multipv 5 score cp -43 nodes 26459166 nps 2545864 tbhits 0 time 10393 pv b8c6 d2d4. info depth 19 seldepth 31 multipv 1 score cp -26 nodes 27092465 nps 2543893 tbhits 0 time 10650 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f8d6 b1c3 a7a6 b5c6 d7c6 d2d3 c8e6 c1e3 e8g8 h2h3 g8h8 a2a3 h7h6. info depth 19 seldepth 31 multipv 2 score cp -27 nodes 27092465 nps 2543893 tbhits 0 time 10650 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 b1c3 f8b4 f1d3 b8c6 e1g1 e8g8 h2h3 b4c3 b2c3 f6e4 c1b2 c8f5 c3c4. info depth 19 seldepth 31 multipv 3 score cp -37 nodes 27092465 nps 2543893 tbhits 0 time 10650 pv c7c5 g1f3 b8c6 f1b5 c6d4 f3d4 c5d4 e1g1 e7e6 c2c3 g8f6 e4e5 f6d5 d1g4 a7a6 b5d3 d7d6 e5d6 d4c3 d2c3. info depth 19 seldepth 31 multipv 4 score cp -43 nodes 27092465 nps 2543893 tbhits 0 time 10650 pv g8f6 e4e5 f6d5 c2c4 d5b6 g1f3 d7d6 b1c3 b8c6 e5d6 e7d6 d2d4 c8g4 b2b3 f8e7 f1e2 e8g8 h2h3 g4f5 e1g1 c6b4 g2g4 f5g6 d4d5. info depth 19 seldepth 31 multipv 5 score cp -53 nodes 27092465 nps 2543893 tbhits 0 time 10650 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 c8f5 d4e5 g8e7 f1e2 e8c8 e1g1 d5d1 a1d1 f5c2. info depth 20 seldepth 31 multipv 1 score cp -17 nodes 31499736 nps 2561787 tbhits 0 time 12296 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 f1e1 e4d6 f3e5 f8e7 b5f1 e8g8 b1c3 d6f5 f1c4 c6e5 e1e5 d7d6 e5e1 f5d4 d2d3. info depth 19 seldepth 31 multipv 2 score cp -27 nodes 31499736 nps 2561787 tbhits 0 time 12296 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 b1c3 f8b4 f1d3 b8c6 e1g1 e8g8 h2h3 b4c3 b2c3 f6e4 c1b2 c8f5 c3c4. info depth 19 seldepth 31 multipv 3 score cp -37 nodes 31499736 nps 2561787 tbhits 0 time 12296 pv c7c5 g1f3 b8c6 f1b5 c6d4 f3d4 c5d4 e1g1 e7e6 c2c3 g8f6 e4e5 f6d5 d1g4 a7a6 b5d3 d7d6 e5d6 d4c3 d2c3. info depth 19 seldepth 31 multipv 4 score cp -43 nodes 31499736 nps 2561787 tbhits 0 time 12296 pv g8f6 e4e5 f6d5 c2c4 d5b6 g1f3 d7d6 b1c3 b8c6 e5d6 e7d6 d2d4 c8g4 b2b3 f8e7 f1e2 e8g8 h2h3 g4f5 e1g1 c6b4 g2g4 f5g6 d4d5. info depth 19 seldepth 31 multipv 5 score cp -53 nodes 31499736 nps 2561787 tbhits 0 time 12296 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 c8f5 d4e5 g8e7 f1e2 e8c8 e1g1 d5d1 a1d1 f5c2. info depth 20 seldepth 31 multipv 1 score cp -17 nodes 34379222 nps 2561599 tbhits 0 time 13421 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 f1e1 e4d6 f3e5 f8e7 b5f1 e8g8 b1c3 d6f5 f1c4 c6e5 e1e5 d7d6 e5e1 f5d4 d2d3. info depth 20 seldepth 31 multipv 2 score cp -20 nodes 34379222 nps 2561599 tbhits 0 time 13421 pv e7e6 d2d4 d7d5 e4d5 e6d5 b1c3 f8b4 g1f3 g8f6 f1d3 c7c5 d1e2 c8e6 f3g5 c5d4 a2a3 b4c3 b2c3 d8e7 g5e6 f7e6 c1b2 d4c3 b2c3. info depth 19 seldepth 31 multipv 3 score cp -37 nodes 34379222 nps 2561599 tbhits 0 time 13421 pv c7c5 g1f3 b8c6 f1b5 c6d4 f3d4 c5d4 e1g1 e7e6 c2c3 g8f6 e4e5 f6d5 d1g4 a7a6 b5d3 d7d6 e5d6 d4c3 d2c3. info depth 19 seldepth 31 multipv 4 score cp -43 nodes 34379222 nps 2561599 tbhits 0 time 13421 pv g8f6 e4e5 f6d5 c2c4 d5b6 g1f3 d7d6 b1c3 b8c6 e5d6 e7d6 d2d4 c8g4 b2b3 f8e7 f1e2 e8g8 h2h3 g4f5 e1g1 c6b4 g2g4 f5g6 d4d5. info depth 19 seldepth 31 multipv 5 score cp -53 nodes 34379222 nps 2561599 tbhits 0 time 13421 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 c8f5 d4e5 g8e7 f1e2 e8c8 e1g1 d5d1 a1d1 f5c2. info depth 20 seldepth 31 multipv 1 score cp -17 nodes 37355923 nps 2526609 tbhits 0 time 14785 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 f1e1 e4d6 f3e5 f8e7 b5f1 e8g8 b1c3 d6f5 f1c4 c6e5 e1e5 d7d6 e5e1 f5d4 d2d3. info depth 20 seldepth 31 multipv 2 score cp -20 nodes 37355923 nps 2526609 tbhits 0 time 14785 pv e7e6 d2d4 d7d5 e4d5 e6d5 b1c3 f8b4 g1f3 g8f6 f1d3 c7c5 d1e2 c8e6 f3g5 c5d4 a2a3 b4c3 b2c3 d8e7 g5e6 f7e6 c1b2 d4c3 b2c3. info depth 20 seldepth 31 multipv 3 score cp -31 nodes 37355923 nps 2526609 tbhits 0 time 14785 pv b8c6 d2d4 d7d5 e4e5 c8f5 b1c3 e7e6 a2a3 g8e7 g1f3 f7f6 h2h3 h7h5 f1b5 a7a6 b5c6 e7c6 e5f6 g7f6 e1g1 b7b5. info depth 19 seldepth 31 multipv 4 score cp -37 nodes 37355923 nps 2526609 tbhits 0 time 14785 pv c7c5 g1f3 b8c6 f1b5 c6d4 b1c3 d4b5 c3b5 d7d6 e4e5 c8e6 d2d3 d6e5 f3e5 a7a6 b5c3 d8c7 e5f3 g8f6 e1g1 f6g4. info depth 19 seldepth 31 multipv 5 score cp -43 nodes 37355923 nps 2526609 tbhits 0 time 14785 pv g8f6 e4e5 f6d5 c2c4 d5b6 g1f3 d7d6 b1c3 b8c6 e5d6 e7d6 d2d4 c8g4 b2b3 f8e7 f1e2 e8g8 h2h3 g4f5 e1g1 c6b4 g2g4 f5g6 d4d5. info depth 20 seldepth 31 multipv 1 score cp -17 nodes 39099903 nps 2522574 tbhits 0 time 15500 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 f1e1 e4d6 f3e5 f8e7 b5f1 e8g8 b1c3 d6f5 f1c4 c6e5 e1e5 d7d6 e5e1 f5d4 d2d3. info depth 20 seldepth 31 multipv 2 score cp -20 nodes 39099903 nps 2522574 tbhits 0 time 15500 pv e7e6 d2d4 d7d5 e4d5 e6d5 b1c3 f8b4 g1f3 g8f6 f1d3 c7c5 d1e2 c8e6 f3g5 c5d4 a2a3 b4c3 b2c3 d8e7 g5e6 f7e6 c1b2 d4c3 b2c3. info depth 20 seldepth 31 multipv 3 score cp -31 nodes 39099903 nps 2522574 tbhits 0 time 15500 pv b8c6 d2d4 d7d5 e4e5 c8f5 b1c3 e7e6 a2a3 g8e7 g1f3 f7f6 h2h3 h7h5 f1b5 a7a6 b5c6 e7c6 e5f6 g7f6 e1g1 b7b5. info depth 20 seldepth 31 multipv 4 score cp -38 nodes 39099903 nps 2522574 tbhits 0 time 15500 pv c7c5 g1f3 b8c6 f1b5 c6d4 f3d4 c5d4 c2c3 g8f6 e4e5 f6d5 e1g1 e7e6 b5c4 f8e7 c3d4 d7d6 b1c3 e8g8 c3d5 e6d5 c4d3 d6e5. info depth 19 seldepth 31 multipv 5 score cp -43 nodes 39099903 nps 2522574 tbhits 0 time 15500 pv g8f6 e4e5 f6d5 c2c4 d5b6 g1f3 d7d6 b1c3 b8c6 e5d6 e7d6 d2d4 c8g4 b2b3 f8e7 f1e2 e8g8 h2h3 g4f5 e1g1 c6b4 g2g4 f5g6 d4d5. info depth 20 seldepth 31 multipv 1 score cp -17 nodes 41899450 nps 2484108 tbhits 0 time 16867 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 f1e1 e4d6 f3e5 f8e7 b5f1 e8g8 b1c3 d6f5 f1c4 c6e5 e1e5 d7d6 e5e1 f5d4 d2d3. info depth 20 seldepth 31 multipv 2 score cp -20 nodes 41899450 nps 2484108 tbhits 0 time 16867 pv e7e6 d2d4 d7d5 e4d5 e6d5 b1c3 f8b4 g1f3 g8f6 f1d3 c7c5 d1e2 c8e6 f3g5 c5d4 a2a3 b4c3 b2c3 d8e7 g5e6 f7e6 c1b2 d4c3 b2c3. info depth 20 seldepth 31 multipv 3 score cp -31 nodes 41899450 nps 2484108 tbhits 0 time 16867 pv b8c6 d2d4 d7d5 e4e5 c8f5 b1c3 e7e6 a2a3 g8e7 g1f3 f7f6 h2h3 h7h5 f1b5 a7a6 b5c6 e7c6 e5f6 g7f6 e1g1 b7b5. info depth 20 seldepth 31 multipv 4 score cp -38 nodes 41899450 nps 2484108 tbhits 0 time 16867 pv c7c5 g1f3 b8c6 f1b5 c6d4 f3d4 c5d4 c2c3 g8f6 e4e5 f6d5 e1g1 e7e6 b5c4 f8e7 c3d4 d7d6 b1c3 e8g8 c3d5 e6d5 c4d3 d6e5. info depth 20 seldepth 31 multipv 5 score cp -44 nodes 41899450 nps 2484108 tbhits 0 time 16867 pv g8f6 e4e5 f6d5 d2d4 d7d6 c2c4 d5b6 e5d6 e7d6 b1c3 b8c6 g1f3 c8g4 f1e2 f8e7 b2b3 e8g8 e1g1 f8e8 d4d5 e7f6 d5c6 f6c3 c1g5. info depth 21 seldepth 31 multipv 1 score cp -24 nodes 50917033 nps 2345542 tbhits 0 time 21708 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 d2d4 f8e7 d4d5 e4d6 b1c3 e5e4 f3d2 d6b5 c3b5 a7a6 b5c3 c6e5 d2e4 e8g8. info depth 20 seldepth 31 multipv 2 score cp -20 nodes 50917033 nps 2345542 tbhits 0 time 21708 pv e7e6 d2d4 d7d5 e4d5 e6d5 b1c3 f8b4 g1f3 g8f6 f1d3 c7c5 d1e2 c8e6 f3g5 c5d4 a2a3 b4c3 b2c3 d8e7 g5e6 f7e6 c1b2 d4c3 b2c3. info depth 20 seldepth 31 multipv 3 score cp -31 nodes 50917033 nps 2345542 tbhits 0 time 21708 pv b8c6 d2d4 d7d5 e4e5 c8f5 b1c3 e7e6 a2a3 g8e7 g1f3 f7f6 h2h3 h7h5 f1b5 a7a6 b5c6 e7c6 e5f6 g7f6 e1g1 b7b5. info depth 20 seldepth 31 multipv 4 score cp -38 nodes 50917033 nps 2345542 tbhits 0 time 21708 pv c7c5 g1f3 b8c6 f1b5 c6d4 f3d4 c5d4 c2c3 g8f6 e4e5 f6d5 e1g1 e7e6 b5c4 f8e7 c3d4 d7d6 b1c3 e8g8 c3d5 e6d5 c4d3 d6e5. info depth 20 seldepth 31 multipv 5 score cp -44 nodes 50917033 nps 2345542 tbhits 0 time 21708 pv g8f6 e4e5 f6d5 d2d4 d7d6 c2c4 d5b6 e5d6 e7d6 b1c3 b8c6 g1f3 c8g4 f1e2 f8e7 b2b3 e8g8 e1g1 f8e8 d4d5 e7f6 d5c6 f6c3 c1g5. info depth 21 seldepth 31 multipv 1 score cp -24 nodes 52277103 nps 2324873 tbhits 0 time 22486 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 d2d4 f8e7 d4d5 e4d6 b1c3 e5e4 f3d2 d6b5 c3b5 a7a6 b5c3 c6e5 d2e4 e8g8. info depth 21 seldepth 31 multipv 2 score cp -25 nodes 52277103 nps 2324873 tbhits 0 time 22486 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1e2 g8e7 e1g1 e8g8 a2a3 b4d6 c1e3 c8d7 c3b5 e7f5 b5d6 f5d6. info depth 20 seldepth 31 multipv 3 score cp -31 nodes 52277103 nps 2324873 tbhits 0 time 22486 pv b8c6 d2d4 d7d5 e4e5 c8f5 b1c3 e7e6 a2a3 g8e7 g1f3 f7f6 h2h3 h7h5 f1b5 a7a6 b5c6 e7c6 e5f6 g7f6 e1g1 b7b5. info depth 20 seldepth 31 multipv 4 score cp -38 nodes 52277103 nps 2324873 tbhits 0 time 22486 pv c7c5 g1f3 b8c6 f1b5 c6d4 f3d4 c5d4 c2c3 g8f6 e4e5 f6d5 e1g1 e7e6 b5c4 f8e7 c3d4 d7d6 b1c3 e8g8 c3d5 e6d5 c4d3 d6e5. info depth 20 seldepth 31 multipv 5 score cp -44 nodes 52277103 nps 2324873 tbhits 0 time 22486 pv g8f6 e4e5 f6d5 d2d4 d7d6 c2c4 d5b6 e5d6 e7d6 b1c3 b8c6 g1f3 c8g4 f1e2 f8e7 b2b3 e8g8 e1g1 f8e8 d4d5 e7f6 d5c6 f6c3 c1g5. info depth 21 seldepth 31 multipv 1 score cp -24 nodes 56453165 nps 2313938 tbhits 0 time 24397 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 d2d4 f8e7 d4d5 e4d6 b1c3 e5e4 f3d2 d6b5 c3b5 a7a6 b5c3 c6e5 d2e4 e8g8. info depth 21 seldepth 31 multipv 2 score cp -25 nodes 56453165 nps 2313938 tbhits 0 time 24397 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1e2 g8e7 e1g1 e8g8 a2a3 b4d6 c1e3 c8d7 c3b5 e7f5 b5d6 f5d6. info depth 21 seldepth 31 multipv 3 score cp -26 nodes 56453165 nps 2313938 tbhits 0 time 24397 pv b8c6 g1f3 e7e5 f1b5 g8f6 e1g1 f6e4 d2d4 f8e7 f1e1 e4d6 b5c6 d7c6 d4e5 d6f5 d1d8 e7d8 b1c3 c8e6 e1d1 d8e7 c1g5 e8g8 g5e7. info depth 20 seldepth 31 multipv 4 score cp -38 nodes 56453165 nps 2313938 tbhits 0 time 24397 pv c7c5 g1f3 b8c6 f1b5 c6d4 f3d4 c5d4 c2c3 g8f6 e4e5 f6d5 e1g1 e7e6 b5c4 f8e7 c3d4 d7d6 b1c3 e8g8 c3d5 e6d5 c4d3 d6e5. info depth 20 seldepth 31 multipv 5 score cp -44 nodes 56453165 nps 2313938 tbhits 0 time 24397 pv g8f6 e4e5 f6d5 d2d4 d7d6 c2c4 d5b6 e5d6 e7d6 b1c3 b8c6 g1f3 c8g4 f1e2 f8e7 b2b3 e8g8 e1g1 f8e8 d4d5 e7f6 d5c6 f6c3 c1g5. info depth 21 seldepth 31 multipv 1 score cp -24 nodes 67768775 nps 2348841 tbhits 0 time 28852 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 d2d4 f8e7 d4d5 e4d6 b1c3 e5e4 f3d2 d6b5 c3b5 a7a6 b5c3 c6e5 d2e4 e8g8. info depth 21 seldepth 31 multipv 2 score cp -25 nodes 67768775 nps 2348841 tbhits 0 time 28852 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1e2 g8e7 e1g1 e8g8 a2a3 b4d6 c1e3 c8d7 c3b5 e7f5 b5d6 f5d6. info depth 21 seldepth 31 multipv 3 score cp -26 nodes 67768775 nps 2348841 tbhits 0 time 28852 pv b8c6 g1f3 e7e5 f1b5 g8f6 e1g1 f6e4 d2d4 f8e7 f1e1 e4d6 b5c6 d7c6 d4e5 d6f5 d1d8 e7d8 b1c3 c8e6 e1d1 d8e7 c1g5 e8g8 g5e7. info depth 21 seldepth 31 multipv 4 score cp -30 nodes 67768775 nps 2348841 tbhits 0 time 28852 pv c7c5 g1f3 b8c6 f1b5 e7e5 e1g1 d7d6 c2c3 d8b6 b1a3 g8f6 d2d3 f8e7 b5a4 e8g8 a3c4 b6c7 c1g5 h7h6 g5f6 e7f6 a4c6 b7c6. info depth 20 seldepth 31 multipv 5 score cp -44 nodes 67768775 nps 2348841 tbhits 0 time 28852 pv g8f6 e4e5 f6d5 d2d4 d7d6 c2c4 d5b6 e5d6 e7d6 b1c3 b8c6 g1f3 c8g4 f1e2 f8e7 b2b3 e8g8 e1g1 f8e8 d4d5 e7f6 d5c6 f6c3 c1g5. info depth 21 seldepth 31 multipv 1 score cp -24 nodes 71430666 nps 2343679 tbhits 0 time 30478 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 d2d4 f8e7 d4d5 e4d6 b1c3 e5e4 f3d2 d6b5 c3b5 a7a6 b5c3 c6e5 d2e4 e8g8. info depth 21 seldepth 31 multipv 2 score cp -25 nodes 71430666 nps 2343679 tbhits 0 time 30478 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1e2 g8e7 e1g1 e8g8 a2a3 b4d6 c1e3 c8d7 c3b5 e7f5 b5d6 f5d6. info depth 21 seldepth 31 multipv 3 score cp -26 nodes 71430666 nps 2343679 tbhits 0 time 30478 pv b8c6 g1f3 e7e5 f1b5 g8f6 e1g1 f6e4 d2d4 f8e7 f1e1 e4d6 b5c6 d7c6 d4e5 d6f5 d1d8 e7d8 b1c3 c8e6 e1d1 d8e7 c1g5 e8g8 g5e7. info depth 21 seldepth 31 multipv 4 score cp -30 nodes 71430666 nps 2343679 tbhits 0 time 30478 pv c7c5 g1f3 b8c6 f1b5 e7e5 e1g1 d7d6 c2c3 d8b6 b1a3 g8f6 d2d3 f8e7 b5a4 e8g8 a3c4 b6c7 c1g5 h7h6 g5f6 e7f6 a4c6 b7c6. info depth 21 seldepth 31 multipv 5 score cp -46 nodes 71430666 nps 2343679 tbhits 0 time 30478 pv g8f6 e4e5 f6d5 d2d4 d7d6 c2c4 d5b6 g1f3 c8g4 e5d6 e7d6 b1c3 b8c6 f1e2 f8e7 e1g1 e8g8 d4d5 g4f3 e2f3 c6e5 b2b3. info depth 22 seldepth 31 multipv 1 score cp -18 nodes 75087656 nps 2348470 tbhits 0 time 31973 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 d2d4 f8e7 f1e1 e4d6 b5c6 d7c6 d4e5 d6f5 d1d8 e7d8 b1d2 d8e7 d2e4 c8e6 c1g5 e8c8 g5e7 f5e7 h2h3. info depth 21 seldepth 31 multipv 2 score cp -25 nodes 75087656 nps 2348470 tbhits 0 time 31973 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1e2 g8e7 e1g1 e8g8 a2a3 b4d6 c1e3 c8d7 c3b5 e7f5 b5d6 f5d6. info depth 21 seldepth 31 multipv 3 score cp -26 nodes 75087656 nps 2348470 tbhits 0 time 31973 pv b8c6 g1f3 e7e5 f1b5 g8f6 e1g1 f6e4 d2d4 f8e7 f1e1 e4d6 b5c6 d7c6 d4e5 d6f5 d1d8 e7d8 b1c3 c8e6 e1d1 d8e7 c1g5 e8g8 g5e7. info depth 21 seldepth 31 multipv 4 score cp -30 nodes 75087656 nps 2348470 tbhits 0 time 31973 pv c7c5 g1f3 b8c6 f1b5 e7e5 e1g1 d7d6 c2c3 d8b6 b1a3 g8f6 d2d3 f8e7 b5a4 e8g8 a3c4 b6c7 c1g5 h7h6 g5f6 e7f6 a4c6 b7c6. info depth 21 seldepth 31 multipv 5 score cp -46 nodes 75087656 nps 2348470 tbhits 0 time 31973 pv g8f6 e4e5 f6d5 d2d4 d7d6 c2c4 d5b6 g1f3 c8g4 e5d6 e7d6 b1c3 b8c6 f1e2 f8e7 e1g1 e8g8 d4d5 g4f3 e2f3 c6e5 b2b3. info depth 22 seldepth 31 multipv 1 score cp -18 nodes 81524576 nps 2369969 tbhits 0 time 34399 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 d2d4 f8e7 f1e1 e4d6 b5c6 d7c6 d4e5 d6f5 d1d8 e7d8 b1d2 d8e7 d2e4 c8e6 c1g5 e8c8 g5e7 f5e7 h2h3. info depth 22 seldepth 31 multipv 2 score cp -24 nodes 81524576 nps 2369969 tbhits 0 time 34399 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 e5e4 f3e5 c6e5 d4e5 g8e7 d1e2 c8f5 a1d1 d5c6 c3b4 e7d5 e2b5 d5b4 b5b4. info depth 21 seldepth 31 multipv 3 score cp -25 nodes 81524576 nps 2369969 tbhits 0 time 34399 pv e7e6 d2d4. info depth 21 seldepth 31 multipv 4 score cp -30 nodes 81524576 nps 2369969 tbhits 0 time 34399 pv c7c5 g1f3 b8c6 f1b5 e7e5 e1g1 d7d6 c2c3 d8b6 b1a3 g8f6 d2d3 f8e7 b5a4 e8g8 a3c4 b6c7 c1g5 h7h6 g5f6 e7f6 a4c6 b7c6. info depth 21 seldepth 31 multipv 5 score cp -46 nodes 81524576 nps 2369969 tbhits 0 time 34399 pv g8f6 e4e5 f6d5 d2d4 d7d6 c2c4 d5b6 g1f3 c8g4 e5d6 e7d6 b1c3 b8c6 f1e2 f8e7 e1g1 e8g8 d4d5 g4f3 e2f3 c6e5 b2b3. info depth 22 seldepth 31 multipv 1 score cp -18 nodes 83733693 nps 2371857 tbhits 0 time 35303 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 d2d4 f8e7 f1e1 e4d6 b5c6 d7c6 d4e5 d6f5 d1d8 e7d8 b1d2 d8e7 d2e4 c8e6 c1g5 e8c8 g5e7 f5e7 h2h3. info depth 22 seldepth 31 multipv 2 score cp -24 nodes 83733693 nps 2371857 tbhits 0 time 35303 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 e5e4 f3e5 c6e5 d4e5 g8e7 d1e2 c8f5 a1d1 d5c6 c3b4 e7d5 e2b5 d5b4 b5b4. info depth 22 seldepth 31 multipv 3 score cp -27 nodes 83733693 nps 2371857 tbhits 0 time 35303 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1e2 g8e7 e1g1 e8g8 e2f4 b7b6 f1e1 a7a6 a1b1 c8f5 a2a3 b4c3 b2c3 f5d3 c2d3. info depth 21 seldepth 31 multipv 4 score cp -30 nodes 83733693 nps 2371857 tbhits 0 time 35303 pv c7c5 g1f3 b8c6 f1b5 e7e5 e1g1 d7d6 c2c3 d8b6 b1a3 g8f6 d2d3 f8e7 b5a4 e8g8 a3c4 b6c7 c1g5 h7h6 g5f6 e7f6 a4c6 b7c6. info depth 21 seldepth 31 multipv 5 score cp -46 nodes 83733693 nps 2371857 tbhits 0 time 35303 pv g8f6 e4e5 f6d5 d2d4 d7d6 c2c4 d5b6 g1f3 c8g4 e5d6 e7d6 b1c3 b8c6 f1e2 f8e7 e1g1 e8g8 d4d5 g4f3 e2f3 c6e5 b2b3. info depth 22 seldepth 31 multipv 1 score cp -18 nodes 92619002 nps 2380584 tbhits 0 time 38906 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 d2d4 f8e7 f1e1 e4d6 b5c6 d7c6 d4e5 d6f5 d1d8 e7d8 b1d2 d8e7 d2e4 c8e6 c1g5 e8c8 g5e7 f5e7 h2h3. info depth 22 seldepth 31 multipv 2 score cp -24 nodes 92619002 nps 2380584 tbhits 0 time 38906 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 e5e4 f3e5 c6e5 d4e5 g8e7 d1e2 c8f5 a1d1 d5c6 c3b4 e7d5 e2b5 d5b4 b5b4. info depth 22 seldepth 31 multipv 3 score cp -27 nodes 92619002 nps 2380584 tbhits 0 time 38906 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1e2 g8e7 e1g1 e8g8 e2f4 b7b6 f1e1 a7a6 a1b1 c8f5 a2a3 b4c3 b2c3 f5d3 c2d3. info depth 22 seldepth 31 multipv 4 score cp -36 nodes 92619002 nps 2380584 tbhits 0 time 38906 pv c7c5 g1f3 b8c6 f1b5 e7e6 b1c3 g8e7 e1g1 a7a6 b5e2 d7d5 e4d5 e7d5 c3d5 e6d5 d2d4 c5d4 f3d4 f8d6 c1e3 e8g8 c2c3 c8d7. info depth 21 seldepth 31 multipv 5 score cp -46 nodes 92619002 nps 2380584 tbhits 0 time 38906 pv g8f6 e4e5 f6d5 d2d4 d7d6 c2c4 d5b6 g1f3 c8g4 e5d6 e7d6 b1c3 b8c6 f1e2 f8e7 e1g1 e8g8 d4d5 g4f3 e2f3 c6e5 b2b3. info depth 22 seldepth 31 multipv 1 score cp -18 nodes 96891793 nps 2384559 tbhits 0 time 40633 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 d2d4 f8e7 f1e1 e4d6 b5c6 d7c6 d4e5 d6f5 d1d8 e7d8 b1d2 d8e7 d2e4 c8e6 c1g5 e8c8 g5e7 f5e7 h2h3. info depth 22 seldepth 31 multipv 2 score cp -24 nodes 96891793 nps 2384559 tbhits 0 time 40633 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 e5e4 f3e5 c6e5 d4e5 g8e7 d1e2 c8f5 a1d1 d5c6 c3b4 e7d5 e2b5 d5b4 b5b4. info depth 22 seldepth 31 multipv 3 score cp -27 nodes 96891793 nps 2384559 tbhits 0 time 40633 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1e2 g8e7 e1g1 e8g8 e2f4 b7b6 f1e1 a7a6 a1b1 c8f5 a2a3 b4c3 b2c3 f5d3 c2d3. info depth 22 seldepth 31 multipv 4 score cp -36 nodes 96891793 nps 2384559 tbhits 0 time 40633 pv c7c5 g1f3 b8c6 f1b5 e7e6 b1c3 g8e7 e1g1 a7a6 b5e2 d7d5 e4d5 e7d5 c3d5 e6d5 d2d4 c5d4 f3d4 f8d6 c1e3 e8g8 c2c3 c8d7. info depth 22 seldepth 31 multipv 5 score cp -46 nodes 96891793 nps 2384559 tbhits 0 time 40633 pv g8f6 e4e5 f6d5 d2d4 d7d6 g1f3 c8f5 e5d6 e7d6 b1c3 d5c3 b2c3 b8d7 f1d3 f5d3 d1d3 f8e7 a1b1 d7b6 e1g1 e8g8 f1e1 f8e8. bestmove e7e5 ponder g1f3.
2 | rnbqkbnr/pppppppp/8/8/4P3/8/PPPP1PPP/RNBQKBNR b KQkq e3 0 1 info depth 1 seldepth 1 multipv 1 score cp 3 nodes 120 nps 60000 tbhits 0 time 2 pv d7d5. info depth 1 seldepth 1 multipv 2 score cp -6 nodes 120 nps 60000 tbhits 0 time 2 pv e7e5. info depth 1 seldepth 1 multipv 3 score cp -14 nodes 120 nps 60000 tbhits 0 time 2 pv g8f6. info depth 1 seldepth 1 multipv 4 score cp -18 nodes 120 nps 60000 tbhits 0 time 2 pv e7e6. info depth 1 seldepth 1 multipv 5 score cp -25 nodes 120 nps 60000 tbhits 0 time 2 pv b8c6. info depth 2 seldepth 3 multipv 1 score cp 47 nodes 351 nps 175500 tbhits 0 time 2 pv d7d5 f1b5 c7c6. info depth 2 seldepth 3 multipv 2 score cp -30 nodes 351 nps 175500 tbhits 0 time 2 pv e7e5 d2d3. info depth 2 seldepth 3 multipv 3 score cp -48 nodes 351 nps 175500 tbhits 0 time 2 pv e7e6 d2d3. info depth 2 seldepth 3 multipv 4 score cp -54 nodes 351 nps 175500 tbhits 0 time 2 pv b8c6 d2d3. info depth 2 seldepth 3 multipv 5 score cp -62 nodes 351 nps 175500 tbhits 0 time 2 pv g8f6 d2d3. info depth 3 seldepth 4 multipv 1 score cp 12 nodes 684 nps 342000 tbhits 0 time 2 pv b8c6 d2d3 e7e6. info depth 3 seldepth 4 multipv 2 score cp 2 nodes 684 nps 342000 tbhits 0 time 2 pv d7d5 d2d3 d5e4 d3e4 d8d1 e1d1. info depth 3 seldepth 4 multipv 3 score cp -5 nodes 684 nps 342000 tbhits 0 time 2 pv g8f6 d2d3 e7e6. info depth 3 seldepth 4 multipv 4 score cp -6 nodes 684 nps 342000 tbhits 0 time 2 pv e7e5 d2d3 d7d6. info depth 3 seldepth 4 multipv 5 score cp -40 nodes 684 nps 342000 tbhits 0 time 2 pv e7e6 d2d3 b7b6. info depth 4 seldepth 5 multipv 1 score cp 5 nodes 2528 nps 842666 tbhits 0 time 3 pv d7d5 d2d3 e7e6 a2a3 d5e4 d3e4. info depth 4 seldepth 5 multipv 2 score cp -92 nodes 2528 nps 842666 tbhits 0 time 3 pv b8c6 d2d4 e7e6 b1c3. info depth 4 seldepth 5 multipv 3 score cp -94 nodes 2528 nps 842666 tbhits 0 time 3 pv g8f6 b1c3 d7d6 d2d4. info depth 4 seldepth 5 multipv 4 score cp -97 nodes 2528 nps 842666 tbhits 0 time 3 pv e7e5 g1f3 d7d6 d2d4. info depth 4 seldepth 5 multipv 5 score cp -125 nodes 2528 nps 842666 tbhits 0 time 3 pv f7f5 e4f5 e7e6 d1h5 g7g6 f5g6. info depth 5 seldepth 5 multipv 1 score cp -22 nodes 6946 nps 771777 tbhits 0 time 9 pv e7e5 d2d4 b8c6 g1f3 g8f6. info depth 5 seldepth 5 multipv 2 score cp -29 nodes 6946 nps 771777 tbhits 0 time 9 pv b8c6 b1c3 g8f6 d2d4 d7d5. info depth 5 seldepth 5 multipv 3 score cp -43 nodes 6946 nps 771777 tbhits 0 time 9 pv e7e6 d2d4 b8c6 b1c3 g8f6. info depth 5 seldepth 5 multipv 4 score cp -55 nodes 6946 nps 771777 tbhits 0 time 9 pv c7c6 d2d4 d7d5 e4e5 e7e6. info depth 5 seldepth 5 multipv 5 score cp -82 upperbound nodes 6946 nps 771777 tbhits 0 time 9 pv d7d5 d2d4 a7a6 b1c3 e7e6. info depth 6 seldepth 7 multipv 1 score cp -43 nodes 13308 nps 782823 tbhits 0 time 17 pv d7d5 e4e5 d5d4 g1f3 b8c6 d2d3. info depth 6 seldepth 7 multipv 2 score cp -56 nodes 13308 nps 782823 tbhits 0 time 17 pv b8c6 d2d4 d7d5 e4e5 e7e6 g1f3. info depth 6 seldepth 7 multipv 3 score cp -56 nodes 13308 nps 782823 tbhits 0 time 17 pv e7e6 d2d4 b8c6 g1f3 d7d5 e4e5. info depth 6 seldepth 7 multipv 4 score cp -76 nodes 13308 nps 782823 tbhits 0 time 17 pv e7e5 d2d4 d7d5 d4e5 d5e4 d1d8 e8d8. info depth 6 seldepth 7 multipv 5 score cp -85 nodes 13308 nps 782823 tbhits 0 time 17 pv g8f6 g1f3 d7d6 b1c3 d6d5 e4e5. info depth 7 seldepth 7 multipv 1 score cp -22 nodes 20050 nps 742592 tbhits 0 time 27 pv e7e5 b1c3 b8c6 g1f3 f8c5 d2d3 g8f6. info depth 7 seldepth 7 multipv 2 score cp -37 nodes 20050 nps 742592 tbhits 0 time 27 pv d7d5 d2d4 d5e4 b1c3 e7e6 c3e4 g8f6. info depth 7 seldepth 7 multipv 3 score cp -37 nodes 20050 nps 742592 tbhits 0 time 27 pv e7e6 d2d4 d7d5 b1c3 d5e4 c3e4 g8f6. info depth 7 seldepth 7 multipv 4 score cp -47 nodes 20050 nps 742592 tbhits 0 time 27 pv g8f6 b1c3 d7d5 e4e5 f6g4 d2d4 b8c6. info depth 7 seldepth 7 multipv 5 score cp -47 nodes 20050 nps 742592 tbhits 0 time 27 pv b8c6 d2d4 e7e6 f1b5 g8f6 b1c3 d7d5. info depth 8 seldepth 10 multipv 1 score cp -44 nodes 37749 nps 838866 tbhits 0 time 45 pv d7d5 e4d5 d8d5 b1c3 d5e6 d1e2 g8f6 c3b5 e6e2 g1e2. info depth 8 seldepth 10 multipv 2 score cp -61 nodes 37749 nps 838866 tbhits 0 time 45 pv e7e5 b1c3 b8c6 g1f3 f8c5 f1b5 g8f6 e1g1. info depth 8 seldepth 10 multipv 3 score cp -66 nodes 37749 nps 838866 tbhits 0 time 45 pv e7e6 d2d4 d7d5 e4e5 g8e7 b1c3 b8c6 f1b5. info depth 8 seldepth 10 multipv 4 score cp -76 nodes 37749 nps 838866 tbhits 0 time 45 pv b8c6 d2d4 e7e6 g1f3 d7d5 b1c3 g8f6 e4e5. info depth 8 seldepth 10 multipv 5 score cp -85 nodes 37749 nps 838866 tbhits 0 time 45 pv g8f6 e4e5 f6d5 b1c3 e7e6 c3d5 e6d5 d2d4. info depth 9 seldepth 14 multipv 1 score cp -24 nodes 80326 nps 1056921 tbhits 0 time 76 pv d7d5 e4d5 g8f6 b1c3 f6d5 g1f3 e7e6 d2d4 b8c6. info depth 9 seldepth 14 multipv 2 score cp -37 nodes 80326 nps 1056921 tbhits 0 time 76 pv b8c6 d2d4 d7d5 e4e5 c8f5 g1f3 e7e6 f1b5 a7a6. info depth 9 seldepth 14 multipv 3 score cp -45 nodes 80326 nps 1056921 tbhits 0 time 76 pv e7e5 d2d4 e5d4 g1f3 b8c6 f3d4 c6d4 d1d4 g8f6. info depth 9 seldepth 14 multipv 4 score cp -48 nodes 80326 nps 1056921 tbhits 0 time 76 pv a7a6 d2d4 d7d5 e4d5 g8f6 b1c3 f6d5 g1f3 b8c6. info depth 9 seldepth 14 multipv 5 score cp -64 nodes 80326 nps 1056921 tbhits 0 time 76 pv e7e6 b1c3 a7a6 g1f3 d7d5 d2d4 b8c6 e4d5 e6d5. info depth 10 seldepth 14 multipv 1 score cp -23 nodes 149471 nps 1245591 tbhits 0 time 120 pv d7d5 e4d5 g8f6 b1c3 f6d5 g1f3 e7e6 d2d4 b8c6 a2a3 a7a6 d1e2. info depth 10 seldepth 14 multipv 2 score cp -51 nodes 149471 nps 1245591 tbhits 0 time 120 pv e7e5 g1f3 b8c6 d2d4 e5d4 f3d4 d7d5 b1c3 d5e4 d4c6. info depth 10 seldepth 14 multipv 3 score cp -53 nodes 149471 nps 1245591 tbhits 0 time 120 pv b8c6 d2d4 d7d5 b1c3 e7e6 e4d5 e6d5 d1e2 c8e6 g1f3 g8e7 c1g5. info depth 10 seldepth 14 multipv 4 score cp -53 nodes 149471 nps 1245591 tbhits 0 time 120 pv e7e6 g1f3 d7d5 e4d5 e6d5 d1e2 g8e7 d2d4 b8c6 b1c3 c8e6 c1g5. info depth 10 seldepth 14 multipv 5 score cp -67 nodes 149471 nps 1245591 tbhits 0 time 120 pv a7a6 g1f3 g8f6 b1c3 e7e5 a2a3 b8c6 d2d4 d7d6 d4d5. info depth 11 seldepth 15 multipv 1 score cp -34 nodes 406845 nps 1667397 tbhits 0 time 244 pv d7d5 e4d5 g8f6 b1c3 f6d5 g1f3 e7e6 f1e2 f8d6 d2d4 d5c3 b2c3 e8g8. info depth 11 seldepth 15 multipv 2 score cp -41 nodes 406845 nps 1667397 tbhits 0 time 244 pv e7e6 d2d4 d7d5 e4e5 c7c5 g1f3 g8e7 b1c3 b8d7 c1f4 d8a5 f1e2. info depth 11 seldepth 15 multipv 3 score cp -43 nodes 406845 nps 1667397 tbhits 0 time 244 pv e7e5 g1f3 b8c6 d2d4 e5d4 f3d4 d7d5 d4c6 b7c6 e4d5 g8e7. info depth 11 seldepth 15 multipv 4 score cp -43 nodes 406845 nps 1667397 tbhits 0 time 244 pv b8c6 g1f3 e7e5 d2d4 e5d4 f3d4 d7d5 d4c6 b7c6 e4d5 g8e7. info depth 11 seldepth 15 multipv 5 score cp -60 nodes 406845 nps 1667397 tbhits 0 time 244 pv d7d6 g1f3 g8f6 b1c3 d6d5 e4e5 f6e4 d2d4 b8c6 f1b5 a7a6. info depth 12 seldepth 16 multipv 1 score cp -40 nodes 734478 nps 1845422 tbhits 0 time 398 pv e7e5 g1f3 b8c6 b1c3 g8f6 f1b5 c6d4 e1g1 d4b5 c3b5 a7a6 b5c3. info depth 12 seldepth 16 multipv 2 score cp -41 nodes 734478 nps 1845422 tbhits 0 time 398 pv d7d5 e4d5 g8f6 d2d4 e7e6 d5e6 c8e6 b1c3 b8c6 g1e2 e6c4 c1e3 a7a6. info depth 12 seldepth 16 multipv 3 score cp -53 nodes 734478 nps 1845422 tbhits 0 time 398 pv e7e6 d2d4 d7d5 b1c3 d5e4 c3e4 g8f6 c1g5 b8c6 g1f3 a7a6 a2a3 h7h6 g5f6 g7f6. info depth 12 seldepth 16 multipv 4 score cp -54 nodes 734478 nps 1845422 tbhits 0 time 398 pv b8c6 d2d4 d7d5 e4e5 c8f5 f1b5 e7e6 b5c6 b7c6 g1f3 g8e7 e1g1 h7h6 b1c3. info depth 12 seldepth 16 multipv 5 score cp -58 nodes 734478 nps 1845422 tbhits 0 time 398 pv d7d6 g1f3 g8f6 b1c3 e7e5 h2h3 a7a6 d2d3 b8c6 d3d4 e5d4 f3d4 c6d4. info depth 13 seldepth 18 multipv 1 score cp -23 nodes 1346709 nps 2071860 tbhits 0 time 650 pv e7e5 b1c3 g8f6 d2d4 e5d4 d1d4 b8c6 d4e3 d7d6 g1f3 a7a6 f3d4 c8g4 d4c6. info depth 13 seldepth 18 multipv 2 score cp -43 nodes 1346709 nps 2071860 tbhits 0 time 650 pv c7c5 b1c3 b8c6 g1f3 g8f6 f1b5 c6d4 a2a4 d4b5 a4b5 d7d5 e4e5 f6e4 d2d3 e4c3. info depth 13 seldepth 18 multipv 3 score cp -45 nodes 1346709 nps 2071860 tbhits 0 time 650 pv d7d5 e4d5 e7e6 d5e6 c8e6 d2d4 b8c6 g1f3 g8f6 f1b5 a7a6 b5c6 b7c6 e1g1. info depth 13 seldepth 18 multipv 4 score cp -54 nodes 1346709 nps 2071860 tbhits 0 time 650 pv b8c6 d2d4 d7d5 e4e5 c8f5 f1b5 e7e6 b5c6 b7c6 g1f3 g8e7 e1g1 h7h6 b1c3. info depth 13 seldepth 18 multipv 5 score cp -54 nodes 1346709 nps 2071860 tbhits 0 time 650 pv e7e6 d2d4 d7d5 b1c3 d5e4 c3e4 f8e7 g1f3 g8f6 e4f6 e7f6 c2c3 b8c6 f1c4 e8g8 e1g1. info depth 14 seldepth 20 multipv 1 score cp -19 nodes 2077312 nps 2130576 tbhits 0 time 975 pv e7e5 b1c3 g8f6 g1f3 b8c6 a2a3 d7d5 e4d5 f6d5 f1b5 d5c3 b2c3 d8e7 d1e2 e5e4 f3d4. info depth 14 seldepth 20 multipv 2 score cp -39 nodes 2077312 nps 2130576 tbhits 0 time 975 pv e7e6 d2d4 d7d5 b1c3 d5e4 c3e4 f8e7 g1f3 g8f6 e4f6 e7f6 c2c3 b8c6 f1c4 e8g8 e1g1. info depth 14 seldepth 20 multipv 3 score cp -46 nodes 2077312 nps 2130576 tbhits 0 time 975 pv c7c5 b1c3 b8c6 g1f3 g8f6 f1b5 c6d4 b5e2 d7d5 e4d5 f6d5 e1g1 d5b4 f3d4 c5d4 e2b5 c8d7. info depth 14 seldepth 20 multipv 4 score cp -48 nodes 2077312 nps 2130576 tbhits 0 time 975 pv d7d5 e4d5 c7c6 g1f3 c6d5 b1c3 e7e6 d2d4 g8f6 f1d3 f8e7 e1g1 e8g8 c1f4 b8c6. info depth 14 seldepth 20 multipv 5 score cp -48 nodes 2077312 nps 2130576 tbhits 0 time 975 pv b8c6 d2d4 d7d5 e4e5 a7a6 g1f3 c8f5 f1d3 f5e4 c1e3 e7e6 e1g1 e4f3 d1f3 d8h4. info depth 15 seldepth 21 multipv 1 score cp -27 nodes 3428805 nps 2133668 tbhits 0 time 1607 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1b5 f8c5 d2d3 e8g8 e1g1 d7d6 b5c6 b7c6 c1e3 c5e3 f2e3. info depth 15 seldepth 21 multipv 2 score cp -42 nodes 3428805 nps 2133668 tbhits 0 time 1607 pv e7e6 d2d4 d7d5 b1c3 b8c6 e4e5 f8b4 g1f3 g8e7 f1d3 h7h6 e1g1 e8g8 f1e1 b4c3 b2c3. info depth 15 seldepth 21 multipv 3 score cp -45 nodes 3428805 nps 2133668 tbhits 0 time 1607 pv c7c5 b1c3 b8c6 f1b5 g8f6 g1f3 c6d4 e4e5 d4b5 c3b5 f6e4 e1g1 a7a6 b5c3 d7d5 e5d6 e4c3. info depth 15 seldepth 21 multipv 4 score cp -45 nodes 3428805 nps 2133668 tbhits 0 time 1607 pv b8c6 d2d4 d7d5 e4e5 a7a6 g1f3 c8g4 f1e2 e7e6 e1g1 f7f6 b1c3 g4f3 e2f3 f6e5 f1e1 c6d4. info depth 15 seldepth 21 multipv 5 score cp -53 nodes 3428805 nps 2133668 tbhits 0 time 1607 pv d7d5 e4d5 e7e6 d5e6 c8e6 d2d4 b8c6 g1f3 g8f6 f1b5 d8d5 b5e2 d5a5 b1d2 f8d6 e1g1 e8g8 a2a3 g8h8. info depth 16 seldepth 22 multipv 1 score cp -28 nodes 5705888 nps 2224517 tbhits 0 time 2565 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1f3 g8e7 e1g1 e8g8 c1f4 b4c3 b2c3 c8f5. info depth 16 seldepth 22 multipv 2 score cp -30 nodes 5705888 nps 2224517 tbhits 0 time 2565 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1b5 f8c5 d2d3 e8g8 c1g5 d7d6 e1g1 c8g4 b5c6 b7c6 h2h3 g4f3 d1f3. info depth 16 seldepth 22 multipv 3 score cp -32 nodes 5705888 nps 2224517 tbhits 0 time 2565 pv b8c6 d2d4 d7d5 e4e5 c8f5 f1b5 e7e6 b5c6 b7c6 g1f3 h7h6 e1g1 c6c5 b1c3 c5d4 f3d4 g8e7 a2a3 c7c5 d4f5. info depth 16 seldepth 22 multipv 4 score cp -48 nodes 5705888 nps 2224517 tbhits 0 time 2565 pv c7c5 b1c3 b8c6 g1f3 g8f6 f1b5 e7e5 b5c6 d7c6 f3e5 f8d6 e5f3 e8g8 e1g1 c8g4 d2d3. info depth 16 seldepth 22 multipv 5 score cp -54 nodes 5705888 nps 2224517 tbhits 0 time 2565 pv d7d5 e4d5 e7e6 d5e6 c8e6 d2d4 b8c6 g1f3 g8f6 f1b5 f8e7 f3e5 e6d5 b5c6 d5c6 e1g1 d8d5 e5c6 d5c6. info depth 17 seldepth 26 multipv 1 score cp -23 nodes 7288478 nps 2250919 tbhits 0 time 3238 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1c4 f8e7 d2d4 e5d4 f3d4 e8g8 e1g1 c6e5 c4b3 d7d6 c1d2 c7c5 d4f5 c8f5. info depth 17 seldepth 26 multipv 2 score cp -28 nodes 7288478 nps 2250919 tbhits 0 time 3238 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1f3 d8e7 c1e3 g8f6 e1g1 e8g8 f1e1 b4c3 b2c3 c8g4. info depth 16 seldepth 26 multipv 3 score cp -32 nodes 7288478 nps 2250919 tbhits 0 time 3238 pv b8c6 d2d4 d7d5 e4e5 c8f5 f1b5 e7e6 b5c6 b7c6 g1f3 h7h6 e1g1 c6c5 b1c3 c5d4 f3d4 g8e7 a2a3 c7c5 d4f5. info depth 16 seldepth 26 multipv 4 score cp -48 nodes 7288478 nps 2250919 tbhits 0 time 3238 pv c7c5 b1c3 b8c6 g1f3 g8f6 f1b5 e7e5 b5c6 d7c6 f3e5 f8d6 e5f3 e8g8 e1g1 c8g4 d2d3. info depth 16 seldepth 26 multipv 5 score cp -54 nodes 7288478 nps 2250919 tbhits 0 time 3238 pv d7d5 e4d5 e7e6 d5e6 c8e6 d2d4 b8c6 g1f3 g8f6 f1b5 f8e7 f3e5 e6d5 b5c6 d5c6 e1g1 d8d5 e5c6 d5c6. info depth 17 seldepth 26 multipv 1 score cp -23 nodes 8218070 nps 2287244 tbhits 0 time 3593 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1c4 f8e7 d2d4 e5d4 f3d4 e8g8 e1g1 c6e5 c4b3 d7d6 c1d2 c7c5 d4f5 c8f5. info depth 17 seldepth 26 multipv 2 score cp -28 nodes 8218070 nps 2287244 tbhits 0 time 3593 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1f3 d8e7 c1e3 g8f6 e1g1 e8g8 f1e1 b4c3 b2c3 c8g4. info depth 17 seldepth 26 multipv 3 score cp -38 nodes 8218070 nps 2287244 tbhits 0 time 3593 pv b8c6 d2d4 d7d5 e4e5 c8f5 g1f3 e7e6 f1d3 f5e4 d3e2 g8e7 e1g1 e7f5 c2c3 a7a6 b1a3 h7h6. info depth 16 seldepth 26 multipv 4 score cp -48 nodes 8218070 nps 2287244 tbhits 0 time 3593 pv c7c5 b1c3 b8c6 g1f3 g8f6 f1b5 e7e5 b5c6 d7c6 f3e5 f8d6 e5f3 e8g8 e1g1 c8g4 d2d3. info depth 16 seldepth 26 multipv 5 score cp -54 nodes 8218070 nps 2287244 tbhits 0 time 3593 pv d7d5 e4d5 e7e6 d5e6 c8e6 d2d4 b8c6 g1f3 g8f6 f1b5 f8e7 f3e5 e6d5 b5c6 d5c6 e1g1 d8d5 e5c6 d5c6. info depth 17 seldepth 26 multipv 1 score cp -23 nodes 8368964 nps 2284729 tbhits 0 time 3663 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1c4 f8e7 d2d4 e5d4 f3d4 e8g8 e1g1 c6e5 c4b3 d7d6 c1d2 c7c5 d4f5 c8f5. info depth 17 seldepth 26 multipv 2 score cp -28 nodes 8368964 nps 2284729 tbhits 0 time 3663 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1f3 d8e7 c1e3 g8f6 e1g1 e8g8 f1e1 b4c3 b2c3 c8g4. info depth 17 seldepth 26 multipv 3 score cp -38 nodes 8368964 nps 2284729 tbhits 0 time 3663 pv b8c6 d2d4 d7d5 e4e5 c8f5 g1f3 e7e6 f1d3 f5e4 d3e2 g8e7 e1g1 e7f5 c2c3 a7a6 b1a3 h7h6. info depth 17 seldepth 26 multipv 4 score cp -48 nodes 8368964 nps 2284729 tbhits 0 time 3663 pv c7c5 b1c3 b8c6 g1f3 g8f6 f1b5 e7e5 b5c6 d7c6 f3e5 f8d6 e5f3 e8g8 e1g1 c8g4 d2d3 a7a6 c1d2. info depth 16 seldepth 26 multipv 5 score cp -54 nodes 8368964 nps 2284729 tbhits 0 time 3663 pv d7d5 e4d5 e7e6 d5e6 c8e6 d2d4 b8c6 g1f3 g8f6 f1b5 f8e7 f3e5 e6d5 b5c6 d5c6 e1g1 d8d5 e5c6 d5c6. info depth 17 seldepth 26 multipv 1 score cp -23 nodes 11991808 nps 2416241 tbhits 0 time 4963 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1c4 f8e7 d2d4 e5d4 f3d4 e8g8 e1g1 c6e5 c4b3 d7d6 c1d2 c7c5 d4f5 c8f5. info depth 17 seldepth 26 multipv 2 score cp -28 nodes 11991808 nps 2416241 tbhits 0 time 4963 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1f3 d8e7 c1e3 g8f6 e1g1 e8g8 f1e1 b4c3 b2c3 c8g4. info depth 17 seldepth 26 multipv 3 score cp -38 nodes 11991808 nps 2416241 tbhits 0 time 4963 pv b8c6 d2d4 d7d5 e4e5 c8f5 g1f3 e7e6 f1d3 f5e4 d3e2 g8e7 e1g1 e7f5 c2c3 a7a6 b1a3 h7h6. info depth 17 seldepth 26 multipv 4 score cp -48 nodes 11991808 nps 2416241 tbhits 0 time 4963 pv c7c5 b1c3 b8c6 g1f3 g8f6 f1b5 e7e5 b5c6 d7c6 f3e5 f8d6 e5f3 e8g8 e1g1 c8g4 d2d3 a7a6 c1d2. info depth 17 seldepth 26 multipv 5 score cp -48 nodes 11991808 nps 2416241 tbhits 0 time 4963 pv a7a6 d2d4 e7e6 g1f3 d7d5 b1d2 c7c5 d4c5 f8c5 d2b3 c5a7 e4d5 g8f6 f1d3 e8g8 e1g1 e6d5. info depth 18 seldepth 26 multipv 1 score cp -21 nodes 13547540 nps 2423964 tbhits 0 time 5589 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1b5 f8b4 e1g1 e8g8 d2d3 b4c3 b2c3 d7d6 b5c6 b7c6 h2h3 c8e6 c1g5. info depth 17 seldepth 26 multipv 2 score cp -28 nodes 13547540 nps 2423964 tbhits 0 time 5589 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1f3 d8e7 c1e3 g8f6 e1g1 e8g8 f1e1 b4c3 b2c3 c8g4. info depth 17 seldepth 26 multipv 3 score cp -38 nodes 13547540 nps 2423964 tbhits 0 time 5589 pv b8c6 d2d4 d7d5 e4e5 c8f5 g1f3 e7e6 f1d3 f5e4 d3e2 g8e7 e1g1 e7f5 c2c3 a7a6 b1a3 h7h6. info depth 17 seldepth 26 multipv 4 score cp -48 nodes 13547540 nps 2423964 tbhits 0 time 5589 pv c7c5 b1c3 b8c6 g1f3 g8f6 f1b5 e7e5 b5c6 d7c6 f3e5 f8d6 e5f3 e8g8 e1g1 c8g4 d2d3 a7a6 c1d2. info depth 17 seldepth 26 multipv 5 score cp -48 nodes 13547540 nps 2423964 tbhits 0 time 5589 pv a7a6 d2d4 e7e6 g1f3 d7d5 b1d2 c7c5 d4c5 f8c5 d2b3 c5a7 e4d5 g8f6 f1d3 e8g8 e1g1 e6d5. info depth 18 seldepth 26 multipv 1 score cp -20 nodes 15122775 nps 2435229 tbhits 0 time 6210 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 a2a3 b4c3 b2c3 g8f6 d1e2 d8e7 a1b1 a7a6 e2e7 c6e7 g1e2 e8g8. info depth 18 seldepth 26 multipv 2 score cp -21 nodes 15122775 nps 2435229 tbhits 0 time 6210 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1b5 f8b4 e1g1 e8g8 d2d3 b4c3 b2c3 d7d6 b5c6 b7c6 h2h3 c8e6 c1g5. info depth 17 seldepth 26 multipv 3 score cp -38 nodes 15122775 nps 2435229 tbhits 0 time 6210 pv b8c6 d2d4 d7d5 e4e5 c8f5 g1f3 e7e6 f1d3 f5e4 d3e2 g8e7 e1g1 e7f5 c2c3 a7a6 b1a3 h7h6. info depth 17 seldepth 26 multipv 4 score cp -48 nodes 15122775 nps 2435229 tbhits 0 time 6210 pv c7c5 b1c3 b8c6 g1f3 g8f6 f1b5 e7e5 b5c6 d7c6 f3e5 f8d6 e5f3 e8g8 e1g1 c8g4 d2d3 a7a6 c1d2. info depth 17 seldepth 26 multipv 5 score cp -48 nodes 15122775 nps 2435229 tbhits 0 time 6210 pv a7a6 d2d4 e7e6 g1f3 d7d5 b1d2 c7c5 d4c5 f8c5 d2b3 c5a7 e4d5 g8f6 f1d3 e8g8 e1g1 e6d5. info depth 18 seldepth 26 multipv 1 score cp -20 nodes 16588756 nps 2419596 tbhits 0 time 6856 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 a2a3 b4c3 b2c3 g8f6 d1e2 d8e7 a1b1 a7a6 e2e7 c6e7 g1e2 e8g8. info depth 18 seldepth 26 multipv 2 score cp -21 nodes 16588756 nps 2419596 tbhits 0 time 6856 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1b5 f8b4 e1g1 e8g8 d2d3 b4c3 b2c3 d7d6 b5c6 b7c6 h2h3 c8e6 c1g5. info depth 18 seldepth 26 multipv 3 score cp -29 nodes 16588756 nps 2419596 tbhits 0 time 6856 pv b8c6 d2d4 d7d5 e4e5 c8f5 g1f3 e7e6 f1e2 g8e7 e1g1 e7g6 b1c3 f8e7 h2h3 c6b4 e2b5 c7c6 b5a4 d8a5. info depth 17 seldepth 26 multipv 4 score cp -48 nodes 16588756 nps 2419596 tbhits 0 time 6856 pv c7c5 b1c3 b8c6 g1f3 g8f6 f1b5 e7e5 b5c6 d7c6 f3e5 f8d6 e5f3 e8g8 e1g1 c8g4 d2d3 a7a6 c1d2. info depth 17 seldepth 26 multipv 5 score cp -48 nodes 16588756 nps 2419596 tbhits 0 time 6856 pv a7a6 d2d4 e7e6 g1f3 d7d5 b1d2 c7c5 d4c5 f8c5 d2b3 c5a7 e4d5 g8f6 f1d3 e8g8 e1g1 e6d5. info depth 18 seldepth 26 multipv 1 score cp -20 nodes 18775727 nps 2387554 tbhits 0 time 7864 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 a2a3 b4c3 b2c3 g8f6 d1e2 d8e7 a1b1 a7a6 e2e7 c6e7 g1e2 e8g8. info depth 18 seldepth 26 multipv 2 score cp -21 nodes 18775727 nps 2387554 tbhits 0 time 7864 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1b5 f8b4 e1g1 e8g8 d2d3 b4c3 b2c3 d7d6 b5c6 b7c6 h2h3 c8e6 c1g5. info depth 18 seldepth 26 multipv 3 score cp -26 nodes 18775727 nps 2387554 tbhits 0 time 7864 pv c7c5 b1c3 b8c6 f1b5 e7e5 d2d3 a7a6 b5c6 d7c6 f2f4 e5f4 c1f4 g8f6 g1e2 f8e7 b2b3 c8g4 e1g1 e8g8 h2h3 d8d4 g1h1. info depth 18 seldepth 26 multipv 4 score cp -29 nodes 18775727 nps 2387554 tbhits 0 time 7864 pv b8c6 d2d4 d7d5 e4e5 c8f5 g1f3 e7e6 f1e2 g8e7 e1g1 e7g6 b1c3 f8e7 h2h3 c6b4 e2b5 c7c6 b5a4 d8a5. info depth 17 seldepth 26 multipv 5 score cp -48 nodes 18775727 nps 2387554 tbhits 0 time 7864 pv a7a6 d2d4 e7e6 g1f3 d7d5 b1d2 c7c5 d4c5 f8c5 d2b3 c5a7 e4d5 g8f6 f1d3 e8g8 e1g1 e6d5. info depth 18 seldepth 26 multipv 1 score cp -20 nodes 20271884 nps 2373756 tbhits 0 time 8540 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 a2a3 b4c3 b2c3 g8f6 d1e2 d8e7 a1b1 a7a6 e2e7 c6e7 g1e2 e8g8. info depth 18 seldepth 26 multipv 2 score cp -21 nodes 20271884 nps 2373756 tbhits 0 time 8540 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1b5 f8b4 e1g1 e8g8 d2d3 b4c3 b2c3 d7d6 b5c6 b7c6 h2h3 c8e6 c1g5. info depth 18 seldepth 26 multipv 3 score cp -26 nodes 20271884 nps 2373756 tbhits 0 time 8540 pv c7c5 b1c3 b8c6 f1b5 e7e5 d2d3 a7a6 b5c6 d7c6 f2f4 e5f4 c1f4 g8f6 g1e2 f8e7 b2b3 c8g4 e1g1 e8g8 h2h3 d8d4 g1h1. info depth 18 seldepth 26 multipv 4 score cp -29 nodes 20271884 nps 2373756 tbhits 0 time 8540 pv b8c6 d2d4 d7d5 e4e5 c8f5 g1f3 e7e6 f1e2 g8e7 e1g1 e7g6 b1c3 f8e7 h2h3 c6b4 e2b5 c7c6 b5a4 d8a5. info depth 18 seldepth 26 multipv 5 score cp -47 nodes 20271884 nps 2373756 tbhits 0 time 8540 pv g8f6 e4e5 f6d5 g1f3 d7d6 d2d4 c8f5 b1c3 d6e5 f3e5 e7e6 f1d3 f5d3 d1d3 b8c6 e5c6 b7c6 a2a3. info depth 19 seldepth 26 multipv 1 score cp -15 nodes 21789236 nps 2388908 tbhits 0 time 9121 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1b5 f8b4 c3d5 b4c5 d5f6 d8f6 c2c3 a7a6 b5c6 d7c6 d2d4 e5d4 c3d4 c5b4 c1d2 b4d2 d1d2 e8g8. info depth 18 seldepth 26 multipv 2 score cp -20 nodes 21789236 nps 2388908 tbhits 0 time 9121 pv e7e6 d2d4. info depth 18 seldepth 26 multipv 3 score cp -26 nodes 21789236 nps 2388908 tbhits 0 time 9121 pv c7c5 b1c3 b8c6 f1b5 e7e5 d2d3 a7a6 b5c6 d7c6 f2f4 e5f4 c1f4 g8f6 g1e2 f8e7 b2b3 c8g4 e1g1 e8g8 h2h3 d8d4 g1h1. info depth 18 seldepth 26 multipv 4 score cp -29 nodes 21789236 nps 2388908 tbhits 0 time 9121 pv b8c6 d2d4 d7d5 e4e5 c8f5 g1f3 e7e6 f1e2 g8e7 e1g1 e7g6 b1c3 f8e7 h2h3 c6b4 e2b5 c7c6 b5a4 d8a5. info depth 18 seldepth 26 multipv 5 score cp -47 nodes 21789236 nps 2388908 tbhits 0 time 9121 pv g8f6 e4e5 f6d5 g1f3 d7d6 d2d4 c8f5 b1c3 d6e5 f3e5 e7e6 f1d3 f5d3 d1d3 b8c6 e5c6 b7c6 a2a3. info depth 19 seldepth 26 multipv 1 score cp -15 nodes 23866338 nps 2400557 tbhits 0 time 9942 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1b5 f8b4 c3d5 b4c5 d5f6 d8f6 c2c3 a7a6 b5c6 d7c6 d2d4 e5d4 c3d4 c5b4 c1d2 b4d2 d1d2 e8g8. info depth 19 seldepth 26 multipv 2 score cp -22 nodes 23866338 nps 2400557 tbhits 0 time 9942 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1f3 g8f6 e1g1 e8g8 a2a3 b4c3 b2c3 a7a6 f1e1 h7h6 c1f4 c8g4. info depth 18 seldepth 26 multipv 3 score cp -26 nodes 23866338 nps 2400557 tbhits 0 time 9942 pv c7c5 b1c3 b8c6 f1b5 e7e5 d2d3 a7a6 b5c6 d7c6 f2f4 e5f4 c1f4 g8f6 g1e2 f8e7 b2b3 c8g4 e1g1 e8g8 h2h3 d8d4 g1h1. info depth 18 seldepth 26 multipv 4 score cp -29 nodes 23866338 nps 2400557 tbhits 0 time 9942 pv b8c6 d2d4 d7d5 e4e5 c8f5 g1f3 e7e6 f1e2 g8e7 e1g1 e7g6 b1c3 f8e7 h2h3 c6b4 e2b5 c7c6 b5a4 d8a5. info depth 18 seldepth 26 multipv 5 score cp -47 nodes 23866338 nps 2400557 tbhits 0 time 9942 pv g8f6 e4e5 f6d5 g1f3 d7d6 d2d4 c8f5 b1c3 d6e5 f3e5 e7e6 f1d3 f5d3 d1d3 b8c6 e5c6 b7c6 a2a3. info depth 19 seldepth 26 multipv 1 score cp -15 nodes 24207182 nps 2403175 tbhits 0 time 10073 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1b5 f8b4 c3d5 b4c5 d5f6 d8f6 c2c3 a7a6 b5c6 d7c6 d2d4 e5d4 c3d4 c5b4 c1d2 b4d2 d1d2 e8g8. info depth 19 seldepth 26 multipv 2 score cp -22 nodes 24207182 nps 2403175 tbhits 0 time 10073 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1f3 g8f6 e1g1 e8g8 a2a3 b4c3 b2c3 a7a6 f1e1 h7h6 c1f4 c8g4. info depth 19 seldepth 26 multipv 3 score cp -29 nodes 24207182 nps 2403175 tbhits 0 time 10073 pv c7c5 b1c3 b8c6 f1b5 e7e5 d2d3 a7a6 b5c6 d7c6 f2f4 e5f4 c1f4 g8f6 d1d2 f8e7 g1f3 e8g8 e1g1 c8g4. info depth 18 seldepth 26 multipv 4 score cp -29 nodes 24207182 nps 2403175 tbhits 0 time 10073 pv b8c6 d2d4 d7d5 e4e5 c8f5 g1f3 e7e6 f1e2 g8e7 e1g1 e7g6 b1c3 f8e7 h2h3 c6b4 e2b5 c7c6 b5a4 d8a5. info depth 18 seldepth 26 multipv 5 score cp -47 nodes 24207182 nps 2403175 tbhits 0 time 10073 pv g8f6 e4e5 f6d5 g1f3 d7d6 d2d4 c8f5 b1c3 d6e5 f3e5 e7e6 f1d3 f5d3 d1d3 b8c6 e5c6 b7c6 a2a3. info depth 19 seldepth 26 multipv 1 score cp -15 nodes 24545332 nps 2403342 tbhits 0 time 10213 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1b5 f8b4 c3d5 b4c5 d5f6 d8f6 c2c3 a7a6 b5c6 d7c6 d2d4 e5d4 c3d4 c5b4 c1d2 b4d2 d1d2 e8g8. info depth 19 seldepth 26 multipv 2 score cp -22 nodes 24545332 nps 2403342 tbhits 0 time 10213 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1f3 g8f6 e1g1 e8g8 a2a3 b4c3 b2c3 a7a6 f1e1 h7h6 c1f4 c8g4. info depth 19 seldepth 26 multipv 3 score cp -29 nodes 24545332 nps 2403342 tbhits 0 time 10213 pv c7c5 b1c3 b8c6 f1b5 e7e5 d2d3 a7a6 b5c6 d7c6 f2f4 e5f4 c1f4 g8f6 d1d2 f8e7 g1f3 e8g8 e1g1 c8g4. info depth 19 seldepth 26 multipv 4 score cp -32 nodes 24545332 nps 2403342 tbhits 0 time 10213 pv b8c6 d2d4 d7d5 e4e5 c8f5 g1f3 e7e6 f1e2 g8e7 e1g1 e7g6 b1c3 f8e7 h2h3 c6b4 e2b5 c7c6 b5a4 g6h4 f3h4 e7h4. info depth 18 seldepth 26 multipv 5 score cp -47 nodes 24545332 nps 2403342 tbhits 0 time 10213 pv g8f6 e4e5 f6d5 g1f3 d7d6 d2d4 c8f5 b1c3 d6e5 f3e5 e7e6 f1d3 f5d3 d1d3 b8c6 e5c6 b7c6 a2a3. info depth 19 seldepth 31 multipv 1 score cp -15 nodes 27905645 nps 2432500 tbhits 0 time 11472 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1b5 f8b4 c3d5 b4c5 d5f6 d8f6 c2c3 a7a6 b5c6 d7c6 d2d4 e5d4 c3d4 c5b4 c1d2 b4d2 d1d2 e8g8. info depth 19 seldepth 31 multipv 2 score cp -22 nodes 27905645 nps 2432500 tbhits 0 time 11472 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1f3 g8f6 e1g1 e8g8 a2a3 b4c3 b2c3 a7a6 f1e1 h7h6 c1f4 c8g4. info depth 19 seldepth 31 multipv 3 score cp -29 nodes 27905645 nps 2432500 tbhits 0 time 11472 pv c7c5 b1c3 b8c6 f1b5 e7e5 d2d3 a7a6 b5c6 d7c6 f2f4 e5f4 c1f4 g8f6 d1d2 f8e7 g1f3 e8g8 e1g1 c8g4. info depth 19 seldepth 31 multipv 4 score cp -32 nodes 27905645 nps 2432500 tbhits 0 time 11472 pv b8c6 d2d4 d7d5 e4e5 c8f5 g1f3 e7e6 f1e2 g8e7 e1g1 e7g6 b1c3 f8e7 h2h3 c6b4 e2b5 c7c6 b5a4 g6h4 f3h4 e7h4. info depth 19 seldepth 31 multipv 5 score cp -48 nodes 27905645 nps 2432500 tbhits 0 time 11472 pv g8f6 e4e5 f6d5 g1f3 d7d6 d2d4 c8f5 f3h4 f5c8 c2c4 d5b6 h4f3 b8c6 b1c3 c8g4 c1e3 d6e5 d4d5 c6d4 e3d4 e5d4 d1d4 g4f3 g2f3 e7e6 e1c1 d8f6 d4f6 g7f6 f1d3 e8c8. info depth 20 seldepth 31 multipv 1 score cp -23 nodes 37519711 nps 2448587 tbhits 0 time 15323 pv e7e5 g1f3 g8f6 d2d4 f6e4 f1d3 d7d5 f3e5 f8d6 e1g1 b8c6 e5c6 b7c6 g2g3 e8g8 f2f3 e4g5 b1c3 f8e8 c1g5 d8g5 f1e1. info depth 19 seldepth 31 multipv 2 score cp -22 nodes 37519711 nps 2448587 tbhits 0 time 15323 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1f3 g8f6 e1g1 e8g8 a2a3 b4c3 b2c3 a7a6 f1e1 h7h6 c1f4 c8g4. info depth 19 seldepth 31 multipv 3 score cp -29 nodes 37519711 nps 2448587 tbhits 0 time 15323 pv c7c5 b1c3 b8c6 f1b5 e7e5 d2d3 a7a6 b5c6 d7c6 f2f4 e5f4 c1f4 g8f6 d1d2 f8e7 g1f3 e8g8 e1g1 c8g4. info depth 19 seldepth 31 multipv 4 score cp -32 nodes 37519711 nps 2448587 tbhits 0 time 15323 pv b8c6 d2d4 d7d5 e4e5 c8f5 g1f3 e7e6 f1e2 g8e7 e1g1 e7g6 b1c3 f8e7 h2h3 c6b4 e2b5 c7c6 b5a4 g6h4 f3h4 e7h4. info depth 19 seldepth 31 multipv 5 score cp -48 nodes 37519711 nps 2448587 tbhits 0 time 15323 pv g8f6 e4e5 f6d5 g1f3 d7d6 d2d4 c8f5 f3h4 f5c8 c2c4 d5b6 h4f3 b8c6 b1c3 c8g4 c1e3 d6e5 d4d5 c6d4 e3d4 e5d4 d1d4 g4f3 g2f3 e7e6 e1c1 d8f6 d4f6 g7f6 f1d3 e8c8. info depth 20 seldepth 31 multipv 1 score cp -19 nodes 40458574 nps 2454265 tbhits 0 time 16485 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1f3 c8g4 c1e3 g8f6 e1g1 e8g8 h2h3 g4f3 d1f3 f8e8 a1e1 b4c3 b2c3. info depth 20 seldepth 31 multipv 2 score cp -23 nodes 40458574 nps 2454265 tbhits 0 time 16485 pv e7e5 g1f3 g8f6 d2d4 f6e4 f1d3 d7d5 f3e5 f8d6 e1g1 b8c6 e5c6 b7c6 g2g3 e8g8 f2f3 e4g5 b1c3 f8e8 c1g5 d8g5 f1e1. info depth 19 seldepth 31 multipv 3 score cp -29 nodes 40458574 nps 2454265 tbhits 0 time 16485 pv c7c5 b1c3 b8c6 f1b5 e7e5 d2d3 a7a6 b5c6 d7c6 f2f4 e5f4 c1f4 g8f6 d1d2 f8e7 g1f3 e8g8 e1g1 c8g4. info depth 19 seldepth 31 multipv 4 score cp -32 nodes 40458574 nps 2454265 tbhits 0 time 16485 pv b8c6 d2d4 d7d5 e4e5 c8f5 g1f3 e7e6 f1e2 g8e7 e1g1 e7g6 b1c3 f8e7 h2h3 c6b4 e2b5 c7c6 b5a4 g6h4 f3h4 e7h4. info depth 19 seldepth 31 multipv 5 score cp -48 nodes 40458574 nps 2454265 tbhits 0 time 16485 pv g8f6 e4e5 f6d5 g1f3 d7d6 d2d4 c8f5 f3h4 f5c8 c2c4 d5b6 h4f3 b8c6 b1c3 c8g4 c1e3 d6e5 d4d5 c6d4 e3d4 e5d4 d1d4 g4f3 g2f3 e7e6 e1c1 d8f6 d4f6 g7f6 f1d3 e8c8. info depth 20 seldepth 31 multipv 1 score cp -19 nodes 42427180 nps 2462544 tbhits 0 time 17229 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1f3 c8g4 c1e3 g8f6 e1g1 e8g8 h2h3 g4f3 d1f3 f8e8 a1e1 b4c3 b2c3. info depth 20 seldepth 31 multipv 2 score cp -23 nodes 42427180 nps 2462544 tbhits 0 time 17229 pv e7e5 g1f3 g8f6 d2d4 f6e4 f1d3 d7d5 f3e5 f8d6 e1g1 b8c6 e5c6 b7c6 g2g3 e8g8 f2f3 e4g5 b1c3 f8e8 c1g5 d8g5 f1e1. info depth 20 seldepth 31 multipv 3 score cp -28 nodes 42427180 nps 2462544 tbhits 0 time 17229 pv c7c5 b1c3 b8c6 f1b5 e7e5 d2d3 a7a6 b5c6 d7c6 f2f4 e5f4 c1f4 g8f6 g1f3 f8e7 d1d2 c8e6 e1g1 e8g8 h2h3. info depth 19 seldepth 31 multipv 4 score cp -32 nodes 42427180 nps 2462544 tbhits 0 time 17229 pv b8c6 d2d4 d7d5 e4e5 c8f5 g1f3 e7e6 f1e2 g8e7 e1g1 e7g6 b1c3 f8e7 h2h3 c6b4 e2b5 c7c6 b5a4 g6h4 f3h4 e7h4. info depth 19 seldepth 31 multipv 5 score cp -48 nodes 42427180 nps 2462544 tbhits 0 time 17229 pv g8f6 e4e5 f6d5 g1f3 d7d6 d2d4 c8f5 f3h4 f5c8 c2c4 d5b6 h4f3 b8c6 b1c3 c8g4 c1e3 d6e5 d4d5 c6d4 e3d4 e5d4 d1d4 g4f3 g2f3 e7e6 e1c1 d8f6 d4f6 g7f6 f1d3 e8c8. info depth 20 seldepth 31 multipv 1 score cp -19 nodes 46741427 nps 2473483 tbhits 0 time 18897 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1f3 c8g4 c1e3 g8f6 e1g1 e8g8 h2h3 g4f3 d1f3 f8e8 a1e1 b4c3 b2c3. info depth 20 seldepth 31 multipv 2 score cp -23 nodes 46741427 nps 2473483 tbhits 0 time 18897 pv e7e5 g1f3 g8f6 d2d4 f6e4 f1d3 d7d5 f3e5 f8d6 e1g1 b8c6 e5c6 b7c6 g2g3 e8g8 f2f3 e4g5 b1c3 f8e8 c1g5 d8g5 f1e1. info depth 20 seldepth 31 multipv 3 score cp -28 nodes 46741427 nps 2473483 tbhits 0 time 18897 pv c7c5 b1c3 b8c6 f1b5 e7e5 d2d3 a7a6 b5c6 d7c6 f2f4 e5f4 c1f4 g8f6 g1f3 f8e7 d1d2 c8e6 e1g1 e8g8 h2h3. info depth 20 seldepth 31 multipv 4 score cp -50 nodes 46741427 nps 2473483 tbhits 0 time 18897 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 c8f5 d4e5 g8e7 f1e2 e8c8 d1d5 e7d5 f3d4 c6d4 c3d4. info depth 19 seldepth 31 multipv 5 score cp -48 nodes 46741427 nps 2473483 tbhits 0 time 18897 pv g8f6 e4e5 f6d5 g1f3 d7d6 d2d4 c8f5 f3h4 f5c8 c2c4 d5b6 h4f3 b8c6 b1c3 c8g4 c1e3 d6e5 d4d5 c6d4 e3d4 e5d4 d1d4 g4f3 g2f3 e7e6 e1c1 d8f6 d4f6 g7f6 f1d3 e8c8. info depth 20 seldepth 31 multipv 1 score cp -19 nodes 49096221 nps 2487521 tbhits 0 time 19737 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1f3 c8g4 c1e3 g8f6 e1g1 e8g8 h2h3 g4f3 d1f3 f8e8 a1e1 b4c3 b2c3. info depth 20 seldepth 31 multipv 2 score cp -23 nodes 49096221 nps 2487521 tbhits 0 time 19737 pv e7e5 g1f3 g8f6 d2d4 f6e4 f1d3 d7d5 f3e5 f8d6 e1g1 b8c6 e5c6 b7c6 g2g3 e8g8 f2f3 e4g5 b1c3 f8e8 c1g5 d8g5 f1e1. info depth 20 seldepth 31 multipv 3 score cp -28 nodes 49096221 nps 2487521 tbhits 0 time 19737 pv c7c5 b1c3 b8c6 f1b5 e7e5 d2d3 a7a6 b5c6 d7c6 f2f4 e5f4 c1f4 g8f6 g1f3 f8e7 d1d2 c8e6 e1g1 e8g8 h2h3. info depth 20 seldepth 31 multipv 4 score cp -46 nodes 49096221 nps 2487521 tbhits 0 time 19737 pv g8f6 e4e5 f6d5 g1f3 d7d6 c2c4 d5b6 d2d4 c8g4 e5d6 e7d6 b1c3 b8c6 f1e2 f8e7 b2b3 h7h6 e1g1 e8g8 c1e3 e7f6 f1e1. info depth 20 seldepth 31 multipv 5 score cp -50 nodes 49096221 nps 2487521 tbhits 0 time 19737 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 c8f5 d4e5 g8e7 f1e2 e8c8 d1d5 e7d5 f3d4 c6d4 c3d4. info depth 21 seldepth 35 multipv 1 score cp -24 nodes 59649086 nps 2485689 tbhits 0 time 23997 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 f1b5 c7c6 b5d3 d8e7 d3e2 c8g4 e1g1 b8d7 b1c3 h7h6 c1f4 f6e4 f3e5 g4e2 d1e2 e4c3 b2c3 d7e5 f4e5. info depth 20 seldepth 35 multipv 2 score cp -23 nodes 59649086 nps 2485689 tbhits 0 time 23997 pv e7e5 g1f3 g8f6 d2d4 f6e4 f1d3 d7d5 f3e5 f8d6 e1g1 b8c6 e5c6 b7c6 g2g3 e8g8 f2f3 e4g5 b1c3 f8e8 c1g5 d8g5 f1e1. info depth 20 seldepth 35 multipv 3 score cp -28 nodes 59649086 nps 2485689 tbhits 0 time 23997 pv c7c5 b1c3 b8c6 f1b5 e7e5 d2d3 a7a6 b5c6 d7c6 f2f4 e5f4 c1f4 g8f6 g1f3 f8e7 d1d2 c8e6 e1g1 e8g8 h2h3. info depth 20 seldepth 35 multipv 4 score cp -46 nodes 59649086 nps 2485689 tbhits 0 time 23997 pv g8f6 e4e5 f6d5 g1f3 d7d6 c2c4 d5b6 d2d4 c8g4 e5d6 e7d6 b1c3 b8c6 f1e2 f8e7 b2b3 h7h6 e1g1 e8g8 c1e3 e7f6 f1e1. info depth 20 seldepth 35 multipv 5 score cp -50 nodes 59649086 nps 2485689 tbhits 0 time 23997 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 c8f5 d4e5 g8e7 f1e2 e8c8 d1d5 e7d5 f3d4 c6d4 c3d4. info depth 21 seldepth 35 multipv 1 score cp -24 nodes 60800139 nps 2489870 tbhits 0 time 24419 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 f1b5 c7c6 b5d3 d8e7 d3e2 c8g4 e1g1 b8d7 b1c3 h7h6 c1f4 f6e4 f3e5 g4e2 d1e2 e4c3 b2c3 d7e5 f4e5. info depth 21 seldepth 35 multipv 2 score cp -25 nodes 60800139 nps 2489870 tbhits 0 time 24419 pv e7e5 g1f3 g8f6 f3e5 d7d6 e5f3 f6e4 d1e2 d8e7 b1c3 e4c3 d2c3 e7e2 f1e2 b8c6 c1e3 f8e7 e1c1 c8e6 c1b1 e8g8 h1e1 f8e8 e2b5. info depth 20 seldepth 35 multipv 3 score cp -28 nodes 60800139 nps 2489870 tbhits 0 time 24419 pv c7c5 b1c3 b8c6 f1b5 e7e5 d2d3 a7a6 b5c6 d7c6 f2f4 e5f4 c1f4 g8f6 g1f3 f8e7 d1d2 c8e6 e1g1 e8g8 h2h3. info depth 20 seldepth 35 multipv 4 score cp -46 nodes 60800139 nps 2489870 tbhits 0 time 24419 pv g8f6 e4e5 f6d5 g1f3 d7d6 c2c4 d5b6 d2d4 c8g4 e5d6 e7d6 b1c3 b8c6 f1e2 f8e7 b2b3 h7h6 e1g1 e8g8 c1e3 e7f6 f1e1. info depth 20 seldepth 35 multipv 5 score cp -50 nodes 60800139 nps 2489870 tbhits 0 time 24419 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 c8f5 d4e5 g8e7 f1e2 e8c8 d1d5 e7d5 f3d4 c6d4 c3d4. info depth 21 seldepth 35 multipv 1 score cp -24 nodes 62122868 nps 2487501 tbhits 0 time 24974 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 f1b5 c7c6 b5d3 d8e7 d3e2 c8g4 e1g1 b8d7 b1c3 h7h6 c1f4 f6e4 f3e5 g4e2 d1e2 e4c3 b2c3 d7e5 f4e5. info depth 21 seldepth 35 multipv 2 score cp -25 nodes 62122868 nps 2487501 tbhits 0 time 24974 pv e7e5 g1f3 g8f6 f3e5 d7d6 e5f3 f6e4 d1e2 d8e7 b1c3 e4c3 d2c3 e7e2 f1e2 b8c6 c1e3 f8e7 e1c1 c8e6 c1b1 e8g8 h1e1 f8e8 e2b5. info depth 21 seldepth 35 multipv 3 score cp -30 nodes 62122868 nps 2487501 tbhits 0 time 24974 pv c7c5 g1f3 b8c6 f1b5 e7e5 d2d3 d7d6 b1d2 f8e7 b2b3 g8f6 e1g1 e8g8 d2c4 c8d7 c1d2 h7h6 h2h3 a7a6 b5c6 d7c6. info depth 20 seldepth 35 multipv 4 score cp -46 nodes 62122868 nps 2487501 tbhits 0 time 24974 pv g8f6 e4e5 f6d5 g1f3 d7d6 c2c4 d5b6 d2d4 c8g4 e5d6 e7d6 b1c3 b8c6 f1e2 f8e7 b2b3 h7h6 e1g1 e8g8 c1e3 e7f6 f1e1. info depth 20 seldepth 35 multipv 5 score cp -50 nodes 62122868 nps 2487501 tbhits 0 time 24974 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 c8f5 d4e5 g8e7 f1e2 e8c8 d1d5 e7d5 f3d4 c6d4 c3d4. info depth 21 seldepth 35 multipv 1 score cp -24 nodes 63708084 nps 2472180 tbhits 0 time 25770 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 f1b5 c7c6 b5d3 d8e7 d3e2 c8g4 e1g1 b8d7 b1c3 h7h6 c1f4 f6e4 f3e5 g4e2 d1e2 e4c3 b2c3 d7e5 f4e5. info depth 21 seldepth 35 multipv 2 score cp -25 nodes 63708084 nps 2472180 tbhits 0 time 25770 pv e7e5 g1f3 g8f6 f3e5 d7d6 e5f3 f6e4 d1e2 d8e7 b1c3 e4c3 d2c3 e7e2 f1e2 b8c6 c1e3 f8e7 e1c1 c8e6 c1b1 e8g8 h1e1 f8e8 e2b5. info depth 21 seldepth 35 multipv 3 score cp -30 nodes 63708084 nps 2472180 tbhits 0 time 25770 pv c7c5 g1f3 b8c6 f1b5 e7e5 d2d3 d7d6 b1d2 f8e7 b2b3 g8f6 e1g1 e8g8 d2c4 c8d7 c1d2 h7h6 h2h3 a7a6 b5c6 d7c6. info depth 21 seldepth 35 multipv 4 score cp -48 nodes 63708084 nps 2472180 tbhits 0 time 25770 pv g8f6 e4e5 f6d5 c2c4 d5b6 d2d4 d7d6 g1f3 c8g4 e5d6 e7d6 b1c3 b8c6 f1e2 g4f3 e2f3 d8e7 c1e3 b6c4 c3d5 c4b2 d1b3. info depth 20 seldepth 35 multipv 5 score cp -50 nodes 63708084 nps 2472180 tbhits 0 time 25770 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 c8f5 d4e5 g8e7 f1e2 e8c8 d1d5 e7d5 f3d4 c6d4 c3d4. info depth 21 seldepth 35 multipv 1 score cp -24 nodes 66369784 nps 2480000 tbhits 0 time 26762 pv e7e6 d2d4 d7d5 e4d5 e6d5 g1f3 g8f6 f1b5 c7c6 b5d3 d8e7 d3e2 c8g4 e1g1 b8d7 b1c3 h7h6 c1f4 f6e4 f3e5 g4e2 d1e2 e4c3 b2c3 d7e5 f4e5. info depth 21 seldepth 35 multipv 2 score cp -25 nodes 66369784 nps 2480000 tbhits 0 time 26762 pv e7e5 g1f3 g8f6 f3e5 d7d6 e5f3 f6e4 d1e2 d8e7 b1c3 e4c3 d2c3 e7e2 f1e2 b8c6 c1e3 f8e7 e1c1 c8e6 c1b1 e8g8 h1e1 f8e8 e2b5. info depth 21 seldepth 35 multipv 3 score cp -30 nodes 66369784 nps 2480000 tbhits 0 time 26762 pv c7c5 g1f3 b8c6 f1b5 e7e5 d2d3 d7d6 b1d2 f8e7 b2b3 g8f6 e1g1 e8g8 d2c4 c8d7 c1d2 h7h6 h2h3 a7a6 b5c6 d7c6. info depth 21 seldepth 35 multipv 4 score cp -38 nodes 66369784 nps 2480000 tbhits 0 time 26762 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 e5e4 f3e5 c6e5 d4e5 g8e7 d1d5 e7d5 c3d2 d5e7 e1c1 c8e6 d1e1 e8c8 d2g5. info depth 21 seldepth 35 multipv 5 score cp -48 nodes 66369784 nps 2480000 tbhits 0 time 26762 pv g8f6 e4e5 f6d5 c2c4 d5b6 d2d4 d7d6 g1f3 c8g4 e5d6 e7d6 b1c3 b8c6 f1e2 g4f3 e2f3 d8e7 c1e3 b6c4 c3d5 c4b2 d1b3. info depth 22 seldepth 35 multipv 1 score cp -25 nodes 79622632 nps 2454609 tbhits 0 time 32438 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1e2 g8f6 e1g1 e8g8 c1g5 c8e6 e2f4 b4c3 b2c3 h7h6 f4e6 f7e6 g5f4 a7a6. info depth 21 seldepth 35 multipv 2 score cp -25 nodes 79622632 nps 2454609 tbhits 0 time 32438 pv e7e5 g1f3 g8f6 f3e5 d7d6 e5f3 f6e4 d1e2 d8e7 b1c3 e4c3 d2c3 e7e2 f1e2 b8c6 c1e3 f8e7 e1c1 c8e6 c1b1 e8g8 h1e1 f8e8 e2b5. info depth 21 seldepth 35 multipv 3 score cp -30 nodes 79622632 nps 2454609 tbhits 0 time 32438 pv c7c5 g1f3 b8c6 f1b5 e7e5 d2d3 d7d6 b1d2 f8e7 b2b3 g8f6 e1g1 e8g8 d2c4 c8d7 c1d2 h7h6 h2h3 a7a6 b5c6 d7c6. info depth 21 seldepth 35 multipv 4 score cp -38 nodes 79622632 nps 2454609 tbhits 0 time 32438 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 e5e4 f3e5 c6e5 d4e5 g8e7 d1d5 e7d5 c3d2 d5e7 e1c1 c8e6 d1e1 e8c8 d2g5. info depth 21 seldepth 35 multipv 5 score cp -48 nodes 79622632 nps 2454609 tbhits 0 time 32438 pv g8f6 e4e5 f6d5 c2c4 d5b6 d2d4 d7d6 g1f3 c8g4 e5d6 e7d6 b1c3 b8c6 f1e2 g4f3 e2f3 d8e7 c1e3 b6c4 c3d5 c4b2 d1b3. info depth 22 seldepth 35 multipv 1 score cp -25 nodes 86163142 nps 2450113 tbhits 0 time 35167 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1e2 g8f6 e1g1 e8g8 c1g5 c8e6 e2f4 b4c3 b2c3 h7h6 f4e6 f7e6 g5f4 a7a6. info depth 22 seldepth 35 multipv 2 score cp -31 nodes 86163142 nps 2450113 tbhits 0 time 35167 pv e7e5 g1f3 b8c6 f1b5 a7a6 b5c6 d7c6 b1c3 c8g4 h2h3 g4f3 d1f3 g8f6 f3g3 d8d6 d2d3 e8c8 e1g1 c8b8 c1g5 h7h6 g5f6 d6f6 a1e1. info depth 21 seldepth 35 multipv 3 score cp -30 nodes 86163142 nps 2450113 tbhits 0 time 35167 pv c7c5 g1f3 b8c6 f1b5 e7e5 d2d3 d7d6 b1d2 f8e7 b2b3 g8f6 e1g1 e8g8 d2c4 c8d7 c1d2 h7h6 h2h3 a7a6 b5c6 d7c6. info depth 21 seldepth 35 multipv 4 score cp -38 nodes 86163142 nps 2450113 tbhits 0 time 35167 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 e5e4 f3e5 c6e5 d4e5 g8e7 d1d5 e7d5 c3d2 d5e7 e1c1 c8e6 d1e1 e8c8 d2g5. info depth 21 seldepth 35 multipv 5 score cp -48 nodes 86163142 nps 2450113 tbhits 0 time 35167 pv g8f6 e4e5 f6d5 c2c4 d5b6 d2d4 d7d6 g1f3 c8g4 e5d6 e7d6 b1c3 b8c6 f1e2 g4f3 e2f3 d8e7 c1e3 b6c4 c3d5 c4b2 d1b3. info depth 22 seldepth 35 multipv 1 score cp -25 nodes 93453147 nps 2443986 tbhits 0 time 38238 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1e2 g8f6 e1g1 e8g8 c1g5 c8e6 e2f4 b4c3 b2c3 h7h6 f4e6 f7e6 g5f4 a7a6. info depth 22 seldepth 35 multipv 2 score cp -31 nodes 93453147 nps 2443986 tbhits 0 time 38238 pv e7e5 g1f3 b8c6 f1b5 a7a6 b5c6 d7c6 b1c3 c8g4 h2h3 g4f3 d1f3 g8f6 f3g3 d8d6 d2d3 e8c8 e1g1 c8b8 c1g5 h7h6 g5f6 d6f6 a1e1. info depth 22 seldepth 35 multipv 3 score cp -39 nodes 93453147 nps 2443986 tbhits 0 time 38238 pv c7c5 g1f3 b8c6 f1b5 g8f6 b1c3 e7e5 b5c6 b7c6 f3e5 d8e7 e5f3 d7d5 e4e5 c8g4 d2d4 f6d7 c1f4 c5d4 d1d4 g4f3 g2f3 h7h6. info depth 21 seldepth 35 multipv 4 score cp -38 nodes 93453147 nps 2443986 tbhits 0 time 38238 pv b8c6 d2d4 d7d5 e4d5 d8d5 g1f3 e7e5 b1c3 f8b4 c1d2 b4c3 d2c3 e5e4 f3e5 c6e5 d4e5 g8e7 d1d5 e7d5 c3d2 d5e7 e1c1 c8e6 d1e1 e8c8 d2g5. info depth 21 seldepth 35 multipv 5 score cp -48 nodes 93453147 nps 2443986 tbhits 0 time 38238 pv g8f6 e4e5 f6d5 c2c4 d5b6 d2d4 d7d6 g1f3 c8g4 e5d6 e7d6 b1c3 b8c6 f1e2 g4f3 e2f3 d8e7 c1e3 b6c4 c3d5 c4b2 d1b3. info depth 22 seldepth 35 multipv 1 score cp -25 nodes 102177772 nps 2428582 tbhits 0 time 42073 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1e2 g8f6 e1g1 e8g8 c1g5 c8e6 e2f4 b4c3 b2c3 h7h6 f4e6 f7e6 g5f4 a7a6. info depth 22 seldepth 35 multipv 2 score cp -30 nodes 102177772 nps 2428582 tbhits 0 time 42073 pv b8c6 g1f3 e7e5 f1b5 a7a6 b5c6 d7c6 b1c3 c8g4 h2h3 g4f3 d1f3 g8f6 f3g3 d8e7 d2d3 g7g6 e1g1 e8c8 c1g5 h7h6 g5e3 c8b8 a2a3 h6h5 g3g5. info depth 22 seldepth 35 multipv 3 score cp -31 nodes 102177772 nps 2428582 tbhits 0 time 42073 pv e7e5 g1f3 b8c6 f1b5 a7a6 b5c6 d7c6 b1c3 c8g4 h2h3 g4f3 d1f3 g8f6 f3g3 d8d6 d2d3 e8c8 e1g1 c8b8 c1g5 h7h6 g5f6 d6f6 a1e1. info depth 22 seldepth 35 multipv 4 score cp -39 nodes 102177772 nps 2428582 tbhits 0 time 42073 pv c7c5 g1f3 b8c6 f1b5 g8f6 b1c3 e7e5 b5c6 b7c6 f3e5 d8e7 e5f3 d7d5 e4e5 c8g4 d2d4 f6d7 c1f4 c5d4 d1d4 g4f3 g2f3 h7h6. info depth 21 seldepth 35 multipv 5 score cp -48 nodes 102177772 nps 2428582 tbhits 0 time 42073 pv g8f6 e4e5 f6d5 c2c4 d5b6 d2d4 d7d6 g1f3 c8g4 e5d6 e7d6 b1c3 b8c6 f1e2 g4f3 e2f3 d8e7 c1e3 b6c4 c3d5 c4b2 d1b3. info depth 22 seldepth 35 multipv 1 score cp -25 nodes 107824284 nps 2434286 tbhits 0 time 44294 pv e7e6 d2d4 d7d5 b1c3 f8b4 e4d5 e6d5 f1d3 b8c6 g1e2 g8f6 e1g1 e8g8 c1g5 c8e6 e2f4 b4c3 b2c3 h7h6 f4e6 f7e6 g5f4 a7a6. info depth 22 seldepth 35 multipv 2 score cp -30 nodes 107824284 nps 2434286 tbhits 0 time 44294 pv b8c6 g1f3 e7e5 f1b5 a7a6 b5c6 d7c6 b1c3 c8g4 h2h3 g4f3 d1f3 g8f6 f3g3 d8e7 d2d3 g7g6 e1g1 e8c8 c1g5 h7h6 g5e3 c8b8 a2a3 h6h5 g3g5. info depth 22 seldepth 35 multipv 3 score cp -31 nodes 107824284 nps 2434286 tbhits 0 time 44294 pv e7e5 g1f3 b8c6 f1b5 a7a6 b5c6 d7c6 b1c3 c8g4 h2h3 g4f3 d1f3 g8f6 f3g3 d8d6 d2d3 e8c8 e1g1 c8b8 c1g5 h7h6 g5f6 d6f6 a1e1. info depth 22 seldepth 35 multipv 4 score cp -39 nodes 107824284 nps 2434286 tbhits 0 time 44294 pv c7c5 g1f3 b8c6 f1b5 g8f6 b1c3 e7e5 b5c6 b7c6 f3e5 d8e7 e5f3 d7d5 e4e5 c8g4 d2d4 f6d7 c1f4 c5d4 d1d4 g4f3 g2f3 h7h6. info depth 22 seldepth 35 multipv 5 score cp -49 nodes 107824284 nps 2434286 tbhits 0 time 44294 pv g8f6 e4e5 f6d5 c2c4 d5b6 d2d4 d7d6 g1f3 b8c6 e5d6 e7d6 b1c3 c8f5 f1d3 f5d3 d1d3 f8e7 b2b3 e8g8 e1g1 e7f6 c1e3 f8e8 d3e2 c6b4 a1e1. bestmove e7e6 ponder d2d4.
3 | rnbqkbnr/pppppppp/8/8/4P3/8/PPPP1PPP/RNBQKBNR b KQkq e3 0 1 info depth 1 seldepth 1 multipv 1 score cp 3 nodes 34 nps 34000 tbhits 0 time 1 pv d7d5. info depth 2 seldepth 3 multipv 1 score cp 47 nodes 83 nps 83000 tbhits 0 time 1 pv d7d5 f1b5 c7c6. info depth 3 seldepth 4 multipv 1 score cp 2 nodes 156 nps 156000 tbhits 0 time 1 pv d7d5 d2d3 d5e4 d3e4 d8d1 e1d1. info depth 4 seldepth 4 multipv 1 score cp 5 nodes 316 nps 316000 tbhits 0 time 1 pv d7d5 d2d3 e7e6 a2a3 d5e4 d3e4. info depth 5 seldepth 5 multipv 1 score cp -10 nodes 1956 nps 978000 tbhits 0 time 2 pv b8c6 b1c3 e7e5 f1b5 b7b6. info depth 6 seldepth 6 multipv 1 score cp -20 nodes 5299 nps 1059800 tbhits 0 time 5 pv d7d6 d2d4 g8f6 b1d2 e7e5 d4d5. info depth 7 seldepth 7 multipv 1 score cp -46 nodes 10391 nps 1298875 tbhits 0 time 8 pv d7d6 d2d4 e7e5 d4e5 b8c6 g1f3 c6e5 f3e5. info depth 8 seldepth 9 multipv 1 score cp -57 nodes 13854 nps 1385400 tbhits 0 time 10 pv b8c6 d2d4 g8f6 b1c3 d7d5 e4d5 f6d5 g1f3. info depth 9 seldepth 10 multipv 1 score cp -50 nodes 22566 nps 1504400 tbhits 0 time 15 pv d7d5 e4e5 c8f5 d2d4 e7e6 g1f3 b8c6 b1c3 c6b4. info depth 10 seldepth 15 multipv 1 score cp -46 nodes 58495 nps 1580945 tbhits 0 time 37 pv e7e5 b1c3 b8c6 g1f3 f8c5 f1b5 g8f6 e1g1 e8g8 d2d3. info depth 11 seldepth 15 multipv 1 score cp -45 nodes 133512 nps 1589428 tbhits 0 time 84 pv d7d5 e4d5 e7e6 b1c3 g8f6 d1e2 a7a6 d5e6 c8e6 g1f3 b8c6. info depth 12 seldepth 17 multipv 1 score cp -26 nodes 254828 nps 1602691 tbhits 0 time 159 pv e7e5 b1c3 b8c6 f2f4 d7d6 g1f3 g8e7 d2d4 e5d4 f3d4 a7a6 d4f3. info depth 13 seldepth 17 multipv 1 score cp -25 nodes 357613 nps 1561628 tbhits 0 time 229 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1b5 f8b4 a2a3 b4c3 d2c3 d7d6 e1g1 f6e4. info depth 14 seldepth 21 multipv 1 score cp -8 nodes 639269 nps 1472970 tbhits 0 time 434 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1c4 f8b4 e1g1 e8g8 f1e1 d7d6 d2d4 b4c3 b2c3 c8e6. info depth 15 seldepth 21 multipv 1 score cp -16 nodes 775840 nps 1480610 tbhits 0 time 524 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1c4 f6e4 e1g1 e4d6 c4d5 f8e7 f1e1 e8g8 d2d4 e5d4 f3d4. info depth 16 seldepth 21 multipv 1 score cp -18 nodes 1182092 nps 1422493 tbhits 0 time 831 pv e7e5 g1f3 b8c6 f1c4 g8f6 e1g1 f8c5 d2d3 d7d6 c1g5 c8d7 b1c3 e8g8 c3d5 a7a6 g5f6 g7f6. info depth 17 seldepth 21 multipv 1 score cp -24 nodes 1462686 nps 1420083 tbhits 0 time 1030 pv e7e5 g1f3 b8c6 f1c4 g8f6 e1g1 f8c5 d2d3 d7d5 e4d5 f6d5 f1e1 c8g4 c4d5 d8d5 b1c3 d5e6 f3g5. info depth 18 seldepth 25 multipv 1 score cp -11 nodes 2825595 nps 1389864 tbhits 0 time 2033 pv e7e5 g1f3 b8c6 b1c3 g8f6 f1b5 c6d4 e1g1 f8d6 b5e2 c7c6 d2d3 e8g8 c1e3 d4e2 c3e2 b7b6 d3d4 e5d4 d1d4. info depth 19 seldepth 25 multipv 1 score cp -17 nodes 4606420 nps 1369328 tbhits 0 time 3364 pv e7e5 g1f3 b8c6 b1c3 g8f6 f1b5 f8b4 e1g1 e8g8 b5c6 d7c6 h2h3 c8e6 d2d3 d8d6 c1e3 h7h6 a2a3 b4c3 b2c3. info depth 20 seldepth 25 multipv 1 score cp -23 upperbound nodes 5586822 nps 1362307 tbhits 0 time 4101 pv e7e5 g1f3. info depth 20 seldepth 27 multipv 1 score cp -17 lowerbound nodes 6389807 nps 1345222 tbhits 0 time 4750 pv e7e5. info depth 20 seldepth 27 multipv 1 score cp -23 upperbound nodes 7119629 nps 1331518 tbhits 0 time 5347 pv e7e5 g1f3. info depth 20 seldepth 27 multipv 1 score cp -15 lowerbound nodes 7581915 nps 1335549 tbhits 0 time 5677 pv e7e5. info depth 20 seldepth 29 multipv 1 score cp -26 upperbound nodes 8844632 nps 1336047 tbhits 0 time 6620 pv e7e5 g1f3. info depth 20 seldepth 29 multipv 1 score cp -22 nodes 9510972 nps 1330205 tbhits 0 time 7150 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 d2d4 a7a6 b5c6 d7c6 f1e1 e4f6 b1c3 f8e7 c1g5 e5d4 g5f6 g7f6 f3d4 e8g8 d1h5. bestmove e7e5 ponder g1f3.
4 | rnbqkbnr/pppppppp/8/8/4P3/8/PPPP1PPP/RNBQKBNR b KQkq e3 0 1 info depth 1 seldepth 1 multipv 1 score cp 3 nodes 34 nps 6800 tbhits 0 time 5 pv d7d5. info depth 2 seldepth 3 multipv 1 score cp 47 nodes 83 nps 16600 tbhits 0 time 5 pv d7d5 f1b5 c7c6. info depth 3 seldepth 4 multipv 1 score cp 2 nodes 156 nps 26000 tbhits 0 time 6 pv d7d5 d2d3 d5e4 d3e4 d8d1 e1d1. info depth 4 seldepth 4 multipv 1 score cp 5 nodes 316 nps 52666 tbhits 0 time 6 pv d7d5 d2d3 e7e6 a2a3 d5e4 d3e4. info depth 5 seldepth 5 multipv 1 score cp -10 nodes 1956 nps 244500 tbhits 0 time 8 pv b8c6 b1c3 e7e5 f1b5 b7b6. info depth 6 seldepth 6 multipv 1 score cp -20 nodes 5299 nps 481727 tbhits 0 time 11 pv d7d6 d2d4 g8f6 b1d2 e7e5 d4d5. info depth 7 seldepth 7 multipv 1 score cp -46 nodes 10391 nps 692733 tbhits 0 time 15 pv d7d6 d2d4 e7e5 d4e5 b8c6 g1f3 c6e5 f3e5. info depth 8 seldepth 9 multipv 1 score cp -57 nodes 13854 nps 769666 tbhits 0 time 18 pv b8c6 d2d4 g8f6 b1c3 d7d5 e4d5 f6d5 g1f3. info depth 9 seldepth 10 multipv 1 score cp -50 nodes 22566 nps 981130 tbhits 0 time 23 pv d7d5 e4e5 c8f5 d2d4 e7e6 g1f3 b8c6 b1c3 c6b4. info depth 10 seldepth 15 multipv 1 score cp -46 nodes 58495 nps 1244574 tbhits 0 time 47 pv e7e5 b1c3 b8c6 g1f3 f8c5 f1b5 g8f6 e1g1 e8g8 d2d3. info depth 11 seldepth 15 multipv 1 score cp -45 nodes 133512 nps 1376412 tbhits 0 time 97 pv d7d5 e4d5 e7e6 b1c3 g8f6 d1e2 a7a6 d5e6 c8e6 g1f3 b8c6. info depth 12 seldepth 17 multipv 1 score cp -26 nodes 254828 nps 1472994 tbhits 0 time 173 pv e7e5 b1c3 b8c6 f2f4 d7d6 g1f3 g8e7 d2d4 e5d4 f3d4 a7a6 d4f3. info depth 13 seldepth 17 multipv 1 score cp -25 nodes 357613 nps 1447825 tbhits 0 time 247 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1b5 f8b4 a2a3 b4c3 d2c3 d7d6 e1g1 f6e4. info depth 14 seldepth 21 multipv 1 score cp -8 nodes 639269 nps 1476371 tbhits 0 time 433 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1c4 f8b4 e1g1 e8g8 f1e1 d7d6 d2d4 b4c3 b2c3 c8e6. info depth 15 seldepth 21 multipv 1 score cp -16 nodes 775840 nps 1483441 tbhits 0 time 523 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1c4 f6e4 e1g1 e4d6 c4d5 f8e7 f1e1 e8g8 d2d4 e5d4 f3d4. info depth 16 seldepth 21 multipv 1 score cp -18 nodes 1182092 nps 1387431 tbhits 0 time 852 pv e7e5 g1f3 b8c6 f1c4 g8f6 e1g1 f8c5 d2d3 d7d6 c1g5 c8d7 b1c3 e8g8 c3d5 a7a6 g5f6 g7f6. info depth 17 seldepth 21 multipv 1 score cp -24 nodes 1462686 nps 1383808 tbhits 0 time 1057 pv e7e5 g1f3 b8c6 f1c4 g8f6 e1g1 f8c5 d2d3 d7d5 e4d5 f6d5 f1e1 c8g4 c4d5 d8d5 b1c3 d5e6 f3g5. info depth 18 seldepth 25 multipv 1 score cp -11 nodes 2825595 nps 1371648 tbhits 0 time 2060 pv e7e5 g1f3 b8c6 b1c3 g8f6 f1b5 c6d4 e1g1 f8d6 b5e2 c7c6 d2d3 e8g8 c1e3 d4e2 c3e2 b7b6 d3d4 e5d4 d1d4. info depth 19 seldepth 25 multipv 1 score cp -17 nodes 4606420 nps 1336744 tbhits 0 time 3446 pv e7e5 g1f3 b8c6 b1c3 g8f6 f1b5 f8b4 e1g1 e8g8 b5c6 d7c6 h2h3 c8e6 d2d3 d8d6 c1e3 h7h6 a2a3 b4c3 b2c3. info depth 20 seldepth 25 multipv 1 score cp -23 upperbound nodes 5586822 nps 1337520 tbhits 0 time 4177 pv e7e5 g1f3. info depth 20 seldepth 27 multipv 1 score cp -17 lowerbound nodes 6389807 nps 1333710 tbhits 0 time 4791 pv e7e5. info depth 20 seldepth 27 multipv 1 score cp -23 upperbound nodes 7119629 nps 1320161 tbhits 0 time 5393 pv e7e5 g1f3. info depth 20 seldepth 27 multipv 1 score cp -15 lowerbound nodes 7581915 nps 1322965 tbhits 0 time 5731 pv e7e5. info depth 20 seldepth 29 multipv 1 score cp -26 upperbound nodes 8844632 nps 1325038 tbhits 0 time 6675 pv e7e5 g1f3. info depth 20 seldepth 29 multipv 1 score cp -22 nodes 9510972 nps 1328348 tbhits 0 time 7160 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 d2d4 a7a6 b5c6 d7c6 f1e1 e4f6 b1c3 f8e7 c1g5 e5d4 g5f6 g7f6 f3d4 e8g8 d1h5. bestmove e7e5 ponder g1f3.
5 | rnbqkbnr/pp1ppppp/8/2p5/4P3/8/PPPP1PPP/RNBQKBNR w KQkq c6 0 2 info depth 1 seldepth 1 multipv 1 score cp 136 nodes 55 nps 55000 tbhits 0 time 1 pv d2d4 c5d4 d1d4. info depth 2 seldepth 2 multipv 1 score cp 162 nodes 120 nps 120000 tbhits 0 time 1 pv d1h5 a7a6. info depth 3 seldepth 4 multipv 1 score cp 95 nodes 438 nps 438000 tbhits 0 time 1 pv d2d4 d7d6 d4c5 d8a5 b1c3 d6c5. info depth 4 seldepth 5 multipv 1 score cp 78 nodes 891 nps 445500 tbhits 0 time 2 pv b1c3 e7e6 d2d3 d8a5. info depth 5 seldepth 5 multipv 1 score cp 92 nodes 2601 nps 867000 tbhits 0 time 3 pv g1f3 d7d5 e4d5 d8d5 b1c3 d5e6 d1e2. info depth 6 seldepth 7 multipv 1 score cp 60 nodes 4888 nps 1222000 tbhits 0 time 4 pv g1f3 g8f6 b1c3 d7d5 f1b5 b8c6 d2d3 d5e4. info depth 7 seldepth 8 multipv 1 score cp 52 nodes 8191 nps 1170142 tbhits 0 time 7 pv b1c3 g8f6 g1f3 b8c6 d2d4 d7d5 e4d5. info depth 8 seldepth 9 multipv 1 score cp 70 nodes 15811 nps 1317583 tbhits 0 time 12 pv d2d4 c5d4 g1f3 b8c6 f3d4 g8f6 b1c3 d7d5. info depth 9 seldepth 13 multipv 1 score cp 55 nodes 33719 nps 1248851 tbhits 0 time 27 pv g1f3 b8c6 d2d4 c5d4 f3d4 e7e5 d4f5 g8f6 b1c3. info depth 10 seldepth 13 multipv 1 score cp 58 nodes 47044 nps 1271459 tbhits 0 time 37 pv g1f3 b8c6 b1c3 g8f6 e4e5 f6g4 h2h3 g4e5 f3e5 c6e5 d2d4 c5d4. info depth 11 seldepth 15 multipv 1 score cp 59 nodes 88602 nps 1247915 tbhits 0 time 71 pv g1f3 b8c6 b1c3 g8f6 f1b5 e7e5 d2d3 f8d6 b5c4 e8g8 e1g1 a7a6 a2a4 f6g4. info depth 12 seldepth 17 multipv 1 score cp 62 nodes 168180 nps 1303720 tbhits 0 time 129 pv g1f3 b8c6 b1c3 g8f6 f1b5 e7e5 b5c6 d7c6 f3e5 f8d6 d2d4 c5d4 d1d4. info depth 13 seldepth 18 multipv 1 score cp 45 nodes 288883 nps 1343641 tbhits 0 time 215 pv g1f3 b8c6 b1c3 g8f6 f1b5 e7e5 d2d3 f8d6 b5c4 e8g8 e1g1 b7b6 c3b5 d6e7 c1e3 f6g4. info depth 14 seldepth 22 multipv 1 score cp 54 nodes 563242 nps 1288883 tbhits 0 time 437 pv g1f3 b8c6 f1b5 g8f6 e4e5 f6d5 e1g1 c6d4 f3d4 c5d4 d1g4 d5b4 g4d4 b4c2. info depth 15 seldepth 22 multipv 1 score cp 44 nodes 934685 nps 1323916 tbhits 0 time 706 pv g1f3 b8c6 f1b5 g8f6 e4e5 f6d5 b1c3 a7a6 b5c6 d7c6 c3e4 c8f5 d2d3 f5e4 d3e4 d5b4 c1g5 d8d1 a1d1 b4c2 e1e2. info depth 16 seldepth 24 multipv 1 score cp 26 nodes 1827911 nps 1315043 tbhits 0 time 1390 pv g1f3 b8c6 f1b5 g8f6 b1c3 e7e5 b5c6 d7c6 f3e5 f8d6 e5f3 e8g8 e1g1 f8e8 d2d3 b7b5 c3e2 c8g4 c1d2 h7h6 h2h3 g4f3 g2f3. info depth 17 seldepth 26 multipv 1 score cp 35 nodes 2191697 nps 1342951 tbhits 0 time 1632 pv g1f3 b8c6 f1b5 g8f6 b1c3 e7e5 b5c6 d7c6 f3e5 f8d6 e5f3 e8g8 e1g1 f8e8 d2d3 b7b5 c3e2 c8g4 c1d2. info depth 18 seldepth 26 multipv 1 score cp 44 lowerbound nodes 4188387 nps 1391028 tbhits 0 time 3011 pv g1f3. info depth 18 seldepth 27 multipv 1 score cp 48 nodes 4878376 nps 1395416 tbhits 0 time 3496 pv g1f3 b8c6 f1b5 g8f6 b1c3 e7e5 b5c6 d7c6 f3e5 f8d6 e5f3 c8g4 d2d3 a7a6 h2h3 g4f3 d1f3 e8g8 c1g5 d8e7. info depth 19 seldepth 27 multipv 1 score cp 42 upperbound nodes 6791152 nps 1351204 tbhits 0 time 5026 pv g1f3 b8c6. info depth 19 seldepth 27 multipv 1 score cp 43 nodes 8012324 nps 1359172 tbhits 0 time 5895 pv g1f3 b8c6 f1b5 d7d6 d2d4 c5d4 f3d4 c8d7 b1c3 g8f6 e1g1 e7e5 d4f5 d7f5 e4f5 a7a6 b5c6 b7c6 c1e3 f8e7 g1h1. info depth 20 seldepth 27 multipv 1 score cp 37 upperbound nodes 9165628 nps 1350866 tbhits 0 time 6785 pv g1f3 b8c6. info depth 20 seldepth 28 multipv 1 score cp 31 upperbound nodes 10878522 nps 1343027 tbhits 0 time 8100 pv g1f3 b8c6. info depth 20 seldepth 28 multipv 1 score cp 31 nodes 12408227 nps 1353870 tbhits 0 time 9165 pv g1f3 b8c6 f1b5 d7d6 e1g1 c8d7 d2d3 g8f6 b1d2 e7e5 d2c4 h7h6 b2b3 f8e7 c1d2 e8g8 h2h3 b7b6 b5c6 d7c6 a2a4 g8h8. bestmove g1f3 ponder b8c6.
6 | rnbqkbnr/pppppppp/8/8/4P3/8/PPPP1PPP/RNBQKBNR b KQkq e3 0 1 info depth 1 seldepth 1 multipv 1 score cp 3 nodes 34 nps 6800 tbhits 0 time 5 pv d7d5. info depth 2 seldepth 3 multipv 1 score cp 47 nodes 83 nps 16600 tbhits 0 time 5 pv d7d5 f1b5 c7c6. info depth 3 seldepth 4 multipv 1 score cp 2 nodes 156 nps 31200 tbhits 0 time 5 pv d7d5 d2d3 d5e4 d3e4 d8d1 e1d1. info depth 4 seldepth 4 multipv 1 score cp 5 nodes 316 nps 63200 tbhits 0 time 5 pv d7d5 d2d3 e7e6 a2a3 d5e4 d3e4. info depth 5 seldepth 5 multipv 1 score cp -10 nodes 1956 nps 279428 tbhits 0 time 7 pv b8c6 b1c3 e7e5 f1b5 b7b6. info depth 6 seldepth 6 multipv 1 score cp -20 nodes 5299 nps 588777 tbhits 0 time 9 pv d7d6 d2d4 g8f6 b1d2 e7e5 d4d5. info depth 7 seldepth 7 multipv 1 score cp -46 nodes 10391 nps 742214 tbhits 0 time 14 pv d7d6 d2d4 e7e5 d4e5 b8c6 g1f3 c6e5 f3e5. info depth 8 seldepth 9 multipv 1 score cp -57 nodes 13854 nps 814941 tbhits 0 time 17 pv b8c6 d2d4 g8f6 b1c3 d7d5 e4d5 f6d5 g1f3. info depth 9 seldepth 10 multipv 1 score cp -50 nodes 22566 nps 902640 tbhits 0 time 25 pv d7d5 e4e5 c8f5 d2d4 e7e6 g1f3 b8c6 b1c3 c6b4. info depth 10 seldepth 15 multipv 1 score cp -46 nodes 58495 nps 1124903 tbhits 0 time 52 pv e7e5 b1c3 b8c6 g1f3 f8c5 f1b5 g8f6 e1g1 e8g8 d2d3. info depth 11 seldepth 15 multipv 1 score cp -45 nodes 133512 nps 1224880 tbhits 0 time 109 pv d7d5 e4d5 e7e6 b1c3 g8f6 d1e2 a7a6 d5e6 c8e6 g1f3 b8c6. info depth 12 seldepth 17 multipv 1 score cp -26 nodes 254828 nps 1293543 tbhits 0 time 197 pv e7e5 b1c3 b8c6 f2f4 d7d6 g1f3 g8e7 d2d4 e5d4 f3d4 a7a6 d4f3. info depth 13 seldepth 17 multipv 1 score cp -25 nodes 357613 nps 1324492 tbhits 0 time 270 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1b5 f8b4 a2a3 b4c3 d2c3 d7d6 e1g1 f6e4. info depth 14 seldepth 21 multipv 1 score cp -8 nodes 639269 nps 1357259 tbhits 0 time 471 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1c4 f8b4 e1g1 e8g8 f1e1 d7d6 d2d4 b4c3 b2c3 c8e6. info depth 15 seldepth 21 multipv 1 score cp -16 nodes 775840 nps 1353996 tbhits 0 time 573 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1c4 f6e4 e1g1 e4d6 c4d5 f8e7 f1e1 e8g8 d2d4 e5d4 f3d4. info depth 16 seldepth 21 multipv 1 score cp -18 nodes 1182092 nps 1366580 tbhits 0 time 865 pv e7e5 g1f3 b8c6 f1c4 g8f6 e1g1 f8c5 d2d3 d7d6 c1g5 c8d7 b1c3 e8g8 c3d5 a7a6 g5f6 g7f6. info depth 17 seldepth 21 multipv 1 score cp -24 nodes 1462686 nps 1375998 tbhits 0 time 1063 pv e7e5 g1f3 b8c6 f1c4 g8f6 e1g1 f8c5 d2d3 d7d5 e4d5 f6d5 f1e1 c8g4 c4d5 d8d5 b1c3 d5e6 f3g5. info depth 18 seldepth 25 multipv 1 score cp -11 nodes 2825595 nps 1393291 tbhits 0 time 2028 pv e7e5 g1f3 b8c6 b1c3 g8f6 f1b5 c6d4 e1g1 f8d6 b5e2 c7c6 d2d3 e8g8 c1e3 d4e2 c3e2 b7b6 d3d4 e5d4 d1d4. info depth 19 seldepth 25 multipv 1 score cp -17 nodes 4606420 nps 1388312 tbhits 0 time 3318 pv e7e5 g1f3 b8c6 b1c3 g8f6 f1b5 f8b4 e1g1 e8g8 b5c6 d7c6 h2h3 c8e6 d2d3 d8d6 c1e3 h7h6 a2a3 b4c3 b2c3. info depth 20 seldepth 25 multipv 1 score cp -23 upperbound nodes 5586822 nps 1385964 tbhits 0 time 4031 pv e7e5 g1f3. info depth 20 seldepth 27 multipv 1 score cp -17 lowerbound nodes 6389807 nps 1390297 tbhits 0 time 4596 pv e7e5. info depth 20 seldepth 27 multipv 1 score cp -23 upperbound nodes 7119629 nps 1378971 tbhits 0 time 5163 pv e7e5 g1f3. info depth 20 seldepth 27 multipv 1 score cp -15 lowerbound nodes 7581915 nps 1371051 tbhits 0 time 5530 pv e7e5. info depth 20 seldepth 29 multipv 1 score cp -26 upperbound nodes 8844632 nps 1353424 tbhits 0 time 6535 pv e7e5 g1f3. info depth 20 seldepth 29 multipv 1 score cp -22 nodes 9510972 nps 1339007 tbhits 0 time 7103 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 d2d4 a7a6 b5c6 d7c6 f1e1 e4f6 b1c3 f8e7 c1g5 e5d4 g5f6 g7f6 f3d4 e8g8 d1h5. bestmove e7e5 ponder g1f3.
7 | rnbqkbnr/pppppppp/8/8/4P3/8/PPPP1PPP/RNBQKBNR b KQkq e3 0 1 info depth 1 seldepth 1 multipv 1 score cp 3 nodes 34 nps 34000 tbhits 0 time 1 pv d7d5. info depth 2 seldepth 3 multipv 1 score cp 47 nodes 83 nps 83000 tbhits 0 time 1 pv d7d5 f1b5 c7c6. info depth 3 seldepth 4 multipv 1 score cp 2 nodes 156 nps 156000 tbhits 0 time 1 pv d7d5 d2d3 d5e4 d3e4 d8d1 e1d1. info depth 4 seldepth 4 multipv 1 score cp 5 nodes 316 nps 158000 tbhits 0 time 2 pv d7d5 d2d3 e7e6 a2a3 d5e4 d3e4. info depth 5 seldepth 5 multipv 1 score cp -10 nodes 1956 nps 652000 tbhits 0 time 3 pv b8c6 b1c3 e7e5 f1b5 b7b6. info depth 6 seldepth 6 multipv 1 score cp -20 nodes 5299 nps 1059800 tbhits 0 time 5 pv d7d6 d2d4 g8f6 b1d2 e7e5 d4d5. info depth 7 seldepth 7 multipv 1 score cp -46 nodes 10391 nps 1298875 tbhits 0 time 8 pv d7d6 d2d4 e7e5 d4e5 b8c6 g1f3 c6e5 f3e5. info depth 8 seldepth 9 multipv 1 score cp -57 nodes 13854 nps 1385400 tbhits 0 time 10 pv b8c6 d2d4 g8f6 b1c3 d7d5 e4d5 f6d5 g1f3. info depth 9 seldepth 10 multipv 1 score cp -50 nodes 22566 nps 1504400 tbhits 0 time 15 pv d7d5 e4e5 c8f5 d2d4 e7e6 g1f3 b8c6 b1c3 c6b4. info depth 10 seldepth 15 multipv 1 score cp -46 nodes 58495 nps 1539342 tbhits 0 time 38 pv e7e5 b1c3 b8c6 g1f3 f8c5 f1b5 g8f6 e1g1 e8g8 d2d3. info depth 11 seldepth 15 multipv 1 score cp -45 nodes 133512 nps 1451217 tbhits 0 time 92 pv d7d5 e4d5 e7e6 b1c3 g8f6 d1e2 a7a6 d5e6 c8e6 g1f3 b8c6. info depth 12 seldepth 17 multipv 1 score cp -26 nodes 254828 nps 1355468 tbhits 0 time 188 pv e7e5 b1c3 b8c6 f2f4 d7d6 g1f3 g8e7 d2d4 e5d4 f3d4 a7a6 d4f3. info depth 13 seldepth 17 multipv 1 score cp -25 nodes 357613 nps 1344409 tbhits 0 time 266 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1b5 f8b4 a2a3 b4c3 d2c3 d7d6 e1g1 f6e4. info depth 14 seldepth 21 multipv 1 score cp -8 nodes 639269 nps 1318080 tbhits 0 time 485 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1c4 f8b4 e1g1 e8g8 f1e1 d7d6 d2d4 b4c3 b2c3 c8e6. info depth 15 seldepth 21 multipv 1 score cp -16 nodes 775840 nps 1303932 tbhits 0 time 595 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1c4 f6e4 e1g1 e4d6 c4d5 f8e7 f1e1 e8g8 d2d4 e5d4 f3d4. info depth 16 seldepth 21 multipv 1 score cp -18 nodes 1182092 nps 1299002 tbhits 0 time 910 pv e7e5 g1f3 b8c6 f1c4 g8f6 e1g1 f8c5 d2d3 d7d6 c1g5 c8d7 b1c3 e8g8 c3d5 a7a6 g5f6 g7f6. info depth 17 seldepth 21 multipv 1 score cp -24 nodes 1462686 nps 1329714 tbhits 0 time 1100 pv e7e5 g1f3 b8c6 f1c4 g8f6 e1g1 f8c5 d2d3 d7d5 e4d5 f6d5 f1e1 c8g4 c4d5 d8d5 b1c3 d5e6 f3g5. info depth 18 seldepth 25 multipv 1 score cp -11 nodes 2825595 nps 1346162 tbhits 0 time 2099 pv e7e5 g1f3 b8c6 b1c3 g8f6 f1b5 c6d4 e1g1 f8d6 b5e2 c7c6 d2d3 e8g8 c1e3 d4e2 c3e2 b7b6 d3d4 e5d4 d1d4. info depth 19 seldepth 25 multipv 1 score cp -17 nodes 4606420 nps 1336744 tbhits 0 time 3446 pv e7e5 g1f3 b8c6 b1c3 g8f6 f1b5 f8b4 e1g1 e8g8 b5c6 d7c6 h2h3 c8e6 d2d3 d8d6 c1e3 h7h6 a2a3 b4c3 b2c3. info depth 20 seldepth 25 multipv 1 score cp -23 upperbound nodes 5586822 nps 1338481 tbhits 0 time 4174 pv e7e5 g1f3. info depth 20 seldepth 27 multipv 1 score cp -17 lowerbound nodes 6389807 nps 1342396 tbhits 0 time 4760 pv e7e5. info depth 20 seldepth 27 multipv 1 score cp -23 upperbound nodes 7119629 nps 1337521 tbhits 0 time 5323 pv e7e5 g1f3. info depth 20 seldepth 27 multipv 1 score cp -15 lowerbound nodes 7581915 nps 1340982 tbhits 0 time 5654 pv e7e5. info depth 20 seldepth 29 multipv 1 score cp -26 upperbound nodes 8844632 nps 1341315 tbhits 0 time 6594 pv e7e5 g1f3. info depth 20 seldepth 29 multipv 1 score cp -22 nodes 9510972 nps 1336749 tbhits 0 time 7115 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 d2d4 a7a6 b5c6 d7c6 f1e1 e4f6 b1c3 f8e7 c1g5 e5d4 g5f6 g7f6 f3d4 e8g8 d1h5. bestmove e7e5 ponder g1f3.
8 | rnbqkbnr/pp1ppppp/8/2p5/4P3/8/PPPP1PPP/RNBQKBNR w KQkq c6 0 2 info depth 1 seldepth 1 multipv 1 score cp 136 nodes 55 nps 27500 tbhits 0 time 2 pv d2d4 c5d4 d1d4. info depth 2 seldepth 2 multipv 1 score cp 162 nodes 120 nps 60000 tbhits 0 time 2 pv d1h5 a7a6. info depth 3 seldepth 4 multipv 1 score cp 95 nodes 438 nps 219000 tbhits 0 time 2 pv d2d4 d7d6 d4c5 d8a5 b1c3 d6c5. info depth 4 seldepth 5 multipv 1 score cp 78 nodes 891 nps 445500 tbhits 0 time 2 pv b1c3 e7e6 d2d3 d8a5. info depth 5 seldepth 5 multipv 1 score cp 92 nodes 2601 nps 650250 tbhits 0 time 4 pv g1f3 d7d5 e4d5 d8d5 b1c3 d5e6 d1e2. info depth 6 seldepth 7 multipv 1 score cp 60 nodes 4888 nps 977600 tbhits 0 time 5 pv g1f3 g8f6 b1c3 d7d5 f1b5 b8c6 d2d3 d5e4. info depth 7 seldepth 8 multipv 1 score cp 52 nodes 8191 nps 1023875 tbhits 0 time 8 pv b1c3 g8f6 g1f3 b8c6 d2d4 d7d5 e4d5. info depth 8 seldepth 9 multipv 1 score cp 70 nodes 15811 nps 1216230 tbhits 0 time 13 pv d2d4 c5d4 g1f3 b8c6 f3d4 g8f6 b1c3 d7d5. info depth 9 seldepth 13 multipv 1 score cp 55 nodes 33719 nps 1404958 tbhits 0 time 24 pv g1f3 b8c6 d2d4 c5d4 f3d4 e7e5 d4f5 g8f6 b1c3. info depth 10 seldepth 13 multipv 1 score cp 58 nodes 47044 nps 1383647 tbhits 0 time 34 pv g1f3 b8c6 b1c3 g8f6 e4e5 f6g4 h2h3 g4e5 f3e5 c6e5 d2d4 c5d4. info depth 11 seldepth 15 multipv 1 score cp 59 nodes 88602 nps 1230583 tbhits 0 time 72 pv g1f3 b8c6 b1c3 g8f6 f1b5 e7e5 d2d3 f8d6 b5c4 e8g8 e1g1 a7a6 a2a4 f6g4. info depth 12 seldepth 17 multipv 1 score cp 62 nodes 168180 nps 1236617 tbhits 0 time 136 pv g1f3 b8c6 b1c3 g8f6 f1b5 e7e5 b5c6 d7c6 f3e5 f8d6 d2d4 c5d4 d1d4. info depth 13 seldepth 18 multipv 1 score cp 45 nodes 288883 nps 1250575 tbhits 0 time 231 pv g1f3 b8c6 b1c3 g8f6 f1b5 e7e5 d2d3 f8d6 b5c4 e8g8 e1g1 b7b6 c3b5 d6e7 c1e3 f6g4. info depth 14 seldepth 22 multipv 1 score cp 54 nodes 563242 nps 1227106 tbhits 0 time 459 pv g1f3 b8c6 f1b5 g8f6 e4e5 f6d5 e1g1 c6d4 f3d4 c5d4 d1g4 d5b4 g4d4 b4c2. info depth 15 seldepth 22 multipv 1 score cp 44 nodes 934685 nps 1259683 tbhits 0 time 742 pv g1f3 b8c6 f1b5 g8f6 e4e5 f6d5 b1c3 a7a6 b5c6 d7c6 c3e4 c8f5 d2d3 f5e4 d3e4 d5b4 c1g5 d8d1 a1d1 b4c2 e1e2. info depth 16 seldepth 24 multipv 1 score cp 26 nodes 1827911 nps 1256296 tbhits 0 time 1455 pv g1f3 b8c6 f1b5 g8f6 b1c3 e7e5 b5c6 d7c6 f3e5 f8d6 e5f3 e8g8 e1g1 f8e8 d2d3 b7b5 c3e2 c8g4 c1d2 h7h6 h2h3 g4f3 g2f3. info depth 17 seldepth 26 multipv 1 score cp 35 nodes 2191697 nps 1273502 tbhits 0 time 1721 pv g1f3 b8c6 f1b5 g8f6 b1c3 e7e5 b5c6 d7c6 f3e5 f8d6 e5f3 e8g8 e1g1 f8e8 d2d3 b7b5 c3e2 c8g4 c1d2. info depth 18 seldepth 26 multipv 1 score cp 35 lowerbound nodes 4004819 nps 1279494 tbhits 0 time 3130 pv g1f3. info depth 18 seldepth 26 multipv 1 score cp 44 lowerbound nodes 4188387 nps 1285964 tbhits 0 time 3257 pv g1f3. info depth 18 seldepth 27 multipv 1 score cp 48 nodes 4878376 nps 1292627 tbhits 0 time 3774 pv g1f3 b8c6 f1b5 g8f6 b1c3 e7e5 b5c6 d7c6 f3e5 f8d6 e5f3 c8g4 d2d3 a7a6 h2h3 g4f3 d1f3 e8g8 c1g5 d8e7. info depth 19 seldepth 27 multipv 1 score cp 42 upperbound nodes 6791152 nps 1311033 tbhits 0 time 5180 pv g1f3 b8c6. info depth 19 seldepth 27 multipv 1 score cp 43 nodes 8012324 nps 1301547 tbhits 0 time 6156 pv g1f3 b8c6 f1b5 d7d6 d2d4 c5d4 f3d4 c8d7 b1c3 g8f6 e1g1 e7e5 d4f5 d7f5 e4f5 a7a6 b5c6 b7c6 c1e3 f8e7 g1h1. info depth 20 seldepth 27 multipv 1 score cp 37 upperbound nodes 9165628 nps 1304715 tbhits 0 time 7025 pv g1f3 b8c6. info depth 20 seldepth 28 multipv 1 score cp 31 upperbound nodes 10878522 nps 1289994 tbhits 0 time 8433 pv g1f3 b8c6. info depth 20 seldepth 28 multipv 1 score cp 31 nodes 12408227 nps 1297253 tbhits 0 time 9565 pv g1f3 b8c6 f1b5 d7d6 e1g1 c8d7 d2d3 g8f6 b1d2 e7e5 d2c4 h7h6 b2b3 f8e7 c1d2 e8g8 h2h3 b7b6 b5c6 d7c6 a2a4 g8h8. bestmove g1f3 ponder b8c6.
9 | rnbqkbnr/pppppppp/8/8/4P3/8/PPPP1PPP/RNBQKBNR b KQkq e3 0 1 info depth 1 seldepth 1 multipv 1 score cp 3 nodes 34 nps 8500 tbhits 0 time 4 pv d7d5. info depth 2 seldepth 3 multipv 1 score cp 47 nodes 83 nps 20750 tbhits 0 time 4 pv d7d5 f1b5 c7c6. info depth 3 seldepth 4 multipv 1 score cp 2 nodes 156 nps 31200 tbhits 0 time 5 pv d7d5 d2d3 d5e4 d3e4 d8d1 e1d1. info depth 4 seldepth 4 multipv 1 score cp 5 nodes 316 nps 63200 tbhits 0 time 5 pv d7d5 d2d3 e7e6 a2a3 d5e4 d3e4. info depth 5 seldepth 5 multipv 1 score cp -10 nodes 1956 nps 279428 tbhits 0 time 7 pv b8c6 b1c3 e7e5 f1b5 b7b6. info depth 6 seldepth 6 multipv 1 score cp -20 nodes 5299 nps 588777 tbhits 0 time 9 pv d7d6 d2d4 g8f6 b1d2 e7e5 d4d5. info depth 7 seldepth 7 multipv 1 score cp -46 nodes 10391 nps 799307 tbhits 0 time 13 pv d7d6 d2d4 e7e5 d4e5 b8c6 g1f3 c6e5 f3e5. info depth 8 seldepth 9 multipv 1 score cp -57 nodes 13854 nps 923600 tbhits 0 time 15 pv b8c6 d2d4 g8f6 b1c3 d7d5 e4d5 f6d5 g1f3. info depth 9 seldepth 10 multipv 1 score cp -50 nodes 22566 nps 1025727 tbhits 0 time 22 pv d7d5 e4e5 c8f5 d2d4 e7e6 g1f3 b8c6 b1c3 c6b4. info depth 10 seldepth 15 multipv 1 score cp -46 nodes 58495 nps 1103679 tbhits 0 time 53 pv e7e5 b1c3 b8c6 g1f3 f8c5 f1b5 g8f6 e1g1 e8g8 d2d3. info depth 11 seldepth 15 multipv 1 score cp -45 nodes 133512 nps 1150965 tbhits 0 time 116 pv d7d5 e4d5 e7e6 b1c3 g8f6 d1e2 a7a6 d5e6 c8e6 g1f3 b8c6. info depth 12 seldepth 17 multipv 1 score cp -26 nodes 254828 nps 1219272 tbhits 0 time 209 pv e7e5 b1c3 b8c6 f2f4 d7d6 g1f3 g8e7 d2d4 e5d4 f3d4 a7a6 d4f3. info depth 13 seldepth 17 multipv 1 score cp -25 nodes 357613 nps 1272644 tbhits 0 time 281 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1b5 f8b4 a2a3 b4c3 d2c3 d7d6 e1g1 f6e4. info depth 14 seldepth 21 multipv 1 score cp -8 nodes 639269 nps 1224653 tbhits 0 time 522 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1c4 f8b4 e1g1 e8g8 f1e1 d7d6 d2d4 b4c3 b2c3 c8e6. info depth 15 seldepth 21 multipv 1 score cp -16 nodes 775840 nps 1214147 tbhits 0 time 639 pv e7e5 b1c3 g8f6 g1f3 b8c6 f1c4 f6e4 e1g1 e4d6 c4d5 f8e7 f1e1 e8g8 d2d4 e5d4 f3d4. info depth 16 seldepth 21 multipv 1 score cp -18 nodes 1182092 nps 1214894 tbhits 0 time 973 pv e7e5 g1f3 b8c6 f1c4 g8f6 e1g1 f8c5 d2d3 d7d6 c1g5 c8d7 b1c3 e8g8 c3d5 a7a6 g5f6 g7f6. info depth 17 seldepth 21 multipv 1 score cp -24 nodes 1462686 nps 1245899 tbhits 0 time 1174 pv e7e5 g1f3 b8c6 f1c4 g8f6 e1g1 f8c5 d2d3 d7d5 e4d5 f6d5 f1e1 c8g4 c4d5 d8d5 b1c3 d5e6 f3g5. info depth 18 seldepth 25 multipv 1 score cp -11 nodes 2825595 nps 1253035 tbhits 0 time 2255 pv e7e5 g1f3 b8c6 b1c3 g8f6 f1b5 c6d4 e1g1 f8d6 b5e2 c7c6 d2d3 e8g8 c1e3 d4e2 c3e2 b7b6 d3d4 e5d4 d1d4. info depth 19 seldepth 25 multipv 1 score cp -17 lowerbound nodes 3981753 nps 1270907 tbhits 0 time 3133 pv e7e5. info depth 19 seldepth 25 multipv 1 score cp -17 nodes 4606420 nps 1276370 tbhits 0 time 3609 pv e7e5 g1f3 b8c6 b1c3 g8f6 f1b5 f8b4 e1g1 e8g8 b5c6 d7c6 h2h3 c8e6 d2d3 d8d6 c1e3 h7h6 a2a3 b4c3 b2c3. info depth 20 seldepth 25 multipv 1 score cp -23 upperbound nodes 5586822 nps 1301682 tbhits 0 time 4292 pv e7e5 g1f3. info depth 20 seldepth 27 multipv 1 score cp -17 lowerbound nodes 6389807 nps 1319117 tbhits 0 time 4844 pv e7e5. info depth 20 seldepth 27 multipv 1 score cp -23 upperbound nodes 7119629 nps 1317230 tbhits 0 time 5405 pv e7e5 g1f3. info depth 20 seldepth 27 multipv 1 score cp -15 lowerbound nodes 7581915 nps 1318593 tbhits 0 time 5750 pv e7e5. info depth 20 seldepth 29 multipv 1 score cp -26 upperbound nodes 8844632 nps 1313039 tbhits 0 time 6736 pv e7e5 g1f3. info depth 20 seldepth 29 multipv 1 score cp -22 nodes 9510972 nps 1310231 tbhits 0 time 7259 pv e7e5 g1f3 b8c6 f1b5 g8f6 e1g1 f6e4 d2d4 a7a6 b5c6 d7c6 f1e1 e4f6 b1c3 f8e7 c1g5 e5d4 g5f6 g7f6 f3d4 e8g8 d1h5. bestmove e7e5 ponder g1f3.
10 |
--------------------------------------------------------------------------------