id
int64 0
399
| prompt
stringlengths 265
2.96k
| answer
stringclasses 14
values | pythoncode
stringlengths 267
2.97k
| num_nodes
int64 3
10
| num_edges
int64 3
40
| avg_node_edge
float64 1
4
| graph_density
float64 0.11
1
| num_classes
int64 2
10
| avg_node_class
float64 1
5
| max_num_field
int64 1
10
| min_num_field
int64 1
3
| avg_num_field
float64 1
6.5
| path_length
int64 3
10
| max_node_visits
int64 1
5
| max_edge_visits
int64 1
4
| unique_node_number
int64 2
8
| path_node_coverage
float64 0.2
1
| unique_edge_number
int64 2
10
| path_edge_coverage
float64 0.07
1
| num_cycle
int64 0
7
| shortest_cycle
int64 2
7
⌀ | longest_cycle
int64 2
10
⌀ | average_cycle
float64 2
7
⌀ | unique_edge_label
int64 1
7
| max_label_occurrences
int64 1
9
| max_label_consecutive
int64 1
9
| max_node_outdegree
int64 1
4
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
200 | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
e = A("e")
l = B("l")
g = A("g")
k = B("k")
a = A("a")
i = B("i")
c = A("c")
e.q = a
l.q = i
g.q = a
k.q = l
a.q = g
i.q = l
c.q = a
assert g.q.q.q.q.q.q.q.txt == " | a" | class A:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
e = A("e")
l = B("l")
g = A("g")
k = B("k")
a = A("a")
i = B("i")
c = A("c")
e.q = a
l.q = i
g.q = a
k.q = l
a.q = g
i.q = l
c.q = a
assert g.q.q.q.q.q.q.q.txt == "a" | 7 | 7 | 1 | 0.166667 | 2 | 3.5 | 1 | 1 | 1 | 7 | 4 | 4 | 2 | 0.285714 | 2 | 0.285714 | 6 | 2 | 6 | 3.333333 | 1 | 7 | 7 | 1 |
201 | class A:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: G = None
self.v: E = None
self.y: D = None
self.w: D = None
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: D = None
self.v: E = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.v: E = None
self.y: A = None
self.w: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: B = None
self.v: B = None
self.y: C = None
self.w: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: E = None
self.v: C = None
self.y: E = None
self.w: E = None
self.p: B = None
self.q: A = None
self.s: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
i = A("i")
d = B("d")
k = C("k")
b = D("b")
c = E("c")
h = F("h")
e = G("e")
i.r = k
d.r = e
d.v = c
d.y = b
d.w = b
d.p = i
k.r = b
k.y = b
k.v = c
b.r = k
b.v = c
b.y = i
b.w = h
c.r = d
c.v = d
c.y = k
c.w = h
h.r = c
h.y = c
h.w = c
h.v = k
h.p = d
h.s = d
h.q = i
e.r = d
assert d.p.r.y.w.q.r.txt == " | k" | class A:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: G = None
self.v: E = None
self.y: D = None
self.w: D = None
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: D = None
self.v: E = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.v: E = None
self.y: A = None
self.w: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: B = None
self.v: B = None
self.y: C = None
self.w: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: E = None
self.v: C = None
self.y: E = None
self.w: E = None
self.p: B = None
self.q: A = None
self.s: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
i = A("i")
d = B("d")
k = C("k")
b = D("b")
c = E("c")
h = F("h")
e = G("e")
i.r = k
d.r = e
d.v = c
d.y = b
d.w = b
d.p = i
k.r = b
k.y = b
k.v = c
b.r = k
b.v = c
b.y = i
b.w = h
c.r = d
c.v = d
c.y = k
c.w = h
h.r = c
h.y = c
h.w = c
h.v = k
h.p = d
h.s = d
h.q = i
e.r = d
assert d.p.r.y.w.q.r.txt == "k" | 7 | 19 | 2.714286 | 0.452381 | 7 | 1 | 7 | 1 | 3.571429 | 6 | 2 | 2 | 5 | 0.714286 | 5 | 0.263158 | 2 | 4 | 4 | 4 | 5 | 2 | 1 | 1 |
202 | class A:
def __init__(self, txt: str):
self.t: E = None
self.o: B = None
self.w: G = None
self.q: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: E = None
self.o: C = None
self.w: A = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: G = None
self.o: A = None
self.w: F = None
self.q: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.o: B = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.o: F = None
self.w: F = None
self.q: C = None
self.r: F = None
self.s: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: E = None
self.o: A = None
self.w: A = None
self.q: G = None
self.r: E = None
self.s: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: C = None
self.o: B = None
self.w: D = None
self.q: E = None
self.r: F = None
self.txt = txt
j = A("j")
a = B("a")
c = C("c")
k = D("k")
l = E("l")
b = F("b")
h = G("h")
j.t = l
j.q = l
j.o = a
j.w = h
a.t = l
a.o = c
a.q = c
a.w = j
c.t = h
c.o = j
c.w = b
c.q = l
k.t = a
k.o = a
k.w = j
l.t = c
l.q = c
l.o = b
l.w = b
l.r = b
l.s = b
b.t = l
b.r = l
b.o = j
b.w = j
b.q = h
b.s = k
h.t = c
h.o = a
h.w = k
h.q = l
h.r = b
assert j.w.q.s.w.w.q.t.txt == " | c" | class A:
def __init__(self, txt: str):
self.t: E = None
self.o: B = None
self.w: G = None
self.q: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: E = None
self.o: C = None
self.w: A = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: G = None
self.o: A = None
self.w: F = None
self.q: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.o: B = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.o: F = None
self.w: F = None
self.q: C = None
self.r: F = None
self.s: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: E = None
self.o: A = None
self.w: A = None
self.q: G = None
self.r: E = None
self.s: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: C = None
self.o: B = None
self.w: D = None
self.q: E = None
self.r: F = None
self.txt = txt
j = A("j")
a = B("a")
c = C("c")
k = D("k")
l = E("l")
b = F("b")
h = G("h")
j.t = l
j.q = l
j.o = a
j.w = h
a.t = l
a.o = c
a.q = c
a.w = j
c.t = h
c.o = j
c.w = b
c.q = l
k.t = a
k.o = a
k.w = j
l.t = c
l.q = c
l.o = b
l.w = b
l.r = b
l.s = b
b.t = l
b.r = l
b.o = j
b.w = j
b.q = h
b.s = k
h.t = c
h.o = a
h.w = k
h.q = l
h.r = b
assert j.w.q.s.w.w.q.t.txt == "c" | 7 | 23 | 3.285714 | 0.547619 | 7 | 1 | 6 | 3 | 4.571429 | 7 | 2 | 2 | 5 | 0.714286 | 5 | 0.217391 | 3 | 4 | 4 | 4 | 4 | 3 | 2 | 2 |
203 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.w: B = None
self.txt = txt
f = A("f")
b = B("b")
a = B("a")
e = B("e")
i = A("i")
n = A("n")
d = A("d")
f.x = i
b.x = f
b.w = e
a.x = f
a.w = b
e.x = f
e.w = a
i.x = d
n.x = f
d.x = n
assert n.x.x.x.x.x.x.txt == " | i" | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.w: B = None
self.txt = txt
f = A("f")
b = B("b")
a = B("a")
e = B("e")
i = A("i")
n = A("n")
d = A("d")
f.x = i
b.x = f
b.w = e
a.x = f
a.w = b
e.x = f
e.w = a
i.x = d
n.x = f
d.x = n
assert n.x.x.x.x.x.x.txt == "i" | 7 | 10 | 1.428571 | 0.238095 | 2 | 3.5 | 2 | 1 | 1.5 | 6 | 2 | 2 | 4 | 0.571429 | 4 | 0.4 | 3 | 4 | 4 | 4 | 1 | 6 | 6 | 1 |
204 | class A:
def __init__(self, txt: str):
self.o: B = None
self.t: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: A = None
self.t: C = None
self.z: C = None
self.txt = txt
h = A("h")
n = B("n")
i = C("i")
j = D("j")
e = B("e")
m = C("m")
c = A("c")
h.o = e
h.t = n
h.z = c
n.o = h
i.o = j
i.t = h
j.o = h
j.t = i
j.z = m
e.o = h
m.o = j
m.t = c
c.o = e
c.t = e
c.z = h
assert n.o.t.o.txt == " | h" | class A:
def __init__(self, txt: str):
self.o: B = None
self.t: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: A = None
self.t: C = None
self.z: C = None
self.txt = txt
h = A("h")
n = B("n")
i = C("i")
j = D("j")
e = B("e")
m = C("m")
c = A("c")
h.o = e
h.t = n
h.z = c
n.o = h
i.o = j
i.t = h
j.o = h
j.t = i
j.z = m
e.o = h
m.o = j
m.t = c
c.o = e
c.t = e
c.z = h
assert n.o.t.o.txt == "h" | 7 | 14 | 2 | 0.333333 | 4 | 1.75 | 3 | 1 | 2.25 | 3 | 2 | 2 | 2 | 0.285714 | 2 | 0.142857 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
205 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
m = A("m")
j = B("j")
n = A("n")
l = B("l")
a = B("a")
e = A("e")
i = B("i")
m.z = e
j.z = m
n.z = e
l.z = e
a.z = n
e.z = m
i.z = e
assert i.z.z.z.z.txt == " | m" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
m = A("m")
j = B("j")
n = A("n")
l = B("l")
a = B("a")
e = A("e")
i = B("i")
m.z = e
j.z = m
n.z = e
l.z = e
a.z = n
e.z = m
i.z = e
assert i.z.z.z.z.txt == "m" | 7 | 7 | 1 | 0.166667 | 2 | 3.5 | 1 | 1 | 1 | 4 | 2 | 2 | 3 | 0.428571 | 3 | 0.428571 | 2 | 2 | 2 | 2 | 1 | 4 | 4 | 1 |
206 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: C = None
self.p: B = None
self.txt = txt
j = A("j")
k = B("k")
m = C("m")
n = A("n")
b = B("b")
h = B("h")
c = C("c")
j.s = b
k.s = m
m.s = c
m.p = h
n.s = k
b.s = c
h.s = m
c.s = m
c.p = h
assert b.s.s.s.s.txt == " | m" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: C = None
self.p: B = None
self.txt = txt
j = A("j")
k = B("k")
m = C("m")
n = A("n")
b = B("b")
h = B("h")
c = C("c")
j.s = b
k.s = m
m.s = c
m.p = h
n.s = k
b.s = c
h.s = m
c.s = m
c.p = h
assert b.s.s.s.s.txt == "m" | 7 | 9 | 1.285714 | 0.214286 | 3 | 2.333333 | 2 | 1 | 1.333333 | 4 | 2 | 2 | 3 | 0.428571 | 3 | 0.333333 | 2 | 2 | 2 | 2 | 1 | 4 | 4 | 1 |
207 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.s: B = None
self.txt = txt
l = A("l")
n = B("n")
i = B("i")
m = B("m")
g = B("g")
a = A("a")
c = A("c")
l.t = n
n.t = c
n.s = g
i.t = c
i.s = n
m.t = l
m.s = i
g.t = l
g.s = i
a.t = g
c.t = m
assert l.t.t.t.t.t.t.txt == " | c" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.s: B = None
self.txt = txt
l = A("l")
n = B("n")
i = B("i")
m = B("m")
g = B("g")
a = A("a")
c = A("c")
l.t = n
n.t = c
n.s = g
i.t = c
i.s = n
m.t = l
m.s = i
g.t = l
g.s = i
a.t = g
c.t = m
assert l.t.t.t.t.t.t.txt == "c" | 7 | 11 | 1.571429 | 0.261905 | 2 | 3.5 | 2 | 1 | 1.5 | 6 | 2 | 2 | 4 | 0.571429 | 4 | 0.363636 | 3 | 4 | 4 | 4 | 1 | 6 | 6 | 1 |
208 | class A:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: D = None
self.s: A = None
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: B = None
self.s: D = None
self.t: C = None
self.y: B = None
self.txt = txt
e = A("e")
b = B("b")
j = C("j")
f = D("f")
g = B("g")
i = D("i")
n = B("n")
e.r = f
b.r = g
j.r = i
j.t = i
j.s = e
f.r = g
f.y = g
f.s = i
f.t = j
g.r = n
i.r = b
i.s = f
i.t = j
i.y = g
n.r = b
assert i.t.s.r.y.r.txt == " | n" | class A:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: D = None
self.s: A = None
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: B = None
self.s: D = None
self.t: C = None
self.y: B = None
self.txt = txt
e = A("e")
b = B("b")
j = C("j")
f = D("f")
g = B("g")
i = D("i")
n = B("n")
e.r = f
b.r = g
j.r = i
j.t = i
j.s = e
f.r = g
f.y = g
f.s = i
f.t = j
g.r = n
i.r = b
i.s = f
i.t = j
i.y = g
n.r = b
assert i.t.s.r.y.r.txt == "n" | 7 | 13 | 1.857143 | 0.309524 | 4 | 1.75 | 4 | 1 | 2.25 | 5 | 1 | 1 | 6 | 0.857143 | 5 | 0.384615 | 0 | null | null | null | 4 | 2 | 1 | 1 |
209 | class A:
def __init__(self, txt: str):
self.r: F = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.v: A = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.v: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: A = None
self.v: D = None
self.p: D = None
self.txt = txt
a = A("a")
e = B("e")
f = C("f")
b = D("b")
g = E("g")
h = F("h")
d = E("d")
a.r = h
a.v = e
e.r = b
e.v = f
f.r = a
f.v = a
f.p = e
b.r = f
g.r = f
g.v = b
h.r = a
h.v = b
h.p = b
d.r = f
d.v = b
assert f.p.r.r.p.v.r.r.txt == " | h" | class A:
def __init__(self, txt: str):
self.r: F = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.v: A = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.v: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: A = None
self.v: D = None
self.p: D = None
self.txt = txt
a = A("a")
e = B("e")
f = C("f")
b = D("b")
g = E("g")
h = F("h")
d = E("d")
a.r = h
a.v = e
e.r = b
e.v = f
f.r = a
f.v = a
f.p = e
b.r = f
g.r = f
g.v = b
h.r = a
h.v = b
h.p = b
d.r = f
d.v = b
assert f.p.r.r.p.v.r.r.txt == "h" | 7 | 13 | 1.857143 | 0.309524 | 6 | 1.166667 | 3 | 1 | 2.166667 | 7 | 3 | 2 | 5 | 0.714286 | 6 | 0.461538 | 3 | 2 | 5 | 3.25 | 3 | 4 | 2 | 2 |
210 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.y: C = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.y: A = None
self.txt = txt
b = A("b")
e = B("e")
m = C("m")
j = B("j")
f = B("f")
k = A("k")
a = C("a")
b.t = k
e.t = b
e.y = a
e.w = m
m.t = j
m.y = k
j.t = b
j.y = a
j.w = a
f.t = k
f.y = m
f.w = m
k.t = b
a.t = f
a.y = k
assert a.y.t.t.t.t.t.t.txt == " | k" | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.y: C = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.y: A = None
self.txt = txt
b = A("b")
e = B("e")
m = C("m")
j = B("j")
f = B("f")
k = A("k")
a = C("a")
b.t = k
e.t = b
e.y = a
e.w = m
m.t = j
m.y = k
j.t = b
j.y = a
j.w = a
f.t = k
f.y = m
f.w = m
k.t = b
a.t = f
a.y = k
assert a.y.t.t.t.t.t.t.txt == "k" | 7 | 13 | 1.857143 | 0.309524 | 3 | 2.333333 | 3 | 1 | 2 | 7 | 4 | 3 | 3 | 0.428571 | 3 | 0.230769 | 5 | 2 | 6 | 3.111111 | 2 | 6 | 6 | 1 |
211 | class A:
def __init__(self, txt: str):
self.w: A = None
self.x: E = None
self.s: C = None
self.y: D = None
self.r: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: D = None
self.x: E = None
self.s: C = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: A = None
self.x: B = None
self.s: C = None
self.y: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: B = None
self.x: D = None
self.s: B = None
self.y: A = None
self.r: A = None
self.txt = txt
d = A("d")
h = B("h")
k = C("k")
i = D("i")
c = E("c")
f = C("f")
l = A("l")
d.w = l
d.x = c
d.r = c
d.s = k
d.y = i
h.w = i
h.x = c
h.s = f
h.y = f
k.w = h
i.w = d
i.x = h
i.s = k
i.y = c
c.w = h
c.s = h
c.x = i
c.y = l
c.r = d
f.w = h
l.w = d
l.x = c
l.r = c
l.s = k
l.y = i
assert h.w.y.y.w.s.w.txt == " | h" | class A:
def __init__(self, txt: str):
self.w: A = None
self.x: E = None
self.s: C = None
self.y: D = None
self.r: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: D = None
self.x: E = None
self.s: C = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: A = None
self.x: B = None
self.s: C = None
self.y: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: B = None
self.x: D = None
self.s: B = None
self.y: A = None
self.r: A = None
self.txt = txt
d = A("d")
h = B("h")
k = C("k")
i = D("i")
c = E("c")
f = C("f")
l = A("l")
d.w = l
d.x = c
d.r = c
d.s = k
d.y = i
h.w = i
h.x = c
h.s = f
h.y = f
k.w = h
i.w = d
i.x = h
i.s = k
i.y = c
c.w = h
c.s = h
c.x = i
c.y = l
c.r = d
f.w = h
l.w = d
l.x = c
l.r = c
l.s = k
l.y = i
assert h.w.y.y.w.s.w.txt == "h" | 7 | 21 | 3 | 0.5 | 5 | 1.4 | 5 | 1 | 3.8 | 6 | 2 | 1 | 6 | 0.857143 | 6 | 0.285714 | 1 | 6 | 6 | 6 | 3 | 3 | 2 | 1 |
212 | class A:
def __init__(self, txt: str):
self.u: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: C = None
self.t: A = None
self.txt = txt
h = A("h")
c = B("c")
n = C("n")
d = C("d")
i = B("i")
k = A("k")
m = C("m")
h.u = k
h.t = k
c.u = n
c.t = h
n.u = d
n.t = h
d.u = n
d.t = h
i.u = m
i.t = k
k.u = h
k.t = h
m.u = d
m.t = h
assert k.t.u.t.t.t.t.u.txt == " | h" | class A:
def __init__(self, txt: str):
self.u: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: C = None
self.t: A = None
self.txt = txt
h = A("h")
c = B("c")
n = C("n")
d = C("d")
i = B("i")
k = A("k")
m = C("m")
h.u = k
h.t = k
c.u = n
c.t = h
n.u = d
n.t = h
d.u = n
d.t = h
i.u = m
i.t = k
k.u = h
k.t = h
m.u = d
m.t = h
assert k.t.u.t.t.t.t.u.txt == "h" | 7 | 12 | 1.714286 | 0.285714 | 3 | 2.333333 | 2 | 2 | 2 | 7 | 4 | 3 | 2 | 0.285714 | 4 | 0.333333 | 6 | 2 | 6 | 3.333333 | 2 | 5 | 4 | 2 |
213 | class A:
def __init__(self, txt: str):
self.o: F = None
self.w: B = None
self.v: D = None
self.t: A = None
self.u: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.w: A = None
self.v: B = None
self.t: E = None
self.u: D = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: D = None
self.w: F = None
self.v: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
h = A("h")
i = B("i")
m = C("m")
d = D("d")
g = E("g")
l = F("l")
b = A("b")
h.o = l
h.w = i
h.v = d
h.u = d
h.t = b
i.o = m
m.o = i
m.v = i
m.p = i
m.w = h
m.t = g
m.u = d
d.o = i
g.o = d
g.w = l
g.v = i
l.o = m
b.o = l
b.w = i
b.v = d
b.u = d
b.t = h
assert m.w.t.o.o.t.txt == " | g" | class A:
def __init__(self, txt: str):
self.o: F = None
self.w: B = None
self.v: D = None
self.t: A = None
self.u: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.w: A = None
self.v: B = None
self.t: E = None
self.u: D = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: D = None
self.w: F = None
self.v: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
h = A("h")
i = B("i")
m = C("m")
d = D("d")
g = E("g")
l = F("l")
b = A("b")
h.o = l
h.w = i
h.v = d
h.u = d
h.t = b
i.o = m
m.o = i
m.v = i
m.p = i
m.w = h
m.t = g
m.u = d
d.o = i
g.o = d
g.w = l
g.v = i
l.o = m
b.o = l
b.w = i
b.v = d
b.u = d
b.t = h
assert m.w.t.o.o.t.txt == "g" | 7 | 18 | 2.571429 | 0.428571 | 6 | 1.166667 | 6 | 1 | 2.833333 | 5 | 2 | 1 | 5 | 0.714286 | 5 | 0.277778 | 1 | 4 | 4 | 4 | 3 | 2 | 2 | 2 |
214 | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
a = A("a")
k = B("k")
m = C("m")
f = A("f")
h = A("h")
g = C("g")
b = B("b")
a.z = g
k.z = g
k.o = b
m.z = g
f.z = g
h.z = g
g.z = m
b.z = m
b.o = k
assert f.z.z.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
a = A("a")
k = B("k")
m = C("m")
f = A("f")
h = A("h")
g = C("g")
b = B("b")
a.z = g
k.z = g
k.o = b
m.z = g
f.z = g
h.z = g
g.z = m
b.z = m
b.o = k
assert f.z.z.z.txt == "g" | 7 | 9 | 1.285714 | 0.214286 | 3 | 2.333333 | 2 | 1 | 1.333333 | 3 | 2 | 1 | 3 | 0.428571 | 3 | 0.333333 | 1 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
215 | class A:
def __init__(self, txt: str):
self.y: E = None
self.v: F = None
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: F = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: E = None
self.v: E = None
self.z: A = None
self.q: B = None
self.s: E = None
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: C = None
self.v: C = None
self.z: D = None
self.q: B = None
self.txt = txt
n = A("n")
k = B("k")
b = C("b")
l = D("l")
g = E("g")
f = F("f")
h = A("h")
n.y = g
n.v = f
n.z = l
k.y = f
k.v = g
b.y = g
b.v = g
b.s = g
b.z = n
b.q = k
b.r = k
l.y = k
g.y = l
f.y = b
f.v = b
f.z = l
f.q = k
h.y = g
h.v = f
h.z = l
assert h.z.y.v.y.txt == " | l" | class A:
def __init__(self, txt: str):
self.y: E = None
self.v: F = None
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: F = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: E = None
self.v: E = None
self.z: A = None
self.q: B = None
self.s: E = None
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: C = None
self.v: C = None
self.z: D = None
self.q: B = None
self.txt = txt
n = A("n")
k = B("k")
b = C("b")
l = D("l")
g = E("g")
f = F("f")
h = A("h")
n.y = g
n.v = f
n.z = l
k.y = f
k.v = g
b.y = g
b.v = g
b.s = g
b.z = n
b.q = k
b.r = k
l.y = k
g.y = l
f.y = b
f.v = b
f.z = l
f.q = k
h.y = g
h.v = f
h.z = l
assert h.z.y.v.y.txt == "l" | 7 | 16 | 2.285714 | 0.380952 | 6 | 1.166667 | 6 | 1 | 2.833333 | 4 | 2 | 1 | 4 | 0.571429 | 4 | 0.25 | 1 | 3 | 3 | 3 | 3 | 2 | 1 | 1 |
216 | class A:
def __init__(self, txt: str):
self.r: C = None
self.o: D = None
self.y: C = None
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.o: D = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
e = A("e")
b = B("b")
c = C("c")
f = D("f")
m = A("m")
h = C("h")
l = A("l")
e.r = c
e.o = f
e.s = f
e.y = h
b.r = l
b.o = f
b.y = e
c.r = b
c.o = f
f.r = c
m.r = c
m.o = f
m.s = f
m.y = h
h.r = b
h.o = f
l.r = c
l.o = f
l.s = f
l.y = h
assert h.o.r.r.o.r.r.r.txt == " | l" | class A:
def __init__(self, txt: str):
self.r: C = None
self.o: D = None
self.y: C = None
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.o: D = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
e = A("e")
b = B("b")
c = C("c")
f = D("f")
m = A("m")
h = C("h")
l = A("l")
e.r = c
e.o = f
e.s = f
e.y = h
b.r = l
b.o = f
b.y = e
c.r = b
c.o = f
f.r = c
m.r = c
m.o = f
m.s = f
m.y = h
h.r = b
h.o = f
l.r = c
l.o = f
l.s = f
l.y = h
assert h.o.r.r.o.r.r.r.txt == "l" | 7 | 17 | 2.428571 | 0.404762 | 4 | 1.75 | 4 | 1 | 2.5 | 7 | 2 | 2 | 5 | 0.714286 | 5 | 0.294118 | 3 | 3 | 3 | 3 | 2 | 5 | 3 | 2 |
217 | class A:
def __init__(self, txt: str):
self.z: D = None
self.r: B = None
self.y: B = None
self.s: C = None
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.r: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.r: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.r: A = None
self.y: A = None
self.s: B = None
self.v: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: G = None
self.r: C = None
self.y: E = None
self.s: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.r: B = None
self.txt = txt
c = A("c")
n = B("n")
a = C("a")
g = D("g")
f = E("f")
m = F("m")
b = G("b")
c.z = g
c.v = g
c.r = n
c.y = n
c.s = a
n.z = g
n.r = m
a.z = n
a.r = g
g.z = f
f.z = b
f.v = b
f.r = c
f.y = c
f.s = n
m.z = b
m.r = a
m.y = f
m.s = g
b.z = a
b.r = n
assert g.z.s.z.z.s.z.z.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: D = None
self.r: B = None
self.y: B = None
self.s: C = None
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.r: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.r: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.r: A = None
self.y: A = None
self.s: B = None
self.v: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: G = None
self.r: C = None
self.y: E = None
self.s: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.r: B = None
self.txt = txt
c = A("c")
n = B("n")
a = C("a")
g = D("g")
f = E("f")
m = F("m")
b = G("b")
c.z = g
c.v = g
c.r = n
c.y = n
c.s = a
n.z = g
n.r = m
a.z = n
a.r = g
g.z = f
f.z = b
f.v = b
f.r = c
f.y = c
f.s = n
m.z = b
m.r = a
m.y = f
m.s = g
b.z = a
b.r = n
assert g.z.s.z.z.s.z.z.txt == "f" | 7 | 17 | 2.428571 | 0.404762 | 7 | 1 | 5 | 1 | 3 | 7 | 3 | 3 | 3 | 0.428571 | 3 | 0.176471 | 5 | 3 | 6 | 3.857143 | 2 | 5 | 2 | 1 |
218 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: F = None
self.q: D = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.q: A = None
self.w: B = None
self.o: B = None
self.p: B = None
self.t: G = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: E = None
self.q: F = None
self.w: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: B = None
self.q: G = None
self.w: A = None
self.o: F = None
self.p: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: B = None
self.q: D = None
self.w: C = None
self.o: E = None
self.p: D = None
self.t: E = None
self.s: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: C = None
self.q: C = None
self.w: A = None
self.o: C = None
self.p: B = None
self.t: F = None
self.s: D = None
self.txt = txt
b = A("b")
i = B("i")
k = C("k")
n = D("n")
c = E("c")
a = F("a")
e = G("e")
b.x = i
i.x = a
i.q = n
i.w = k
k.x = c
k.q = b
k.w = i
k.o = i
k.p = i
k.s = i
k.t = e
n.x = c
n.q = a
n.w = i
c.x = i
c.q = e
c.w = b
c.o = a
c.p = a
a.x = i
a.q = n
a.p = n
a.w = k
a.o = c
a.t = c
a.s = c
e.x = k
e.q = k
e.o = k
e.w = b
e.p = i
e.t = a
e.s = n
assert i.w.s.w.t.t.s.q.txt == " | e" | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: F = None
self.q: D = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.q: A = None
self.w: B = None
self.o: B = None
self.p: B = None
self.t: G = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: E = None
self.q: F = None
self.w: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: B = None
self.q: G = None
self.w: A = None
self.o: F = None
self.p: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: B = None
self.q: D = None
self.w: C = None
self.o: E = None
self.p: D = None
self.t: E = None
self.s: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: C = None
self.q: C = None
self.w: A = None
self.o: C = None
self.p: B = None
self.t: F = None
self.s: D = None
self.txt = txt
b = A("b")
i = B("i")
k = C("k")
n = D("n")
c = E("c")
a = F("a")
e = G("e")
b.x = i
i.x = a
i.q = n
i.w = k
k.x = c
k.q = b
k.w = i
k.o = i
k.p = i
k.s = i
k.t = e
n.x = c
n.q = a
n.w = i
c.x = i
c.q = e
c.w = b
c.o = a
c.p = a
a.x = i
a.q = n
a.p = n
a.w = k
a.o = c
a.t = c
a.s = c
e.x = k
e.q = k
e.o = k
e.w = b
e.p = i
e.t = a
e.s = n
assert i.w.s.w.t.t.s.q.txt == "e" | 7 | 24 | 3.428571 | 0.571429 | 7 | 1 | 7 | 1 | 4.714286 | 7 | 2 | 2 | 5 | 0.714286 | 6 | 0.25 | 3 | 2 | 3 | 2.333333 | 4 | 2 | 2 | 2 |
219 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.u: B = None
self.txt = txt
k = A("k")
l = B("l")
c = C("c")
i = C("i")
j = C("j")
f = A("f")
n = C("n")
k.o = l
l.o = k
c.o = f
c.u = l
i.o = k
i.u = l
j.o = f
j.u = l
f.o = l
n.o = f
n.u = l
assert c.o.o.o.o.o.txt == " | k" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.u: B = None
self.txt = txt
k = A("k")
l = B("l")
c = C("c")
i = C("i")
j = C("j")
f = A("f")
n = C("n")
k.o = l
l.o = k
c.o = f
c.u = l
i.o = k
i.u = l
j.o = f
j.u = l
f.o = l
n.o = f
n.u = l
assert c.o.o.o.o.o.txt == "k" | 7 | 11 | 1.571429 | 0.261905 | 3 | 2.333333 | 2 | 1 | 1.333333 | 5 | 2 | 2 | 4 | 0.571429 | 4 | 0.363636 | 2 | 2 | 2 | 2 | 1 | 5 | 5 | 1 |
220 | class A:
def __init__(self, txt: str):
self.y: C = None
self.p: B = None
self.t: B = None
self.z: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.p: C = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.p: D = None
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: D = None
self.p: E = None
self.t: F = None
self.z: C = None
self.q: D = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
k = A("k")
l = B("l")
i = C("i")
g = D("g")
e = E("e")
m = F("m")
a = D("a")
k.y = i
k.p = l
k.t = l
k.z = m
l.y = i
l.p = i
l.t = a
i.y = l
i.p = a
i.t = g
g.y = a
g.q = a
g.p = e
g.t = m
g.z = i
g.u = i
e.y = l
m.y = l
a.y = g
a.q = g
a.p = e
a.t = m
a.z = i
a.u = i
assert k.z.y.p.p.p.y.y.txt == " | i" | class A:
def __init__(self, txt: str):
self.y: C = None
self.p: B = None
self.t: B = None
self.z: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.p: C = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.p: D = None
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: D = None
self.p: E = None
self.t: F = None
self.z: C = None
self.q: D = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
k = A("k")
l = B("l")
i = C("i")
g = D("g")
e = E("e")
m = F("m")
a = D("a")
k.y = i
k.p = l
k.t = l
k.z = m
l.y = i
l.p = i
l.t = a
i.y = l
i.p = a
i.t = g
g.y = a
g.q = a
g.p = e
g.t = m
g.z = i
g.u = i
e.y = l
m.y = l
a.y = g
a.q = g
a.p = e
a.t = m
a.z = i
a.u = i
assert k.z.y.p.p.p.y.y.txt == "i" | 7 | 18 | 2.571429 | 0.428571 | 6 | 1.166667 | 6 | 1 | 3 | 7 | 2 | 1 | 6 | 0.857143 | 7 | 0.388889 | 2 | 4 | 4 | 4 | 3 | 3 | 3 | 2 |
221 | class A:
def __init__(self, txt: str):
self.w: C = None
self.z: D = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.z: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: C = None
self.z: E = None
self.o: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: C = None
self.z: E = None
self.o: A = None
self.y: A = None
self.p: C = None
self.txt = txt
m = A("m")
g = B("g")
j = C("j")
d = D("d")
k = E("k")
i = C("i")
a = E("a")
m.w = j
m.o = j
m.z = d
g.w = m
g.z = d
j.w = i
j.z = k
j.o = k
d.w = k
k.w = i
k.p = i
k.z = a
k.o = m
k.y = m
i.w = j
i.z = k
i.o = k
a.w = j
a.p = j
a.z = k
a.o = m
a.y = m
assert m.z.w.p.w.w.w.o.txt == " | k" | class A:
def __init__(self, txt: str):
self.w: C = None
self.z: D = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.z: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: C = None
self.z: E = None
self.o: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: C = None
self.z: E = None
self.o: A = None
self.y: A = None
self.p: C = None
self.txt = txt
m = A("m")
g = B("g")
j = C("j")
d = D("d")
k = E("k")
i = C("i")
a = E("a")
m.w = j
m.o = j
m.z = d
g.w = m
g.z = d
j.w = i
j.z = k
j.o = k
d.w = k
k.w = i
k.p = i
k.z = a
k.o = m
k.y = m
i.w = j
i.z = k
i.o = k
a.w = j
a.p = j
a.z = k
a.o = m
a.y = m
assert m.z.w.p.w.w.w.o.txt == "k" | 7 | 15 | 2.142857 | 0.357143 | 5 | 1.4 | 5 | 1 | 2.8 | 7 | 2 | 2 | 5 | 0.714286 | 6 | 0.4 | 3 | 2 | 5 | 3 | 4 | 4 | 3 | 2 |
222 | class A:
def __init__(self, txt: str):
self.x: B = None
self.v: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.v: B = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: E = None
self.v: C = None
self.t: A = None
self.s: A = None
self.r: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
g = A("g")
c = B("c")
a = C("a")
j = D("j")
d = E("d")
k = A("k")
f = B("f")
g.x = c
g.v = k
g.t = k
c.x = j
c.t = j
c.v = f
a.x = f
j.x = d
j.v = a
j.r = a
j.t = g
j.s = g
d.x = a
k.x = c
k.v = g
k.t = g
f.x = j
f.t = j
f.v = c
assert f.v.v.t.x.x.x.txt == " | f" | class A:
def __init__(self, txt: str):
self.x: B = None
self.v: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.v: B = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: E = None
self.v: C = None
self.t: A = None
self.s: A = None
self.r: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
g = A("g")
c = B("c")
a = C("a")
j = D("j")
d = E("d")
k = A("k")
f = B("f")
g.x = c
g.v = k
g.t = k
c.x = j
c.t = j
c.v = f
a.x = f
j.x = d
j.v = a
j.r = a
j.t = g
j.s = g
d.x = a
k.x = c
k.v = g
k.t = g
f.x = j
f.t = j
f.v = c
assert f.v.v.t.x.x.x.txt == "f" | 7 | 13 | 1.857143 | 0.309524 | 5 | 1.4 | 5 | 1 | 2.6 | 6 | 3 | 1 | 5 | 0.714286 | 6 | 0.461538 | 2 | 2 | 6 | 4 | 3 | 3 | 3 | 2 |
223 | class A:
def __init__(self, txt: str):
self.w: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
g = A("g")
k = B("k")
b = B("b")
m = B("m")
h = A("h")
a = B("a")
d = A("d")
g.w = h
g.o = h
k.w = g
b.w = d
m.w = d
h.w = d
h.o = g
a.w = g
d.w = h
d.o = g
assert g.w.o.o.txt == " | h" | class A:
def __init__(self, txt: str):
self.w: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
g = A("g")
k = B("k")
b = B("b")
m = B("m")
h = A("h")
a = B("a")
d = A("d")
g.w = h
g.o = h
k.w = g
b.w = d
m.w = d
h.w = d
h.o = g
a.w = g
d.w = h
d.o = g
assert g.w.o.o.txt == "h" | 7 | 9 | 1.285714 | 0.214286 | 2 | 3.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 2 | 0.285714 | 3 | 0.333333 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 |
224 | class A:
def __init__(self, txt: str):
self.z: B = None
self.x: D = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.x: A = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.x: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.x: C = None
self.o: D = None
self.txt = txt
i = A("i")
m = B("m")
d = C("d")
e = D("e")
g = C("g")
l = D("l")
f = B("f")
i.z = f
i.x = e
i.o = d
m.z = l
m.x = i
m.o = i
d.z = l
d.x = i
e.z = l
e.o = l
e.x = g
g.z = l
g.x = i
l.z = e
l.o = e
l.x = d
f.z = l
f.x = i
f.o = i
assert l.x.z.x.z.txt == " | l" | class A:
def __init__(self, txt: str):
self.z: B = None
self.x: D = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.x: A = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.x: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.x: C = None
self.o: D = None
self.txt = txt
i = A("i")
m = B("m")
d = C("d")
e = D("e")
g = C("g")
l = D("l")
f = B("f")
i.z = f
i.x = e
i.o = d
m.z = l
m.x = i
m.o = i
d.z = l
d.x = i
e.z = l
e.o = l
e.x = g
g.z = l
g.x = i
l.z = e
l.o = e
l.x = d
f.z = l
f.x = i
f.o = i
assert l.x.z.x.z.txt == "l" | 7 | 15 | 2.142857 | 0.357143 | 4 | 1.75 | 3 | 2 | 2.75 | 4 | 3 | 2 | 2 | 0.285714 | 2 | 0.133333 | 3 | 2 | 4 | 2.5 | 2 | 2 | 1 | 1 |
225 | class A:
def __init__(self, txt: str):
self.s: G = None
self.o: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: G = None
self.o: E = None
self.v: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: G = None
self.o: E = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: C = None
self.o: B = None
self.v: D = None
self.u: B = None
self.r: D = None
self.txt = txt
n = A("n")
c = B("c")
f = C("f")
k = D("k")
g = E("g")
j = F("j")
a = G("a")
n.s = a
n.o = g
c.s = a
c.o = g
c.v = j
f.s = g
k.s = a
k.o = g
k.v = g
g.s = n
j.s = n
a.s = f
a.o = c
a.u = c
a.v = k
a.r = k
assert c.v.s.o.s.s.r.v.txt == " | g" | class A:
def __init__(self, txt: str):
self.s: G = None
self.o: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: G = None
self.o: E = None
self.v: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: G = None
self.o: E = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: C = None
self.o: B = None
self.v: D = None
self.u: B = None
self.r: D = None
self.txt = txt
n = A("n")
c = B("c")
f = C("f")
k = D("k")
g = E("g")
j = F("j")
a = G("a")
n.s = a
n.o = g
c.s = a
c.o = g
c.v = j
f.s = g
k.s = a
k.o = g
k.v = g
g.s = n
j.s = n
a.s = f
a.o = c
a.u = c
a.v = k
a.r = k
assert c.v.s.o.s.s.r.v.txt == "g" | 7 | 13 | 1.857143 | 0.309524 | 7 | 1 | 5 | 1 | 2.285714 | 7 | 2 | 1 | 6 | 0.857143 | 7 | 0.538462 | 2 | 2 | 4 | 3 | 4 | 3 | 2 | 2 |
226 | class A:
def __init__(self, txt: str):
self.x: F = None
self.s: D = None
self.o: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.s: A = None
self.o: G = None
self.v: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: C = None
self.s: F = None
self.o: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: A = None
self.s: C = None
self.o: G = None
self.v: C = None
self.p: G = None
self.r: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: A = None
self.s: C = None
self.o: F = None
self.txt = txt
b = A("b")
c = B("c")
g = C("g")
l = D("l")
h = E("h")
d = F("d")
k = G("k")
b.x = d
b.s = l
b.o = l
c.x = h
g.x = c
g.s = b
g.o = k
g.v = d
l.x = g
l.s = d
l.o = d
h.x = b
h.r = b
h.s = g
h.v = g
h.o = k
h.p = k
d.x = b
k.x = b
k.s = g
k.o = d
assert l.x.x.x.v.v.x.x.txt == " | d" | class A:
def __init__(self, txt: str):
self.x: F = None
self.s: D = None
self.o: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.s: A = None
self.o: G = None
self.v: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: C = None
self.s: F = None
self.o: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: A = None
self.s: C = None
self.o: G = None
self.v: C = None
self.p: G = None
self.r: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: A = None
self.s: C = None
self.o: F = None
self.txt = txt
b = A("b")
c = B("c")
g = C("g")
l = D("l")
h = E("h")
d = F("d")
k = G("k")
b.x = d
b.s = l
b.o = l
c.x = h
g.x = c
g.s = b
g.o = k
g.v = d
l.x = g
l.s = d
l.o = d
h.x = b
h.r = b
h.s = g
h.v = g
h.o = k
h.p = k
d.x = b
k.x = b
k.s = g
k.o = d
assert l.x.x.x.v.v.x.x.txt == "d" | 7 | 16 | 2.285714 | 0.380952 | 7 | 1 | 6 | 1 | 3 | 7 | 2 | 1 | 6 | 0.857143 | 7 | 0.4375 | 2 | 2 | 3 | 2.5 | 2 | 5 | 3 | 2 |
227 | class A:
def __init__(self, txt: str):
self.q: D = None
self.u: C = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: D = None
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: D = None
self.u: B = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.u: B = None
self.x: B = None
self.txt = txt
d = A("d")
f = B("f")
k = C("k")
h = D("h")
g = D("g")
e = A("e")
n = D("n")
d.q = g
d.u = k
d.x = e
f.q = n
f.u = k
k.q = n
k.u = f
k.x = f
h.q = d
h.u = f
h.x = f
g.q = e
g.u = f
g.x = f
e.q = n
e.u = k
e.x = d
n.q = d
n.u = f
n.x = f
assert k.x.q.q.u.q.txt == " | n" | class A:
def __init__(self, txt: str):
self.q: D = None
self.u: C = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: D = None
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: D = None
self.u: B = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.u: B = None
self.x: B = None
self.txt = txt
d = A("d")
f = B("f")
k = C("k")
h = D("h")
g = D("g")
e = A("e")
n = D("n")
d.q = g
d.u = k
d.x = e
f.q = n
f.u = k
k.q = n
k.u = f
k.x = f
h.q = d
h.u = f
h.x = f
g.q = e
g.u = f
g.x = f
e.q = n
e.u = k
e.x = d
n.q = d
n.u = f
n.x = f
assert k.x.q.q.u.q.txt == "n" | 7 | 16 | 2.285714 | 0.380952 | 4 | 1.75 | 3 | 2 | 2.75 | 5 | 2 | 1 | 4 | 0.571429 | 5 | 0.3125 | 2 | 3 | 4 | 3.5 | 3 | 3 | 2 | 2 |
228 | class A:
def __init__(self, txt: str):
self.v: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.u: B = None
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.u: B = None
self.p: A = None
self.txt = txt
h = A("h")
j = B("j")
g = C("g")
d = C("d")
i = B("i")
a = A("a")
b = B("b")
h.v = a
h.u = j
j.v = i
j.u = i
j.p = h
g.v = h
g.p = h
g.u = b
d.v = a
d.p = a
d.u = b
i.v = j
i.u = b
i.p = a
a.v = h
a.u = j
b.v = i
b.u = i
b.p = a
assert a.v.u.u.u.v.txt == " | i" | class A:
def __init__(self, txt: str):
self.v: A = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.u: B = None
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.u: B = None
self.p: A = None
self.txt = txt
h = A("h")
j = B("j")
g = C("g")
d = C("d")
i = B("i")
a = A("a")
b = B("b")
h.v = a
h.u = j
j.v = i
j.u = i
j.p = h
g.v = h
g.p = h
g.u = b
d.v = a
d.p = a
d.u = b
i.v = j
i.u = b
i.p = a
a.v = h
a.u = j
b.v = i
b.u = i
b.p = a
assert a.v.u.u.u.v.txt == "i" | 7 | 15 | 2.142857 | 0.357143 | 3 | 2.333333 | 3 | 2 | 2.666667 | 5 | 2 | 1 | 5 | 0.714286 | 5 | 0.333333 | 1 | 2 | 2 | 2 | 2 | 3 | 3 | 1 |
229 | class A:
def __init__(self, txt: str):
self.p: E = None
self.v: E = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: E = None
self.v: E = None
self.r: D = None
self.t: B = None
self.w: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: B = None
self.v: A = None
self.r: C = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
a = A("a")
m = B("m")
j = C("j")
d = D("d")
b = E("b")
c = C("c")
e = E("e")
a.p = b
a.v = b
a.r = c
m.p = a
j.p = b
j.v = e
j.r = d
j.t = m
j.w = c
d.p = m
d.v = a
d.r = c
d.t = e
b.p = m
c.p = e
c.v = e
c.r = d
c.t = m
c.w = j
e.p = m
assert j.r.v.r.w.t.txt == " | m" | class A:
def __init__(self, txt: str):
self.p: E = None
self.v: E = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: E = None
self.v: E = None
self.r: D = None
self.t: B = None
self.w: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: B = None
self.v: A = None
self.r: C = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
a = A("a")
m = B("m")
j = C("j")
d = D("d")
b = E("b")
c = C("c")
e = E("e")
a.p = b
a.v = b
a.r = c
m.p = a
j.p = b
j.v = e
j.r = d
j.t = m
j.w = c
d.p = m
d.v = a
d.r = c
d.t = e
b.p = m
c.p = e
c.v = e
c.r = d
c.t = m
c.w = j
e.p = m
assert j.r.v.r.w.t.txt == "m" | 7 | 18 | 2.571429 | 0.428571 | 5 | 1.4 | 5 | 1 | 2.8 | 5 | 2 | 1 | 5 | 0.714286 | 5 | 0.277778 | 1 | 4 | 4 | 4 | 4 | 2 | 1 | 2 |
230 | class A:
def __init__(self, txt: str):
self.o: F = None
self.q: C = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.q: E = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.q: A = None
self.y: F = None
self.u: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.q: F = None
self.y: F = None
self.u: A = None
self.z: A = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: A = None
self.q: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: E = None
self.q: E = None
self.y: C = None
self.txt = txt
f = A("f")
i = B("i")
h = C("h")
d = D("d")
c = E("c")
n = F("n")
b = C("b")
f.o = n
f.q = h
f.y = c
i.o = h
i.q = c
i.y = b
h.o = i
h.q = f
h.y = n
h.u = b
d.o = h
d.q = n
d.y = n
d.u = f
d.z = f
d.v = c
c.o = f
c.q = n
n.o = c
n.q = c
n.y = b
b.o = i
b.q = f
b.y = n
b.u = h
assert h.o.y.q.o.txt == " | n" | class A:
def __init__(self, txt: str):
self.o: F = None
self.q: C = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.q: E = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.q: A = None
self.y: F = None
self.u: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.q: F = None
self.y: F = None
self.u: A = None
self.z: A = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: A = None
self.q: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: E = None
self.q: E = None
self.y: C = None
self.txt = txt
f = A("f")
i = B("i")
h = C("h")
d = D("d")
c = E("c")
n = F("n")
b = C("b")
f.o = n
f.q = h
f.y = c
i.o = h
i.q = c
i.y = b
h.o = i
h.q = f
h.y = n
h.u = b
d.o = h
d.q = n
d.y = n
d.u = f
d.z = f
d.v = c
c.o = f
c.q = n
n.o = c
n.q = c
n.y = b
b.o = i
b.q = f
b.y = n
b.u = h
assert h.o.y.q.o.txt == "n" | 7 | 22 | 3.142857 | 0.52381 | 6 | 1.166667 | 6 | 2 | 3.5 | 4 | 1 | 1 | 5 | 0.714286 | 4 | 0.181818 | 0 | null | null | null | 3 | 2 | 1 | 1 |
231 | class A:
def __init__(self, txt: str):
self.z: C = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.x: A = None
self.w: C = None
self.txt = txt
n = A("n")
j = B("j")
k = C("k")
a = B("a")
f = A("f")
m = B("m")
l = C("l")
n.z = k
n.x = a
j.z = n
j.x = l
k.z = j
k.x = f
k.w = l
a.z = n
a.x = l
f.z = k
f.x = j
m.z = n
m.x = k
l.z = m
l.x = n
l.w = k
assert j.x.x.z.z.x.txt == " | l" | class A:
def __init__(self, txt: str):
self.z: C = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.x: A = None
self.w: C = None
self.txt = txt
n = A("n")
j = B("j")
k = C("k")
a = B("a")
f = A("f")
m = B("m")
l = C("l")
n.z = k
n.x = a
j.z = n
j.x = l
k.z = j
k.x = f
k.w = l
a.z = n
a.x = l
f.z = k
f.x = j
m.z = n
m.x = k
l.z = m
l.x = n
l.w = k
assert j.x.x.z.z.x.txt == "l" | 7 | 16 | 2.285714 | 0.380952 | 3 | 2.333333 | 3 | 2 | 2.333333 | 5 | 2 | 2 | 4 | 0.571429 | 4 | 0.25 | 2 | 4 | 4 | 4 | 2 | 3 | 2 | 1 |
232 | class A:
def __init__(self, txt: str):
self.w: C = None
self.x: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: E = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.x: E = None
self.o: D = None
self.u: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: B = None
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: B = None
self.x: C = None
self.txt = txt
e = A("e")
l = B("l")
d = C("d")
i = D("i")
f = E("f")
h = E("h")
b = C("b")
e.w = b
e.x = h
l.w = f
l.x = e
d.w = e
d.x = f
d.u = f
d.o = i
i.w = l
i.x = e
f.w = l
f.x = d
h.w = l
h.x = b
b.w = e
b.x = h
b.o = i
b.u = f
assert i.w.x.x.w.w.w.x.txt == " | e" | class A:
def __init__(self, txt: str):
self.w: C = None
self.x: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: E = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.x: E = None
self.o: D = None
self.u: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: B = None
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: B = None
self.x: C = None
self.txt = txt
e = A("e")
l = B("l")
d = C("d")
i = D("i")
f = E("f")
h = E("h")
b = C("b")
e.w = b
e.x = h
l.w = f
l.x = e
d.w = e
d.x = f
d.u = f
d.o = i
i.w = l
i.x = e
f.w = l
f.x = d
h.w = l
h.x = b
b.w = e
b.x = h
b.o = i
b.u = f
assert i.w.x.x.w.w.w.x.txt == "e" | 7 | 17 | 2.428571 | 0.404762 | 5 | 1.4 | 4 | 2 | 2.4 | 7 | 3 | 2 | 5 | 0.714286 | 6 | 0.352941 | 3 | 2 | 5 | 3.75 | 2 | 4 | 3 | 2 |
233 | class A:
def __init__(self, txt: str):
self.q: D = None
self.r: B = None
self.p: C = None
self.z: F = None
self.o: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: F = None
self.r: F = None
self.p: F = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: F = None
self.r: B = None
self.p: F = None
self.z: F = None
self.o: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: C = None
self.r: A = None
self.p: C = None
self.z: D = None
self.o: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: A = None
self.r: E = None
self.p: D = None
self.txt = txt
k = A("k")
m = B("m")
j = C("j")
e = D("e")
g = E("g")
i = F("i")
f = B("f")
k.q = e
k.r = m
k.o = m
k.v = m
k.p = j
k.z = i
m.q = g
j.q = i
j.r = i
j.p = i
j.z = e
e.q = i
e.p = i
e.z = i
e.r = m
e.o = k
g.q = j
g.p = j
g.r = k
g.z = e
g.o = e
i.q = k
i.r = g
i.p = e
f.q = g
assert j.z.o.q.o.p.p.txt == " | i" | class A:
def __init__(self, txt: str):
self.q: D = None
self.r: B = None
self.p: C = None
self.z: F = None
self.o: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: F = None
self.r: F = None
self.p: F = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: F = None
self.r: B = None
self.p: F = None
self.z: F = None
self.o: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: C = None
self.r: A = None
self.p: C = None
self.z: D = None
self.o: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: A = None
self.r: E = None
self.p: D = None
self.txt = txt
k = A("k")
m = B("m")
j = C("j")
e = D("e")
g = E("g")
i = F("i")
f = B("f")
k.q = e
k.r = m
k.o = m
k.v = m
k.p = j
k.z = i
m.q = g
j.q = i
j.r = i
j.p = i
j.z = e
e.q = i
e.p = i
e.z = i
e.r = m
e.o = k
g.q = j
g.p = j
g.r = k
g.z = e
g.o = e
i.q = k
i.r = g
i.p = e
f.q = g
assert j.z.o.q.o.p.p.txt == "i" | 7 | 17 | 2.428571 | 0.404762 | 6 | 1.166667 | 6 | 1 | 4 | 6 | 2 | 2 | 4 | 0.571429 | 5 | 0.294118 | 3 | 2 | 5 | 3 | 4 | 2 | 2 | 2 |
234 | class A:
def __init__(self, txt: str):
self.p: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.w: B = None
self.txt = txt
h = A("h")
k = B("k")
d = B("d")
m = B("m")
e = A("e")
a = A("a")
l = B("l")
h.p = k
h.w = a
k.p = a
k.w = d
d.p = e
d.w = k
m.p = h
m.w = k
e.p = m
e.w = h
a.p = d
a.w = e
l.p = h
l.w = d
assert l.w.p.p.w.p.txt == " | a" | class A:
def __init__(self, txt: str):
self.p: B = None
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.w: B = None
self.txt = txt
h = A("h")
k = B("k")
d = B("d")
m = B("m")
e = A("e")
a = A("a")
l = B("l")
h.p = k
h.w = a
k.p = a
k.w = d
d.p = e
d.w = k
m.p = h
m.w = k
e.p = m
e.w = h
a.p = d
a.w = e
l.p = h
l.w = d
assert l.w.p.p.w.p.txt == "a" | 7 | 14 | 2 | 0.333333 | 2 | 3.5 | 2 | 2 | 2 | 5 | 1 | 1 | 6 | 0.857143 | 5 | 0.357143 | 0 | null | null | null | 2 | 3 | 2 | 1 |
235 | class A:
def __init__(self, txt: str):
self.v: C = None
self.p: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.p: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.p: A = None
self.s: A = None
self.txt = txt
f = A("f")
h = B("h")
b = C("b")
a = A("a")
e = C("e")
c = B("c")
l = C("l")
f.v = l
f.p = c
f.s = a
h.v = c
h.p = c
b.v = f
b.p = f
b.s = f
a.v = b
a.p = c
a.s = f
e.v = f
e.p = f
e.s = f
c.v = h
c.p = h
l.v = a
l.p = f
l.s = f
assert c.v.p.v.v.p.p.v.txt == " | h" | class A:
def __init__(self, txt: str):
self.v: C = None
self.p: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.p: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.p: A = None
self.s: A = None
self.txt = txt
f = A("f")
h = B("h")
b = C("b")
a = A("a")
e = C("e")
c = B("c")
l = C("l")
f.v = l
f.p = c
f.s = a
h.v = c
h.p = c
b.v = f
b.p = f
b.s = f
a.v = b
a.p = c
a.s = f
e.v = f
e.p = f
e.s = f
c.v = h
c.p = h
l.v = a
l.p = f
l.s = f
assert c.v.p.v.v.p.p.v.txt == "h" | 7 | 12 | 1.714286 | 0.285714 | 3 | 2.333333 | 3 | 2 | 2.666667 | 7 | 4 | 3 | 2 | 0.285714 | 4 | 0.333333 | 6 | 2 | 6 | 3.333333 | 2 | 4 | 2 | 2 |
236 | class A:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: D = None
self.o: D = None
self.w: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: E = None
self.o: C = None
self.w: B = None
self.v: E = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.o: E = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.o: C = None
self.w: D = None
self.txt = txt
f = A("f")
n = B("n")
k = C("k")
g = D("g")
b = E("b")
e = C("e")
l = C("l")
f.t = e
n.t = g
n.o = g
n.w = g
k.t = b
k.v = b
k.o = e
k.w = n
k.s = n
g.t = f
g.w = f
g.o = b
b.t = k
b.o = e
b.w = g
e.t = b
e.v = b
e.o = l
e.w = n
e.s = n
l.t = b
l.v = b
l.o = e
l.w = n
l.s = n
assert f.t.v.w.t.t.w.txt == " | n" | class A:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: D = None
self.o: D = None
self.w: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: E = None
self.o: C = None
self.w: B = None
self.v: E = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.o: E = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.o: C = None
self.w: D = None
self.txt = txt
f = A("f")
n = B("n")
k = C("k")
g = D("g")
b = E("b")
e = C("e")
l = C("l")
f.t = e
n.t = g
n.o = g
n.w = g
k.t = b
k.v = b
k.o = e
k.w = n
k.s = n
g.t = f
g.w = f
g.o = b
b.t = k
b.o = e
b.w = g
e.t = b
e.v = b
e.o = l
e.w = n
e.s = n
l.t = b
l.v = b
l.o = e
l.w = n
l.s = n
assert f.t.v.w.t.t.w.txt == "n" | 7 | 16 | 2.285714 | 0.380952 | 5 | 1.4 | 5 | 1 | 3 | 6 | 2 | 2 | 5 | 0.714286 | 5 | 0.3125 | 2 | 4 | 4 | 4 | 3 | 3 | 2 | 2 |
237 | class A:
def __init__(self, txt: str):
self.r: B = None
self.v: D = None
self.o: C = None
self.u: C = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: D = None
self.v: E = None
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: A = None
self.v: B = None
self.o: A = None
self.u: B = None
self.z: A = None
self.txt = txt
i = A("i")
n = B("n")
j = C("j")
a = D("a")
b = E("b")
l = C("l")
d = A("d")
i.r = n
i.v = a
i.o = j
i.u = j
i.z = d
n.r = i
n.v = l
j.r = a
j.o = a
j.v = b
a.r = n
b.r = i
b.o = i
b.v = n
b.u = n
b.z = d
l.r = a
l.o = a
l.v = b
d.r = n
d.v = a
d.o = l
d.u = j
d.z = i
assert d.o.v.z.z.txt == " | i" | class A:
def __init__(self, txt: str):
self.r: B = None
self.v: D = None
self.o: C = None
self.u: C = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: D = None
self.v: E = None
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: A = None
self.v: B = None
self.o: A = None
self.u: B = None
self.z: A = None
self.txt = txt
i = A("i")
n = B("n")
j = C("j")
a = D("a")
b = E("b")
l = C("l")
d = A("d")
i.r = n
i.v = a
i.o = j
i.u = j
i.z = d
n.r = i
n.v = l
j.r = a
j.o = a
j.v = b
a.r = n
b.r = i
b.o = i
b.v = n
b.u = n
b.z = d
l.r = a
l.o = a
l.v = b
d.r = n
d.v = a
d.o = l
d.u = j
d.z = i
assert d.o.v.z.z.txt == "i" | 7 | 19 | 2.714286 | 0.452381 | 5 | 1.4 | 5 | 1 | 3.2 | 4 | 2 | 1 | 4 | 0.571429 | 4 | 0.210526 | 1 | 3 | 3 | 3 | 3 | 2 | 2 | 2 |
238 | class A:
def __init__(self, txt: str):
self.x: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.u: D = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.u: D = None
self.s: B = None
self.q: A = None
self.txt = txt
l = A("l")
k = B("k")
m = C("m")
i = D("i")
b = C("b")
h = D("h")
g = A("g")
l.x = k
l.u = k
k.x = l
k.u = h
k.s = g
m.x = k
i.x = g
i.u = h
i.s = k
i.q = l
b.x = k
h.x = l
h.u = i
h.s = k
h.q = g
g.x = k
g.u = k
assert h.u.x.u.s.u.txt == " | k" | class A:
def __init__(self, txt: str):
self.x: B = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.u: D = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.u: D = None
self.s: B = None
self.q: A = None
self.txt = txt
l = A("l")
k = B("k")
m = C("m")
i = D("i")
b = C("b")
h = D("h")
g = A("g")
l.x = k
l.u = k
k.x = l
k.u = h
k.s = g
m.x = k
i.x = g
i.u = h
i.s = k
i.q = l
b.x = k
h.x = l
h.u = i
h.s = k
h.q = g
g.x = k
g.u = k
assert h.u.x.u.s.u.txt == "k" | 7 | 15 | 2.142857 | 0.357143 | 4 | 1.75 | 4 | 1 | 2.5 | 5 | 2 | 2 | 4 | 0.571429 | 4 | 0.266667 | 2 | 2 | 2 | 2 | 3 | 3 | 1 | 1 |
239 | class A:
def __init__(self, txt: str):
self.u: A = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.z: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.z: C = None
self.txt = txt
d = A("d")
g = B("g")
i = C("i")
j = C("j")
a = A("a")
h = B("h")
n = B("n")
d.u = a
d.z = a
g.u = h
g.z = h
i.u = n
i.z = j
j.u = n
j.z = i
a.u = d
a.z = d
h.u = n
h.z = g
n.u = g
n.z = g
assert i.z.z.z.txt == " | j" | class A:
def __init__(self, txt: str):
self.u: A = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.z: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.z: C = None
self.txt = txt
d = A("d")
g = B("g")
i = C("i")
j = C("j")
a = A("a")
h = B("h")
n = B("n")
d.u = a
d.z = a
g.u = h
g.z = h
i.u = n
i.z = j
j.u = n
j.z = i
a.u = d
a.z = d
h.u = n
h.z = g
n.u = g
n.z = g
assert i.z.z.z.txt == "j" | 7 | 10 | 1.428571 | 0.238095 | 3 | 2.333333 | 2 | 2 | 2 | 3 | 2 | 2 | 2 | 0.285714 | 2 | 0.2 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
240 | class A:
def __init__(self, txt: str):
self.s: C = None
self.x: B = None
self.z: C = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: F = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.x: D = None
self.z: A = None
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: B = None
self.x: C = None
self.z: E = None
self.o: B = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.x: D = None
self.z: D = None
self.o: A = None
self.p: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: C = None
self.x: D = None
self.txt = txt
m = A("m")
c = B("c")
k = C("k")
a = D("a")
j = E("j")
f = F("f")
e = F("e")
m.s = k
m.z = k
m.x = c
m.o = c
c.s = f
c.x = a
k.s = c
k.x = a
k.o = a
k.z = m
a.s = c
a.o = c
a.x = k
a.p = k
a.z = j
j.s = e
j.x = a
j.z = a
j.o = m
j.p = k
f.s = k
f.x = a
e.s = k
e.x = a
assert k.x.z.o.txt == " | m" | class A:
def __init__(self, txt: str):
self.s: C = None
self.x: B = None
self.z: C = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: F = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.x: D = None
self.z: A = None
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: B = None
self.x: C = None
self.z: E = None
self.o: B = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.x: D = None
self.z: D = None
self.o: A = None
self.p: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: C = None
self.x: D = None
self.txt = txt
m = A("m")
c = B("c")
k = C("k")
a = D("a")
j = E("j")
f = F("f")
e = F("e")
m.s = k
m.z = k
m.x = c
m.o = c
c.s = f
c.x = a
k.s = c
k.x = a
k.o = a
k.z = m
a.s = c
a.o = c
a.x = k
a.p = k
a.z = j
j.s = e
j.x = a
j.z = a
j.o = m
j.p = k
f.s = k
f.x = a
e.s = k
e.x = a
assert k.x.z.o.txt == "m" | 7 | 18 | 2.571429 | 0.428571 | 6 | 1.166667 | 5 | 2 | 3.666667 | 3 | 1 | 1 | 4 | 0.571429 | 3 | 0.166667 | 0 | null | null | null | 3 | 1 | 1 | 1 |
241 | class A:
def __init__(self, txt: str):
self.z: C = None
self.o: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.o: B = None
self.r: B = None
self.txt = txt
g = A("g")
k = B("k")
i = C("i")
d = B("d")
m = A("m")
l = B("l")
j = B("j")
g.z = i
g.o = m
g.r = j
k.z = d
k.o = i
i.z = g
i.o = l
i.r = d
d.z = k
d.o = i
m.z = i
m.o = g
m.r = l
l.z = d
l.o = i
j.z = d
j.o = i
assert k.o.z.r.z.o.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: C = None
self.o: A = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.o: B = None
self.r: B = None
self.txt = txt
g = A("g")
k = B("k")
i = C("i")
d = B("d")
m = A("m")
l = B("l")
j = B("j")
g.z = i
g.o = m
g.r = j
k.z = d
k.o = i
i.z = g
i.o = l
i.r = d
d.z = k
d.o = i
m.z = i
m.o = g
m.r = l
l.z = d
l.o = i
j.z = d
j.o = i
assert k.o.z.r.z.o.z.txt == "g" | 7 | 17 | 2.428571 | 0.404762 | 3 | 2.333333 | 3 | 2 | 2.666667 | 6 | 2 | 2 | 5 | 0.714286 | 5 | 0.294118 | 2 | 4 | 4 | 4 | 3 | 3 | 1 | 1 |
242 | class A:
def __init__(self, txt: str):
self.q: C = None
self.p: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.p: D = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.p: B = None
self.s: B = None
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.p: A = None
self.s: A = None
self.txt = txt
m = A("m")
c = B("c")
b = C("b")
a = D("a")
j = C("j")
d = A("d")
f = C("f")
m.q = b
m.p = d
m.s = d
c.q = d
c.s = d
c.p = a
b.q = d
b.y = d
b.p = c
b.s = c
a.q = d
a.p = d
a.s = m
j.q = m
j.y = m
j.p = c
j.s = c
d.q = j
d.p = m
d.s = m
f.q = d
f.y = d
f.p = c
f.s = c
assert d.q.s.p.s.txt == " | m" | class A:
def __init__(self, txt: str):
self.q: C = None
self.p: A = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.p: D = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.p: B = None
self.s: B = None
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.p: A = None
self.s: A = None
self.txt = txt
m = A("m")
c = B("c")
b = C("b")
a = D("a")
j = C("j")
d = A("d")
f = C("f")
m.q = b
m.p = d
m.s = d
c.q = d
c.s = d
c.p = a
b.q = d
b.y = d
b.p = c
b.s = c
a.q = d
a.p = d
a.s = m
j.q = m
j.y = m
j.p = c
j.s = c
d.q = j
d.p = m
d.s = m
f.q = d
f.y = d
f.p = c
f.s = c
assert d.q.s.p.s.txt == "m" | 7 | 14 | 2 | 0.333333 | 4 | 1.75 | 4 | 3 | 3.25 | 4 | 1 | 1 | 5 | 0.714286 | 4 | 0.285714 | 0 | null | null | null | 3 | 2 | 1 | 1 |
243 | class A:
def __init__(self, txt: str):
self.x: B = None
self.o: C = None
self.v: E = None
self.t: D = None
self.w: B = None
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.o: A = None
self.v: F = None
self.t: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: D = None
self.o: D = None
self.v: B = None
self.t: E = None
self.w: A = None
self.u: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: F = None
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: A = None
self.o: B = None
self.v: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: C = None
self.o: D = None
self.v: B = None
self.txt = txt
b = A("b")
c = B("c")
g = C("g")
h = D("h")
d = E("d")
k = F("k")
e = D("e")
b.x = c
b.w = c
b.o = g
b.v = d
b.t = h
b.u = k
c.x = g
c.o = b
c.v = k
c.t = k
g.x = e
g.o = e
g.v = c
g.t = d
g.w = b
g.u = h
h.x = k
h.o = g
d.x = b
d.o = c
d.v = k
k.x = g
k.o = e
k.v = c
e.x = k
e.o = g
assert g.u.x.v.v.o.o.txt == " | g" | class A:
def __init__(self, txt: str):
self.x: B = None
self.o: C = None
self.v: E = None
self.t: D = None
self.w: B = None
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.o: A = None
self.v: F = None
self.t: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: D = None
self.o: D = None
self.v: B = None
self.t: E = None
self.w: A = None
self.u: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: F = None
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: A = None
self.o: B = None
self.v: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: C = None
self.o: D = None
self.v: B = None
self.txt = txt
b = A("b")
c = B("c")
g = C("g")
h = D("h")
d = E("d")
k = F("k")
e = D("e")
b.x = c
b.w = c
b.o = g
b.v = d
b.t = h
b.u = k
c.x = g
c.o = b
c.v = k
c.t = k
g.x = e
g.o = e
g.v = c
g.t = d
g.w = b
g.u = h
h.x = k
h.o = g
d.x = b
d.o = c
d.v = k
k.x = g
k.o = e
k.v = c
e.x = k
e.o = g
assert g.u.x.v.v.o.o.txt == "g" | 7 | 23 | 3.285714 | 0.547619 | 6 | 1.166667 | 6 | 2 | 4 | 6 | 2 | 1 | 5 | 0.714286 | 6 | 0.26087 | 2 | 2 | 6 | 4 | 4 | 2 | 2 | 2 |
244 | class A:
def __init__(self, txt: str):
self.s: B = None
self.q: G = None
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.q: E = None
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.q: F = None
self.u: A = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.q: E = None
self.u: G = None
self.x: A = None
self.o: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: G = None
self.q: G = None
self.u: A = None
self.x: D = None
self.o: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: A = None
self.q: A = None
self.u: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: F = None
self.q: F = None
self.u: B = None
self.x: D = None
self.txt = txt
j = A("j")
k = B("k")
b = C("b")
n = D("n")
l = E("l")
f = F("f")
h = G("h")
j.s = k
j.q = h
j.u = f
k.s = j
k.q = l
k.u = b
b.s = k
b.x = k
b.q = f
b.u = j
n.s = j
n.x = j
n.q = l
n.o = l
n.u = h
l.s = h
l.q = h
l.o = h
l.u = j
l.x = n
f.s = j
f.q = j
f.u = l
h.s = f
h.q = f
h.u = k
h.x = n
assert b.u.q.q.u.txt == " | l" | class A:
def __init__(self, txt: str):
self.s: B = None
self.q: G = None
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.q: E = None
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.q: F = None
self.u: A = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.q: E = None
self.u: G = None
self.x: A = None
self.o: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: G = None
self.q: G = None
self.u: A = None
self.x: D = None
self.o: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: A = None
self.q: A = None
self.u: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: F = None
self.q: F = None
self.u: B = None
self.x: D = None
self.txt = txt
j = A("j")
k = B("k")
b = C("b")
n = D("n")
l = E("l")
f = F("f")
h = G("h")
j.s = k
j.q = h
j.u = f
k.s = j
k.q = l
k.u = b
b.s = k
b.x = k
b.q = f
b.u = j
n.s = j
n.x = j
n.q = l
n.o = l
n.u = h
l.s = h
l.q = h
l.o = h
l.u = j
l.x = n
f.s = j
f.q = j
f.u = l
h.s = f
h.q = f
h.u = k
h.x = n
assert b.u.q.q.u.txt == "l" | 7 | 20 | 2.857143 | 0.47619 | 7 | 1 | 5 | 3 | 3.857143 | 4 | 1 | 1 | 5 | 0.714286 | 4 | 0.2 | 0 | null | null | null | 2 | 2 | 2 | 1 |
245 | class A:
def __init__(self, txt: str):
self.p: A = None
self.o: E = None
self.t: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.o: D = None
self.t: A = None
self.q: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: E = None
self.o: B = None
self.t: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: B = None
self.o: E = None
self.txt = txt
i = A("i")
a = B("a")
k = C("k")
d = D("d")
m = E("m")
f = E("f")
b = A("b")
i.p = b
i.o = m
i.t = f
a.p = b
a.o = d
a.q = d
a.t = i
k.p = d
k.o = d
d.p = m
d.o = a
d.t = a
m.p = a
m.o = f
f.p = a
f.o = m
b.p = i
b.o = m
b.t = f
assert d.p.p.q.txt == " | d" | class A:
def __init__(self, txt: str):
self.p: A = None
self.o: E = None
self.t: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.o: D = None
self.t: A = None
self.q: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: E = None
self.o: B = None
self.t: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: B = None
self.o: E = None
self.txt = txt
i = A("i")
a = B("a")
k = C("k")
d = D("d")
m = E("m")
f = E("f")
b = A("b")
i.p = b
i.o = m
i.t = f
a.p = b
a.o = d
a.q = d
a.t = i
k.p = d
k.o = d
d.p = m
d.o = a
d.t = a
m.p = a
m.o = f
f.p = a
f.o = m
b.p = i
b.o = m
b.t = f
assert d.p.p.q.txt == "d" | 7 | 16 | 2.285714 | 0.380952 | 5 | 1.4 | 4 | 2 | 2.8 | 3 | 2 | 1 | 3 | 0.428571 | 3 | 0.1875 | 1 | 3 | 3 | 3 | 2 | 2 | 2 | 1 |
246 | class A:
def __init__(self, txt: str):
self.r: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.o: A = None
self.txt = txt
e = A("e")
d = B("d")
g = A("g")
j = A("j")
i = A("i")
b = A("b")
m = B("m")
e.r = g
e.o = j
d.r = m
d.o = g
g.r = j
g.o = i
j.r = e
j.o = g
i.r = e
i.o = g
b.r = i
b.o = i
m.r = d
m.o = i
assert m.r.r.r.txt == " | d" | class A:
def __init__(self, txt: str):
self.r: A = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.o: A = None
self.txt = txt
e = A("e")
d = B("d")
g = A("g")
j = A("j")
i = A("i")
b = A("b")
m = B("m")
e.r = g
e.o = j
d.r = m
d.o = g
g.r = j
g.o = i
j.r = e
j.o = g
i.r = e
i.o = g
b.r = i
b.o = i
m.r = d
m.o = i
assert m.r.r.r.txt == "d" | 7 | 13 | 1.857143 | 0.309524 | 2 | 3.5 | 2 | 2 | 2 | 3 | 2 | 2 | 2 | 0.285714 | 2 | 0.153846 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
247 | class A:
def __init__(self, txt: str):
self.z: E = None
self.o: B = None
self.u: G = None
self.x: F = None
self.p: B = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.o: A = None
self.u: G = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.o: B = None
self.u: G = None
self.x: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.o: B = None
self.u: C = None
self.x: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.o: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.o: B = None
self.u: B = None
self.txt = txt
g = A("g")
a = B("a")
f = C("f")
n = D("n")
b = E("b")
e = F("e")
h = G("h")
g.z = b
g.o = a
g.p = a
g.u = h
g.x = e
g.y = n
a.z = h
a.u = h
a.o = g
a.x = n
f.z = a
f.o = a
f.u = h
f.x = g
n.z = a
b.z = n
b.x = n
b.o = a
b.u = f
e.z = a
e.o = n
h.z = f
h.o = a
h.u = a
assert g.y.z.x.z.x.txt == " | n" | class A:
def __init__(self, txt: str):
self.z: E = None
self.o: B = None
self.u: G = None
self.x: F = None
self.p: B = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.o: A = None
self.u: G = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.o: B = None
self.u: G = None
self.x: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.o: B = None
self.u: C = None
self.x: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.o: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.o: B = None
self.u: B = None
self.txt = txt
g = A("g")
a = B("a")
f = C("f")
n = D("n")
b = E("b")
e = F("e")
h = G("h")
g.z = b
g.o = a
g.p = a
g.u = h
g.x = e
g.y = n
a.z = h
a.u = h
a.o = g
a.x = n
f.z = a
f.o = a
f.u = h
f.x = g
n.z = a
b.z = n
b.x = n
b.o = a
b.u = f
e.z = a
e.o = n
h.z = f
h.o = a
h.u = a
assert g.y.z.x.z.x.txt == "n" | 7 | 19 | 2.714286 | 0.452381 | 7 | 1 | 6 | 1 | 3.428571 | 5 | 3 | 2 | 3 | 0.428571 | 3 | 0.157895 | 3 | 2 | 4 | 2.5 | 3 | 2 | 1 | 1 |
248 | class A:
def __init__(self, txt: str):
self.w: D = None
self.o: D = None
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.o: B = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: A = None
self.o: A = None
self.q: A = None
self.z: B = None
self.txt = txt
a = A("a")
e = B("e")
l = C("l")
m = D("m")
d = C("d")
g = D("g")
f = B("f")
a.w = m
a.o = m
a.q = m
e.w = a
e.o = f
e.q = d
l.w = g
m.w = a
m.o = a
m.q = a
m.z = f
d.w = g
g.w = a
g.o = a
g.q = a
g.z = f
f.w = a
f.o = e
f.q = l
assert f.o.o.o.q.txt == " | d" | class A:
def __init__(self, txt: str):
self.w: D = None
self.o: D = None
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.o: B = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: A = None
self.o: A = None
self.q: A = None
self.z: B = None
self.txt = txt
a = A("a")
e = B("e")
l = C("l")
m = D("m")
d = C("d")
g = D("g")
f = B("f")
a.w = m
a.o = m
a.q = m
e.w = a
e.o = f
e.q = d
l.w = g
m.w = a
m.o = a
m.q = a
m.z = f
d.w = g
g.w = a
g.o = a
g.q = a
g.z = f
f.w = a
f.o = e
f.q = l
assert f.o.o.o.q.txt == "d" | 7 | 13 | 1.857143 | 0.309524 | 4 | 1.75 | 4 | 1 | 2.75 | 4 | 2 | 2 | 3 | 0.428571 | 3 | 0.230769 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 2 |
249 | class A:
def __init__(self, txt: str):
self.u: C = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: D = None
self.s: C = None
self.y: D = None
self.t: A = None
self.txt = txt
d = A("d")
b = B("b")
j = C("j")
f = D("f")
n = D("n")
l = C("l")
g = A("g")
d.u = j
d.s = g
b.u = l
b.s = j
j.u = l
f.u = n
f.y = n
f.s = l
f.t = d
n.u = f
n.y = f
n.s = j
n.t = d
l.u = j
g.u = l
g.s = d
assert j.u.u.u.u.u.u.txt == " | j" | class A:
def __init__(self, txt: str):
self.u: C = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: D = None
self.s: C = None
self.y: D = None
self.t: A = None
self.txt = txt
d = A("d")
b = B("b")
j = C("j")
f = D("f")
n = D("n")
l = C("l")
g = A("g")
d.u = j
d.s = g
b.u = l
b.s = j
j.u = l
f.u = n
f.y = n
f.s = l
f.t = d
n.u = f
n.y = f
n.s = j
n.t = d
l.u = j
g.u = l
g.s = d
assert j.u.u.u.u.u.u.txt == "j" | 7 | 14 | 2 | 0.333333 | 4 | 1.75 | 4 | 1 | 2.25 | 6 | 4 | 3 | 2 | 0.285714 | 2 | 0.142857 | 5 | 2 | 6 | 3.111111 | 1 | 6 | 6 | 1 |
250 | class A:
def __init__(self, txt: str):
self.x: E = None
self.p: E = None
self.v: E = None
self.s: E = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.p: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.p: B = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
b = A("b")
k = B("k")
i = C("i")
j = D("j")
g = E("g")
e = E("e")
f = E("f")
l = C("l")
b.x = f
b.s = f
b.p = g
b.v = e
b.y = l
k.x = i
k.p = g
i.x = k
i.p = k
i.v = b
j.x = k
g.x = j
e.x = j
f.x = j
l.x = k
l.p = k
l.v = b
assert g.x.x.p.x.x.p.txt == " | g" | class A:
def __init__(self, txt: str):
self.x: E = None
self.p: E = None
self.v: E = None
self.s: E = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.p: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.p: B = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
b = A("b")
k = B("k")
i = C("i")
j = D("j")
g = E("g")
e = E("e")
f = E("f")
l = C("l")
b.x = f
b.s = f
b.p = g
b.v = e
b.y = l
k.x = i
k.p = g
i.x = k
i.p = k
i.v = b
j.x = k
g.x = j
e.x = j
f.x = j
l.x = k
l.p = k
l.v = b
assert g.x.x.p.x.x.p.txt == "g" | 8 | 14 | 1.75 | 0.25 | 5 | 1.6 | 5 | 1 | 2.4 | 6 | 3 | 2 | 3 | 0.375 | 3 | 0.214286 | 4 | 3 | 6 | 3.6 | 2 | 4 | 2 | 1 |
251 | class A:
def __init__(self, txt: str):
self.v: E = None
self.r: B = None
self.p: F = None
self.s: F = None
self.u: E = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: C = None
self.r: A = None
self.p: B = None
self.s: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: B = None
self.r: E = None
self.p: B = None
self.s: C = None
self.u: F = None
self.q: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: A = None
self.r: E = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
g = A("g")
a = B("a")
l = C("l")
f = D("f")
m = E("m")
j = F("j")
c = E("c")
e = C("e")
g.v = m
g.u = m
g.r = a
g.p = j
g.s = j
g.q = l
a.v = g
l.v = e
l.r = g
l.s = g
l.p = a
f.v = a
f.p = a
f.r = c
f.s = e
f.u = j
f.q = l
m.v = g
m.r = c
j.v = a
c.v = g
c.r = m
e.v = l
e.r = g
e.s = g
e.p = a
assert g.q.s.v.v.r.v.txt == " | g" | class A:
def __init__(self, txt: str):
self.v: E = None
self.r: B = None
self.p: F = None
self.s: F = None
self.u: E = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: C = None
self.r: A = None
self.p: B = None
self.s: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: B = None
self.r: E = None
self.p: B = None
self.s: C = None
self.u: F = None
self.q: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: A = None
self.r: E = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
g = A("g")
a = B("a")
l = C("l")
f = D("f")
m = E("m")
j = F("j")
c = E("c")
e = C("e")
g.v = m
g.u = m
g.r = a
g.p = j
g.s = j
g.q = l
a.v = g
l.v = e
l.r = g
l.s = g
l.p = a
f.v = a
f.p = a
f.r = c
f.s = e
f.u = j
f.q = l
m.v = g
m.r = c
j.v = a
c.v = g
c.r = m
e.v = l
e.r = g
e.s = g
e.p = a
assert g.q.s.v.v.r.v.txt == "g" | 8 | 21 | 2.625 | 0.375 | 6 | 1.333333 | 6 | 1 | 3.333333 | 6 | 4 | 1 | 4 | 0.5 | 6 | 0.285714 | 3 | 2 | 6 | 3.333333 | 4 | 3 | 2 | 3 |
252 | class A:
def __init__(self, txt: str):
self.p: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
m = A("m")
n = B("n")
h = B("h")
l = A("l")
d = B("d")
c = A("c")
k = A("k")
b = B("b")
m.p = c
m.z = b
n.p = b
h.p = d
l.p = c
l.z = d
d.p = h
c.p = m
c.z = h
k.p = c
k.z = h
b.p = n
assert l.p.p.z.p.p.txt == " | b" | class A:
def __init__(self, txt: str):
self.p: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
m = A("m")
n = B("n")
h = B("h")
l = A("l")
d = B("d")
c = A("c")
k = A("k")
b = B("b")
m.p = c
m.z = b
n.p = b
h.p = d
l.p = c
l.z = d
d.p = h
c.p = m
c.z = h
k.p = c
k.z = h
b.p = n
assert l.p.p.z.p.p.txt == "b" | 8 | 12 | 1.5 | 0.214286 | 2 | 4 | 2 | 1 | 1.5 | 5 | 2 | 1 | 5 | 0.625 | 5 | 0.416667 | 1 | 2 | 2 | 2 | 2 | 4 | 2 | 1 |
253 | class A:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.u: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.u: B = None
self.t: B = None
self.txt = txt
d = A("d")
m = B("m")
i = C("i")
j = D("j")
b = C("b")
l = B("l")
h = D("h")
g = A("g")
d.x = i
m.x = l
i.x = g
i.u = b
j.x = g
j.u = l
j.t = l
b.x = g
b.u = i
l.x = m
h.x = d
h.u = m
h.t = m
g.x = b
assert l.x.x.x.x.x.x.txt == " | l" | class A:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.u: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.u: B = None
self.t: B = None
self.txt = txt
d = A("d")
m = B("m")
i = C("i")
j = D("j")
b = C("b")
l = B("l")
h = D("h")
g = A("g")
d.x = i
m.x = l
i.x = g
i.u = b
j.x = g
j.u = l
j.t = l
b.x = g
b.u = i
l.x = m
h.x = d
h.u = m
h.t = m
g.x = b
assert l.x.x.x.x.x.x.txt == "l" | 8 | 12 | 1.5 | 0.214286 | 4 | 2 | 3 | 1 | 1.75 | 6 | 4 | 3 | 2 | 0.25 | 2 | 0.166667 | 5 | 2 | 6 | 3.111111 | 1 | 6 | 6 | 1 |
254 | class A:
def __init__(self, txt: str):
self.o: A = None
self.z: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: C = None
self.z: B = None
self.txt = txt
d = A("d")
l = B("l")
k = C("k")
g = A("g")
h = B("h")
a = A("a")
m = A("m")
c = C("c")
d.o = m
d.z = m
d.x = h
l.o = k
l.z = a
k.o = c
k.z = l
g.o = a
g.z = d
g.x = l
h.o = k
h.z = g
a.o = d
a.z = d
a.x = h
m.o = g
m.z = g
m.x = h
c.o = k
c.z = h
assert m.x.o.o.z.o.o.z.txt == " | h" | class A:
def __init__(self, txt: str):
self.o: A = None
self.z: A = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: C = None
self.z: B = None
self.txt = txt
d = A("d")
l = B("l")
k = C("k")
g = A("g")
h = B("h")
a = A("a")
m = A("m")
c = C("c")
d.o = m
d.z = m
d.x = h
l.o = k
l.z = a
k.o = c
k.z = l
g.o = a
g.z = d
g.x = l
h.o = k
h.z = g
a.o = d
a.z = d
a.x = h
m.o = g
m.z = g
m.x = h
c.o = k
c.z = h
assert m.x.o.o.z.o.o.z.txt == "h" | 8 | 17 | 2.125 | 0.303571 | 3 | 2.666667 | 3 | 2 | 2.333333 | 7 | 3 | 2 | 4 | 0.5 | 4 | 0.235294 | 4 | 3 | 6 | 3.6 | 3 | 4 | 2 | 1 |
255 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.q: C = None
self.x: C = None
self.u: A = None
self.txt = txt
j = A("j")
b = B("b")
g = C("g")
k = D("k")
m = B("m")
d = D("d")
c = A("c")
f = D("f")
j.s = c
b.s = m
g.s = b
k.s = j
k.u = j
k.q = g
k.x = g
m.s = b
d.s = j
d.q = g
d.x = g
d.u = c
c.s = j
f.s = j
f.q = g
f.x = g
f.u = c
assert j.s.s.s.txt == " | c" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.q: C = None
self.x: C = None
self.u: A = None
self.txt = txt
j = A("j")
b = B("b")
g = C("g")
k = D("k")
m = B("m")
d = D("d")
c = A("c")
f = D("f")
j.s = c
b.s = m
g.s = b
k.s = j
k.u = j
k.q = g
k.x = g
m.s = b
d.s = j
d.q = g
d.x = g
d.u = c
c.s = j
f.s = j
f.q = g
f.x = g
f.u = c
assert j.s.s.s.txt == "c" | 8 | 13 | 1.625 | 0.232143 | 4 | 2 | 4 | 1 | 1.75 | 3 | 2 | 2 | 2 | 0.25 | 2 | 0.153846 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
256 | class A:
def __init__(self, txt: str):
self.y: E = None
self.t: H = None
self.v: F = None
self.p: C = None
self.u: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: F = None
self.t: D = None
self.v: C = None
self.p: E = None
self.u: C = None
self.x: C = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: E = None
self.t: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: H = None
self.t: F = None
self.v: B = None
self.p: H = None
self.u: F = None
self.x: B = None
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: C = None
self.t: A = None
self.v: A = None
self.p: A = None
self.u: B = None
self.x: A = None
self.s: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: A = None
self.t: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.t: H = None
self.v: C = None
self.p: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: C = None
self.t: G = None
self.txt = txt
g = A("g")
j = B("j")
a = C("a")
d = D("d")
m = E("m")
k = F("k")
f = G("f")
h = H("h")
g.y = m
g.t = h
g.u = h
g.v = k
g.p = a
j.y = k
j.t = d
j.v = a
j.u = a
j.x = a
j.p = m
j.s = g
a.y = m
a.t = m
d.y = h
d.p = h
d.t = k
d.u = k
d.v = j
d.x = j
d.s = m
m.y = a
m.t = g
m.v = g
m.p = g
m.x = g
m.u = j
m.s = h
k.y = g
k.t = d
f.y = m
f.t = h
f.v = a
f.p = k
h.y = a
h.t = f
assert f.t.y.t.v.t.t.txt == " | f" | class A:
def __init__(self, txt: str):
self.y: E = None
self.t: H = None
self.v: F = None
self.p: C = None
self.u: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: F = None
self.t: D = None
self.v: C = None
self.p: E = None
self.u: C = None
self.x: C = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: E = None
self.t: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: H = None
self.t: F = None
self.v: B = None
self.p: H = None
self.u: F = None
self.x: B = None
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: C = None
self.t: A = None
self.v: A = None
self.p: A = None
self.u: B = None
self.x: A = None
self.s: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: A = None
self.t: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.t: H = None
self.v: C = None
self.p: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: C = None
self.t: G = None
self.txt = txt
g = A("g")
j = B("j")
a = C("a")
d = D("d")
m = E("m")
k = F("k")
f = G("f")
h = H("h")
g.y = m
g.t = h
g.u = h
g.v = k
g.p = a
j.y = k
j.t = d
j.v = a
j.u = a
j.x = a
j.p = m
j.s = g
a.y = m
a.t = m
d.y = h
d.p = h
d.t = k
d.u = k
d.v = j
d.x = j
d.s = m
m.y = a
m.t = g
m.v = g
m.p = g
m.x = g
m.u = j
m.s = h
k.y = g
k.t = d
f.y = m
f.t = h
f.v = a
f.p = k
h.y = a
h.t = f
assert f.t.y.t.v.t.t.txt == "f" | 8 | 26 | 3.25 | 0.464286 | 8 | 1 | 7 | 2 | 4.5 | 6 | 2 | 1 | 5 | 0.625 | 6 | 0.230769 | 2 | 4 | 6 | 5 | 3 | 4 | 2 | 2 |
257 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
m = A("m")
d = B("d")
l = B("l")
h = B("h")
i = A("i")
j = B("j")
c = A("c")
n = A("n")
m.u = n
d.u = n
l.u = i
h.u = m
i.u = m
j.u = n
c.u = m
n.u = i
assert j.u.u.u.u.txt == " | n" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
m = A("m")
d = B("d")
l = B("l")
h = B("h")
i = A("i")
j = B("j")
c = A("c")
n = A("n")
m.u = n
d.u = n
l.u = i
h.u = m
i.u = m
j.u = n
c.u = m
n.u = i
assert j.u.u.u.u.txt == "n" | 8 | 8 | 1 | 0.142857 | 2 | 4 | 1 | 1 | 1 | 4 | 2 | 1 | 4 | 0.5 | 4 | 0.5 | 1 | 3 | 3 | 3 | 1 | 4 | 4 | 1 |
258 | class A:
def __init__(self, txt: str):
self.z: A = None
self.s: C = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
i = B("i")
c = C("c")
d = B("d")
n = B("n")
m = A("m")
k = C("k")
f = A("f")
a.z = m
a.s = c
a.y = c
i.z = a
i.s = f
c.z = m
d.z = f
d.s = a
n.z = a
n.s = a
m.z = a
m.s = c
m.y = k
k.z = m
f.z = a
f.s = k
f.y = k
assert a.s.z.z.y.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: A = None
self.s: C = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
i = B("i")
c = C("c")
d = B("d")
n = B("n")
m = A("m")
k = C("k")
f = A("f")
a.z = m
a.s = c
a.y = c
i.z = a
i.s = f
c.z = m
d.z = f
d.s = a
n.z = a
n.s = a
m.z = a
m.s = c
m.y = k
k.z = m
f.z = a
f.s = k
f.y = k
assert a.s.z.z.y.txt == "c" | 8 | 14 | 1.75 | 0.25 | 3 | 2.666667 | 3 | 1 | 2 | 4 | 2 | 1 | 3 | 0.375 | 4 | 0.285714 | 2 | 3 | 3 | 3 | 3 | 2 | 2 | 2 |
259 | class A:
def __init__(self, txt: str):
self.u: F = None
self.y: G = None
self.s: E = None
self.p: E = None
self.z: F = None
self.o: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: F = None
self.y: G = None
self.s: D = None
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: G = None
self.y: G = None
self.s: B = None
self.p: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: C = None
self.y: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: D = None
self.y: G = None
self.s: C = None
self.p: A = None
self.z: G = None
self.o: B = None
self.t: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: E = None
self.y: B = None
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: F = None
self.txt = txt
f = A("f")
b = B("b")
a = C("a")
d = D("d")
i = E("i")
e = F("e")
c = G("c")
n = G("n")
f.u = e
f.z = e
f.o = e
f.y = n
f.s = i
f.p = i
b.u = e
b.y = c
b.s = d
b.p = f
a.u = c
a.y = c
a.s = b
a.p = n
d.u = a
d.y = i
i.u = d
i.y = n
i.z = n
i.s = a
i.p = f
i.o = b
i.t = e
e.u = i
e.y = b
e.s = f
c.u = e
n.u = e
assert n.u.y.y.u.txt == " | e" | class A:
def __init__(self, txt: str):
self.u: F = None
self.y: G = None
self.s: E = None
self.p: E = None
self.z: F = None
self.o: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: F = None
self.y: G = None
self.s: D = None
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: G = None
self.y: G = None
self.s: B = None
self.p: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: C = None
self.y: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: D = None
self.y: G = None
self.s: C = None
self.p: A = None
self.z: G = None
self.o: B = None
self.t: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: E = None
self.y: B = None
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: F = None
self.txt = txt
f = A("f")
b = B("b")
a = C("a")
d = D("d")
i = E("i")
e = F("e")
c = G("c")
n = G("n")
f.u = e
f.z = e
f.o = e
f.y = n
f.s = i
f.p = i
b.u = e
b.y = c
b.s = d
b.p = f
a.u = c
a.y = c
a.s = b
a.p = n
d.u = a
d.y = i
i.u = d
i.y = n
i.z = n
i.s = a
i.p = f
i.o = b
i.t = e
e.u = i
e.y = b
e.s = f
c.u = e
n.u = e
assert n.u.y.y.u.txt == "e" | 8 | 23 | 2.875 | 0.410714 | 7 | 1.142857 | 7 | 1 | 3.857143 | 4 | 2 | 1 | 4 | 0.5 | 4 | 0.173913 | 1 | 3 | 3 | 3 | 2 | 2 | 2 | 1 |
260 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: A = None
self.o: A = None
self.p: F = None
self.x: D = None
self.v: B = None
self.q: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: B = None
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: E = None
self.txt = txt
n = A("n")
h = B("h")
f = C("f")
k = D("k")
d = E("d")
g = F("g")
j = D("j")
c = F("c")
n.w = h
h.w = d
f.w = k
k.w = n
k.o = n
k.p = c
k.x = j
k.v = h
k.q = f
d.w = h
d.o = h
g.w = d
j.w = n
j.o = n
j.p = c
j.x = k
j.v = h
j.q = f
c.w = d
assert n.w.w.w.txt == " | h" | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: A = None
self.o: A = None
self.p: F = None
self.x: D = None
self.v: B = None
self.q: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: B = None
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: E = None
self.txt = txt
n = A("n")
h = B("h")
f = C("f")
k = D("k")
d = E("d")
g = F("g")
j = D("j")
c = F("c")
n.w = h
h.w = d
f.w = k
k.w = n
k.o = n
k.p = c
k.x = j
k.v = h
k.q = f
d.w = h
d.o = h
g.w = d
j.w = n
j.o = n
j.p = c
j.x = k
j.v = h
j.q = f
c.w = d
assert n.w.w.w.txt == "h" | 8 | 16 | 2 | 0.285714 | 6 | 1.333333 | 6 | 1 | 2 | 3 | 2 | 1 | 3 | 0.375 | 3 | 0.1875 | 1 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
261 | class A:
def __init__(self, txt: str):
self.t: E = None
self.w: C = None
self.o: C = None
self.y: B = None
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.w: D = None
self.o: D = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.w: D = None
self.o: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: E = None
self.w: B = None
self.o: A = None
self.y: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: A = None
self.w: C = None
self.o: E = None
self.y: C = None
self.v: B = None
self.txt = txt
m = A("m")
g = B("g")
d = C("d")
j = D("j")
n = E("n")
h = C("h")
e = E("e")
c = A("c")
m.t = n
m.w = d
m.o = h
m.y = g
m.v = j
g.t = c
g.w = j
g.o = j
g.y = e
d.t = g
d.w = j
d.o = e
j.t = n
j.w = g
j.o = c
j.y = h
n.t = m
n.w = d
n.y = d
n.o = e
n.v = g
h.t = g
h.w = j
h.o = e
e.t = m
e.w = h
e.y = h
e.o = n
e.v = g
c.t = e
c.w = h
c.o = h
c.y = g
c.v = j
assert h.t.t.w.o.y.o.o.y.txt == " | d" | class A:
def __init__(self, txt: str):
self.t: E = None
self.w: C = None
self.o: C = None
self.y: B = None
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.w: D = None
self.o: D = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.w: D = None
self.o: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: E = None
self.w: B = None
self.o: A = None
self.y: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: A = None
self.w: C = None
self.o: E = None
self.y: C = None
self.v: B = None
self.txt = txt
m = A("m")
g = B("g")
d = C("d")
j = D("j")
n = E("n")
h = C("h")
e = E("e")
c = A("c")
m.t = n
m.w = d
m.o = h
m.y = g
m.v = j
g.t = c
g.w = j
g.o = j
g.y = e
d.t = g
d.w = j
d.o = e
j.t = n
j.w = g
j.o = c
j.y = h
n.t = m
n.w = d
n.y = d
n.o = e
n.v = g
h.t = g
h.w = j
h.o = e
e.t = m
e.w = h
e.y = h
e.o = n
e.v = g
c.t = e
c.w = h
c.o = h
c.y = g
c.v = j
assert h.t.t.w.o.y.o.o.y.txt == "d" | 8 | 30 | 3.75 | 0.535714 | 5 | 1.6 | 5 | 3 | 4.2 | 8 | 3 | 2 | 6 | 0.75 | 7 | 0.233333 | 3 | 2 | 5 | 3 | 4 | 3 | 2 | 2 |
262 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: F = None
self.z: A = None
self.x: D = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: G = None
self.z: E = None
self.x: E = None
self.y: A = None
self.w: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: F = None
self.z: A = None
self.x: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: F = None
self.z: G = None
self.x: E = None
self.y: F = None
self.w: C = None
self.txt = txt
d = A("d")
g = B("g")
c = C("c")
j = D("j")
k = E("k")
b = F("b")
l = G("l")
f = G("f")
d.r = g
g.r = b
g.z = d
g.x = j
g.y = k
c.r = l
c.z = k
c.x = k
c.y = d
c.w = b
j.r = f
k.r = b
k.z = d
k.x = j
b.r = k
l.r = b
l.y = b
l.z = f
l.x = k
l.w = c
f.r = b
f.y = b
f.z = l
f.x = k
f.w = c
assert b.r.x.r.x.txt == " | k" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: F = None
self.z: A = None
self.x: D = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: G = None
self.z: E = None
self.x: E = None
self.y: A = None
self.w: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: F = None
self.z: A = None
self.x: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: F = None
self.z: G = None
self.x: E = None
self.y: F = None
self.w: C = None
self.txt = txt
d = A("d")
g = B("g")
c = C("c")
j = D("j")
k = E("k")
b = F("b")
l = G("l")
f = G("f")
d.r = g
g.r = b
g.z = d
g.x = j
g.y = k
c.r = l
c.z = k
c.x = k
c.y = d
c.w = b
j.r = f
k.r = b
k.z = d
k.x = j
b.r = k
l.r = b
l.y = b
l.z = f
l.x = k
l.w = c
f.r = b
f.y = b
f.z = l
f.x = k
f.w = c
assert b.r.x.r.x.txt == "k" | 8 | 22 | 2.75 | 0.392857 | 7 | 1.142857 | 5 | 1 | 2.857143 | 4 | 2 | 1 | 4 | 0.5 | 4 | 0.181818 | 1 | 3 | 3 | 3 | 2 | 2 | 1 | 1 |
263 | class A:
def __init__(self, txt: str):
self.z: B = None
self.u: E = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.u: A = None
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.u: D = None
self.t: E = None
self.p: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.u: D = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.u: E = None
self.t: C = None
self.p: E = None
self.txt = txt
c = A("c")
d = B("d")
l = C("l")
a = D("a")
g = E("g")
i = D("i")
m = E("m")
n = D("n")
c.z = d
c.u = g
c.t = l
d.z = l
d.t = l
d.u = c
l.z = c
l.u = n
l.t = m
l.p = g
a.z = i
a.u = n
a.t = g
g.z = l
g.t = l
g.u = m
g.p = m
i.z = n
i.u = n
i.t = g
m.z = l
m.t = l
m.u = g
m.p = g
n.z = i
n.u = i
n.t = g
assert m.p.u.t.t.t.u.t.t.txt == " | l" | class A:
def __init__(self, txt: str):
self.z: B = None
self.u: E = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.u: A = None
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.u: D = None
self.t: E = None
self.p: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: D = None
self.u: D = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.u: E = None
self.t: C = None
self.p: E = None
self.txt = txt
c = A("c")
d = B("d")
l = C("l")
a = D("a")
g = E("g")
i = D("i")
m = E("m")
n = D("n")
c.z = d
c.u = g
c.t = l
d.z = l
d.t = l
d.u = c
l.z = c
l.u = n
l.t = m
l.p = g
a.z = i
a.u = n
a.t = g
g.z = l
g.t = l
g.u = m
g.p = m
i.z = n
i.u = n
i.t = g
m.z = l
m.t = l
m.u = g
m.p = g
n.z = i
n.u = i
n.t = g
assert m.p.u.t.t.t.u.t.t.txt == "l" | 8 | 20 | 2.5 | 0.357143 | 5 | 1.6 | 4 | 3 | 3.4 | 8 | 3 | 2 | 4 | 0.5 | 7 | 0.35 | 5 | 2 | 6 | 3.428571 | 3 | 5 | 3 | 2 |
264 | class A:
def __init__(self, txt: str):
self.s: E = None
self.z: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.z: F = None
self.t: D = None
self.o: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.z: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: D = None
self.z: A = None
self.t: D = None
self.o: B = None
self.r: E = None
self.x: C = None
self.txt = txt
b = A("b")
k = B("k")
j = C("j")
l = D("l")
a = E("a")
g = F("g")
d = F("d")
e = D("e")
b.s = a
b.z = k
b.t = k
k.s = j
k.z = a
j.s = l
l.s = b
l.z = g
l.t = e
l.o = d
a.s = d
a.z = j
g.s = l
g.t = l
g.z = b
g.o = k
g.r = a
g.x = j
d.s = l
d.t = l
d.z = b
d.o = k
d.r = a
d.x = j
e.s = b
e.z = d
e.t = l
e.o = g
assert k.s.s.o.r.s.x.s.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.s: E = None
self.z: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.z: F = None
self.t: D = None
self.o: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.z: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: D = None
self.z: A = None
self.t: D = None
self.o: B = None
self.r: E = None
self.x: C = None
self.txt = txt
b = A("b")
k = B("k")
j = C("j")
l = D("l")
a = E("a")
g = F("g")
d = F("d")
e = D("e")
b.s = a
b.z = k
b.t = k
k.s = j
k.z = a
j.s = l
l.s = b
l.z = g
l.t = e
l.o = d
a.s = d
a.z = j
g.s = l
g.t = l
g.z = b
g.o = k
g.r = a
g.x = j
d.s = l
d.t = l
d.z = b
d.o = k
d.r = a
d.x = j
e.s = b
e.z = d
e.t = l
e.o = g
assert k.s.s.o.r.s.x.s.z.txt == "g" | 8 | 25 | 3.125 | 0.446429 | 6 | 1.333333 | 6 | 1 | 3 | 8 | 2 | 2 | 6 | 0.75 | 7 | 0.28 | 3 | 2 | 5 | 4 | 5 | 4 | 2 | 2 |
265 | class A:
def __init__(self, txt: str):
self.x: B = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: C = None
self.q: D = None
self.v: E = None
self.p: C = None
self.o: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: B = None
self.q: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: B = None
self.q: A = None
self.v: E = None
self.p: C = None
self.o: B = None
self.txt = txt
i = A("i")
k = B("k")
e = C("e")
j = D("j")
a = E("a")
m = A("m")
d = C("d")
h = E("h")
i.x = k
i.q = d
k.x = h
e.x = d
e.p = d
e.o = d
e.q = j
e.v = h
j.x = k
j.q = e
a.x = k
a.o = k
a.q = i
a.v = h
a.p = d
m.x = k
m.q = d
d.x = e
d.p = e
d.o = e
d.q = j
d.v = h
h.x = k
h.o = k
h.q = m
h.v = a
h.p = d
assert i.x.x.q.txt == " | m" | class A:
def __init__(self, txt: str):
self.x: B = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: C = None
self.q: D = None
self.v: E = None
self.p: C = None
self.o: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: B = None
self.q: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: B = None
self.q: A = None
self.v: E = None
self.p: C = None
self.o: B = None
self.txt = txt
i = A("i")
k = B("k")
e = C("e")
j = D("j")
a = E("a")
m = A("m")
d = C("d")
h = E("h")
i.x = k
i.q = d
k.x = h
e.x = d
e.p = d
e.o = d
e.q = j
e.v = h
j.x = k
j.q = e
a.x = k
a.o = k
a.q = i
a.v = h
a.p = d
m.x = k
m.q = d
d.x = e
d.p = e
d.o = e
d.q = j
d.v = h
h.x = k
h.o = k
h.q = m
h.v = a
h.p = d
assert i.x.x.q.txt == "m" | 8 | 21 | 2.625 | 0.375 | 5 | 1.6 | 5 | 1 | 3 | 3 | 1 | 1 | 4 | 0.5 | 3 | 0.142857 | 0 | null | null | null | 2 | 2 | 2 | 1 |
266 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
n = A("n")
c = B("c")
m = A("m")
h = B("h")
k = B("k")
e = A("e")
a = B("a")
i = B("i")
n.w = m
c.w = n
m.w = n
h.w = n
k.w = e
e.w = m
a.w = n
i.w = e
assert n.w.w.w.w.w.w.w.txt == " | m" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
n = A("n")
c = B("c")
m = A("m")
h = B("h")
k = B("k")
e = A("e")
a = B("a")
i = B("i")
n.w = m
c.w = n
m.w = n
h.w = n
k.w = e
e.w = m
a.w = n
i.w = e
assert n.w.w.w.w.w.w.w.txt == "m" | 8 | 8 | 1 | 0.142857 | 2 | 4 | 1 | 1 | 1 | 7 | 4 | 4 | 2 | 0.25 | 2 | 0.25 | 6 | 2 | 6 | 3.333333 | 1 | 7 | 7 | 1 |
267 | class A:
def __init__(self, txt: str):
self.y: D = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.u: A = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.u: E = None
self.o: C = None
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: C = None
self.u: A = None
self.o: A = None
self.w: D = None
self.txt = txt
m = A("m")
j = B("j")
i = C("i")
e = D("e")
a = E("a")
n = B("n")
l = A("l")
f = C("f")
m.y = e
m.u = j
j.y = f
j.u = m
j.o = l
i.y = e
e.y = a
e.u = a
e.w = a
e.o = f
a.y = i
a.u = m
a.o = m
a.w = e
n.y = f
n.u = l
n.o = m
l.y = e
l.u = n
f.y = e
assert e.y.y.y.txt == " | e" | class A:
def __init__(self, txt: str):
self.y: D = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.u: A = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.u: E = None
self.o: C = None
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: C = None
self.u: A = None
self.o: A = None
self.w: D = None
self.txt = txt
m = A("m")
j = B("j")
i = C("i")
e = D("e")
a = E("a")
n = B("n")
l = A("l")
f = C("f")
m.y = e
m.u = j
j.y = f
j.u = m
j.o = l
i.y = e
e.y = a
e.u = a
e.w = a
e.o = f
a.y = i
a.u = m
a.o = m
a.w = e
n.y = f
n.u = l
n.o = m
l.y = e
l.u = n
f.y = e
assert e.y.y.y.txt == "e" | 8 | 17 | 2.125 | 0.303571 | 5 | 1.6 | 4 | 1 | 2.8 | 3 | 2 | 1 | 3 | 0.375 | 3 | 0.176471 | 1 | 3 | 3 | 3 | 1 | 3 | 3 | 1 |
268 | class A:
def __init__(self, txt: str):
self.o: C = None
self.w: D = None
self.r: D = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.w: D = None
self.r: A = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
g = A("g")
e = B("e")
h = C("h")
n = D("n")
i = D("i")
d = B("d")
a = B("a")
c = B("c")
g.o = h
g.w = n
g.r = n
g.y = n
e.o = c
h.o = i
h.w = i
h.r = g
h.y = a
n.o = h
i.o = h
d.o = a
a.o = e
c.o = a
assert e.o.o.o.o.o.o.o.o.txt == " | a" | class A:
def __init__(self, txt: str):
self.o: C = None
self.w: D = None
self.r: D = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.w: D = None
self.r: A = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
g = A("g")
e = B("e")
h = C("h")
n = D("n")
i = D("i")
d = B("d")
a = B("a")
c = B("c")
g.o = h
g.w = n
g.r = n
g.y = n
e.o = c
h.o = i
h.w = i
h.r = g
h.y = a
n.o = h
i.o = h
d.o = a
a.o = e
c.o = a
assert e.o.o.o.o.o.o.o.o.txt == "a" | 8 | 11 | 1.375 | 0.196429 | 4 | 2 | 4 | 1 | 2.5 | 8 | 3 | 3 | 3 | 0.375 | 3 | 0.272727 | 6 | 3 | 6 | 4 | 1 | 8 | 8 | 1 |
269 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
j = A("j")
g = B("g")
f = B("f")
h = B("h")
d = B("d")
n = A("n")
i = B("i")
c = A("c")
j.v = h
g.v = f
f.v = h
h.v = d
d.v = f
n.v = h
i.v = g
c.v = i
assert n.v.v.v.v.v.v.v.txt == " | h" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
j = A("j")
g = B("g")
f = B("f")
h = B("h")
d = B("d")
n = A("n")
i = B("i")
c = A("c")
j.v = h
g.v = f
f.v = h
h.v = d
d.v = f
n.v = h
i.v = g
c.v = i
assert n.v.v.v.v.v.v.v.txt == "h" | 8 | 8 | 1 | 0.142857 | 2 | 4 | 1 | 1 | 1 | 7 | 3 | 2 | 4 | 0.5 | 4 | 0.5 | 4 | 3 | 6 | 3.6 | 1 | 7 | 7 | 1 |
270 | class A:
def __init__(self, txt: str):
self.z: C = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.t: C = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.t: B = None
self.r: A = None
self.txt = txt
h = A("h")
g = B("g")
b = C("b")
n = B("n")
i = B("i")
k = C("k")
l = A("l")
j = B("j")
h.z = k
h.t = l
g.z = b
g.t = b
g.r = b
b.z = l
b.r = l
b.t = g
n.z = b
n.t = b
n.r = k
i.z = k
i.t = b
i.r = b
k.z = h
k.t = n
k.r = l
l.z = b
l.t = h
j.z = b
j.t = b
j.r = b
assert k.r.z.r.t.t.t.t.txt == " | l" | class A:
def __init__(self, txt: str):
self.z: C = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.t: C = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.t: B = None
self.r: A = None
self.txt = txt
h = A("h")
g = B("g")
b = C("b")
n = B("n")
i = B("i")
k = C("k")
l = A("l")
j = B("j")
h.z = k
h.t = l
g.z = b
g.t = b
g.r = b
b.z = l
b.r = l
b.t = g
n.z = b
n.t = b
n.r = k
i.z = k
i.t = b
i.r = b
k.z = h
k.t = n
k.r = l
l.z = b
l.t = h
j.z = b
j.t = b
j.r = b
assert k.r.z.r.t.t.t.t.txt == "l" | 8 | 15 | 1.875 | 0.267857 | 3 | 2.666667 | 3 | 2 | 2.666667 | 7 | 4 | 2 | 4 | 0.5 | 5 | 0.333333 | 4 | 2 | 6 | 3.142857 | 3 | 4 | 4 | 2 |
271 | class A:
def __init__(self, txt: str):
self.p: F = None
self.w: E = None
self.u: D = None
self.t: E = None
self.x: D = None
self.o: D = None
self.y: C = None
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.w: A = None
self.u: F = None
self.t: C = None
self.x: C = None
self.o: D = None
self.y: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: H = None
self.w: F = None
self.u: G = None
self.t: E = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: E = None
self.w: H = None
self.u: C = None
self.t: E = None
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: D = None
self.w: F = None
self.u: F = None
self.t: F = None
self.x: B = None
self.o: B = None
self.y: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: A = None
self.w: H = None
self.u: D = None
self.t: A = None
self.x: A = None
self.o: G = None
self.y: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: D = None
self.w: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: B = None
self.w: B = None
self.u: E = None
self.t: B = None
self.x: B = None
self.o: G = None
self.txt = txt
j = A("j")
l = B("l")
c = C("c")
k = D("k")
d = E("d")
h = F("h")
n = G("n")
b = H("b")
j.p = h
j.w = d
j.t = d
j.u = k
j.x = k
j.o = k
j.s = k
j.y = c
l.p = k
l.o = k
l.w = j
l.u = h
l.y = h
l.t = c
l.x = c
c.p = b
c.w = h
c.u = n
c.t = d
c.x = l
k.p = d
k.t = d
k.x = d
k.w = b
k.u = c
d.p = k
d.w = h
d.u = h
d.t = h
d.x = l
d.o = l
d.y = l
h.p = j
h.t = j
h.x = j
h.w = b
h.u = k
h.y = k
h.o = n
n.p = k
n.w = k
b.p = l
b.w = l
b.t = l
b.x = l
b.u = d
b.o = n
assert j.p.p.o.x.t.o.p.txt == " | k" | class A:
def __init__(self, txt: str):
self.p: F = None
self.w: E = None
self.u: D = None
self.t: E = None
self.x: D = None
self.o: D = None
self.y: C = None
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.w: A = None
self.u: F = None
self.t: C = None
self.x: C = None
self.o: D = None
self.y: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: H = None
self.w: F = None
self.u: G = None
self.t: E = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: E = None
self.w: H = None
self.u: C = None
self.t: E = None
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: D = None
self.w: F = None
self.u: F = None
self.t: F = None
self.x: B = None
self.o: B = None
self.y: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: A = None
self.w: H = None
self.u: D = None
self.t: A = None
self.x: A = None
self.o: G = None
self.y: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: D = None
self.w: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: B = None
self.w: B = None
self.u: E = None
self.t: B = None
self.x: B = None
self.o: G = None
self.txt = txt
j = A("j")
l = B("l")
c = C("c")
k = D("k")
d = E("d")
h = F("h")
n = G("n")
b = H("b")
j.p = h
j.w = d
j.t = d
j.u = k
j.x = k
j.o = k
j.s = k
j.y = c
l.p = k
l.o = k
l.w = j
l.u = h
l.y = h
l.t = c
l.x = c
c.p = b
c.w = h
c.u = n
c.t = d
c.x = l
k.p = d
k.t = d
k.x = d
k.w = b
k.u = c
d.p = k
d.w = h
d.u = h
d.t = h
d.x = l
d.o = l
d.y = l
h.p = j
h.t = j
h.x = j
h.w = b
h.u = k
h.y = k
h.o = n
n.p = k
n.w = k
b.p = l
b.w = l
b.t = l
b.x = l
b.u = d
b.o = n
assert j.p.p.o.x.t.o.p.txt == "k" | 8 | 27 | 3.375 | 0.482143 | 8 | 1 | 8 | 2 | 5.875 | 7 | 2 | 1 | 5 | 0.625 | 7 | 0.259259 | 3 | 2 | 4 | 3.333333 | 4 | 3 | 2 | 2 |
272 | class A:
def __init__(self, txt: str):
self.r: E = None
self.u: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: E = None
self.u: D = None
self.t: D = None
self.y: E = None
self.o: G = None
self.p: B = None
self.z: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.u: A = None
self.t: D = None
self.y: B = None
self.o: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.u: A = None
self.t: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
f = A("f")
h = B("h")
b = C("b")
d = D("d")
j = E("j")
l = F("l")
c = G("c")
i = G("i")
f.r = j
f.u = c
h.r = c
b.r = j
b.y = j
b.u = d
b.t = d
b.o = i
b.p = h
b.z = c
d.r = b
d.u = b
j.r = d
j.t = d
j.u = f
j.y = h
j.o = l
l.r = h
l.u = f
l.t = d
c.r = b
i.r = b
assert i.r.z.r.txt == " | b" | class A:
def __init__(self, txt: str):
self.r: E = None
self.u: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: E = None
self.u: D = None
self.t: D = None
self.y: E = None
self.o: G = None
self.p: B = None
self.z: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.u: A = None
self.t: D = None
self.y: B = None
self.o: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.u: A = None
self.t: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
f = A("f")
h = B("h")
b = C("b")
d = D("d")
j = E("j")
l = F("l")
c = G("c")
i = G("i")
f.r = j
f.u = c
h.r = c
b.r = j
b.y = j
b.u = d
b.t = d
b.o = i
b.p = h
b.z = c
d.r = b
d.u = b
j.r = d
j.t = d
j.u = f
j.y = h
j.o = l
l.r = h
l.u = f
l.t = d
c.r = b
i.r = b
assert i.r.z.r.txt == "b" | 8 | 18 | 2.25 | 0.321429 | 7 | 1.142857 | 7 | 1 | 3 | 3 | 2 | 1 | 3 | 0.375 | 3 | 0.166667 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
273 | class A:
def __init__(self, txt: str):
self.z: H = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.q: F = None
self.o: D = None
self.s: E = None
self.u: G = None
self.x: A = None
self.w: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.q: E = None
self.o: B = None
self.s: D = None
self.u: D = None
self.x: A = None
self.w: E = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.q: A = None
self.o: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.q: F = None
self.o: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.q: A = None
self.o: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: H = None
self.q: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: F = None
self.q: C = None
self.o: D = None
self.s: F = None
self.u: C = None
self.x: A = None
self.txt = txt
j = A("j")
k = B("k")
l = C("l")
i = D("i")
a = E("a")
c = F("c")
d = G("d")
f = H("f")
j.z = f
j.q = l
k.z = j
k.x = j
k.q = c
k.w = c
k.o = i
k.s = a
k.u = d
l.z = d
l.q = a
l.w = a
l.o = k
l.s = i
l.u = i
l.x = j
l.p = j
i.z = d
i.q = j
i.o = k
a.z = l
a.q = c
a.o = d
c.z = i
c.q = j
c.o = a
d.z = f
d.q = k
f.z = c
f.s = c
f.q = l
f.u = l
f.o = i
f.x = j
assert c.q.z.o.z.z.o.o.txt == " | k" | class A:
def __init__(self, txt: str):
self.z: H = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.q: F = None
self.o: D = None
self.s: E = None
self.u: G = None
self.x: A = None
self.w: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.q: E = None
self.o: B = None
self.s: D = None
self.u: D = None
self.x: A = None
self.w: E = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.q: A = None
self.o: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.q: F = None
self.o: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.q: A = None
self.o: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: H = None
self.q: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: F = None
self.q: C = None
self.o: D = None
self.s: F = None
self.u: C = None
self.x: A = None
self.txt = txt
j = A("j")
k = B("k")
l = C("l")
i = D("i")
a = E("a")
c = F("c")
d = G("d")
f = H("f")
j.z = f
j.q = l
k.z = j
k.x = j
k.q = c
k.w = c
k.o = i
k.s = a
k.u = d
l.z = d
l.q = a
l.w = a
l.o = k
l.s = i
l.u = i
l.x = j
l.p = j
i.z = d
i.q = j
i.o = k
a.z = l
a.q = c
a.o = d
c.z = i
c.q = j
c.o = a
d.z = f
d.q = k
f.z = c
f.s = c
f.q = l
f.u = l
f.o = i
f.x = j
assert c.q.z.o.z.z.o.o.txt == "k" | 8 | 27 | 3.375 | 0.482143 | 8 | 1 | 8 | 2 | 4.25 | 7 | 2 | 2 | 6 | 0.75 | 6 | 0.222222 | 2 | 3 | 3 | 3 | 3 | 3 | 2 | 2 |
274 | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.s: B = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
k = A("k")
l = B("l")
g = C("g")
j = C("j")
m = B("m")
a = A("a")
h = B("h")
c = C("c")
k.z = h
l.z = j
l.x = j
l.s = h
g.z = j
j.z = c
m.z = g
m.s = h
m.x = c
a.z = l
h.z = c
h.s = m
h.x = j
c.z = j
assert m.z.z.z.z.z.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.s: B = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
k = A("k")
l = B("l")
g = C("g")
j = C("j")
m = B("m")
a = A("a")
h = B("h")
c = C("c")
k.z = h
l.z = j
l.x = j
l.s = h
g.z = j
j.z = c
m.z = g
m.s = h
m.x = c
a.z = l
h.z = c
h.s = m
h.x = j
c.z = j
assert m.z.z.z.z.z.txt == "c" | 8 | 13 | 1.625 | 0.232143 | 3 | 2.666667 | 3 | 1 | 1.666667 | 5 | 2 | 2 | 4 | 0.5 | 4 | 0.307692 | 2 | 2 | 2 | 2 | 1 | 5 | 5 | 1 |
275 | class A:
def __init__(self, txt: str):
self.q: E = None
self.y: D = None
self.r: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: D = None
self.y: C = None
self.r: A = None
self.z: E = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: D = None
self.y: C = None
self.r: B = None
self.z: A = None
self.x: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: A = None
self.y: D = None
self.r: A = None
self.txt = txt
l = A("l")
e = B("e")
f = C("f")
b = D("b")
g = E("g")
h = B("h")
c = D("c")
i = C("i")
l.q = g
l.r = g
l.y = c
e.q = l
f.q = b
f.y = i
f.r = l
f.z = g
f.x = g
b.q = c
b.y = f
b.r = e
b.z = l
b.x = h
g.q = l
g.r = l
g.y = b
h.q = l
c.q = b
c.y = f
c.r = e
c.x = e
c.z = l
i.q = c
i.y = f
i.r = l
i.z = g
i.x = g
assert c.x.q.r.r.txt == " | l" | class A:
def __init__(self, txt: str):
self.q: E = None
self.y: D = None
self.r: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: D = None
self.y: C = None
self.r: A = None
self.z: E = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: D = None
self.y: C = None
self.r: B = None
self.z: A = None
self.x: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: A = None
self.y: D = None
self.r: A = None
self.txt = txt
l = A("l")
e = B("e")
f = C("f")
b = D("b")
g = E("g")
h = B("h")
c = D("c")
i = C("i")
l.q = g
l.r = g
l.y = c
e.q = l
f.q = b
f.y = i
f.r = l
f.z = g
f.x = g
b.q = c
b.y = f
b.r = e
b.z = l
b.x = h
g.q = l
g.r = l
g.y = b
h.q = l
c.q = b
c.y = f
c.r = e
c.x = e
c.z = l
i.q = c
i.y = f
i.r = l
i.z = g
i.x = g
assert c.x.q.r.r.txt == "l" | 8 | 23 | 2.875 | 0.410714 | 5 | 1.6 | 5 | 1 | 3.4 | 4 | 2 | 1 | 4 | 0.5 | 4 | 0.173913 | 1 | 2 | 2 | 2 | 3 | 2 | 2 | 1 |
276 | class A:
def __init__(self, txt: str):
self.u: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
d = A("d")
f = B("f")
a = C("a")
b = D("b")
m = A("m")
h = C("h")
c = A("c")
n = D("n")
d.u = b
f.u = d
f.r = h
a.u = f
b.u = h
m.u = b
h.u = f
c.u = n
n.u = a
assert c.u.u.u.r.u.u.u.txt == " | b" | class A:
def __init__(self, txt: str):
self.u: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
d = A("d")
f = B("f")
a = C("a")
b = D("b")
m = A("m")
h = C("h")
c = A("c")
n = D("n")
d.u = b
f.u = d
f.r = h
a.u = f
b.u = h
m.u = b
h.u = f
c.u = n
n.u = a
assert c.u.u.u.r.u.u.u.txt == "b" | 8 | 9 | 1.125 | 0.160714 | 4 | 2 | 2 | 1 | 1.25 | 7 | 2 | 1 | 7 | 0.875 | 7 | 0.777778 | 1 | 2 | 2 | 2 | 2 | 6 | 3 | 2 |
277 | class A:
def __init__(self, txt: str):
self.p: C = None
self.z: E = None
self.o: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: E = None
self.z: F = None
self.o: F = None
self.y: F = None
self.t: D = None
self.q: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.z: D = None
self.o: H = None
self.y: G = None
self.t: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.z: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: C = None
self.z: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: D = None
self.z: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: F = None
self.z: G = None
self.o: G = None
self.y: G = None
self.t: A = None
self.q: B = None
self.r: G = None
self.u: G = None
self.txt = txt
b = A("b")
m = B("m")
k = C("k")
g = D("g")
i = E("i")
d = F("d")
e = G("e")
f = H("f")
b.p = k
b.z = i
b.o = e
m.p = i
m.z = d
m.o = d
m.y = d
m.t = g
m.q = e
k.p = g
k.z = g
k.o = f
k.y = e
k.t = d
g.p = m
i.p = d
i.z = f
d.p = k
d.z = f
e.p = g
e.z = k
f.p = d
f.z = e
f.o = e
f.y = e
f.r = e
f.u = e
f.t = b
f.q = m
assert b.p.p.p.q.z.y.txt == " | e" | class A:
def __init__(self, txt: str):
self.p: C = None
self.z: E = None
self.o: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: E = None
self.z: F = None
self.o: F = None
self.y: F = None
self.t: D = None
self.q: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.z: D = None
self.o: H = None
self.y: G = None
self.t: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.z: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: C = None
self.z: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: D = None
self.z: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: F = None
self.z: G = None
self.o: G = None
self.y: G = None
self.t: A = None
self.q: B = None
self.r: G = None
self.u: G = None
self.txt = txt
b = A("b")
m = B("m")
k = C("k")
g = D("g")
i = E("i")
d = F("d")
e = G("e")
f = H("f")
b.p = k
b.z = i
b.o = e
m.p = i
m.z = d
m.o = d
m.y = d
m.t = g
m.q = e
k.p = g
k.z = g
k.o = f
k.y = e
k.t = d
g.p = m
i.p = d
i.z = f
d.p = k
d.z = f
e.p = g
e.z = k
f.p = d
f.z = e
f.o = e
f.y = e
f.r = e
f.u = e
f.t = b
f.q = m
assert b.p.p.p.q.z.y.txt == "e" | 8 | 22 | 2.75 | 0.392857 | 8 | 1 | 8 | 1 | 3.625 | 6 | 2 | 1 | 5 | 0.625 | 6 | 0.272727 | 2 | 2 | 4 | 3 | 4 | 3 | 3 | 2 |
278 | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.x: A = None
self.txt = txt
j = A("j")
f = B("f")
i = A("i")
m = B("m")
a = A("a")
d = A("d")
l = B("l")
h = B("h")
j.t = d
f.t = h
f.x = a
i.t = j
m.t = l
m.x = d
a.t = d
d.t = a
l.t = h
l.x = i
h.t = f
h.x = a
assert j.t.t.t.txt == " | d" | class A:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.x: A = None
self.txt = txt
j = A("j")
f = B("f")
i = A("i")
m = B("m")
a = A("a")
d = A("d")
l = B("l")
h = B("h")
j.t = d
f.t = h
f.x = a
i.t = j
m.t = l
m.x = d
a.t = d
d.t = a
l.t = h
l.x = i
h.t = f
h.x = a
assert j.t.t.t.txt == "d" | 8 | 12 | 1.5 | 0.214286 | 2 | 4 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.375 | 3 | 0.25 | 1 | 2 | 2 | 2 | 1 | 3 | 3 | 1 |
279 | class A:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: A = None
self.z: A = None
self.s: D = None
self.o: B = None
self.v: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.z: E = None
self.s: C = None
self.o: C = None
self.v: B = None
self.txt = txt
l = A("l")
c = B("c")
m = C("m")
g = D("g")
a = E("a")
b = A("b")
d = D("d")
h = E("h")
l.r = g
c.r = l
c.z = h
m.r = h
g.r = b
g.v = b
g.z = l
g.s = d
g.o = c
a.r = m
a.s = m
a.o = m
a.z = h
a.v = c
b.r = g
d.r = b
d.v = b
d.z = l
d.s = g
d.o = c
h.r = m
h.s = m
h.o = m
h.z = a
h.v = c
assert b.r.o.r.r.v.r.r.r.txt == " | g" | class A:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: A = None
self.z: A = None
self.s: D = None
self.o: B = None
self.v: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.z: E = None
self.s: C = None
self.o: C = None
self.v: B = None
self.txt = txt
l = A("l")
c = B("c")
m = C("m")
g = D("g")
a = E("a")
b = A("b")
d = D("d")
h = E("h")
l.r = g
c.r = l
c.z = h
m.r = h
g.r = b
g.v = b
g.z = l
g.s = d
g.o = c
a.r = m
a.s = m
a.o = m
a.z = h
a.v = c
b.r = g
d.r = b
d.v = b
d.z = l
d.s = g
d.o = c
h.r = m
h.s = m
h.o = m
h.z = a
h.v = c
assert b.r.o.r.r.v.r.r.r.txt == "g" | 8 | 19 | 2.375 | 0.339286 | 5 | 1.6 | 5 | 1 | 2.8 | 8 | 4 | 3 | 4 | 0.5 | 6 | 0.315789 | 5 | 2 | 7 | 4.111111 | 3 | 6 | 3 | 3 |
280 | class A:
def __init__(self, txt: str):
self.o: A = None
self.w: B = None
self.y: E = None
self.r: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.w: C = None
self.y: B = None
self.r: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.w: C = None
self.y: C = None
self.r: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: B = None
self.w: A = None
self.txt = txt
i = A("i")
g = B("g")
j = C("j")
n = D("n")
c = E("c")
e = A("e")
h = C("h")
k = B("k")
i.o = e
i.w = k
i.y = c
i.r = c
g.o = c
j.o = k
j.w = h
j.r = h
j.y = g
n.o = h
n.y = h
n.w = j
n.r = j
c.o = g
c.w = i
e.o = i
e.w = g
e.y = c
e.r = c
h.o = g
h.w = j
h.r = j
h.y = k
k.o = c
assert j.y.o.w.w.o.o.o.txt == " | c" | class A:
def __init__(self, txt: str):
self.o: A = None
self.w: B = None
self.y: E = None
self.r: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.w: C = None
self.y: B = None
self.r: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.w: C = None
self.y: C = None
self.r: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: B = None
self.w: A = None
self.txt = txt
i = A("i")
g = B("g")
j = C("j")
n = D("n")
c = E("c")
e = A("e")
h = C("h")
k = B("k")
i.o = e
i.w = k
i.y = c
i.r = c
g.o = c
j.o = k
j.w = h
j.r = h
j.y = g
n.o = h
n.y = h
n.w = j
n.r = j
c.o = g
c.w = i
e.o = i
e.w = g
e.y = c
e.r = c
h.o = g
h.w = j
h.r = j
h.y = k
k.o = c
assert j.y.o.w.w.o.o.o.txt == "c" | 8 | 18 | 2.25 | 0.321429 | 5 | 1.6 | 4 | 1 | 3 | 7 | 3 | 2 | 5 | 0.625 | 6 | 0.333333 | 3 | 2 | 5 | 3.75 | 3 | 4 | 3 | 2 |
281 | class A:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: F = None
self.w: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.w: C = None
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.w: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: C = None
self.w: C = None
self.v: C = None
self.o: A = None
self.q: E = None
self.y: B = None
self.txt = txt
k = A("k")
l = B("l")
g = C("g")
d = D("d")
h = E("h")
f = F("f")
e = A("e")
j = B("j")
k.s = d
l.s = j
g.s = f
g.w = h
d.s = f
d.w = g
d.v = g
h.s = f
h.w = d
f.s = g
f.w = g
f.v = g
f.o = k
f.q = h
f.y = j
e.s = d
j.s = l
assert d.s.y.s.s.s.s.s.s.txt == " | j" | class A:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: F = None
self.w: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.w: C = None
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.w: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: C = None
self.w: C = None
self.v: C = None
self.o: A = None
self.q: E = None
self.y: B = None
self.txt = txt
k = A("k")
l = B("l")
g = C("g")
d = D("d")
h = E("h")
f = F("f")
e = A("e")
j = B("j")
k.s = d
l.s = j
g.s = f
g.w = h
d.s = f
d.w = g
d.v = g
h.s = f
h.w = d
f.s = g
f.w = g
f.v = g
f.o = k
f.q = h
f.y = j
e.s = d
j.s = l
assert d.s.y.s.s.s.s.s.s.txt == "j" | 8 | 14 | 1.75 | 0.25 | 6 | 1.333333 | 6 | 1 | 2.5 | 8 | 4 | 3 | 4 | 0.5 | 4 | 0.285714 | 5 | 2 | 6 | 3.111111 | 2 | 7 | 6 | 1 |
282 | class A:
def __init__(self, txt: str):
self.u: C = None
self.z: C = None
self.v: B = None
self.o: C = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.z: B = None
self.v: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: C = None
self.z: B = None
self.v: C = None
self.o: D = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: B = None
self.z: C = None
self.v: E = None
self.txt = txt
j = A("j")
f = B("f")
g = C("g")
m = D("m")
l = E("l")
d = E("d")
h = D("h")
a = D("a")
j.u = g
j.z = g
j.o = g
j.x = g
j.v = f
f.u = d
f.z = g
g.u = j
g.z = f
g.v = d
m.u = g
m.v = g
m.z = f
m.o = h
l.u = f
l.z = g
l.v = d
d.u = f
d.z = g
d.v = l
h.u = g
h.v = g
h.z = f
h.o = a
a.u = g
a.v = g
a.z = f
a.o = h
assert f.u.u.z.z.u.txt == " | d" | class A:
def __init__(self, txt: str):
self.u: C = None
self.z: C = None
self.v: B = None
self.o: C = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.z: B = None
self.v: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: C = None
self.z: B = None
self.v: C = None
self.o: D = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: B = None
self.z: C = None
self.v: E = None
self.txt = txt
j = A("j")
f = B("f")
g = C("g")
m = D("m")
l = E("l")
d = E("d")
h = D("h")
a = D("a")
j.u = g
j.z = g
j.o = g
j.x = g
j.v = f
f.u = d
f.z = g
g.u = j
g.z = f
g.v = d
m.u = g
m.v = g
m.z = f
m.o = h
l.u = f
l.z = g
l.v = d
d.u = f
d.z = g
d.v = l
h.u = g
h.v = g
h.z = f
h.o = a
a.u = g
a.v = g
a.z = f
a.o = h
assert f.u.u.z.z.u.txt == "d" | 8 | 22 | 2.75 | 0.392857 | 5 | 1.6 | 5 | 2 | 3.4 | 5 | 3 | 2 | 3 | 0.375 | 4 | 0.181818 | 3 | 2 | 4 | 3 | 2 | 3 | 2 | 2 |
283 | class A:
def __init__(self, txt: str):
self.p: F = None
self.o: A = None
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.o: E = None
self.z: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.o: B = None
self.z: G = None
self.w: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: D = None
self.o: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: F = None
self.o: E = None
self.z: F = None
self.w: B = None
self.t: E = None
self.y: B = None
self.v: E = None
self.txt = txt
c = A("c")
i = B("i")
d = C("d")
a = D("a")
n = E("n")
h = F("h")
f = G("f")
b = A("b")
c.p = h
c.o = b
c.z = n
i.p = b
i.o = n
i.z = h
d.p = a
d.o = a
a.p = h
n.p = h
n.o = i
n.z = f
n.w = d
h.p = a
h.o = c
f.p = h
f.z = h
f.o = n
f.t = n
f.v = n
f.w = i
f.y = i
b.p = h
b.o = c
b.z = n
assert c.p.o.o.txt == " | b" | class A:
def __init__(self, txt: str):
self.p: F = None
self.o: A = None
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.o: E = None
self.z: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.o: B = None
self.z: G = None
self.w: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: D = None
self.o: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: F = None
self.o: E = None
self.z: F = None
self.w: B = None
self.t: E = None
self.y: B = None
self.v: E = None
self.txt = txt
c = A("c")
i = B("i")
d = C("d")
a = D("a")
n = E("n")
h = F("h")
f = G("f")
b = A("b")
c.p = h
c.o = b
c.z = n
i.p = b
i.o = n
i.z = h
d.p = a
d.o = a
a.p = h
n.p = h
n.o = i
n.z = f
n.w = d
h.p = a
h.o = c
f.p = h
f.z = h
f.o = n
f.t = n
f.v = n
f.w = i
f.y = i
b.p = h
b.o = c
b.z = n
assert c.p.o.o.txt == "b" | 8 | 20 | 2.5 | 0.357143 | 7 | 1.142857 | 7 | 1 | 3.142857 | 3 | 2 | 1 | 3 | 0.375 | 3 | 0.15 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 |
284 | class A:
def __init__(self, txt: str):
self.s: D = None
self.u: E = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: E = None
self.u: D = None
self.v: B = None
self.o: D = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: C = None
self.u: A = None
self.v: B = None
self.o: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: B = None
self.u: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.u: C = None
self.txt = txt
l = A("l")
k = B("k")
g = C("g")
h = D("h")
j = E("j")
e = B("e")
d = B("d")
i = C("i")
l.s = h
l.u = j
l.v = e
k.s = j
k.u = h
k.o = h
k.v = d
k.w = g
g.s = i
g.u = l
g.o = l
g.v = k
h.s = k
h.u = j
j.s = i
j.u = i
e.s = j
e.u = h
e.o = h
e.v = k
e.w = i
d.s = j
d.u = h
d.o = h
d.v = e
d.w = g
i.s = g
i.u = l
i.o = l
i.v = k
assert i.s.v.w.o.txt == " | l" | class A:
def __init__(self, txt: str):
self.s: D = None
self.u: E = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: E = None
self.u: D = None
self.v: B = None
self.o: D = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: C = None
self.u: A = None
self.v: B = None
self.o: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: B = None
self.u: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.u: C = None
self.txt = txt
l = A("l")
k = B("k")
g = C("g")
h = D("h")
j = E("j")
e = B("e")
d = B("d")
i = C("i")
l.s = h
l.u = j
l.v = e
k.s = j
k.u = h
k.o = h
k.v = d
k.w = g
g.s = i
g.u = l
g.o = l
g.v = k
h.s = k
h.u = j
j.s = i
j.u = i
e.s = j
e.u = h
e.o = h
e.v = k
e.w = i
d.s = j
d.u = h
d.o = h
d.v = e
d.w = g
i.s = g
i.u = l
i.o = l
i.v = k
assert i.s.v.w.o.txt == "l" | 8 | 24 | 3 | 0.428571 | 5 | 1.6 | 5 | 2 | 3.2 | 4 | 2 | 1 | 4 | 0.5 | 4 | 0.166667 | 1 | 2 | 2 | 2 | 4 | 1 | 1 | 2 |
285 | class A:
def __init__(self, txt: str):
self.z: F = None
self.o: D = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.o: A = None
self.w: F = None
self.p: A = None
self.t: A = None
self.v: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.o: F = None
self.w: E = None
self.p: F = None
self.t: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.o: F = None
self.w: A = None
self.p: D = None
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.o: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.o: C = None
self.txt = txt
a = A("a")
h = B("h")
b = C("b")
g = D("g")
e = E("e")
m = F("m")
d = D("d")
n = B("n")
a.z = m
a.o = g
a.w = b
h.z = a
h.o = a
h.p = a
h.t = a
h.w = m
h.v = n
b.z = h
b.o = m
b.p = m
b.w = e
b.t = e
g.z = h
g.o = m
g.w = a
g.t = a
g.p = d
e.z = b
e.o = b
m.z = g
m.o = b
d.z = h
d.o = m
d.w = a
d.t = a
d.p = g
n.z = a
n.o = a
n.p = a
n.t = a
n.w = m
n.v = h
assert g.p.z.w.z.o.o.txt == " | b" | class A:
def __init__(self, txt: str):
self.z: F = None
self.o: D = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.o: A = None
self.w: F = None
self.p: A = None
self.t: A = None
self.v: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.o: F = None
self.w: E = None
self.p: F = None
self.t: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: B = None
self.o: F = None
self.w: A = None
self.p: D = None
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.o: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.o: C = None
self.txt = txt
a = A("a")
h = B("h")
b = C("b")
g = D("g")
e = E("e")
m = F("m")
d = D("d")
n = B("n")
a.z = m
a.o = g
a.w = b
h.z = a
h.o = a
h.p = a
h.t = a
h.w = m
h.v = n
b.z = h
b.o = m
b.p = m
b.w = e
b.t = e
g.z = h
g.o = m
g.w = a
g.t = a
g.p = d
e.z = b
e.o = b
m.z = g
m.o = b
d.z = h
d.o = m
d.w = a
d.t = a
d.p = g
n.z = a
n.o = a
n.p = a
n.t = a
n.w = m
n.v = h
assert g.p.z.w.z.o.o.txt == "b" | 8 | 23 | 2.875 | 0.410714 | 6 | 1.333333 | 6 | 2 | 3.833333 | 6 | 2 | 1 | 5 | 0.625 | 6 | 0.26087 | 2 | 2 | 4 | 3 | 4 | 2 | 2 | 2 |
286 | class A:
def __init__(self, txt: str):
self.u: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.q: C = None
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.q: C = None
self.txt = txt
n = A("n")
k = B("k")
l = C("l")
e = A("e")
a = A("a")
h = C("h")
b = B("b")
g = B("g")
n.u = b
n.q = g
k.u = h
k.t = h
k.q = l
l.u = k
l.q = h
e.u = g
e.q = g
a.u = k
a.q = b
h.u = b
h.q = l
b.u = h
b.q = h
b.t = l
g.u = h
g.t = h
g.q = l
assert b.t.q.q.u.t.u.q.txt == " | h" | class A:
def __init__(self, txt: str):
self.u: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.q: C = None
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.q: C = None
self.txt = txt
n = A("n")
k = B("k")
l = C("l")
e = A("e")
a = A("a")
h = C("h")
b = B("b")
g = B("g")
n.u = b
n.q = g
k.u = h
k.t = h
k.q = l
l.u = k
l.q = h
e.u = g
e.q = g
a.u = k
a.q = b
h.u = b
h.q = l
b.u = h
b.q = h
b.t = l
g.u = h
g.t = h
g.q = l
assert b.t.q.q.u.t.u.q.txt == "h" | 8 | 15 | 1.875 | 0.267857 | 3 | 2.666667 | 3 | 2 | 2.333333 | 7 | 3 | 1 | 4 | 0.5 | 7 | 0.466667 | 4 | 2 | 6 | 3.6 | 3 | 3 | 2 | 2 |
287 | class A:
def __init__(self, txt: str):
self.o: B = None
self.p: E = None
self.u: C = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.p: C = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.p: E = None
self.u: A = None
self.z: C = None
self.v: C = None
self.w: D = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: F = None
self.p: A = None
self.u: C = None
self.z: C = None
self.v: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: A = None
self.p: D = None
self.u: C = None
self.txt = txt
l = A("l")
e = B("e")
i = C("i")
h = D("h")
a = E("a")
f = F("f")
k = F("k")
m = D("m")
l.o = e
l.p = a
l.u = i
l.z = i
e.o = l
e.p = i
e.u = m
i.o = e
h.o = i
h.z = i
h.v = i
h.p = a
h.u = l
h.w = m
a.o = f
a.p = l
a.u = i
a.z = i
a.v = k
f.o = l
f.p = m
f.u = i
k.o = l
k.p = m
k.u = i
m.o = i
m.z = i
m.v = i
m.p = a
m.u = l
m.w = h
assert e.o.p.v.p.p.txt == " | a" | class A:
def __init__(self, txt: str):
self.o: B = None
self.p: E = None
self.u: C = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.p: C = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.p: E = None
self.u: A = None
self.z: C = None
self.v: C = None
self.w: D = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: F = None
self.p: A = None
self.u: C = None
self.z: C = None
self.v: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: A = None
self.p: D = None
self.u: C = None
self.txt = txt
l = A("l")
e = B("e")
i = C("i")
h = D("h")
a = E("a")
f = F("f")
k = F("k")
m = D("m")
l.o = e
l.p = a
l.u = i
l.z = i
e.o = l
e.p = i
e.u = m
i.o = e
h.o = i
h.z = i
h.v = i
h.p = a
h.u = l
h.w = m
a.o = f
a.p = l
a.u = i
a.z = i
a.v = k
f.o = l
f.p = m
f.u = i
k.o = l
k.p = m
k.u = i
m.o = i
m.z = i
m.v = i
m.p = a
m.u = l
m.w = h
assert e.o.p.v.p.p.txt == "a" | 8 | 25 | 3.125 | 0.446429 | 6 | 1.333333 | 6 | 1 | 3.666667 | 5 | 2 | 1 | 5 | 0.625 | 5 | 0.2 | 1 | 3 | 3 | 3 | 3 | 3 | 2 | 1 |
288 | class A:
def __init__(self, txt: str):
self.x: B = None
self.u: C = None
self.p: C = None
self.r: E = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.u: A = None
self.p: A = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: D = None
self.u: C = None
self.p: C = None
self.r: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.u: B = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: B = None
self.u: B = None
self.p: B = None
self.txt = txt
h = A("h")
c = B("c")
n = C("n")
m = D("m")
a = E("a")
j = D("j")
i = C("i")
l = D("l")
h.x = c
h.w = c
h.u = n
h.p = i
h.r = a
c.x = h
c.u = h
c.p = h
c.r = n
n.x = j
n.u = i
n.p = i
n.r = a
m.x = h
m.u = c
m.p = n
a.x = c
a.u = c
a.p = c
j.x = h
j.u = c
j.p = n
i.x = j
i.u = n
i.p = n
i.r = a
l.x = h
l.u = c
l.p = i
assert c.u.u.x.u.x.x.r.txt == " | n" | class A:
def __init__(self, txt: str):
self.x: B = None
self.u: C = None
self.p: C = None
self.r: E = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.u: A = None
self.p: A = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: D = None
self.u: C = None
self.p: C = None
self.r: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.u: B = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: B = None
self.u: B = None
self.p: B = None
self.txt = txt
h = A("h")
c = B("c")
n = C("n")
m = D("m")
a = E("a")
j = D("j")
i = C("i")
l = D("l")
h.x = c
h.w = c
h.u = n
h.p = i
h.r = a
c.x = h
c.u = h
c.p = h
c.r = n
n.x = j
n.u = i
n.p = i
n.r = a
m.x = h
m.u = c
m.p = n
a.x = c
a.u = c
a.p = c
j.x = h
j.u = c
j.p = n
i.x = j
i.u = n
i.p = n
i.r = a
l.x = h
l.u = c
l.p = i
assert c.u.u.x.u.x.x.r.txt == "n" | 8 | 22 | 2.75 | 0.392857 | 5 | 1.6 | 5 | 3 | 3.8 | 7 | 3 | 1 | 4 | 0.5 | 7 | 0.318182 | 4 | 2 | 6 | 4.2 | 3 | 3 | 2 | 3 |
289 | class A:
def __init__(self, txt: str):
self.s: A = None
self.p: C = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.p: B = None
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
d = A("d")
b = B("b")
e = C("e")
h = C("h")
n = C("n")
j = C("j")
c = A("c")
l = B("l")
d.s = c
d.p = e
d.o = h
b.s = n
b.p = l
b.o = l
e.s = h
h.s = j
n.s = j
j.s = n
c.s = d
c.p = h
c.o = n
l.s = e
l.p = b
l.o = b
assert n.s.s.s.s.s.txt == " | j" | class A:
def __init__(self, txt: str):
self.s: A = None
self.p: C = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.p: B = None
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
d = A("d")
b = B("b")
e = C("e")
h = C("h")
n = C("n")
j = C("j")
c = A("c")
l = B("l")
d.s = c
d.p = e
d.o = h
b.s = n
b.p = l
b.o = l
e.s = h
h.s = j
n.s = j
j.s = n
c.s = d
c.p = h
c.o = n
l.s = e
l.p = b
l.o = b
assert n.s.s.s.s.s.txt == "j" | 8 | 14 | 1.75 | 0.25 | 3 | 2.666667 | 3 | 1 | 2.333333 | 5 | 3 | 3 | 2 | 0.25 | 2 | 0.142857 | 4 | 2 | 4 | 2.666667 | 1 | 5 | 5 | 1 |
290 | class A:
def __init__(self, txt: str):
self.p: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: F = None
self.t: F = None
self.x: E = None
self.w: A = None
self.u: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: C = None
self.t: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: C = None
self.t: A = None
self.x: E = None
self.w: D = None
self.u: D = None
self.r: E = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: B = None
self.t: B = None
self.x: F = None
self.txt = txt
f = A("f")
m = B("m")
b = C("b")
n = D("n")
k = E("k")
l = F("l")
d = G("d")
h = E("h")
f.p = d
m.p = f
b.p = l
b.t = l
b.x = k
b.w = f
b.u = f
n.p = b
n.t = b
k.p = b
k.t = f
k.x = h
k.r = h
k.w = n
k.u = n
l.p = m
d.p = m
d.t = m
d.x = l
h.p = b
h.t = f
h.x = k
h.r = k
h.w = n
h.u = n
assert n.t.x.x.t.txt == " | f" | class A:
def __init__(self, txt: str):
self.p: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: F = None
self.t: F = None
self.x: E = None
self.w: A = None
self.u: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: C = None
self.t: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: C = None
self.t: A = None
self.x: E = None
self.w: D = None
self.u: D = None
self.r: E = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: B = None
self.t: B = None
self.x: F = None
self.txt = txt
f = A("f")
m = B("m")
b = C("b")
n = D("n")
k = E("k")
l = F("l")
d = G("d")
h = E("h")
f.p = d
m.p = f
b.p = l
b.t = l
b.x = k
b.w = f
b.u = f
n.p = b
n.t = b
k.p = b
k.t = f
k.x = h
k.r = h
k.w = n
k.u = n
l.p = m
d.p = m
d.t = m
d.x = l
h.p = b
h.t = f
h.x = k
h.r = k
h.w = n
h.u = n
assert n.t.x.x.t.txt == "f" | 8 | 17 | 2.125 | 0.303571 | 7 | 1.142857 | 6 | 1 | 2.714286 | 4 | 1 | 1 | 5 | 0.625 | 4 | 0.235294 | 0 | null | null | null | 2 | 2 | 2 | 1 |
291 | class A:
def __init__(self, txt: str):
self.z: E = None
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.v: B = None
self.t: B = None
self.y: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.v: B = None
self.t: G = None
self.y: A = None
self.s: G = None
self.q: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.v: B = None
self.t: E = None
self.y: A = None
self.s: A = None
self.txt = txt
a = A("a")
j = B("j")
c = C("c")
m = D("m")
b = E("b")
h = F("h")
n = G("n")
g = E("g")
a.z = b
a.v = m
j.z = c
j.v = a
c.z = n
m.z = a
m.v = j
m.t = j
m.y = c
b.z = h
b.q = h
b.v = j
b.t = n
b.s = n
b.y = a
h.z = n
n.z = j
n.v = j
n.t = g
n.y = a
n.s = a
g.z = h
g.q = h
g.v = j
g.t = n
g.s = n
g.y = a
assert a.v.z.z.t.t.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: E = None
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.v: B = None
self.t: B = None
self.y: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.v: B = None
self.t: G = None
self.y: A = None
self.s: G = None
self.q: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.v: B = None
self.t: E = None
self.y: A = None
self.s: A = None
self.txt = txt
a = A("a")
j = B("j")
c = C("c")
m = D("m")
b = E("b")
h = F("h")
n = G("n")
g = E("g")
a.z = b
a.v = m
j.z = c
j.v = a
c.z = n
m.z = a
m.v = j
m.t = j
m.y = c
b.z = h
b.q = h
b.v = j
b.t = n
b.s = n
b.y = a
h.z = n
n.z = j
n.v = j
n.t = g
n.y = a
n.s = a
g.z = h
g.q = h
g.v = j
g.t = n
g.s = n
g.y = a
assert a.v.z.z.t.t.txt == "g" | 8 | 20 | 2.5 | 0.357143 | 7 | 1.142857 | 6 | 1 | 3 | 5 | 2 | 1 | 5 | 0.625 | 5 | 0.25 | 1 | 2 | 2 | 2 | 3 | 2 | 2 | 2 |
292 | class A:
def __init__(self, txt: str):
self.y: C = None
self.o: B = None
self.x: C = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.o: B = None
self.x: A = None
self.q: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: C = None
self.o: D = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.o: A = None
self.txt = txt
g = A("g")
k = B("k")
h = C("h")
c = D("c")
m = A("m")
a = B("a")
f = D("f")
n = C("n")
g.y = n
g.x = n
g.q = n
g.o = a
k.y = a
k.o = a
k.q = a
k.x = m
h.y = n
h.o = c
h.x = k
c.y = k
c.o = g
m.y = n
m.q = n
m.o = k
m.x = h
a.y = k
a.o = k
a.q = k
a.x = g
f.y = a
f.o = g
n.y = h
n.o = c
n.x = a
assert m.x.y.y.txt == " | h" | class A:
def __init__(self, txt: str):
self.y: C = None
self.o: B = None
self.x: C = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.o: B = None
self.x: A = None
self.q: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: C = None
self.o: D = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.o: A = None
self.txt = txt
g = A("g")
k = B("k")
h = C("h")
c = D("c")
m = A("m")
a = B("a")
f = D("f")
n = C("n")
g.y = n
g.x = n
g.q = n
g.o = a
k.y = a
k.o = a
k.q = a
k.x = m
h.y = n
h.o = c
h.x = k
c.y = k
c.o = g
m.y = n
m.q = n
m.o = k
m.x = h
a.y = k
a.o = k
a.q = k
a.x = g
f.y = a
f.o = g
n.y = h
n.o = c
n.x = a
assert m.x.y.y.txt == "h" | 8 | 19 | 2.375 | 0.339286 | 4 | 2 | 4 | 2 | 3.25 | 3 | 2 | 1 | 3 | 0.375 | 3 | 0.157895 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
293 | class A:
def __init__(self, txt: str):
self.y: E = None
self.q: D = None
self.x: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: F = None
self.q: D = None
self.x: F = None
self.r: E = None
self.s: E = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: F = None
self.q: A = None
self.x: E = None
self.r: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: A = None
self.q: A = None
self.x: E = None
self.r: F = None
self.s: F = None
self.v: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: D = None
self.q: B = None
self.x: F = None
self.r: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: F = None
self.q: D = None
self.x: A = None
self.txt = txt
h = A("h")
i = B("i")
c = C("c")
b = D("b")
l = E("l")
k = F("k")
f = F("f")
j = F("j")
h.y = l
h.q = b
h.x = f
i.y = j
i.q = b
i.x = k
i.r = l
i.s = l
i.v = c
c.y = k
c.q = h
c.x = l
c.r = b
b.y = h
b.q = h
b.x = l
b.r = j
b.s = f
b.v = i
l.y = b
l.q = i
l.x = j
l.r = k
k.y = j
k.q = b
k.x = h
f.y = k
f.q = b
f.x = h
j.y = f
j.q = b
j.x = h
assert i.v.q.y.txt == " | l" | class A:
def __init__(self, txt: str):
self.y: E = None
self.q: D = None
self.x: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: F = None
self.q: D = None
self.x: F = None
self.r: E = None
self.s: E = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: F = None
self.q: A = None
self.x: E = None
self.r: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: A = None
self.q: A = None
self.x: E = None
self.r: F = None
self.s: F = None
self.v: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: D = None
self.q: B = None
self.x: F = None
self.r: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: F = None
self.q: D = None
self.x: A = None
self.txt = txt
h = A("h")
i = B("i")
c = C("c")
b = D("b")
l = E("l")
k = F("k")
f = F("f")
j = F("j")
h.y = l
h.q = b
h.x = f
i.y = j
i.q = b
i.x = k
i.r = l
i.s = l
i.v = c
c.y = k
c.q = h
c.x = l
c.r = b
b.y = h
b.q = h
b.x = l
b.r = j
b.s = f
b.v = i
l.y = b
l.q = i
l.x = j
l.r = k
k.y = j
k.q = b
k.x = h
f.y = k
f.q = b
f.x = h
j.y = f
j.q = b
j.x = h
assert i.v.q.y.txt == "l" | 8 | 30 | 3.75 | 0.535714 | 6 | 1.333333 | 6 | 3 | 4.333333 | 3 | 1 | 1 | 4 | 0.5 | 3 | 0.1 | 0 | null | null | null | 3 | 1 | 1 | 1 |
294 | class A:
def __init__(self, txt: str):
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: C = None
self.t: A = None
self.z: A = None
self.s: A = None
self.o: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: E = None
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: E = None
self.t: B = None
self.z: E = None
self.s: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
l = A("l")
g = B("g")
j = C("j")
n = D("n")
i = E("i")
h = E("h")
b = A("b")
d = A("d")
l.v = n
g.v = j
g.t = d
g.z = b
g.s = b
g.o = n
j.v = h
j.t = g
n.v = h
n.z = h
n.t = g
n.s = j
i.v = g
h.v = g
b.v = n
d.v = n
assert d.v.s.t.s.v.s.txt == " | j" | class A:
def __init__(self, txt: str):
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: C = None
self.t: A = None
self.z: A = None
self.s: A = None
self.o: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: E = None
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: E = None
self.t: B = None
self.z: E = None
self.s: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
l = A("l")
g = B("g")
j = C("j")
n = D("n")
i = E("i")
h = E("h")
b = A("b")
d = A("d")
l.v = n
g.v = j
g.t = d
g.z = b
g.s = b
g.o = n
j.v = h
j.t = g
n.v = h
n.z = h
n.t = g
n.s = j
i.v = g
h.v = g
b.v = n
d.v = n
assert d.v.s.t.s.v.s.txt == "j" | 8 | 14 | 1.75 | 0.25 | 5 | 1.6 | 5 | 1 | 2.6 | 6 | 2 | 2 | 5 | 0.625 | 5 | 0.357143 | 2 | 4 | 4 | 4 | 3 | 3 | 1 | 1 |
295 | class A:
def __init__(self, txt: str):
self.o: C = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.p: B = None
self.r: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: C = None
self.p: A = None
self.r: B = None
self.txt = txt
j = A("j")
a = B("a")
l = C("l")
h = C("h")
c = B("c")
i = B("i")
e = B("e")
b = A("b")
j.o = l
j.p = b
a.o = j
a.p = c
a.r = c
l.o = h
l.p = j
l.r = c
h.o = l
h.p = j
h.r = c
c.o = j
c.p = a
c.r = e
i.o = j
i.p = a
i.r = a
e.o = b
e.p = i
e.r = c
b.o = l
b.p = j
assert c.o.p.p.txt == " | j" | class A:
def __init__(self, txt: str):
self.o: C = None
self.p: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.p: B = None
self.r: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: C = None
self.p: A = None
self.r: B = None
self.txt = txt
j = A("j")
a = B("a")
l = C("l")
h = C("h")
c = B("c")
i = B("i")
e = B("e")
b = A("b")
j.o = l
j.p = b
a.o = j
a.p = c
a.r = c
l.o = h
l.p = j
l.r = c
h.o = l
h.p = j
h.r = c
c.o = j
c.p = a
c.r = e
i.o = j
i.p = a
i.r = a
e.o = b
e.p = i
e.r = c
b.o = l
b.p = j
assert c.o.p.p.txt == "j" | 8 | 20 | 2.5 | 0.357143 | 3 | 2.666667 | 3 | 2 | 2.666667 | 3 | 2 | 1 | 3 | 0.375 | 3 | 0.15 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 |
296 | class A:
def __init__(self, txt: str):
self.z: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.v: A = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
k = A("k")
n = B("n")
h = C("h")
j = C("j")
i = A("i")
c = A("c")
e = B("e")
a = A("a")
k.z = a
k.v = i
n.z = j
n.v = i
n.y = a
h.z = j
j.z = h
i.z = c
i.v = a
c.z = k
c.v = a
e.z = h
e.v = i
e.y = c
a.z = i
a.v = c
assert n.v.z.z.v.txt == " | i" | class A:
def __init__(self, txt: str):
self.z: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.v: A = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
k = A("k")
n = B("n")
h = C("h")
j = C("j")
i = A("i")
c = A("c")
e = B("e")
a = A("a")
k.z = a
k.v = i
n.z = j
n.v = i
n.y = a
h.z = j
j.z = h
i.z = c
i.v = a
c.z = k
c.v = a
e.z = h
e.v = i
e.y = c
a.z = i
a.v = c
assert n.v.z.z.v.txt == "i" | 8 | 16 | 2 | 0.285714 | 3 | 2.666667 | 3 | 1 | 2 | 4 | 2 | 1 | 4 | 0.5 | 4 | 0.25 | 1 | 3 | 3 | 3 | 2 | 2 | 2 | 1 |
297 | class A:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: E = None
self.q: A = None
self.x: G = None
self.z: F = None
self.r: C = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.q: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: C = None
self.q: G = None
self.x: A = None
self.z: F = None
self.r: E = None
self.v: C = None
self.t: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: B = None
self.q: B = None
self.x: F = None
self.z: D = None
self.r: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: B = None
self.q: D = None
self.txt = txt
j = A("j")
k = B("k")
g = C("g")
d = D("d")
c = E("c")
n = F("n")
f = G("f")
e = G("e")
j.p = d
k.p = c
k.q = j
k.x = f
k.z = n
k.r = g
k.v = g
g.p = j
g.q = d
d.p = g
d.v = g
d.q = f
d.x = j
d.z = n
d.r = c
d.t = k
c.p = k
c.q = k
c.x = n
c.z = d
c.r = d
n.p = j
f.p = k
f.q = d
e.p = k
e.q = d
assert e.q.t.x.q.r.txt == " | c" | class A:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: E = None
self.q: A = None
self.x: G = None
self.z: F = None
self.r: C = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.q: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: C = None
self.q: G = None
self.x: A = None
self.z: F = None
self.r: E = None
self.v: C = None
self.t: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: B = None
self.q: B = None
self.x: F = None
self.z: D = None
self.r: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: B = None
self.q: D = None
self.txt = txt
j = A("j")
k = B("k")
g = C("g")
d = D("d")
c = E("c")
n = F("n")
f = G("f")
e = G("e")
j.p = d
k.p = c
k.q = j
k.x = f
k.z = n
k.r = g
k.v = g
g.p = j
g.q = d
d.p = g
d.v = g
d.q = f
d.x = j
d.z = n
d.r = c
d.t = k
c.p = k
c.q = k
c.x = n
c.z = d
c.r = d
n.p = j
f.p = k
f.q = d
e.p = k
e.q = d
assert e.q.t.x.q.r.txt == "c" | 8 | 22 | 2.75 | 0.392857 | 7 | 1.142857 | 7 | 1 | 3.428571 | 5 | 2 | 1 | 5 | 0.625 | 5 | 0.227273 | 1 | 3 | 3 | 3 | 4 | 2 | 1 | 2 |
298 | class A:
def __init__(self, txt: str):
self.r: G = None
self.p: G = None
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: F = None
self.p: D = None
self.u: B = None
self.y: E = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.p: C = None
self.u: F = None
self.y: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.p: A = None
self.u: A = None
self.y: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: A = None
self.p: D = None
self.u: C = None
self.y: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: B = None
self.p: B = None
self.u: E = None
self.y: B = None
self.t: C = None
self.z: B = None
self.w: E = None
self.txt = txt
k = A("k")
h = B("h")
g = C("g")
l = D("l")
n = E("n")
a = F("a")
e = G("e")
i = D("i")
k.r = e
k.p = e
k.u = a
h.r = e
g.r = a
g.p = l
g.u = h
g.y = n
g.t = k
l.r = e
l.p = g
l.u = a
l.y = k
n.r = g
n.y = g
n.p = k
n.u = k
a.r = k
a.p = i
a.u = g
a.y = h
e.r = h
e.p = h
e.y = h
e.z = h
e.u = n
e.w = n
e.t = g
i.r = e
i.p = g
i.u = a
i.y = k
assert i.p.u.r.txt == " | e" | class A:
def __init__(self, txt: str):
self.r: G = None
self.p: G = None
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: F = None
self.p: D = None
self.u: B = None
self.y: E = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.p: C = None
self.u: F = None
self.y: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.p: A = None
self.u: A = None
self.y: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: A = None
self.p: D = None
self.u: C = None
self.y: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: B = None
self.p: B = None
self.u: E = None
self.y: B = None
self.t: C = None
self.z: B = None
self.w: E = None
self.txt = txt
k = A("k")
h = B("h")
g = C("g")
l = D("l")
n = E("n")
a = F("a")
e = G("e")
i = D("i")
k.r = e
k.p = e
k.u = a
h.r = e
g.r = a
g.p = l
g.u = h
g.y = n
g.t = k
l.r = e
l.p = g
l.u = a
l.y = k
n.r = g
n.y = g
n.p = k
n.u = k
a.r = k
a.p = i
a.u = g
a.y = h
e.r = h
e.p = h
e.y = h
e.z = h
e.u = n
e.w = n
e.t = g
i.r = e
i.p = g
i.u = a
i.y = k
assert i.p.u.r.txt == "e" | 8 | 25 | 3.125 | 0.446429 | 7 | 1.142857 | 7 | 1 | 4 | 3 | 1 | 1 | 4 | 0.5 | 3 | 0.12 | 0 | null | null | null | 3 | 1 | 1 | 1 |
299 | class A:
def __init__(self, txt: str):
self.r: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: C = None
self.z: B = None
self.txt = txt
i = A("i")
a = B("a")
k = C("k")
m = A("m")
c = B("c")
h = A("h")
n = C("n")
f = B("f")
i.r = a
i.z = m
a.r = c
a.z = k
k.r = n
k.z = c
m.r = f
m.z = h
c.r = f
c.z = n
h.r = a
h.z = i
n.r = k
n.z = f
f.r = a
f.z = k
assert m.z.r.z.r.r.txt == " | k" | class A:
def __init__(self, txt: str):
self.r: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: C = None
self.z: B = None
self.txt = txt
i = A("i")
a = B("a")
k = C("k")
m = A("m")
c = B("c")
h = A("h")
n = C("n")
f = B("f")
i.r = a
i.z = m
a.r = c
a.z = k
k.r = n
k.z = c
m.r = f
m.z = h
c.r = f
c.z = n
h.r = a
h.z = i
n.r = k
n.z = f
f.r = a
f.z = k
assert m.z.r.z.r.r.txt == "k" | 8 | 16 | 2 | 0.285714 | 3 | 2.666667 | 2 | 2 | 2 | 5 | 2 | 1 | 5 | 0.625 | 5 | 0.3125 | 1 | 2 | 2 | 2 | 2 | 3 | 2 | 1 |