Skip to content

Instantly share code, notes, and snippets.

@JochemKuijpers
Last active September 13, 2019 02:37
Show Gist options
  • Save JochemKuijpers/9cd01f878b3c2ef58b38533b02626a00 to your computer and use it in GitHub Desktop.
Save JochemKuijpers/9cd01f878b3c2ef58b38533b02626a00 to your computer and use it in GitHub Desktop.
Frog puzzle decision tree

Frog Puzzle solver (recursive program)

This code solves the frog puzzle presented by Matt Parker

https://www.youtube.com/watch?v=ZLTyX4zL2Fc

Running the code

The single main.c file compiles to an executable, in the example output named frogjumps.

Executing the program requires three arguments: <smallest leap> <largest leap> <distance>.

Known issues

The program contains a bug where <smallest leap> should be 1 to get accurate results. Generalizing a lower bound (fixing this) seems hard to do in a single recursive pass. Feel free to contribute.

Output

The program prints a decision tree while performing the recursive calculations and on the last line the expected number of leaps is shown (both as an exact fraction and an approximate decimal form).

For example, for a very simple input of 1 2 2 it shows:

Smallest leap :   1
Largest leap  :   2
Distance      :   2

+-+
| +-+  :  2 leaps, 1/2        chance of taking this path
+---+  :  1 leaps, 1/2        chance of taking this path

Expected leaps: 3/2 (1.50000000)

A slightly larger input of 1 4 4 shows:

Smallest leap :   1
Largest leap  :   4
Distance      :   4

+-+
| +-+
| | +-+
| | | +-+  :  4 leaps, 1/24       chance of taking this path
| | +---+  :  3 leaps, 1/24       chance of taking this path
| +---+
| |   +-+  :  3 leaps, 1/12       chance of taking this path
| +-----+  :  2 leaps, 1/12       chance of taking this path
+---+
|   +-+
|   | +-+  :  3 leaps, 1/8        chance of taking this path
|   +---+  :  2 leaps, 1/8        chance of taking this path
+-----+
|     +-+  :  2 leaps, 1/4        chance of taking this path
+-------+  :  1 leaps, 1/4        chance of taking this path

Expected leaps: 25/12 (2.08333333)

The result for 1 10 10 (the requested case in the video) can be found here.
An even larger case of 1 8 12 can be found here.

#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#define MIN(X,Y) (((X) < (Y)) ? (X) : (Y))
// used for modeling rational numbers exactly as two integers (nom/den)
typedef struct Ratio {
uint64_t den;
uint64_t nom;
} Ratio;
// multiply, addition and normalize
Ratio mul(Ratio a, Ratio b);
Ratio add(Ratio a, Ratio b);
Ratio normalize(Ratio a);
// greatest common divisor, used for normalize
int64_t gcd(uint64_t a, uint64_t b);
// various printing functions
void print_usage();
void print_indent(int length);
void print_leap(int length);
// recursively calculate the expected number of leaps and print the decision tree while computing it
Ratio calc_and_print_exp_leaps(int min_leap, int max_leap, int distance, int leaps, Ratio chance, int covered, int * past_leaps);
int main(int argc, char *argv[]) {
if (argc != 4) { print_usage(); }
int min_leap = atoi(argv[1]);
int max_leap = atoi(argv[2]);
int distance = atoi(argv[3]);
if (0 >= min_leap || min_leap > max_leap || max_leap > distance) {
fprintf(stderr, "Invalid arguments!\n");
print_usage();
return 1;
}
if (min_leap != 1) {
fprintf(stderr, "// TODO: make this correct with larger than 1 smallest leaps\n");
print_usage();
return 1;
}
printf("Smallest leap : %3d\n", min_leap);
printf("Largest leap : %3d\n", max_leap);
printf("Distance : %3d\n", distance);
printf("\n");
int past_leaps[distance];
Ratio expected_leaps = calc_and_print_exp_leaps(
min_leap, // minimum leap distance
max_leap, // maximum leap distance
distance, // distance yet to cover
0, // 0 leaps performed yet
(Ratio) { .den = 1, .nom = 1 }, // initialize as 1/1
0, // 0 distance covered
past_leaps // empty array (uninitialized)
);
printf("\n");
printf("Expected leaps: %lu/%lu (%10.8f)\n",
expected_leaps.den, expected_leaps.nom, (expected_leaps.den / (double) expected_leaps.nom));
return 0;
}
Ratio calc_and_print_exp_leaps(int min_leap, int max_leap, int distance, int leaps, Ratio chance, int covered, int * past_leaps) {
int num_options = MIN(distance, max_leap) - min_leap + 1;
if (num_options < 0) {
// there are leaps that end the sequence for which min_leap <= leap <= max_leap holds in this branch
return (Ratio) { .den = 0, .nom = 1 };
}
Ratio exp_cumulative = {
.den = 0,
.nom = 1,
};
Ratio chance_per_choice = {
.den = 1,
.nom = num_options
};
Ratio total_chance_per_choice = mul(chance, chance_per_choice);
// total chance per choice = chance of this branch * chance per choice in this branch
for (int leap_dist = min_leap; leap_dist <= MIN(distance, max_leap); leap_dist += 1) {
for (int i = 0; i < leaps; i += 1) {
print_indent(past_leaps[i]);
}
print_leap(leap_dist);
Ratio new_exp;
if (leap_dist == distance) {
new_exp = total_chance_per_choice;
new_exp.den *= (leaps + 1); // will get normalized at addition with exp_cumulative
printf(" : %2d leaps, %1lu/%-8lu chance of taking this path\n",
leaps + 1, total_chance_per_choice.den, total_chance_per_choice.nom);
} else {
printf("\n");
// a negative leap distance means it's the last of the current "node", so don't print the vertical bar
past_leaps[leaps] = (leap_dist == MIN(distance, max_leap)) ? -leap_dist : leap_dist;
new_exp = calc_and_print_exp_leaps(
min_leap, // minimum leap distance
max_leap, // maximum leap distance
distance - leap_dist, // distance yet to cover
leaps + 1, // 0 leaps performed yet
mul(chance, chance_per_choice), // initialize as 1/1
covered + leap_dist, // 0 distance covered
past_leaps // an array of the previous leaps
);
}
exp_cumulative = add(exp_cumulative, new_exp);
}
return exp_cumulative;
}
inline Ratio mul(Ratio a, Ratio b) {
return normalize((Ratio) {
.den = (a.den * b.den),
.nom = (a.nom * b.nom)
});
}
inline Ratio add(Ratio a, Ratio b) {
Ratio c = {
.den = a.den * b.nom + b.den * a.nom,
.nom = a.nom * b.nom
};
return normalize(c);
}
inline Ratio normalize(Ratio a) {
uint64_t div_by = gcd(a.den, a.nom);
a.den /= div_by;
a.nom /= div_by;
return a;
}
inline int64_t gcd(uint64_t a, uint64_t b) {
if (b < a) return gcd(b, a);
if (a == 0) return b;
return gcd(b % a, a);
}
void print_usage() {
fprintf(stderr, "Usage: frogjumps <smallest leap> <largest leap> <distance>\n");
fprintf(stderr, " where 0 < min_leap <= max_leap <= distance\n");
}
void print_indent(int length) {
if (length > 0) printf("| ");
if (length < 0) { printf(" "); length = -length; }
for (int i = 0; i < length - 1; ++i) printf(" ");
}
void print_leap(int length) {
printf("+");
for (int i = 1; i < length; i += 1) { printf("--"); }
printf("-+");
}
$ frogjumps 1 10 10
Smallest leap : 1
Largest leap : 10
Distance : 10
+-+
| +-+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/3628800 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/3628800 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/1814400 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/1814400 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1209600 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1209600 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/604800 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/604800 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/907200 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/907200 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/453600 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/453600 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/302400 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/302400 chance of taking this path
| | | | | +-------+
| | | | | | +-+ : 7 leaps, 1/151200 chance of taking this path
| | | | | +---------+ : 6 leaps, 1/151200 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/725760 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/725760 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/362880 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/362880 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/241920 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/241920 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/120960 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/120960 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/181440 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/181440 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/90720 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/90720 chance of taking this path
| | | | +-------+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/60480 chance of taking this path
| | | | | +---+ : 6 leaps, 1/60480 chance of taking this path
| | | | +---------+
| | | | | +-+ : 6 leaps, 1/30240 chance of taking this path
| | | | +-----------+ : 5 leaps, 1/30240 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/604800 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/604800 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/302400 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/302400 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/201600 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/201600 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/100800 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/100800 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/151200 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/151200 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/75600 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/75600 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/50400 chance of taking this path
| | | | | +---+ : 6 leaps, 1/50400 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/25200 chance of taking this path
| | | | +---------+ : 5 leaps, 1/25200 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/120960 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/120960 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/60480 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/60480 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/40320 chance of taking this path
| | | | | +---+ : 6 leaps, 1/40320 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/20160 chance of taking this path
| | | | +-------+ : 5 leaps, 1/20160 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/30240 chance of taking this path
| | | | | +---+ : 6 leaps, 1/30240 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/15120 chance of taking this path
| | | | +-----+ : 5 leaps, 1/15120 chance of taking this path
| | | +---------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/10080 chance of taking this path
| | | | +---+ : 5 leaps, 1/10080 chance of taking this path
| | | +-----------+
| | | | +-+ : 5 leaps, 1/5040 chance of taking this path
| | | +-------------+ : 4 leaps, 1/5040 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/518400 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/518400 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/259200 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/259200 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/172800 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/172800 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/86400 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/86400 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/129600 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/129600 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/64800 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/64800 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/43200 chance of taking this path
| | | | | +---+ : 6 leaps, 1/43200 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/21600 chance of taking this path
| | | | +---------+ : 5 leaps, 1/21600 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/103680 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/103680 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/51840 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/51840 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/34560 chance of taking this path
| | | | | +---+ : 6 leaps, 1/34560 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/17280 chance of taking this path
| | | | +-------+ : 5 leaps, 1/17280 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/25920 chance of taking this path
| | | | | +---+ : 6 leaps, 1/25920 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/12960 chance of taking this path
| | | | +-----+ : 5 leaps, 1/12960 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/8640 chance of taking this path
| | | | +---+ : 5 leaps, 1/8640 chance of taking this path
| | | +---------+
| | | | +-+ : 5 leaps, 1/4320 chance of taking this path
| | | +-----------+ : 4 leaps, 1/4320 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/86400 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/86400 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/43200 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/43200 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/28800 chance of taking this path
| | | | | +---+ : 6 leaps, 1/28800 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/14400 chance of taking this path
| | | | +-------+ : 5 leaps, 1/14400 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/21600 chance of taking this path
| | | | | +---+ : 6 leaps, 1/21600 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/10800 chance of taking this path
| | | | +-----+ : 5 leaps, 1/10800 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/7200 chance of taking this path
| | | | +---+ : 5 leaps, 1/7200 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/3600 chance of taking this path
| | | +---------+ : 4 leaps, 1/3600 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/17280 chance of taking this path
| | | | | +---+ : 6 leaps, 1/17280 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/8640 chance of taking this path
| | | | +-----+ : 5 leaps, 1/8640 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/5760 chance of taking this path
| | | | +---+ : 5 leaps, 1/5760 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/2880 chance of taking this path
| | | +-------+ : 4 leaps, 1/2880 chance of taking this path
| | +---------+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/4320 chance of taking this path
| | | | +---+ : 5 leaps, 1/4320 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/2160 chance of taking this path
| | | +-----+ : 4 leaps, 1/2160 chance of taking this path
| | +-----------+
| | | +-+
| | | | +-+ : 5 leaps, 1/1440 chance of taking this path
| | | +---+ : 4 leaps, 1/1440 chance of taking this path
| | +-------------+
| | | +-+ : 4 leaps, 1/720 chance of taking this path
| | +---------------+ : 3 leaps, 1/720 chance of taking this path
| +---+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/453600 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/453600 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/226800 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/226800 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/151200 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/151200 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/75600 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/75600 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/113400 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/113400 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/56700 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/56700 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/37800 chance of taking this path
| | | | | +---+ : 6 leaps, 1/37800 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/18900 chance of taking this path
| | | | +---------+ : 5 leaps, 1/18900 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/90720 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/90720 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/45360 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/45360 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/30240 chance of taking this path
| | | | | +---+ : 6 leaps, 1/30240 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/15120 chance of taking this path
| | | | +-------+ : 5 leaps, 1/15120 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/22680 chance of taking this path
| | | | | +---+ : 6 leaps, 1/22680 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/11340 chance of taking this path
| | | | +-----+ : 5 leaps, 1/11340 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/7560 chance of taking this path
| | | | +---+ : 5 leaps, 1/7560 chance of taking this path
| | | +---------+
| | | | +-+ : 5 leaps, 1/3780 chance of taking this path
| | | +-----------+ : 4 leaps, 1/3780 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/75600 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/75600 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/37800 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/37800 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/25200 chance of taking this path
| | | | | +---+ : 6 leaps, 1/25200 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/12600 chance of taking this path
| | | | +-------+ : 5 leaps, 1/12600 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/18900 chance of taking this path
| | | | | +---+ : 6 leaps, 1/18900 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/9450 chance of taking this path
| | | | +-----+ : 5 leaps, 1/9450 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/6300 chance of taking this path
| | | | +---+ : 5 leaps, 1/6300 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/3150 chance of taking this path
| | | +---------+ : 4 leaps, 1/3150 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/15120 chance of taking this path
| | | | | +---+ : 6 leaps, 1/15120 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/7560 chance of taking this path
| | | | +-----+ : 5 leaps, 1/7560 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/5040 chance of taking this path
| | | | +---+ : 5 leaps, 1/5040 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/2520 chance of taking this path
| | | +-------+ : 4 leaps, 1/2520 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3780 chance of taking this path
| | | | +---+ : 5 leaps, 1/3780 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1890 chance of taking this path
| | | +-----+ : 4 leaps, 1/1890 chance of taking this path
| | +---------+
| | | +-+
| | | | +-+ : 5 leaps, 1/1260 chance of taking this path
| | | +---+ : 4 leaps, 1/1260 chance of taking this path
| | +-----------+
| | | +-+ : 4 leaps, 1/630 chance of taking this path
| | +-------------+ : 3 leaps, 1/630 chance of taking this path
| +-----+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/64800 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/64800 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/32400 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/32400 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/21600 chance of taking this path
| | | | | +---+ : 6 leaps, 1/21600 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/10800 chance of taking this path
| | | | +-------+ : 5 leaps, 1/10800 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/16200 chance of taking this path
| | | | | +---+ : 6 leaps, 1/16200 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/8100 chance of taking this path
| | | | +-----+ : 5 leaps, 1/8100 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/5400 chance of taking this path
| | | | +---+ : 5 leaps, 1/5400 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/2700 chance of taking this path
| | | +---------+ : 4 leaps, 1/2700 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/12960 chance of taking this path
| | | | | +---+ : 6 leaps, 1/12960 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/6480 chance of taking this path
| | | | +-----+ : 5 leaps, 1/6480 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/4320 chance of taking this path
| | | | +---+ : 5 leaps, 1/4320 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/2160 chance of taking this path
| | | +-------+ : 4 leaps, 1/2160 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3240 chance of taking this path
| | | | +---+ : 5 leaps, 1/3240 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1620 chance of taking this path
| | | +-----+ : 4 leaps, 1/1620 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+ : 5 leaps, 1/1080 chance of taking this path
| | | +---+ : 4 leaps, 1/1080 chance of taking this path
| | +---------+
| | | +-+ : 4 leaps, 1/540 chance of taking this path
| | +-----------+ : 3 leaps, 1/540 chance of taking this path
| +-------+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/10800 chance of taking this path
| | | | | +---+ : 6 leaps, 1/10800 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/5400 chance of taking this path
| | | | +-----+ : 5 leaps, 1/5400 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3600 chance of taking this path
| | | | +---+ : 5 leaps, 1/3600 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1800 chance of taking this path
| | | +-------+ : 4 leaps, 1/1800 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2700 chance of taking this path
| | | | +---+ : 5 leaps, 1/2700 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1350 chance of taking this path
| | | +-----+ : 4 leaps, 1/1350 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+ : 5 leaps, 1/900 chance of taking this path
| | | +---+ : 4 leaps, 1/900 chance of taking this path
| | +-------+
| | | +-+ : 4 leaps, 1/450 chance of taking this path
| | +---------+ : 3 leaps, 1/450 chance of taking this path
| +---------+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2160 chance of taking this path
| | | | +---+ : 5 leaps, 1/2160 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1080 chance of taking this path
| | | +-----+ : 4 leaps, 1/1080 chance of taking this path
| | +---+
| | | +-+
| | | | +-+ : 5 leaps, 1/720 chance of taking this path
| | | +---+ : 4 leaps, 1/720 chance of taking this path
| | +-----+
| | | +-+ : 4 leaps, 1/360 chance of taking this path
| | +-------+ : 3 leaps, 1/360 chance of taking this path
| +-----------+
| | +-+
| | | +-+
| | | | +-+ : 5 leaps, 1/540 chance of taking this path
| | | +---+ : 4 leaps, 1/540 chance of taking this path
| | +---+
| | | +-+ : 4 leaps, 1/270 chance of taking this path
| | +-----+ : 3 leaps, 1/270 chance of taking this path
| +-------------+
| | +-+
| | | +-+ : 4 leaps, 1/180 chance of taking this path
| | +---+ : 3 leaps, 1/180 chance of taking this path
| +---------------+
| | +-+ : 3 leaps, 1/90 chance of taking this path
| +-----------------+ : 2 leaps, 1/90 chance of taking this path
+---+
| +-+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/403200 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/403200 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/201600 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/201600 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/134400 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/134400 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/67200 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/67200 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/100800 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/100800 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/50400 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/50400 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/33600 chance of taking this path
| | | | | +---+ : 6 leaps, 1/33600 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/16800 chance of taking this path
| | | | +---------+ : 5 leaps, 1/16800 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/80640 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/80640 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/40320 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/40320 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/26880 chance of taking this path
| | | | | +---+ : 6 leaps, 1/26880 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/13440 chance of taking this path
| | | | +-------+ : 5 leaps, 1/13440 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/20160 chance of taking this path
| | | | | +---+ : 6 leaps, 1/20160 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/10080 chance of taking this path
| | | | +-----+ : 5 leaps, 1/10080 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/6720 chance of taking this path
| | | | +---+ : 5 leaps, 1/6720 chance of taking this path
| | | +---------+
| | | | +-+ : 5 leaps, 1/3360 chance of taking this path
| | | +-----------+ : 4 leaps, 1/3360 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/67200 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/67200 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/33600 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/33600 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/22400 chance of taking this path
| | | | | +---+ : 6 leaps, 1/22400 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/11200 chance of taking this path
| | | | +-------+ : 5 leaps, 1/11200 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/16800 chance of taking this path
| | | | | +---+ : 6 leaps, 1/16800 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/8400 chance of taking this path
| | | | +-----+ : 5 leaps, 1/8400 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/5600 chance of taking this path
| | | | +---+ : 5 leaps, 1/5600 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/2800 chance of taking this path
| | | +---------+ : 4 leaps, 1/2800 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/13440 chance of taking this path
| | | | | +---+ : 6 leaps, 1/13440 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/6720 chance of taking this path
| | | | +-----+ : 5 leaps, 1/6720 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/4480 chance of taking this path
| | | | +---+ : 5 leaps, 1/4480 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/2240 chance of taking this path
| | | +-------+ : 4 leaps, 1/2240 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3360 chance of taking this path
| | | | +---+ : 5 leaps, 1/3360 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1680 chance of taking this path
| | | +-----+ : 4 leaps, 1/1680 chance of taking this path
| | +---------+
| | | +-+
| | | | +-+ : 5 leaps, 1/1120 chance of taking this path
| | | +---+ : 4 leaps, 1/1120 chance of taking this path
| | +-----------+
| | | +-+ : 4 leaps, 1/560 chance of taking this path
| | +-------------+ : 3 leaps, 1/560 chance of taking this path
| +---+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/57600 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/57600 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/28800 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/28800 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/19200 chance of taking this path
| | | | | +---+ : 6 leaps, 1/19200 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/9600 chance of taking this path
| | | | +-------+ : 5 leaps, 1/9600 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/14400 chance of taking this path
| | | | | +---+ : 6 leaps, 1/14400 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/7200 chance of taking this path
| | | | +-----+ : 5 leaps, 1/7200 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/4800 chance of taking this path
| | | | +---+ : 5 leaps, 1/4800 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/2400 chance of taking this path
| | | +---------+ : 4 leaps, 1/2400 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/11520 chance of taking this path
| | | | | +---+ : 6 leaps, 1/11520 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/5760 chance of taking this path
| | | | +-----+ : 5 leaps, 1/5760 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3840 chance of taking this path
| | | | +---+ : 5 leaps, 1/3840 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1920 chance of taking this path
| | | +-------+ : 4 leaps, 1/1920 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2880 chance of taking this path
| | | | +---+ : 5 leaps, 1/2880 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1440 chance of taking this path
| | | +-----+ : 4 leaps, 1/1440 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+ : 5 leaps, 1/960 chance of taking this path
| | | +---+ : 4 leaps, 1/960 chance of taking this path
| | +---------+
| | | +-+ : 4 leaps, 1/480 chance of taking this path
| | +-----------+ : 3 leaps, 1/480 chance of taking this path
| +-----+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/9600 chance of taking this path
| | | | | +---+ : 6 leaps, 1/9600 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/4800 chance of taking this path
| | | | +-----+ : 5 leaps, 1/4800 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3200 chance of taking this path
| | | | +---+ : 5 leaps, 1/3200 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1600 chance of taking this path
| | | +-------+ : 4 leaps, 1/1600 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2400 chance of taking this path
| | | | +---+ : 5 leaps, 1/2400 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1200 chance of taking this path
| | | +-----+ : 4 leaps, 1/1200 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+ : 5 leaps, 1/800 chance of taking this path
| | | +---+ : 4 leaps, 1/800 chance of taking this path
| | +-------+
| | | +-+ : 4 leaps, 1/400 chance of taking this path
| | +---------+ : 3 leaps, 1/400 chance of taking this path
| +-------+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/1920 chance of taking this path
| | | | +---+ : 5 leaps, 1/1920 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/960 chance of taking this path
| | | +-----+ : 4 leaps, 1/960 chance of taking this path
| | +---+
| | | +-+
| | | | +-+ : 5 leaps, 1/640 chance of taking this path
| | | +---+ : 4 leaps, 1/640 chance of taking this path
| | +-----+
| | | +-+ : 4 leaps, 1/320 chance of taking this path
| | +-------+ : 3 leaps, 1/320 chance of taking this path
| +---------+
| | +-+
| | | +-+
| | | | +-+ : 5 leaps, 1/480 chance of taking this path
| | | +---+ : 4 leaps, 1/480 chance of taking this path
| | +---+
| | | +-+ : 4 leaps, 1/240 chance of taking this path
| | +-----+ : 3 leaps, 1/240 chance of taking this path
| +-----------+
| | +-+
| | | +-+ : 4 leaps, 1/160 chance of taking this path
| | +---+ : 3 leaps, 1/160 chance of taking this path
| +-------------+
| | +-+ : 3 leaps, 1/80 chance of taking this path
| +---------------+ : 2 leaps, 1/80 chance of taking this path
+-----+
| +-+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/50400 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/50400 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/25200 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/25200 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/16800 chance of taking this path
| | | | | +---+ : 6 leaps, 1/16800 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/8400 chance of taking this path
| | | | +-------+ : 5 leaps, 1/8400 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/12600 chance of taking this path
| | | | | +---+ : 6 leaps, 1/12600 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/6300 chance of taking this path
| | | | +-----+ : 5 leaps, 1/6300 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/4200 chance of taking this path
| | | | +---+ : 5 leaps, 1/4200 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/2100 chance of taking this path
| | | +---------+ : 4 leaps, 1/2100 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/10080 chance of taking this path
| | | | | +---+ : 6 leaps, 1/10080 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/5040 chance of taking this path
| | | | +-----+ : 5 leaps, 1/5040 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3360 chance of taking this path
| | | | +---+ : 5 leaps, 1/3360 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1680 chance of taking this path
| | | +-------+ : 4 leaps, 1/1680 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2520 chance of taking this path
| | | | +---+ : 5 leaps, 1/2520 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1260 chance of taking this path
| | | +-----+ : 4 leaps, 1/1260 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+ : 5 leaps, 1/840 chance of taking this path
| | | +---+ : 4 leaps, 1/840 chance of taking this path
| | +---------+
| | | +-+ : 4 leaps, 1/420 chance of taking this path
| | +-----------+ : 3 leaps, 1/420 chance of taking this path
| +---+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/8400 chance of taking this path
| | | | | +---+ : 6 leaps, 1/8400 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/4200 chance of taking this path
| | | | +-----+ : 5 leaps, 1/4200 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2800 chance of taking this path
| | | | +---+ : 5 leaps, 1/2800 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1400 chance of taking this path
| | | +-------+ : 4 leaps, 1/1400 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2100 chance of taking this path
| | | | +---+ : 5 leaps, 1/2100 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1050 chance of taking this path
| | | +-----+ : 4 leaps, 1/1050 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+ : 5 leaps, 1/700 chance of taking this path
| | | +---+ : 4 leaps, 1/700 chance of taking this path
| | +-------+
| | | +-+ : 4 leaps, 1/350 chance of taking this path
| | +---------+ : 3 leaps, 1/350 chance of taking this path
| +-----+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/1680 chance of taking this path
| | | | +---+ : 5 leaps, 1/1680 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/840 chance of taking this path
| | | +-----+ : 4 leaps, 1/840 chance of taking this path
| | +---+
| | | +-+
| | | | +-+ : 5 leaps, 1/560 chance of taking this path
| | | +---+ : 4 leaps, 1/560 chance of taking this path
| | +-----+
| | | +-+ : 4 leaps, 1/280 chance of taking this path
| | +-------+ : 3 leaps, 1/280 chance of taking this path
| +-------+
| | +-+
| | | +-+
| | | | +-+ : 5 leaps, 1/420 chance of taking this path
| | | +---+ : 4 leaps, 1/420 chance of taking this path
| | +---+
| | | +-+ : 4 leaps, 1/210 chance of taking this path
| | +-----+ : 3 leaps, 1/210 chance of taking this path
| +---------+
| | +-+
| | | +-+ : 4 leaps, 1/140 chance of taking this path
| | +---+ : 3 leaps, 1/140 chance of taking this path
| +-----------+
| | +-+ : 3 leaps, 1/70 chance of taking this path
| +-------------+ : 2 leaps, 1/70 chance of taking this path
+-------+
| +-+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/7200 chance of taking this path
| | | | | +---+ : 6 leaps, 1/7200 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/3600 chance of taking this path
| | | | +-----+ : 5 leaps, 1/3600 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2400 chance of taking this path
| | | | +---+ : 5 leaps, 1/2400 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1200 chance of taking this path
| | | +-------+ : 4 leaps, 1/1200 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/1800 chance of taking this path
| | | | +---+ : 5 leaps, 1/1800 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/900 chance of taking this path
| | | +-----+ : 4 leaps, 1/900 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+ : 5 leaps, 1/600 chance of taking this path
| | | +---+ : 4 leaps, 1/600 chance of taking this path
| | +-------+
| | | +-+ : 4 leaps, 1/300 chance of taking this path
| | +---------+ : 3 leaps, 1/300 chance of taking this path
| +---+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/1440 chance of taking this path
| | | | +---+ : 5 leaps, 1/1440 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/720 chance of taking this path
| | | +-----+ : 4 leaps, 1/720 chance of taking this path
| | +---+
| | | +-+
| | | | +-+ : 5 leaps, 1/480 chance of taking this path
| | | +---+ : 4 leaps, 1/480 chance of taking this path
| | +-----+
| | | +-+ : 4 leaps, 1/240 chance of taking this path
| | +-------+ : 3 leaps, 1/240 chance of taking this path
| +-----+
| | +-+
| | | +-+
| | | | +-+ : 5 leaps, 1/360 chance of taking this path
| | | +---+ : 4 leaps, 1/360 chance of taking this path
| | +---+
| | | +-+ : 4 leaps, 1/180 chance of taking this path
| | +-----+ : 3 leaps, 1/180 chance of taking this path
| +-------+
| | +-+
| | | +-+ : 4 leaps, 1/120 chance of taking this path
| | +---+ : 3 leaps, 1/120 chance of taking this path
| +---------+
| | +-+ : 3 leaps, 1/60 chance of taking this path
| +-----------+ : 2 leaps, 1/60 chance of taking this path
+---------+
| +-+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/1200 chance of taking this path
| | | | +---+ : 5 leaps, 1/1200 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/600 chance of taking this path
| | | +-----+ : 4 leaps, 1/600 chance of taking this path
| | +---+
| | | +-+
| | | | +-+ : 5 leaps, 1/400 chance of taking this path
| | | +---+ : 4 leaps, 1/400 chance of taking this path
| | +-----+
| | | +-+ : 4 leaps, 1/200 chance of taking this path
| | +-------+ : 3 leaps, 1/200 chance of taking this path
| +---+
| | +-+
| | | +-+
| | | | +-+ : 5 leaps, 1/300 chance of taking this path
| | | +---+ : 4 leaps, 1/300 chance of taking this path
| | +---+
| | | +-+ : 4 leaps, 1/150 chance of taking this path
| | +-----+ : 3 leaps, 1/150 chance of taking this path
| +-----+
| | +-+
| | | +-+ : 4 leaps, 1/100 chance of taking this path
| | +---+ : 3 leaps, 1/100 chance of taking this path
| +-------+
| | +-+ : 3 leaps, 1/50 chance of taking this path
| +---------+ : 2 leaps, 1/50 chance of taking this path
+-----------+
| +-+
| | +-+
| | | +-+
| | | | +-+ : 5 leaps, 1/240 chance of taking this path
| | | +---+ : 4 leaps, 1/240 chance of taking this path
| | +---+
| | | +-+ : 4 leaps, 1/120 chance of taking this path
| | +-----+ : 3 leaps, 1/120 chance of taking this path
| +---+
| | +-+
| | | +-+ : 4 leaps, 1/80 chance of taking this path
| | +---+ : 3 leaps, 1/80 chance of taking this path
| +-----+
| | +-+ : 3 leaps, 1/40 chance of taking this path
| +-------+ : 2 leaps, 1/40 chance of taking this path
+-------------+
| +-+
| | +-+
| | | +-+ : 4 leaps, 1/60 chance of taking this path
| | +---+ : 3 leaps, 1/60 chance of taking this path
| +---+
| | +-+ : 3 leaps, 1/30 chance of taking this path
| +-----+ : 2 leaps, 1/30 chance of taking this path
+---------------+
| +-+
| | +-+ : 3 leaps, 1/20 chance of taking this path
| +---+ : 2 leaps, 1/20 chance of taking this path
+-----------------+
| +-+ : 2 leaps, 1/10 chance of taking this path
+-------------------+ : 1 leaps, 1/10 chance of taking this path
Expected leaps: 7381/2520 (2.92896825)
frogjumps 1 8 12
Smallest leap : 1
Largest leap : 8
Distance : 12
+-+
| +-+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+
| | | | | | | | | | +-+
| | | | | | | | | | | +-+ : 12 leaps, 1/165150720 chance of taking this path
| | | | | | | | | | +---+ : 11 leaps, 1/165150720 chance of taking this path
| | | | | | | | | +---+
| | | | | | | | | | +-+ : 11 leaps, 1/82575360 chance of taking this path
| | | | | | | | | +-----+ : 10 leaps, 1/82575360 chance of taking this path
| | | | | | | | +---+
| | | | | | | | | +-+
| | | | | | | | | | +-+ : 11 leaps, 1/55050240 chance of taking this path
| | | | | | | | | +---+ : 10 leaps, 1/55050240 chance of taking this path
| | | | | | | | +-----+
| | | | | | | | | +-+ : 10 leaps, 1/27525120 chance of taking this path
| | | | | | | | +-------+ : 9 leaps, 1/27525120 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+
| | | | | | | | | +-+
| | | | | | | | | | +-+ : 11 leaps, 1/41287680 chance of taking this path
| | | | | | | | | +---+ : 10 leaps, 1/41287680 chance of taking this path
| | | | | | | | +---+
| | | | | | | | | +-+ : 10 leaps, 1/20643840 chance of taking this path
| | | | | | | | +-----+ : 9 leaps, 1/20643840 chance of taking this path
| | | | | | | +-----+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/13762560 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/13762560 chance of taking this path
| | | | | | | +-------+
| | | | | | | | +-+ : 9 leaps, 1/6881280 chance of taking this path
| | | | | | | +---------+ : 8 leaps, 1/6881280 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+
| | | | | | | | | | +-+ : 11 leaps, 1/33030144 chance of taking this path
| | | | | | | | | +---+ : 10 leaps, 1/33030144 chance of taking this path
| | | | | | | | +---+
| | | | | | | | | +-+ : 10 leaps, 1/16515072 chance of taking this path
| | | | | | | | +-----+ : 9 leaps, 1/16515072 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/11010048 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/11010048 chance of taking this path
| | | | | | | +-----+
| | | | | | | | +-+ : 9 leaps, 1/5505024 chance of taking this path
| | | | | | | +-------+ : 8 leaps, 1/5505024 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/8257536 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/8257536 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/4128768 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/4128768 chance of taking this path
| | | | | | +-------+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/2752512 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/2752512 chance of taking this path
| | | | | | +---------+
| | | | | | | +-+ : 8 leaps, 1/1376256 chance of taking this path
| | | | | | +-----------+ : 7 leaps, 1/1376256 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+
| | | | | | | | | | +-+ : 11 leaps, 1/27525120 chance of taking this path
| | | | | | | | | +---+ : 10 leaps, 1/27525120 chance of taking this path
| | | | | | | | +---+
| | | | | | | | | +-+ : 10 leaps, 1/13762560 chance of taking this path
| | | | | | | | +-----+ : 9 leaps, 1/13762560 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/9175040 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/9175040 chance of taking this path
| | | | | | | +-----+
| | | | | | | | +-+ : 9 leaps, 1/4587520 chance of taking this path
| | | | | | | +-------+ : 8 leaps, 1/4587520 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/6881280 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/6881280 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/3440640 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/3440640 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/2293760 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/2293760 chance of taking this path
| | | | | | +-------+
| | | | | | | +-+ : 8 leaps, 1/1146880 chance of taking this path
| | | | | | +---------+ : 7 leaps, 1/1146880 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/5505024 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/5505024 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/2752512 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/2752512 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1835008 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1835008 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/917504 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/917504 chance of taking this path
| | | | | +-------+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1376256 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1376256 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/688128 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/688128 chance of taking this path
| | | | | +---------+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/458752 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/458752 chance of taking this path
| | | | | +-----------+
| | | | | | +-+ : 7 leaps, 1/229376 chance of taking this path
| | | | | +-------------+ : 6 leaps, 1/229376 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+
| | | | | | | | | | +-+ : 11 leaps, 1/23592960 chance of taking this path
| | | | | | | | | +---+ : 10 leaps, 1/23592960 chance of taking this path
| | | | | | | | +---+
| | | | | | | | | +-+ : 10 leaps, 1/11796480 chance of taking this path
| | | | | | | | +-----+ : 9 leaps, 1/11796480 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/7864320 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/7864320 chance of taking this path
| | | | | | | +-----+
| | | | | | | | +-+ : 9 leaps, 1/3932160 chance of taking this path
| | | | | | | +-------+ : 8 leaps, 1/3932160 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/5898240 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/5898240 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/2949120 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/2949120 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1966080 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1966080 chance of taking this path
| | | | | | +-------+
| | | | | | | +-+ : 8 leaps, 1/983040 chance of taking this path
| | | | | | +---------+ : 7 leaps, 1/983040 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/4718592 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/4718592 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/2359296 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/2359296 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1572864 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1572864 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/786432 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/786432 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1179648 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1179648 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/589824 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/589824 chance of taking this path
| | | | | +-------+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/393216 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/393216 chance of taking this path
| | | | | +---------+
| | | | | | +-+ : 7 leaps, 1/196608 chance of taking this path
| | | | | +-----------+ : 6 leaps, 1/196608 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/3932160 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/3932160 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/1966080 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/1966080 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1310720 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1310720 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/655360 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/655360 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/983040 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/983040 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/491520 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/491520 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/327680 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/327680 chance of taking this path
| | | | | +-------+
| | | | | | +-+ : 7 leaps, 1/163840 chance of taking this path
| | | | | +---------+ : 6 leaps, 1/163840 chance of taking this path
| | | | +-------+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/786432 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/786432 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/393216 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/393216 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/262144 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/262144 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/131072 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/131072 chance of taking this path
| | | | +---------+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/196608 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/196608 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/98304 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/98304 chance of taking this path
| | | | +-----------+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/65536 chance of taking this path
| | | | | +---+ : 6 leaps, 1/65536 chance of taking this path
| | | | +-------------+
| | | | | +-+ : 6 leaps, 1/32768 chance of taking this path
| | | | +---------------+ : 5 leaps, 1/32768 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+
| | | | | | | | | | +-+ : 11 leaps, 1/20643840 chance of taking this path
| | | | | | | | | +---+ : 10 leaps, 1/20643840 chance of taking this path
| | | | | | | | +---+
| | | | | | | | | +-+ : 10 leaps, 1/10321920 chance of taking this path
| | | | | | | | +-----+ : 9 leaps, 1/10321920 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/6881280 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/6881280 chance of taking this path
| | | | | | | +-----+
| | | | | | | | +-+ : 9 leaps, 1/3440640 chance of taking this path
| | | | | | | +-------+ : 8 leaps, 1/3440640 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/5160960 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/5160960 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/2580480 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/2580480 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1720320 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1720320 chance of taking this path
| | | | | | +-------+
| | | | | | | +-+ : 8 leaps, 1/860160 chance of taking this path
| | | | | | +---------+ : 7 leaps, 1/860160 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/4128768 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/4128768 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/2064384 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/2064384 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1376256 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1376256 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/688128 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/688128 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1032192 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1032192 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/516096 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/516096 chance of taking this path
| | | | | +-------+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/344064 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/344064 chance of taking this path
| | | | | +---------+
| | | | | | +-+ : 7 leaps, 1/172032 chance of taking this path
| | | | | +-----------+ : 6 leaps, 1/172032 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/3440640 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/3440640 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/1720320 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/1720320 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1146880 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1146880 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/573440 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/573440 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/860160 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/860160 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/430080 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/430080 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/286720 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/286720 chance of taking this path
| | | | | +-------+
| | | | | | +-+ : 7 leaps, 1/143360 chance of taking this path
| | | | | +---------+ : 6 leaps, 1/143360 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/688128 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/688128 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/344064 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/344064 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/229376 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/229376 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/114688 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/114688 chance of taking this path
| | | | +-------+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/172032 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/172032 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/86016 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/86016 chance of taking this path
| | | | +---------+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/57344 chance of taking this path
| | | | | +---+ : 6 leaps, 1/57344 chance of taking this path
| | | | +-----------+
| | | | | +-+ : 6 leaps, 1/28672 chance of taking this path
| | | | +-------------+ : 5 leaps, 1/28672 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/2949120 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/2949120 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/1474560 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/1474560 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/983040 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/983040 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/491520 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/491520 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/737280 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/737280 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/368640 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/368640 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/245760 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/245760 chance of taking this path
| | | | | +-------+
| | | | | | +-+ : 7 leaps, 1/122880 chance of taking this path
| | | | | +---------+ : 6 leaps, 1/122880 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/589824 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/589824 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/294912 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/294912 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/196608 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/196608 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/98304 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/98304 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/147456 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/147456 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/73728 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/73728 chance of taking this path
| | | | +-------+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/49152 chance of taking this path
| | | | | +---+ : 6 leaps, 1/49152 chance of taking this path
| | | | +---------+
| | | | | +-+ : 6 leaps, 1/24576 chance of taking this path
| | | | +-----------+ : 5 leaps, 1/24576 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/491520 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/491520 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/245760 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/245760 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/163840 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/163840 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/81920 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/81920 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/122880 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/122880 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/61440 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/61440 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/40960 chance of taking this path
| | | | | +---+ : 6 leaps, 1/40960 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/20480 chance of taking this path
| | | | +---------+ : 5 leaps, 1/20480 chance of taking this path
| | | +---------+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/98304 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/98304 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/49152 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/49152 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/32768 chance of taking this path
| | | | | +---+ : 6 leaps, 1/32768 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/16384 chance of taking this path
| | | | +-------+ : 5 leaps, 1/16384 chance of taking this path
| | | +-----------+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/24576 chance of taking this path
| | | | | +---+ : 6 leaps, 1/24576 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/12288 chance of taking this path
| | | | +-----+ : 5 leaps, 1/12288 chance of taking this path
| | | +-------------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/8192 chance of taking this path
| | | | +---+ : 5 leaps, 1/8192 chance of taking this path
| | | +---------------+
| | | +-+ : 5 leaps, 1/4096 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+
| | | | | | | | | | +-+ : 11 leaps, 1/20643840 chance of taking this path
| | | | | | | | | +---+ : 10 leaps, 1/20643840 chance of taking this path
| | | | | | | | +---+
| | | | | | | | | +-+ : 10 leaps, 1/10321920 chance of taking this path
| | | | | | | | +-----+ : 9 leaps, 1/10321920 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/6881280 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/6881280 chance of taking this path
| | | | | | | +-----+
| | | | | | | | +-+ : 9 leaps, 1/3440640 chance of taking this path
| | | | | | | +-------+ : 8 leaps, 1/3440640 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/5160960 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/5160960 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/2580480 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/2580480 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1720320 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1720320 chance of taking this path
| | | | | | +-------+
| | | | | | | +-+ : 8 leaps, 1/860160 chance of taking this path
| | | | | | +---------+ : 7 leaps, 1/860160 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/4128768 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/4128768 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/2064384 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/2064384 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1376256 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1376256 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/688128 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/688128 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1032192 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1032192 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/516096 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/516096 chance of taking this path
| | | | | +-------+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/344064 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/344064 chance of taking this path
| | | | | +---------+
| | | | | | +-+ : 7 leaps, 1/172032 chance of taking this path
| | | | | +-----------+ : 6 leaps, 1/172032 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/3440640 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/3440640 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/1720320 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/1720320 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1146880 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1146880 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/573440 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/573440 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/860160 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/860160 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/430080 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/430080 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/286720 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/286720 chance of taking this path
| | | | | +-------+
| | | | | | +-+ : 7 leaps, 1/143360 chance of taking this path
| | | | | +---------+ : 6 leaps, 1/143360 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/688128 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/688128 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/344064 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/344064 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/229376 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/229376 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/114688 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/114688 chance of taking this path
| | | | +-------+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/172032 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/172032 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/86016 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/86016 chance of taking this path
| | | | +---------+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/57344 chance of taking this path
| | | | | +---+ : 6 leaps, 1/57344 chance of taking this path
| | | | +-----------+
| | | | | +-+ : 6 leaps, 1/28672 chance of taking this path
| | | | +-------------+ : 5 leaps, 1/28672 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/2949120 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/2949120 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/1474560 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/1474560 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/983040 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/983040 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/491520 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/491520 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/737280 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/737280 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/368640 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/368640 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/245760 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/245760 chance of taking this path
| | | | | +-------+
| | | | | | +-+ : 7 leaps, 1/122880 chance of taking this path
| | | | | +---------+ : 6 leaps, 1/122880 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/589824 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/589824 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/294912 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/294912 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/196608 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/196608 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/98304 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/98304 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/147456 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/147456 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/73728 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/73728 chance of taking this path
| | | | +-------+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/49152 chance of taking this path
| | | | | +---+ : 6 leaps, 1/49152 chance of taking this path
| | | | +---------+
| | | | | +-+ : 6 leaps, 1/24576 chance of taking this path
| | | | +-----------+ : 5 leaps, 1/24576 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/491520 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/491520 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/245760 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/245760 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/163840 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/163840 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/81920 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/81920 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/122880 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/122880 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/61440 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/61440 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/40960 chance of taking this path
| | | | | +---+ : 6 leaps, 1/40960 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/20480 chance of taking this path
| | | | +---------+ : 5 leaps, 1/20480 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/98304 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/98304 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/49152 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/49152 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/32768 chance of taking this path
| | | | | +---+ : 6 leaps, 1/32768 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/16384 chance of taking this path
| | | | +-------+ : 5 leaps, 1/16384 chance of taking this path
| | | +---------+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/24576 chance of taking this path
| | | | | +---+ : 6 leaps, 1/24576 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/12288 chance of taking this path
| | | | +-----+ : 5 leaps, 1/12288 chance of taking this path
| | | +-----------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/8192 chance of taking this path
| | | | +---+ : 5 leaps, 1/8192 chance of taking this path
| | | +-------------+
| | | | +-+ : 5 leaps, 1/4096 chance of taking this path
| | | +---------------+ : 4 leaps, 1/4096 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/2580480 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/2580480 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/1290240 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/1290240 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/860160 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/860160 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/430080 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/430080 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/645120 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/645120 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/322560 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/322560 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/215040 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/215040 chance of taking this path
| | | | | +-------+
| | | | | | +-+ : 7 leaps, 1/107520 chance of taking this path
| | | | | +---------+ : 6 leaps, 1/107520 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/516096 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/516096 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/258048 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/258048 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/172032 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/172032 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/86016 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/86016 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/129024 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/129024 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/64512 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/64512 chance of taking this path
| | | | +-------+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/43008 chance of taking this path
| | | | | +---+ : 6 leaps, 1/43008 chance of taking this path
| | | | +---------+
| | | | | +-+ : 6 leaps, 1/21504 chance of taking this path
| | | | +-----------+ : 5 leaps, 1/21504 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/430080 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/430080 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/215040 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/215040 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/143360 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/143360 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/71680 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/71680 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/107520 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/107520 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/53760 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/53760 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/35840 chance of taking this path
| | | | | +---+ : 6 leaps, 1/35840 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/17920 chance of taking this path
| | | | +---------+ : 5 leaps, 1/17920 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/86016 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/86016 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/43008 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/43008 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/28672 chance of taking this path
| | | | | +---+ : 6 leaps, 1/28672 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/14336 chance of taking this path
| | | | +-------+ : 5 leaps, 1/14336 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/21504 chance of taking this path
| | | | | +---+ : 6 leaps, 1/21504 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/10752 chance of taking this path
| | | | +-----+ : 5 leaps, 1/10752 chance of taking this path
| | | +---------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/7168 chance of taking this path
| | | | +---+ : 5 leaps, 1/7168 chance of taking this path
| | | +-----------+
| | | | +-+ : 5 leaps, 1/3584 chance of taking this path
| | | +-------------+ : 4 leaps, 1/3584 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/368640 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/368640 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/184320 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/184320 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/122880 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/122880 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/61440 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/61440 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/92160 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/92160 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/46080 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/46080 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/30720 chance of taking this path
| | | | | +---+ : 6 leaps, 1/30720 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/15360 chance of taking this path
| | | | +---------+ : 5 leaps, 1/15360 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/73728 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/73728 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/36864 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/36864 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/24576 chance of taking this path
| | | | | +---+ : 6 leaps, 1/24576 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/12288 chance of taking this path
| | | | +-------+ : 5 leaps, 1/12288 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/18432 chance of taking this path
| | | | | +---+ : 6 leaps, 1/18432 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/9216 chance of taking this path
| | | | +-----+ : 5 leaps, 1/9216 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/6144 chance of taking this path
| | | | +---+ : 5 leaps, 1/6144 chance of taking this path
| | | +---------+
| | | | +-+ : 5 leaps, 1/3072 chance of taking this path
| | | +-----------+ : 4 leaps, 1/3072 chance of taking this path
| | +---------+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/61440 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/61440 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/30720 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/30720 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/20480 chance of taking this path
| | | | | +---+ : 6 leaps, 1/20480 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/10240 chance of taking this path
| | | | +-------+ : 5 leaps, 1/10240 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/15360 chance of taking this path
| | | | | +---+ : 6 leaps, 1/15360 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/7680 chance of taking this path
| | | | +-----+ : 5 leaps, 1/7680 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/5120 chance of taking this path
| | | | +---+ : 5 leaps, 1/5120 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/2560 chance of taking this path
| | | +---------+ : 4 leaps, 1/2560 chance of taking this path
| | +-----------+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/12288 chance of taking this path
| | | | | +---+ : 6 leaps, 1/12288 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/6144 chance of taking this path
| | | | +-----+ : 5 leaps, 1/6144 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/4096 chance of taking this path
| | | | +---+ : 5 leaps, 1/4096 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/2048 chance of taking this path
| | | +-------+ : 4 leaps, 1/2048 chance of taking this path
| | +-------------+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3072 chance of taking this path
| | | | +---+ : 5 leaps, 1/3072 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1536 chance of taking this path
| | | +-----+ : 4 leaps, 1/1536 chance of taking this path
| | +---------------+
| | +-+
| | | +-+ : 5 leaps, 1/1024 chance of taking this path
| | +---+ : 4 leaps, 1/1024 chance of taking this path
| +---+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+
| | | | | | | | | | +-+ : 11 leaps, 1/20643840 chance of taking this path
| | | | | | | | | +---+ : 10 leaps, 1/20643840 chance of taking this path
| | | | | | | | +---+
| | | | | | | | | +-+ : 10 leaps, 1/10321920 chance of taking this path
| | | | | | | | +-----+ : 9 leaps, 1/10321920 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/6881280 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/6881280 chance of taking this path
| | | | | | | +-----+
| | | | | | | | +-+ : 9 leaps, 1/3440640 chance of taking this path
| | | | | | | +-------+ : 8 leaps, 1/3440640 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/5160960 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/5160960 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/2580480 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/2580480 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1720320 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1720320 chance of taking this path
| | | | | | +-------+
| | | | | | | +-+ : 8 leaps, 1/860160 chance of taking this path
| | | | | | +---------+ : 7 leaps, 1/860160 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/4128768 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/4128768 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/2064384 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/2064384 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1376256 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1376256 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/688128 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/688128 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1032192 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1032192 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/516096 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/516096 chance of taking this path
| | | | | +-------+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/344064 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/344064 chance of taking this path
| | | | | +---------+
| | | | | | +-+ : 7 leaps, 1/172032 chance of taking this path
| | | | | +-----------+ : 6 leaps, 1/172032 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/3440640 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/3440640 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/1720320 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/1720320 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1146880 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1146880 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/573440 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/573440 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/860160 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/860160 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/430080 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/430080 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/286720 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/286720 chance of taking this path
| | | | | +-------+
| | | | | | +-+ : 7 leaps, 1/143360 chance of taking this path
| | | | | +---------+ : 6 leaps, 1/143360 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/688128 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/688128 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/344064 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/344064 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/229376 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/229376 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/114688 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/114688 chance of taking this path
| | | | +-------+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/172032 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/172032 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/86016 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/86016 chance of taking this path
| | | | +---------+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/57344 chance of taking this path
| | | | | +---+ : 6 leaps, 1/57344 chance of taking this path
| | | | +-----------+
| | | | | +-+ : 6 leaps, 1/28672 chance of taking this path
| | | | +-------------+ : 5 leaps, 1/28672 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/2949120 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/2949120 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/1474560 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/1474560 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/983040 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/983040 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/491520 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/491520 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/737280 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/737280 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/368640 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/368640 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/245760 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/245760 chance of taking this path
| | | | | +-------+
| | | | | | +-+ : 7 leaps, 1/122880 chance of taking this path
| | | | | +---------+ : 6 leaps, 1/122880 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/589824 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/589824 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/294912 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/294912 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/196608 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/196608 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/98304 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/98304 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/147456 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/147456 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/73728 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/73728 chance of taking this path
| | | | +-------+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/49152 chance of taking this path
| | | | | +---+ : 6 leaps, 1/49152 chance of taking this path
| | | | +---------+
| | | | | +-+ : 6 leaps, 1/24576 chance of taking this path
| | | | +-----------+ : 5 leaps, 1/24576 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/491520 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/491520 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/245760 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/245760 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/163840 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/163840 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/81920 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/81920 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/122880 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/122880 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/61440 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/61440 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/40960 chance of taking this path
| | | | | +---+ : 6 leaps, 1/40960 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/20480 chance of taking this path
| | | | +---------+ : 5 leaps, 1/20480 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/98304 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/98304 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/49152 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/49152 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/32768 chance of taking this path
| | | | | +---+ : 6 leaps, 1/32768 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/16384 chance of taking this path
| | | | +-------+ : 5 leaps, 1/16384 chance of taking this path
| | | +---------+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/24576 chance of taking this path
| | | | | +---+ : 6 leaps, 1/24576 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/12288 chance of taking this path
| | | | +-----+ : 5 leaps, 1/12288 chance of taking this path
| | | +-----------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/8192 chance of taking this path
| | | | +---+ : 5 leaps, 1/8192 chance of taking this path
| | | +-------------+
| | | | +-+ : 5 leaps, 1/4096 chance of taking this path
| | | +---------------+ : 4 leaps, 1/4096 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/2580480 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/2580480 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/1290240 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/1290240 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/860160 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/860160 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/430080 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/430080 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/645120 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/645120 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/322560 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/322560 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/215040 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/215040 chance of taking this path
| | | | | +-------+
| | | | | | +-+ : 7 leaps, 1/107520 chance of taking this path
| | | | | +---------+ : 6 leaps, 1/107520 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/516096 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/516096 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/258048 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/258048 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/172032 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/172032 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/86016 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/86016 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/129024 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/129024 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/64512 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/64512 chance of taking this path
| | | | +-------+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/43008 chance of taking this path
| | | | | +---+ : 6 leaps, 1/43008 chance of taking this path
| | | | +---------+
| | | | | +-+ : 6 leaps, 1/21504 chance of taking this path
| | | | +-----------+ : 5 leaps, 1/21504 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/430080 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/430080 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/215040 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/215040 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/143360 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/143360 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/71680 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/71680 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/107520 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/107520 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/53760 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/53760 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/35840 chance of taking this path
| | | | | +---+ : 6 leaps, 1/35840 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/17920 chance of taking this path
| | | | +---------+ : 5 leaps, 1/17920 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/86016 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/86016 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/43008 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/43008 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/28672 chance of taking this path
| | | | | +---+ : 6 leaps, 1/28672 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/14336 chance of taking this path
| | | | +-------+ : 5 leaps, 1/14336 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/21504 chance of taking this path
| | | | | +---+ : 6 leaps, 1/21504 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/10752 chance of taking this path
| | | | +-----+ : 5 leaps, 1/10752 chance of taking this path
| | | +---------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/7168 chance of taking this path
| | | | +---+ : 5 leaps, 1/7168 chance of taking this path
| | | +-----------+
| | | | +-+ : 5 leaps, 1/3584 chance of taking this path
| | | +-------------+ : 4 leaps, 1/3584 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/368640 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/368640 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/184320 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/184320 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/122880 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/122880 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/61440 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/61440 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/92160 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/92160 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/46080 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/46080 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/30720 chance of taking this path
| | | | | +---+ : 6 leaps, 1/30720 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/15360 chance of taking this path
| | | | +---------+ : 5 leaps, 1/15360 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/73728 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/73728 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/36864 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/36864 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/24576 chance of taking this path
| | | | | +---+ : 6 leaps, 1/24576 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/12288 chance of taking this path
| | | | +-------+ : 5 leaps, 1/12288 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/18432 chance of taking this path
| | | | | +---+ : 6 leaps, 1/18432 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/9216 chance of taking this path
| | | | +-----+ : 5 leaps, 1/9216 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/6144 chance of taking this path
| | | | +---+ : 5 leaps, 1/6144 chance of taking this path
| | | +---------+
| | | | +-+ : 5 leaps, 1/3072 chance of taking this path
| | | +-----------+ : 4 leaps, 1/3072 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/61440 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/61440 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/30720 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/30720 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/20480 chance of taking this path
| | | | | +---+ : 6 leaps, 1/20480 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/10240 chance of taking this path
| | | | +-------+ : 5 leaps, 1/10240 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/15360 chance of taking this path
| | | | | +---+ : 6 leaps, 1/15360 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/7680 chance of taking this path
| | | | +-----+ : 5 leaps, 1/7680 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/5120 chance of taking this path
| | | | +---+ : 5 leaps, 1/5120 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/2560 chance of taking this path
| | | +---------+ : 4 leaps, 1/2560 chance of taking this path
| | +---------+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/12288 chance of taking this path
| | | | | +---+ : 6 leaps, 1/12288 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/6144 chance of taking this path
| | | | +-----+ : 5 leaps, 1/6144 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/4096 chance of taking this path
| | | | +---+ : 5 leaps, 1/4096 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/2048 chance of taking this path
| | | +-------+ : 4 leaps, 1/2048 chance of taking this path
| | +-----------+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3072 chance of taking this path
| | | | +---+ : 5 leaps, 1/3072 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1536 chance of taking this path
| | | +-----+ : 4 leaps, 1/1536 chance of taking this path
| | +-------------+
| | | +-+
| | | | +-+ : 5 leaps, 1/1024 chance of taking this path
| | | +---+ : 4 leaps, 1/1024 chance of taking this path
| | +---------------+
| | +-+ : 4 leaps, 1/512 chance of taking this path
| +-----+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/2580480 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/2580480 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/1290240 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/1290240 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/860160 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/860160 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/430080 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/430080 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/645120 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/645120 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/322560 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/322560 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/215040 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/215040 chance of taking this path
| | | | | +-------+
| | | | | | +-+ : 7 leaps, 1/107520 chance of taking this path
| | | | | +---------+ : 6 leaps, 1/107520 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/516096 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/516096 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/258048 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/258048 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/172032 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/172032 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/86016 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/86016 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/129024 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/129024 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/64512 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/64512 chance of taking this path
| | | | +-------+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/43008 chance of taking this path
| | | | | +---+ : 6 leaps, 1/43008 chance of taking this path
| | | | +---------+
| | | | | +-+ : 6 leaps, 1/21504 chance of taking this path
| | | | +-----------+ : 5 leaps, 1/21504 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/430080 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/430080 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/215040 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/215040 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/143360 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/143360 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/71680 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/71680 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/107520 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/107520 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/53760 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/53760 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/35840 chance of taking this path
| | | | | +---+ : 6 leaps, 1/35840 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/17920 chance of taking this path
| | | | +---------+ : 5 leaps, 1/17920 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/86016 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/86016 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/43008 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/43008 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/28672 chance of taking this path
| | | | | +---+ : 6 leaps, 1/28672 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/14336 chance of taking this path
| | | | +-------+ : 5 leaps, 1/14336 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/21504 chance of taking this path
| | | | | +---+ : 6 leaps, 1/21504 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/10752 chance of taking this path
| | | | +-----+ : 5 leaps, 1/10752 chance of taking this path
| | | +---------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/7168 chance of taking this path
| | | | +---+ : 5 leaps, 1/7168 chance of taking this path
| | | +-----------+
| | | | +-+ : 5 leaps, 1/3584 chance of taking this path
| | | +-------------+ : 4 leaps, 1/3584 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/368640 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/368640 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/184320 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/184320 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/122880 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/122880 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/61440 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/61440 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/92160 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/92160 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/46080 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/46080 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/30720 chance of taking this path
| | | | | +---+ : 6 leaps, 1/30720 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/15360 chance of taking this path
| | | | +---------+ : 5 leaps, 1/15360 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/73728 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/73728 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/36864 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/36864 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/24576 chance of taking this path
| | | | | +---+ : 6 leaps, 1/24576 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/12288 chance of taking this path
| | | | +-------+ : 5 leaps, 1/12288 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/18432 chance of taking this path
| | | | | +---+ : 6 leaps, 1/18432 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/9216 chance of taking this path
| | | | +-----+ : 5 leaps, 1/9216 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/6144 chance of taking this path
| | | | +---+ : 5 leaps, 1/6144 chance of taking this path
| | | +---------+
| | | | +-+ : 5 leaps, 1/3072 chance of taking this path
| | | +-----------+ : 4 leaps, 1/3072 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/61440 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/61440 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/30720 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/30720 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/20480 chance of taking this path
| | | | | +---+ : 6 leaps, 1/20480 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/10240 chance of taking this path
| | | | +-------+ : 5 leaps, 1/10240 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/15360 chance of taking this path
| | | | | +---+ : 6 leaps, 1/15360 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/7680 chance of taking this path
| | | | +-----+ : 5 leaps, 1/7680 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/5120 chance of taking this path
| | | | +---+ : 5 leaps, 1/5120 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/2560 chance of taking this path
| | | +---------+ : 4 leaps, 1/2560 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/12288 chance of taking this path
| | | | | +---+ : 6 leaps, 1/12288 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/6144 chance of taking this path
| | | | +-----+ : 5 leaps, 1/6144 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/4096 chance of taking this path
| | | | +---+ : 5 leaps, 1/4096 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/2048 chance of taking this path
| | | +-------+ : 4 leaps, 1/2048 chance of taking this path
| | +---------+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3072 chance of taking this path
| | | | +---+ : 5 leaps, 1/3072 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1536 chance of taking this path
| | | +-----+ : 4 leaps, 1/1536 chance of taking this path
| | +-----------+
| | | +-+
| | | | +-+ : 5 leaps, 1/1024 chance of taking this path
| | | +---+ : 4 leaps, 1/1024 chance of taking this path
| | +-------------+
| | | +-+ : 4 leaps, 1/512 chance of taking this path
| | +---------------+ : 3 leaps, 1/512 chance of taking this path
| +-------+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/322560 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/322560 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/161280 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/161280 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/107520 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/107520 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/53760 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/53760 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/80640 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/80640 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/40320 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/40320 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/26880 chance of taking this path
| | | | | +---+ : 6 leaps, 1/26880 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/13440 chance of taking this path
| | | | +---------+ : 5 leaps, 1/13440 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/64512 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/64512 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/32256 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/32256 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/21504 chance of taking this path
| | | | | +---+ : 6 leaps, 1/21504 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/10752 chance of taking this path
| | | | +-------+ : 5 leaps, 1/10752 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/16128 chance of taking this path
| | | | | +---+ : 6 leaps, 1/16128 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/8064 chance of taking this path
| | | | +-----+ : 5 leaps, 1/8064 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/5376 chance of taking this path
| | | | +---+ : 5 leaps, 1/5376 chance of taking this path
| | | +---------+
| | | | +-+ : 5 leaps, 1/2688 chance of taking this path
| | | +-----------+ : 4 leaps, 1/2688 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/53760 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/53760 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/26880 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/26880 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/17920 chance of taking this path
| | | | | +---+ : 6 leaps, 1/17920 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/8960 chance of taking this path
| | | | +-------+ : 5 leaps, 1/8960 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/13440 chance of taking this path
| | | | | +---+ : 6 leaps, 1/13440 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/6720 chance of taking this path
| | | | +-----+ : 5 leaps, 1/6720 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/4480 chance of taking this path
| | | | +---+ : 5 leaps, 1/4480 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/2240 chance of taking this path
| | | +---------+ : 4 leaps, 1/2240 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/10752 chance of taking this path
| | | | | +---+ : 6 leaps, 1/10752 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/5376 chance of taking this path
| | | | +-----+ : 5 leaps, 1/5376 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3584 chance of taking this path
| | | | +---+ : 5 leaps, 1/3584 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1792 chance of taking this path
| | | +-------+ : 4 leaps, 1/1792 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2688 chance of taking this path
| | | | +---+ : 5 leaps, 1/2688 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1344 chance of taking this path
| | | +-----+ : 4 leaps, 1/1344 chance of taking this path
| | +---------+
| | | +-+
| | | | +-+ : 5 leaps, 1/896 chance of taking this path
| | | +---+ : 4 leaps, 1/896 chance of taking this path
| | +-----------+
| | | +-+ : 4 leaps, 1/448 chance of taking this path
| | +-------------+ : 3 leaps, 1/448 chance of taking this path
| +---------+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/46080 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/46080 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/23040 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/23040 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/15360 chance of taking this path
| | | | | +---+ : 6 leaps, 1/15360 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/7680 chance of taking this path
| | | | +-------+ : 5 leaps, 1/7680 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/11520 chance of taking this path
| | | | | +---+ : 6 leaps, 1/11520 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/5760 chance of taking this path
| | | | +-----+ : 5 leaps, 1/5760 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3840 chance of taking this path
| | | | +---+ : 5 leaps, 1/3840 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/1920 chance of taking this path
| | | +---------+ : 4 leaps, 1/1920 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/9216 chance of taking this path
| | | | | +---+ : 6 leaps, 1/9216 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/4608 chance of taking this path
| | | | +-----+ : 5 leaps, 1/4608 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3072 chance of taking this path
| | | | +---+ : 5 leaps, 1/3072 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1536 chance of taking this path
| | | +-------+ : 4 leaps, 1/1536 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2304 chance of taking this path
| | | | +---+ : 5 leaps, 1/2304 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1152 chance of taking this path
| | | +-----+ : 4 leaps, 1/1152 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+ : 5 leaps, 1/768 chance of taking this path
| | | +---+ : 4 leaps, 1/768 chance of taking this path
| | +---------+
| | | +-+ : 4 leaps, 1/384 chance of taking this path
| | +-----------+ : 3 leaps, 1/384 chance of taking this path
| +-----------+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/7680 chance of taking this path
| | | | | +---+ : 6 leaps, 1/7680 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/3840 chance of taking this path
| | | | +-----+ : 5 leaps, 1/3840 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2560 chance of taking this path
| | | | +---+ : 5 leaps, 1/2560 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1280 chance of taking this path
| | | +-------+ : 4 leaps, 1/1280 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/1920 chance of taking this path
| | | | +---+ : 5 leaps, 1/1920 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/960 chance of taking this path
| | | +-----+ : 4 leaps, 1/960 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+ : 5 leaps, 1/640 chance of taking this path
| | | +---+ : 4 leaps, 1/640 chance of taking this path
| | +-------+
| | | +-+ : 4 leaps, 1/320 chance of taking this path
| | +---------+ : 3 leaps, 1/320 chance of taking this path
| +-------------+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/1536 chance of taking this path
| | | | +---+ : 5 leaps, 1/1536 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/768 chance of taking this path
| | | +-----+ : 4 leaps, 1/768 chance of taking this path
| | +---+
| | | +-+
| | | | +-+ : 5 leaps, 1/512 chance of taking this path
| | | +---+ : 4 leaps, 1/512 chance of taking this path
| | +-----+
| | | +-+ : 4 leaps, 1/256 chance of taking this path
| | +-------+ : 3 leaps, 1/256 chance of taking this path
| +---------------+
| +-+
| | +-+
| | | +-+ : 5 leaps, 1/384 chance of taking this path
| | +---+ : 4 leaps, 1/384 chance of taking this path
| +---+
| | +-+ : 4 leaps, 1/192 chance of taking this path
| +-----+ : 3 leaps, 1/192 chance of taking this path
+---+
| +-+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+
| | | | | | | | | | +-+ : 11 leaps, 1/20643840 chance of taking this path
| | | | | | | | | +---+ : 10 leaps, 1/20643840 chance of taking this path
| | | | | | | | +---+
| | | | | | | | | +-+ : 10 leaps, 1/10321920 chance of taking this path
| | | | | | | | +-----+ : 9 leaps, 1/10321920 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/6881280 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/6881280 chance of taking this path
| | | | | | | +-----+
| | | | | | | | +-+ : 9 leaps, 1/3440640 chance of taking this path
| | | | | | | +-------+ : 8 leaps, 1/3440640 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/5160960 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/5160960 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/2580480 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/2580480 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1720320 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1720320 chance of taking this path
| | | | | | +-------+
| | | | | | | +-+ : 8 leaps, 1/860160 chance of taking this path
| | | | | | +---------+ : 7 leaps, 1/860160 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/4128768 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/4128768 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/2064384 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/2064384 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1376256 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1376256 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/688128 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/688128 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1032192 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1032192 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/516096 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/516096 chance of taking this path
| | | | | +-------+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/344064 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/344064 chance of taking this path
| | | | | +---------+
| | | | | | +-+ : 7 leaps, 1/172032 chance of taking this path
| | | | | +-----------+ : 6 leaps, 1/172032 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/3440640 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/3440640 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/1720320 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/1720320 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/1146880 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/1146880 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/573440 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/573440 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/860160 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/860160 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/430080 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/430080 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/286720 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/286720 chance of taking this path
| | | | | +-------+
| | | | | | +-+ : 7 leaps, 1/143360 chance of taking this path
| | | | | +---------+ : 6 leaps, 1/143360 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/688128 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/688128 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/344064 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/344064 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/229376 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/229376 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/114688 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/114688 chance of taking this path
| | | | +-------+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/172032 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/172032 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/86016 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/86016 chance of taking this path
| | | | +---------+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/57344 chance of taking this path
| | | | | +---+ : 6 leaps, 1/57344 chance of taking this path
| | | | +-----------+
| | | | | +-+ : 6 leaps, 1/28672 chance of taking this path
| | | | +-------------+ : 5 leaps, 1/28672 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/2949120 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/2949120 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/1474560 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/1474560 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/983040 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/983040 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/491520 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/491520 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/737280 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/737280 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/368640 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/368640 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/245760 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/245760 chance of taking this path
| | | | | +-------+
| | | | | | +-+ : 7 leaps, 1/122880 chance of taking this path
| | | | | +---------+ : 6 leaps, 1/122880 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/589824 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/589824 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/294912 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/294912 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/196608 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/196608 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/98304 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/98304 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/147456 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/147456 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/73728 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/73728 chance of taking this path
| | | | +-------+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/49152 chance of taking this path
| | | | | +---+ : 6 leaps, 1/49152 chance of taking this path
| | | | +---------+
| | | | | +-+ : 6 leaps, 1/24576 chance of taking this path
| | | | +-----------+ : 5 leaps, 1/24576 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/491520 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/491520 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/245760 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/245760 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/163840 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/163840 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/81920 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/81920 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/122880 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/122880 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/61440 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/61440 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/40960 chance of taking this path
| | | | | +---+ : 6 leaps, 1/40960 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/20480 chance of taking this path
| | | | +---------+ : 5 leaps, 1/20480 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/98304 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/98304 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/49152 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/49152 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/32768 chance of taking this path
| | | | | +---+ : 6 leaps, 1/32768 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/16384 chance of taking this path
| | | | +-------+ : 5 leaps, 1/16384 chance of taking this path
| | | +---------+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/24576 chance of taking this path
| | | | | +---+ : 6 leaps, 1/24576 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/12288 chance of taking this path
| | | | +-----+ : 5 leaps, 1/12288 chance of taking this path
| | | +-----------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/8192 chance of taking this path
| | | | +---+ : 5 leaps, 1/8192 chance of taking this path
| | | +-------------+
| | | | +-+ : 5 leaps, 1/4096 chance of taking this path
| | | +---------------+ : 4 leaps, 1/4096 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/2580480 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/2580480 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/1290240 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/1290240 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/860160 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/860160 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/430080 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/430080 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/645120 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/645120 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/322560 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/322560 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/215040 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/215040 chance of taking this path
| | | | | +-------+
| | | | | | +-+ : 7 leaps, 1/107520 chance of taking this path
| | | | | +---------+ : 6 leaps, 1/107520 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/516096 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/516096 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/258048 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/258048 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/172032 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/172032 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/86016 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/86016 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/129024 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/129024 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/64512 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/64512 chance of taking this path
| | | | +-------+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/43008 chance of taking this path
| | | | | +---+ : 6 leaps, 1/43008 chance of taking this path
| | | | +---------+
| | | | | +-+ : 6 leaps, 1/21504 chance of taking this path
| | | | +-----------+ : 5 leaps, 1/21504 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/430080 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/430080 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/215040 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/215040 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/143360 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/143360 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/71680 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/71680 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/107520 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/107520 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/53760 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/53760 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/35840 chance of taking this path
| | | | | +---+ : 6 leaps, 1/35840 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/17920 chance of taking this path
| | | | +---------+ : 5 leaps, 1/17920 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/86016 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/86016 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/43008 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/43008 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/28672 chance of taking this path
| | | | | +---+ : 6 leaps, 1/28672 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/14336 chance of taking this path
| | | | +-------+ : 5 leaps, 1/14336 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/21504 chance of taking this path
| | | | | +---+ : 6 leaps, 1/21504 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/10752 chance of taking this path
| | | | +-----+ : 5 leaps, 1/10752 chance of taking this path
| | | +---------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/7168 chance of taking this path
| | | | +---+ : 5 leaps, 1/7168 chance of taking this path
| | | +-----------+
| | | | +-+ : 5 leaps, 1/3584 chance of taking this path
| | | +-------------+ : 4 leaps, 1/3584 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/368640 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/368640 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/184320 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/184320 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/122880 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/122880 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/61440 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/61440 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/92160 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/92160 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/46080 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/46080 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/30720 chance of taking this path
| | | | | +---+ : 6 leaps, 1/30720 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/15360 chance of taking this path
| | | | +---------+ : 5 leaps, 1/15360 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/73728 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/73728 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/36864 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/36864 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/24576 chance of taking this path
| | | | | +---+ : 6 leaps, 1/24576 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/12288 chance of taking this path
| | | | +-------+ : 5 leaps, 1/12288 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/18432 chance of taking this path
| | | | | +---+ : 6 leaps, 1/18432 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/9216 chance of taking this path
| | | | +-----+ : 5 leaps, 1/9216 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/6144 chance of taking this path
| | | | +---+ : 5 leaps, 1/6144 chance of taking this path
| | | +---------+
| | | | +-+ : 5 leaps, 1/3072 chance of taking this path
| | | +-----------+ : 4 leaps, 1/3072 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/61440 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/61440 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/30720 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/30720 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/20480 chance of taking this path
| | | | | +---+ : 6 leaps, 1/20480 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/10240 chance of taking this path
| | | | +-------+ : 5 leaps, 1/10240 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/15360 chance of taking this path
| | | | | +---+ : 6 leaps, 1/15360 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/7680 chance of taking this path
| | | | +-----+ : 5 leaps, 1/7680 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/5120 chance of taking this path
| | | | +---+ : 5 leaps, 1/5120 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/2560 chance of taking this path
| | | +---------+ : 4 leaps, 1/2560 chance of taking this path
| | +---------+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/12288 chance of taking this path
| | | | | +---+ : 6 leaps, 1/12288 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/6144 chance of taking this path
| | | | +-----+ : 5 leaps, 1/6144 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/4096 chance of taking this path
| | | | +---+ : 5 leaps, 1/4096 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/2048 chance of taking this path
| | | +-------+ : 4 leaps, 1/2048 chance of taking this path
| | +-----------+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3072 chance of taking this path
| | | | +---+ : 5 leaps, 1/3072 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1536 chance of taking this path
| | | +-----+ : 4 leaps, 1/1536 chance of taking this path
| | +-------------+
| | | +-+
| | | | +-+ : 5 leaps, 1/1024 chance of taking this path
| | | +---+ : 4 leaps, 1/1024 chance of taking this path
| | +---------------+
| | +-+ : 4 leaps, 1/512 chance of taking this path
| +---+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/2580480 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/2580480 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/1290240 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/1290240 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/860160 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/860160 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/430080 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/430080 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/645120 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/645120 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/322560 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/322560 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/215040 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/215040 chance of taking this path
| | | | | +-------+
| | | | | | +-+ : 7 leaps, 1/107520 chance of taking this path
| | | | | +---------+ : 6 leaps, 1/107520 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/516096 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/516096 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/258048 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/258048 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/172032 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/172032 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/86016 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/86016 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/129024 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/129024 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/64512 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/64512 chance of taking this path
| | | | +-------+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/43008 chance of taking this path
| | | | | +---+ : 6 leaps, 1/43008 chance of taking this path
| | | | +---------+
| | | | | +-+ : 6 leaps, 1/21504 chance of taking this path
| | | | +-----------+ : 5 leaps, 1/21504 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/430080 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/430080 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/215040 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/215040 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/143360 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/143360 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/71680 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/71680 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/107520 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/107520 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/53760 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/53760 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/35840 chance of taking this path
| | | | | +---+ : 6 leaps, 1/35840 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/17920 chance of taking this path
| | | | +---------+ : 5 leaps, 1/17920 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/86016 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/86016 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/43008 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/43008 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/28672 chance of taking this path
| | | | | +---+ : 6 leaps, 1/28672 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/14336 chance of taking this path
| | | | +-------+ : 5 leaps, 1/14336 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/21504 chance of taking this path
| | | | | +---+ : 6 leaps, 1/21504 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/10752 chance of taking this path
| | | | +-----+ : 5 leaps, 1/10752 chance of taking this path
| | | +---------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/7168 chance of taking this path
| | | | +---+ : 5 leaps, 1/7168 chance of taking this path
| | | +-----------+
| | | | +-+ : 5 leaps, 1/3584 chance of taking this path
| | | +-------------+ : 4 leaps, 1/3584 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/368640 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/368640 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/184320 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/184320 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/122880 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/122880 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/61440 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/61440 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/92160 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/92160 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/46080 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/46080 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/30720 chance of taking this path
| | | | | +---+ : 6 leaps, 1/30720 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/15360 chance of taking this path
| | | | +---------+ : 5 leaps, 1/15360 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/73728 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/73728 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/36864 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/36864 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/24576 chance of taking this path
| | | | | +---+ : 6 leaps, 1/24576 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/12288 chance of taking this path
| | | | +-------+ : 5 leaps, 1/12288 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/18432 chance of taking this path
| | | | | +---+ : 6 leaps, 1/18432 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/9216 chance of taking this path
| | | | +-----+ : 5 leaps, 1/9216 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/6144 chance of taking this path
| | | | +---+ : 5 leaps, 1/6144 chance of taking this path
| | | +---------+
| | | | +-+ : 5 leaps, 1/3072 chance of taking this path
| | | +-----------+ : 4 leaps, 1/3072 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/61440 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/61440 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/30720 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/30720 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/20480 chance of taking this path
| | | | | +---+ : 6 leaps, 1/20480 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/10240 chance of taking this path
| | | | +-------+ : 5 leaps, 1/10240 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/15360 chance of taking this path
| | | | | +---+ : 6 leaps, 1/15360 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/7680 chance of taking this path
| | | | +-----+ : 5 leaps, 1/7680 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/5120 chance of taking this path
| | | | +---+ : 5 leaps, 1/5120 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/2560 chance of taking this path
| | | +---------+ : 4 leaps, 1/2560 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/12288 chance of taking this path
| | | | | +---+ : 6 leaps, 1/12288 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/6144 chance of taking this path
| | | | +-----+ : 5 leaps, 1/6144 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/4096 chance of taking this path
| | | | +---+ : 5 leaps, 1/4096 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/2048 chance of taking this path
| | | +-------+ : 4 leaps, 1/2048 chance of taking this path
| | +---------+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3072 chance of taking this path
| | | | +---+ : 5 leaps, 1/3072 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1536 chance of taking this path
| | | +-----+ : 4 leaps, 1/1536 chance of taking this path
| | +-----------+
| | | +-+
| | | | +-+ : 5 leaps, 1/1024 chance of taking this path
| | | +---+ : 4 leaps, 1/1024 chance of taking this path
| | +-------------+
| | | +-+ : 4 leaps, 1/512 chance of taking this path
| | +---------------+ : 3 leaps, 1/512 chance of taking this path
| +-----+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/322560 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/322560 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/161280 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/161280 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/107520 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/107520 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/53760 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/53760 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/80640 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/80640 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/40320 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/40320 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/26880 chance of taking this path
| | | | | +---+ : 6 leaps, 1/26880 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/13440 chance of taking this path
| | | | +---------+ : 5 leaps, 1/13440 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/64512 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/64512 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/32256 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/32256 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/21504 chance of taking this path
| | | | | +---+ : 6 leaps, 1/21504 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/10752 chance of taking this path
| | | | +-------+ : 5 leaps, 1/10752 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/16128 chance of taking this path
| | | | | +---+ : 6 leaps, 1/16128 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/8064 chance of taking this path
| | | | +-----+ : 5 leaps, 1/8064 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/5376 chance of taking this path
| | | | +---+ : 5 leaps, 1/5376 chance of taking this path
| | | +---------+
| | | | +-+ : 5 leaps, 1/2688 chance of taking this path
| | | +-----------+ : 4 leaps, 1/2688 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/53760 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/53760 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/26880 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/26880 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/17920 chance of taking this path
| | | | | +---+ : 6 leaps, 1/17920 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/8960 chance of taking this path
| | | | +-------+ : 5 leaps, 1/8960 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/13440 chance of taking this path
| | | | | +---+ : 6 leaps, 1/13440 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/6720 chance of taking this path
| | | | +-----+ : 5 leaps, 1/6720 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/4480 chance of taking this path
| | | | +---+ : 5 leaps, 1/4480 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/2240 chance of taking this path
| | | +---------+ : 4 leaps, 1/2240 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/10752 chance of taking this path
| | | | | +---+ : 6 leaps, 1/10752 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/5376 chance of taking this path
| | | | +-----+ : 5 leaps, 1/5376 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3584 chance of taking this path
| | | | +---+ : 5 leaps, 1/3584 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1792 chance of taking this path
| | | +-------+ : 4 leaps, 1/1792 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2688 chance of taking this path
| | | | +---+ : 5 leaps, 1/2688 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1344 chance of taking this path
| | | +-----+ : 4 leaps, 1/1344 chance of taking this path
| | +---------+
| | | +-+
| | | | +-+ : 5 leaps, 1/896 chance of taking this path
| | | +---+ : 4 leaps, 1/896 chance of taking this path
| | +-----------+
| | | +-+ : 4 leaps, 1/448 chance of taking this path
| | +-------------+ : 3 leaps, 1/448 chance of taking this path
| +-------+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/46080 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/46080 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/23040 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/23040 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/15360 chance of taking this path
| | | | | +---+ : 6 leaps, 1/15360 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/7680 chance of taking this path
| | | | +-------+ : 5 leaps, 1/7680 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/11520 chance of taking this path
| | | | | +---+ : 6 leaps, 1/11520 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/5760 chance of taking this path
| | | | +-----+ : 5 leaps, 1/5760 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3840 chance of taking this path
| | | | +---+ : 5 leaps, 1/3840 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/1920 chance of taking this path
| | | +---------+ : 4 leaps, 1/1920 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/9216 chance of taking this path
| | | | | +---+ : 6 leaps, 1/9216 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/4608 chance of taking this path
| | | | +-----+ : 5 leaps, 1/4608 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3072 chance of taking this path
| | | | +---+ : 5 leaps, 1/3072 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1536 chance of taking this path
| | | +-------+ : 4 leaps, 1/1536 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2304 chance of taking this path
| | | | +---+ : 5 leaps, 1/2304 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1152 chance of taking this path
| | | +-----+ : 4 leaps, 1/1152 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+ : 5 leaps, 1/768 chance of taking this path
| | | +---+ : 4 leaps, 1/768 chance of taking this path
| | +---------+
| | | +-+ : 4 leaps, 1/384 chance of taking this path
| | +-----------+ : 3 leaps, 1/384 chance of taking this path
| +---------+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/7680 chance of taking this path
| | | | | +---+ : 6 leaps, 1/7680 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/3840 chance of taking this path
| | | | +-----+ : 5 leaps, 1/3840 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2560 chance of taking this path
| | | | +---+ : 5 leaps, 1/2560 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1280 chance of taking this path
| | | +-------+ : 4 leaps, 1/1280 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/1920 chance of taking this path
| | | | +---+ : 5 leaps, 1/1920 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/960 chance of taking this path
| | | +-----+ : 4 leaps, 1/960 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+ : 5 leaps, 1/640 chance of taking this path
| | | +---+ : 4 leaps, 1/640 chance of taking this path
| | +-------+
| | | +-+ : 4 leaps, 1/320 chance of taking this path
| | +---------+ : 3 leaps, 1/320 chance of taking this path
| +-----------+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/1536 chance of taking this path
| | | | +---+ : 5 leaps, 1/1536 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/768 chance of taking this path
| | | +-----+ : 4 leaps, 1/768 chance of taking this path
| | +---+
| | | +-+
| | | | +-+ : 5 leaps, 1/512 chance of taking this path
| | | +---+ : 4 leaps, 1/512 chance of taking this path
| | +-----+
| | | +-+ : 4 leaps, 1/256 chance of taking this path
| | +-------+ : 3 leaps, 1/256 chance of taking this path
| +-------------+
| | +-+
| | | +-+
| | | | +-+ : 5 leaps, 1/384 chance of taking this path
| | | +---+ : 4 leaps, 1/384 chance of taking this path
| | +---+
| | | +-+ : 4 leaps, 1/192 chance of taking this path
| | +-----+ : 3 leaps, 1/192 chance of taking this path
| +---------------+
| +-+
| | +-+ : 4 leaps, 1/128 chance of taking this path
| +---+ : 3 leaps, 1/128 chance of taking this path
+-----+
| +-+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+
| | | | | | | | | +-+ : 10 leaps, 1/2580480 chance of taking this path
| | | | | | | | +---+ : 9 leaps, 1/2580480 chance of taking this path
| | | | | | | +---+
| | | | | | | | +-+ : 9 leaps, 1/1290240 chance of taking this path
| | | | | | | +-----+ : 8 leaps, 1/1290240 chance of taking this path
| | | | | | +---+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/860160 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/860160 chance of taking this path
| | | | | | +-----+
| | | | | | | +-+ : 8 leaps, 1/430080 chance of taking this path
| | | | | | +-------+ : 7 leaps, 1/430080 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/645120 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/645120 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/322560 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/322560 chance of taking this path
| | | | | +-----+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/215040 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/215040 chance of taking this path
| | | | | +-------+
| | | | | | +-+ : 7 leaps, 1/107520 chance of taking this path
| | | | | +---------+ : 6 leaps, 1/107520 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/516096 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/516096 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/258048 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/258048 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/172032 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/172032 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/86016 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/86016 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/129024 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/129024 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/64512 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/64512 chance of taking this path
| | | | +-------+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/43008 chance of taking this path
| | | | | +---+ : 6 leaps, 1/43008 chance of taking this path
| | | | +---------+
| | | | | +-+ : 6 leaps, 1/21504 chance of taking this path
| | | | +-----------+ : 5 leaps, 1/21504 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/430080 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/430080 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/215040 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/215040 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/143360 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/143360 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/71680 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/71680 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/107520 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/107520 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/53760 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/53760 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/35840 chance of taking this path
| | | | | +---+ : 6 leaps, 1/35840 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/17920 chance of taking this path
| | | | +---------+ : 5 leaps, 1/17920 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/86016 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/86016 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/43008 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/43008 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/28672 chance of taking this path
| | | | | +---+ : 6 leaps, 1/28672 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/14336 chance of taking this path
| | | | +-------+ : 5 leaps, 1/14336 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/21504 chance of taking this path
| | | | | +---+ : 6 leaps, 1/21504 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/10752 chance of taking this path
| | | | +-----+ : 5 leaps, 1/10752 chance of taking this path
| | | +---------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/7168 chance of taking this path
| | | | +---+ : 5 leaps, 1/7168 chance of taking this path
| | | +-----------+
| | | | +-+ : 5 leaps, 1/3584 chance of taking this path
| | | +-------------+ : 4 leaps, 1/3584 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/368640 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/368640 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/184320 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/184320 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/122880 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/122880 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/61440 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/61440 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/92160 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/92160 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/46080 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/46080 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/30720 chance of taking this path
| | | | | +---+ : 6 leaps, 1/30720 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/15360 chance of taking this path
| | | | +---------+ : 5 leaps, 1/15360 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/73728 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/73728 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/36864 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/36864 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/24576 chance of taking this path
| | | | | +---+ : 6 leaps, 1/24576 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/12288 chance of taking this path
| | | | +-------+ : 5 leaps, 1/12288 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/18432 chance of taking this path
| | | | | +---+ : 6 leaps, 1/18432 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/9216 chance of taking this path
| | | | +-----+ : 5 leaps, 1/9216 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/6144 chance of taking this path
| | | | +---+ : 5 leaps, 1/6144 chance of taking this path
| | | +---------+
| | | | +-+ : 5 leaps, 1/3072 chance of taking this path
| | | +-----------+ : 4 leaps, 1/3072 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/61440 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/61440 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/30720 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/30720 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/20480 chance of taking this path
| | | | | +---+ : 6 leaps, 1/20480 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/10240 chance of taking this path
| | | | +-------+ : 5 leaps, 1/10240 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/15360 chance of taking this path
| | | | | +---+ : 6 leaps, 1/15360 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/7680 chance of taking this path
| | | | +-----+ : 5 leaps, 1/7680 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/5120 chance of taking this path
| | | | +---+ : 5 leaps, 1/5120 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/2560 chance of taking this path
| | | +---------+ : 4 leaps, 1/2560 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/12288 chance of taking this path
| | | | | +---+ : 6 leaps, 1/12288 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/6144 chance of taking this path
| | | | +-----+ : 5 leaps, 1/6144 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/4096 chance of taking this path
| | | | +---+ : 5 leaps, 1/4096 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/2048 chance of taking this path
| | | +-------+ : 4 leaps, 1/2048 chance of taking this path
| | +---------+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3072 chance of taking this path
| | | | +---+ : 5 leaps, 1/3072 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1536 chance of taking this path
| | | +-----+ : 4 leaps, 1/1536 chance of taking this path
| | +-----------+
| | | +-+
| | | | +-+ : 5 leaps, 1/1024 chance of taking this path
| | | +---+ : 4 leaps, 1/1024 chance of taking this path
| | +-------------+
| | | +-+ : 4 leaps, 1/512 chance of taking this path
| | +---------------+ : 3 leaps, 1/512 chance of taking this path
| +---+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/322560 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/322560 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/161280 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/161280 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/107520 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/107520 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/53760 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/53760 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/80640 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/80640 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/40320 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/40320 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/26880 chance of taking this path
| | | | | +---+ : 6 leaps, 1/26880 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/13440 chance of taking this path
| | | | +---------+ : 5 leaps, 1/13440 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/64512 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/64512 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/32256 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/32256 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/21504 chance of taking this path
| | | | | +---+ : 6 leaps, 1/21504 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/10752 chance of taking this path
| | | | +-------+ : 5 leaps, 1/10752 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/16128 chance of taking this path
| | | | | +---+ : 6 leaps, 1/16128 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/8064 chance of taking this path
| | | | +-----+ : 5 leaps, 1/8064 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/5376 chance of taking this path
| | | | +---+ : 5 leaps, 1/5376 chance of taking this path
| | | +---------+
| | | | +-+ : 5 leaps, 1/2688 chance of taking this path
| | | +-----------+ : 4 leaps, 1/2688 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/53760 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/53760 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/26880 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/26880 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/17920 chance of taking this path
| | | | | +---+ : 6 leaps, 1/17920 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/8960 chance of taking this path
| | | | +-------+ : 5 leaps, 1/8960 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/13440 chance of taking this path
| | | | | +---+ : 6 leaps, 1/13440 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/6720 chance of taking this path
| | | | +-----+ : 5 leaps, 1/6720 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/4480 chance of taking this path
| | | | +---+ : 5 leaps, 1/4480 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/2240 chance of taking this path
| | | +---------+ : 4 leaps, 1/2240 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/10752 chance of taking this path
| | | | | +---+ : 6 leaps, 1/10752 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/5376 chance of taking this path
| | | | +-----+ : 5 leaps, 1/5376 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3584 chance of taking this path
| | | | +---+ : 5 leaps, 1/3584 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1792 chance of taking this path
| | | +-------+ : 4 leaps, 1/1792 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2688 chance of taking this path
| | | | +---+ : 5 leaps, 1/2688 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1344 chance of taking this path
| | | +-----+ : 4 leaps, 1/1344 chance of taking this path
| | +---------+
| | | +-+
| | | | +-+ : 5 leaps, 1/896 chance of taking this path
| | | +---+ : 4 leaps, 1/896 chance of taking this path
| | +-----------+
| | | +-+ : 4 leaps, 1/448 chance of taking this path
| | +-------------+ : 3 leaps, 1/448 chance of taking this path
| +-----+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/46080 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/46080 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/23040 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/23040 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/15360 chance of taking this path
| | | | | +---+ : 6 leaps, 1/15360 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/7680 chance of taking this path
| | | | +-------+ : 5 leaps, 1/7680 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/11520 chance of taking this path
| | | | | +---+ : 6 leaps, 1/11520 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/5760 chance of taking this path
| | | | +-----+ : 5 leaps, 1/5760 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3840 chance of taking this path
| | | | +---+ : 5 leaps, 1/3840 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/1920 chance of taking this path
| | | +---------+ : 4 leaps, 1/1920 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/9216 chance of taking this path
| | | | | +---+ : 6 leaps, 1/9216 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/4608 chance of taking this path
| | | | +-----+ : 5 leaps, 1/4608 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3072 chance of taking this path
| | | | +---+ : 5 leaps, 1/3072 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1536 chance of taking this path
| | | +-------+ : 4 leaps, 1/1536 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2304 chance of taking this path
| | | | +---+ : 5 leaps, 1/2304 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1152 chance of taking this path
| | | +-----+ : 4 leaps, 1/1152 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+ : 5 leaps, 1/768 chance of taking this path
| | | +---+ : 4 leaps, 1/768 chance of taking this path
| | +---------+
| | | +-+ : 4 leaps, 1/384 chance of taking this path
| | +-----------+ : 3 leaps, 1/384 chance of taking this path
| +-------+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/7680 chance of taking this path
| | | | | +---+ : 6 leaps, 1/7680 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/3840 chance of taking this path
| | | | +-----+ : 5 leaps, 1/3840 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2560 chance of taking this path
| | | | +---+ : 5 leaps, 1/2560 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1280 chance of taking this path
| | | +-------+ : 4 leaps, 1/1280 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/1920 chance of taking this path
| | | | +---+ : 5 leaps, 1/1920 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/960 chance of taking this path
| | | +-----+ : 4 leaps, 1/960 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+ : 5 leaps, 1/640 chance of taking this path
| | | +---+ : 4 leaps, 1/640 chance of taking this path
| | +-------+
| | | +-+ : 4 leaps, 1/320 chance of taking this path
| | +---------+ : 3 leaps, 1/320 chance of taking this path
| +---------+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/1536 chance of taking this path
| | | | +---+ : 5 leaps, 1/1536 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/768 chance of taking this path
| | | +-----+ : 4 leaps, 1/768 chance of taking this path
| | +---+
| | | +-+
| | | | +-+ : 5 leaps, 1/512 chance of taking this path
| | | +---+ : 4 leaps, 1/512 chance of taking this path
| | +-----+
| | | +-+ : 4 leaps, 1/256 chance of taking this path
| | +-------+ : 3 leaps, 1/256 chance of taking this path
| +-----------+
| | +-+
| | | +-+
| | | | +-+ : 5 leaps, 1/384 chance of taking this path
| | | +---+ : 4 leaps, 1/384 chance of taking this path
| | +---+
| | | +-+ : 4 leaps, 1/192 chance of taking this path
| | +-----+ : 3 leaps, 1/192 chance of taking this path
| +-------------+
| | +-+
| | | +-+ : 4 leaps, 1/128 chance of taking this path
| | +---+ : 3 leaps, 1/128 chance of taking this path
| +---------------+
| +-+ : 3 leaps, 1/64 chance of taking this path
+-------+
| +-+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+
| | | | | | | | +-+ : 9 leaps, 1/322560 chance of taking this path
| | | | | | | +---+ : 8 leaps, 1/322560 chance of taking this path
| | | | | | +---+
| | | | | | | +-+ : 8 leaps, 1/161280 chance of taking this path
| | | | | | +-----+ : 7 leaps, 1/161280 chance of taking this path
| | | | | +---+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/107520 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/107520 chance of taking this path
| | | | | +-----+
| | | | | | +-+ : 7 leaps, 1/53760 chance of taking this path
| | | | | +-------+ : 6 leaps, 1/53760 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/80640 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/80640 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/40320 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/40320 chance of taking this path
| | | | +-----+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/26880 chance of taking this path
| | | | | +---+ : 6 leaps, 1/26880 chance of taking this path
| | | | +-------+
| | | | | +-+ : 6 leaps, 1/13440 chance of taking this path
| | | | +---------+ : 5 leaps, 1/13440 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/64512 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/64512 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/32256 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/32256 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/21504 chance of taking this path
| | | | | +---+ : 6 leaps, 1/21504 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/10752 chance of taking this path
| | | | +-------+ : 5 leaps, 1/10752 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/16128 chance of taking this path
| | | | | +---+ : 6 leaps, 1/16128 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/8064 chance of taking this path
| | | | +-----+ : 5 leaps, 1/8064 chance of taking this path
| | | +-------+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/5376 chance of taking this path
| | | | +---+ : 5 leaps, 1/5376 chance of taking this path
| | | +---------+
| | | | +-+ : 5 leaps, 1/2688 chance of taking this path
| | | +-----------+ : 4 leaps, 1/2688 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/53760 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/53760 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/26880 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/26880 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/17920 chance of taking this path
| | | | | +---+ : 6 leaps, 1/17920 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/8960 chance of taking this path
| | | | +-------+ : 5 leaps, 1/8960 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/13440 chance of taking this path
| | | | | +---+ : 6 leaps, 1/13440 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/6720 chance of taking this path
| | | | +-----+ : 5 leaps, 1/6720 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/4480 chance of taking this path
| | | | +---+ : 5 leaps, 1/4480 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/2240 chance of taking this path
| | | +---------+ : 4 leaps, 1/2240 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/10752 chance of taking this path
| | | | | +---+ : 6 leaps, 1/10752 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/5376 chance of taking this path
| | | | +-----+ : 5 leaps, 1/5376 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3584 chance of taking this path
| | | | +---+ : 5 leaps, 1/3584 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1792 chance of taking this path
| | | +-------+ : 4 leaps, 1/1792 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2688 chance of taking this path
| | | | +---+ : 5 leaps, 1/2688 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1344 chance of taking this path
| | | +-----+ : 4 leaps, 1/1344 chance of taking this path
| | +---------+
| | | +-+
| | | | +-+ : 5 leaps, 1/896 chance of taking this path
| | | +---+ : 4 leaps, 1/896 chance of taking this path
| | +-----------+
| | | +-+ : 4 leaps, 1/448 chance of taking this path
| | +-------------+ : 3 leaps, 1/448 chance of taking this path
| +---+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/46080 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/46080 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/23040 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/23040 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/15360 chance of taking this path
| | | | | +---+ : 6 leaps, 1/15360 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/7680 chance of taking this path
| | | | +-------+ : 5 leaps, 1/7680 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/11520 chance of taking this path
| | | | | +---+ : 6 leaps, 1/11520 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/5760 chance of taking this path
| | | | +-----+ : 5 leaps, 1/5760 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3840 chance of taking this path
| | | | +---+ : 5 leaps, 1/3840 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/1920 chance of taking this path
| | | +---------+ : 4 leaps, 1/1920 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/9216 chance of taking this path
| | | | | +---+ : 6 leaps, 1/9216 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/4608 chance of taking this path
| | | | +-----+ : 5 leaps, 1/4608 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3072 chance of taking this path
| | | | +---+ : 5 leaps, 1/3072 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1536 chance of taking this path
| | | +-------+ : 4 leaps, 1/1536 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2304 chance of taking this path
| | | | +---+ : 5 leaps, 1/2304 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1152 chance of taking this path
| | | +-----+ : 4 leaps, 1/1152 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+ : 5 leaps, 1/768 chance of taking this path
| | | +---+ : 4 leaps, 1/768 chance of taking this path
| | +---------+
| | | +-+ : 4 leaps, 1/384 chance of taking this path
| | +-----------+ : 3 leaps, 1/384 chance of taking this path
| +-----+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/7680 chance of taking this path
| | | | | +---+ : 6 leaps, 1/7680 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/3840 chance of taking this path
| | | | +-----+ : 5 leaps, 1/3840 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2560 chance of taking this path
| | | | +---+ : 5 leaps, 1/2560 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1280 chance of taking this path
| | | +-------+ : 4 leaps, 1/1280 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/1920 chance of taking this path
| | | | +---+ : 5 leaps, 1/1920 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/960 chance of taking this path
| | | +-----+ : 4 leaps, 1/960 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+ : 5 leaps, 1/640 chance of taking this path
| | | +---+ : 4 leaps, 1/640 chance of taking this path
| | +-------+
| | | +-+ : 4 leaps, 1/320 chance of taking this path
| | +---------+ : 3 leaps, 1/320 chance of taking this path
| +-------+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/1536 chance of taking this path
| | | | +---+ : 5 leaps, 1/1536 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/768 chance of taking this path
| | | +-----+ : 4 leaps, 1/768 chance of taking this path
| | +---+
| | | +-+
| | | | +-+ : 5 leaps, 1/512 chance of taking this path
| | | +---+ : 4 leaps, 1/512 chance of taking this path
| | +-----+
| | | +-+ : 4 leaps, 1/256 chance of taking this path
| | +-------+ : 3 leaps, 1/256 chance of taking this path
| +---------+
| | +-+
| | | +-+
| | | | +-+ : 5 leaps, 1/384 chance of taking this path
| | | +---+ : 4 leaps, 1/384 chance of taking this path
| | +---+
| | | +-+ : 4 leaps, 1/192 chance of taking this path
| | +-----+ : 3 leaps, 1/192 chance of taking this path
| +-----------+
| | +-+
| | | +-+ : 4 leaps, 1/128 chance of taking this path
| | +---+ : 3 leaps, 1/128 chance of taking this path
| +-------------+
| | +-+ : 3 leaps, 1/64 chance of taking this path
| +---------------+ : 2 leaps, 1/64 chance of taking this path
+---------+
| +-+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+
| | | | | | | +-+ : 8 leaps, 1/40320 chance of taking this path
| | | | | | +---+ : 7 leaps, 1/40320 chance of taking this path
| | | | | +---+
| | | | | | +-+ : 7 leaps, 1/20160 chance of taking this path
| | | | | +-----+ : 6 leaps, 1/20160 chance of taking this path
| | | | +---+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/13440 chance of taking this path
| | | | | +---+ : 6 leaps, 1/13440 chance of taking this path
| | | | +-----+
| | | | | +-+ : 6 leaps, 1/6720 chance of taking this path
| | | | +-------+ : 5 leaps, 1/6720 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/10080 chance of taking this path
| | | | | +---+ : 6 leaps, 1/10080 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/5040 chance of taking this path
| | | | +-----+ : 5 leaps, 1/5040 chance of taking this path
| | | +-----+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/3360 chance of taking this path
| | | | +---+ : 5 leaps, 1/3360 chance of taking this path
| | | +-------+
| | | | +-+ : 5 leaps, 1/1680 chance of taking this path
| | | +---------+ : 4 leaps, 1/1680 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/8064 chance of taking this path
| | | | | +---+ : 6 leaps, 1/8064 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/4032 chance of taking this path
| | | | +-----+ : 5 leaps, 1/4032 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2688 chance of taking this path
| | | | +---+ : 5 leaps, 1/2688 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1344 chance of taking this path
| | | +-------+ : 4 leaps, 1/1344 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2016 chance of taking this path
| | | | +---+ : 5 leaps, 1/2016 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/1008 chance of taking this path
| | | +-----+ : 4 leaps, 1/1008 chance of taking this path
| | +-------+
| | | +-+
| | | | +-+ : 5 leaps, 1/672 chance of taking this path
| | | +---+ : 4 leaps, 1/672 chance of taking this path
| | +---------+
| | | +-+ : 4 leaps, 1/336 chance of taking this path
| | +-----------+ : 3 leaps, 1/336 chance of taking this path
| +---+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/6720 chance of taking this path
| | | | | +---+ : 6 leaps, 1/6720 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/3360 chance of taking this path
| | | | +-----+ : 5 leaps, 1/3360 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/2240 chance of taking this path
| | | | +---+ : 5 leaps, 1/2240 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/1120 chance of taking this path
| | | +-------+ : 4 leaps, 1/1120 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/1680 chance of taking this path
| | | | +---+ : 5 leaps, 1/1680 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/840 chance of taking this path
| | | +-----+ : 4 leaps, 1/840 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+ : 5 leaps, 1/560 chance of taking this path
| | | +---+ : 4 leaps, 1/560 chance of taking this path
| | +-------+
| | | +-+ : 4 leaps, 1/280 chance of taking this path
| | +---------+ : 3 leaps, 1/280 chance of taking this path
| +-----+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/1344 chance of taking this path
| | | | +---+ : 5 leaps, 1/1344 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/672 chance of taking this path
| | | +-----+ : 4 leaps, 1/672 chance of taking this path
| | +---+
| | | +-+
| | | | +-+ : 5 leaps, 1/448 chance of taking this path
| | | +---+ : 4 leaps, 1/448 chance of taking this path
| | +-----+
| | | +-+ : 4 leaps, 1/224 chance of taking this path
| | +-------+ : 3 leaps, 1/224 chance of taking this path
| +-------+
| | +-+
| | | +-+
| | | | +-+ : 5 leaps, 1/336 chance of taking this path
| | | +---+ : 4 leaps, 1/336 chance of taking this path
| | +---+
| | | +-+ : 4 leaps, 1/168 chance of taking this path
| | +-----+ : 3 leaps, 1/168 chance of taking this path
| +---------+
| | +-+
| | | +-+ : 4 leaps, 1/112 chance of taking this path
| | +---+ : 3 leaps, 1/112 chance of taking this path
| +-----------+
| | +-+ : 3 leaps, 1/56 chance of taking this path
| +-------------+ : 2 leaps, 1/56 chance of taking this path
+-----------+
| +-+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+
| | | | | | +-+ : 7 leaps, 1/5760 chance of taking this path
| | | | | +---+ : 6 leaps, 1/5760 chance of taking this path
| | | | +---+
| | | | | +-+ : 6 leaps, 1/2880 chance of taking this path
| | | | +-----+ : 5 leaps, 1/2880 chance of taking this path
| | | +---+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/1920 chance of taking this path
| | | | +---+ : 5 leaps, 1/1920 chance of taking this path
| | | +-----+
| | | | +-+ : 5 leaps, 1/960 chance of taking this path
| | | +-------+ : 4 leaps, 1/960 chance of taking this path
| | +---+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/1440 chance of taking this path
| | | | +---+ : 5 leaps, 1/1440 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/720 chance of taking this path
| | | +-----+ : 4 leaps, 1/720 chance of taking this path
| | +-----+
| | | +-+
| | | | +-+ : 5 leaps, 1/480 chance of taking this path
| | | +---+ : 4 leaps, 1/480 chance of taking this path
| | +-------+
| | | +-+ : 4 leaps, 1/240 chance of taking this path
| | +---------+ : 3 leaps, 1/240 chance of taking this path
| +---+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/1152 chance of taking this path
| | | | +---+ : 5 leaps, 1/1152 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/576 chance of taking this path
| | | +-----+ : 4 leaps, 1/576 chance of taking this path
| | +---+
| | | +-+
| | | | +-+ : 5 leaps, 1/384 chance of taking this path
| | | +---+ : 4 leaps, 1/384 chance of taking this path
| | +-----+
| | | +-+ : 4 leaps, 1/192 chance of taking this path
| | +-------+ : 3 leaps, 1/192 chance of taking this path
| +-----+
| | +-+
| | | +-+
| | | | +-+ : 5 leaps, 1/288 chance of taking this path
| | | +---+ : 4 leaps, 1/288 chance of taking this path
| | +---+
| | | +-+ : 4 leaps, 1/144 chance of taking this path
| | +-----+ : 3 leaps, 1/144 chance of taking this path
| +-------+
| | +-+
| | | +-+ : 4 leaps, 1/96 chance of taking this path
| | +---+ : 3 leaps, 1/96 chance of taking this path
| +---------+
| | +-+ : 3 leaps, 1/48 chance of taking this path
| +-----------+ : 2 leaps, 1/48 chance of taking this path
+-------------+
| +-+
| | +-+
| | | +-+
| | | | +-+
| | | | | +-+ : 6 leaps, 1/960 chance of taking this path
| | | | +---+ : 5 leaps, 1/960 chance of taking this path
| | | +---+
| | | | +-+ : 5 leaps, 1/480 chance of taking this path
| | | +-----+ : 4 leaps, 1/480 chance of taking this path
| | +---+
| | | +-+
| | | | +-+ : 5 leaps, 1/320 chance of taking this path
| | | +---+ : 4 leaps, 1/320 chance of taking this path
| | +-----+
| | | +-+ : 4 leaps, 1/160 chance of taking this path
| | +-------+ : 3 leaps, 1/160 chance of taking this path
| +---+
| | +-+
| | | +-+
| | | | +-+ : 5 leaps, 1/240 chance of taking this path
| | | +---+ : 4 leaps, 1/240 chance of taking this path
| | +---+
| | | +-+ : 4 leaps, 1/120 chance of taking this path
| | +-----+ : 3 leaps, 1/120 chance of taking this path
| +-----+
| | +-+
| | | +-+ : 4 leaps, 1/80 chance of taking this path
| | +---+ : 3 leaps, 1/80 chance of taking this path
| +-------+
| | +-+ : 3 leaps, 1/40 chance of taking this path
| +---------+ : 2 leaps, 1/40 chance of taking this path
+---------------+
+-+
| +-+
| | +-+
| | | +-+ : 5 leaps, 1/192 chance of taking this path
| | +---+ : 4 leaps, 1/192 chance of taking this path
| +---+
| | +-+ : 4 leaps, 1/96 chance of taking this path
| +-----+ : 3 leaps, 1/96 chance of taking this path
+---+
| +-+
| | +-+ : 4 leaps, 1/64 chance of taking this path
| +---+ : 3 leaps, 1/64 chance of taking this path
+-----+
| +-+ : 3 leaps, 1/32 chance of taking this path
+-------+ : 2 leaps, 1/32 chance of taking this path
Expected leaps: 12920203/3440640 (3.75517433)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment