id
int64 0
6k
| prompt
stringlengths 265
1.96k
| answer
stringclasses 10
values | pythoncode
stringlengths 267
1.96k
| depth0
stringclasses 10
values | depth1
stringclasses 10
values | depth2
stringclasses 10
values | depth3
stringclasses 10
values | depth4
stringclasses 11
values | depth5
stringclasses 11
values | depth6
stringclasses 11
values | depth7
stringclasses 11
values | num_nodes
int64 3
7
| num_edges
int64 3
29
| num_classes
int64 2
7
| path_length
int64 3
7
| num_cycle
int64 0
6
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
5,300 |
class A:
def __init__(self, txt: str):
self.p: F = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.s: A = None
self.u: D = None
self.o: E = None
self.p: D = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.o: B = None
self.v: E = None
self.p: B = None
self.z: A = None
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.s: B = None
self.p: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: D = None
self.o: F = None
self.x: D = None
self.t: C = None
self.z: B = None
self.q: B = None
self.s: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: C = None
self.v: G = None
self.p: C = None
self.o: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: D = None
self.w: E = None
self.v: C = None
self.txt = txt
d = A("d")
i = B("i")
g = C("g")
j = D("j")
f = E("f")
e = F("e")
c = G("c")
d.p = e
d.y = f
i.w = g
i.s = d
i.u = j
i.p = j
i.v = j
i.o = f
g.s = i
g.o = i
g.p = i
g.u = i
g.v = f
g.z = d
j.t = i
j.s = i
j.p = c
f.y = j
f.x = j
f.o = e
f.t = g
f.z = i
f.q = i
f.s = c
e.u = g
e.p = g
e.v = c
e.o = c
c.y = j
c.w = f
c.v = g
assert j.p.y.s.o.t.z.y.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.p: F = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.s: A = None
self.u: D = None
self.o: E = None
self.p: D = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.o: B = None
self.v: E = None
self.p: B = None
self.z: A = None
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.s: B = None
self.p: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: D = None
self.o: F = None
self.x: D = None
self.t: C = None
self.z: B = None
self.q: B = None
self.s: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: C = None
self.v: G = None
self.p: C = None
self.o: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: D = None
self.w: E = None
self.v: C = None
self.txt = txt
d = A("d")
i = B("i")
g = C("g")
j = D("j")
f = E("f")
e = F("e")
c = G("c")
d.p = e
d.y = f
i.w = g
i.s = d
i.u = j
i.p = j
i.v = j
i.o = f
g.s = i
g.o = i
g.p = i
g.u = i
g.v = f
g.z = d
j.t = i
j.s = i
j.p = c
f.y = j
f.x = j
f.o = e
f.t = g
f.z = i
f.q = i
f.s = c
e.u = g
e.p = g
e.v = c
e.o = c
c.y = j
c.w = f
c.v = g
assert j.p.y.s.o.t.z.y.txt == "f"
|
j
|
c
|
j
|
i
|
f
|
g
|
d
|
f
| 7 | 21 | 7 | 7 | 2 |
5,301 |
class A:
def __init__(self, txt: str):
self.t: C = None
self.r: G = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: D = None
self.x: G = None
self.y: E = None
self.w: F = None
self.v: C = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.u: B = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: A = None
self.r: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: F = None
self.t: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: B = None
self.r: C = None
self.w: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: C = None
self.w: F = None
self.t: C = None
self.u: C = None
self.p: C = None
self.v: D = None
self.txt = txt
b = A("b")
j = B("j")
i = C("i")
d = D("d")
a = E("a")
c = F("c")
h = G("h")
b.t = i
b.o = i
b.r = h
j.q = d
j.x = h
j.y = a
j.w = c
j.v = i
j.s = i
i.o = d
i.p = d
i.u = j
d.p = b
d.r = b
a.q = c
a.t = h
c.u = j
c.r = i
c.w = h
h.q = i
h.t = i
h.u = i
h.p = i
h.w = c
h.v = d
assert c.u.s.p.r.r.txt == "
|
h"
|
class A:
def __init__(self, txt: str):
self.t: C = None
self.r: G = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: D = None
self.x: G = None
self.y: E = None
self.w: F = None
self.v: C = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.u: B = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: A = None
self.r: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: F = None
self.t: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: B = None
self.r: C = None
self.w: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: C = None
self.w: F = None
self.t: C = None
self.u: C = None
self.p: C = None
self.v: D = None
self.txt = txt
b = A("b")
j = B("j")
i = C("i")
d = D("d")
a = E("a")
c = F("c")
h = G("h")
b.t = i
b.o = i
b.r = h
j.q = d
j.x = h
j.y = a
j.w = c
j.v = i
j.s = i
i.o = d
i.p = d
i.u = j
d.p = b
d.r = b
a.q = c
a.t = h
c.u = j
c.r = i
c.w = h
h.q = i
h.t = i
h.u = i
h.p = i
h.w = c
h.v = d
assert c.u.s.p.r.r.txt == "h"
|
c
|
j
|
i
|
d
|
b
|
h
|
x
|
x
| 7 | 18 | 7 | 5 | 0 |
5,302 |
class A:
def __init__(self, txt: str):
self.q: D = None
self.t: G = None
self.w: F = None
self.r: D = None
self.o: E = None
self.p: G = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.x: C = None
self.y: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.o: F = None
self.y: E = None
self.q: E = None
self.s: F = None
self.u: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.o: C = None
self.x: G = None
self.v: C = None
self.w: E = None
self.z: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: C = None
self.t: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: B = None
self.z: E = None
self.x: E = None
self.txt = txt
d = A("d")
i = B("i")
j = C("j")
c = D("c")
h = E("h")
g = F("g")
a = G("a")
d.q = c
d.r = c
d.t = a
d.p = a
d.w = g
d.o = h
d.y = j
i.q = d
i.x = j
i.y = g
j.x = h
j.y = h
j.q = h
j.u = h
j.o = g
j.s = g
c.y = h
c.w = h
c.o = j
c.v = j
c.x = a
c.z = a
h.t = c
g.y = j
g.t = c
a.t = i
a.z = h
a.x = h
assert a.x.t.w.t.o.txt == "
|
j"
|
class A:
def __init__(self, txt: str):
self.q: D = None
self.t: G = None
self.w: F = None
self.r: D = None
self.o: E = None
self.p: G = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.x: C = None
self.y: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.o: F = None
self.y: E = None
self.q: E = None
self.s: F = None
self.u: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.o: C = None
self.x: G = None
self.v: C = None
self.w: E = None
self.z: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: C = None
self.t: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: B = None
self.z: E = None
self.x: E = None
self.txt = txt
d = A("d")
i = B("i")
j = C("j")
c = D("c")
h = E("h")
g = F("g")
a = G("a")
d.q = c
d.r = c
d.t = a
d.p = a
d.w = g
d.o = h
d.y = j
i.q = d
i.x = j
i.y = g
j.x = h
j.y = h
j.q = h
j.u = h
j.o = g
j.s = g
c.y = h
c.w = h
c.o = j
c.v = j
c.x = a
c.z = a
h.t = c
g.y = j
g.t = c
a.t = i
a.z = h
a.x = h
assert a.x.t.w.t.o.txt == "j"
|
a
|
h
|
c
|
h
|
c
|
j
|
x
|
x
| 7 | 18 | 7 | 5 | 2 |
5,303 |
class A:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.q: D = None
self.u: F = None
self.t: D = None
self.p: E = None
self.s: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.u: B = None
self.z: F = None
self.o: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.t: F = None
self.z: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
e = A("e")
b = B("b")
j = C("j")
g = D("g")
i = E("i")
d = F("d")
a = G("a")
e.o = j
b.r = j
b.q = g
b.t = g
b.u = d
b.p = i
b.s = i
j.t = e
j.u = b
j.z = d
j.o = d
g.s = d
g.t = d
g.z = d
i.v = a
d.r = b
a.x = j
assert b.u.r.r.u.txt == "
|
b"
|
class A:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.q: D = None
self.u: F = None
self.t: D = None
self.p: E = None
self.s: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.u: B = None
self.z: F = None
self.o: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.t: F = None
self.z: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
e = A("e")
b = B("b")
j = C("j")
g = D("g")
i = E("i")
d = F("d")
a = G("a")
e.o = j
b.r = j
b.q = g
b.t = g
b.u = d
b.p = i
b.s = i
j.t = e
j.u = b
j.z = d
j.o = d
g.s = d
g.t = d
g.z = d
i.v = a
d.r = b
a.x = j
assert b.u.r.r.u.txt == "b"
|
b
|
d
|
b
|
j
|
b
|
x
|
x
|
x
| 7 | 12 | 7 | 4 | 2 |
5,304 |
class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: D = None
self.p: A = None
self.o: C = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.z: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: F = None
self.w: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: D = None
self.s: D = None
self.txt = txt
c = A("c")
d = B("d")
a = C("a")
h = D("h")
g = E("g")
e = F("e")
f = G("f")
c.r = d
d.w = h
d.p = c
d.z = c
d.o = a
a.p = g
h.q = d
h.z = f
g.y = e
g.w = c
e.r = h
f.w = h
f.s = h
assert g.w.r.w.z.w.z.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: D = None
self.p: A = None
self.o: C = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.z: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: F = None
self.w: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: D = None
self.s: D = None
self.txt = txt
c = A("c")
d = B("d")
a = C("a")
h = D("h")
g = E("g")
e = F("e")
f = G("f")
c.r = d
d.w = h
d.p = c
d.z = c
d.o = a
a.p = g
h.q = d
h.z = f
g.y = e
g.w = c
e.r = h
f.w = h
f.s = h
assert g.w.r.w.z.w.z.txt == "f"
|
g
|
c
|
d
|
h
|
f
|
h
|
f
|
x
| 7 | 11 | 7 | 6 | 2 |
5,305 |
class A:
def __init__(self, txt: str):
self.t: D = None
self.w: F = None
self.s: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: F = None
self.r: C = None
self.u: C = None
self.v: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: C = None
self.q: G = None
self.z: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: G = None
self.s: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.p: D = None
self.x: G = None
self.s: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
j = A("j")
d = B("d")
a = C("a")
i = D("i")
e = E("e")
h = F("h")
c = G("c")
j.t = i
j.w = h
j.s = h
d.t = h
d.r = a
d.u = a
d.v = c
a.z = i
a.y = e
i.s = a
i.q = c
i.z = d
e.z = i
e.y = c
e.s = c
h.o = i
h.p = i
h.s = i
h.x = c
c.o = d
assert i.s.z.z.r.y.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.t: D = None
self.w: F = None
self.s: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: F = None
self.r: C = None
self.u: C = None
self.v: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: C = None
self.q: G = None
self.z: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.y: G = None
self.s: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.p: D = None
self.x: G = None
self.s: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
j = A("j")
d = B("d")
a = C("a")
i = D("i")
e = E("e")
h = F("h")
c = G("c")
j.t = i
j.w = h
j.s = h
d.t = h
d.r = a
d.u = a
d.v = c
a.z = i
a.y = e
i.s = a
i.q = c
i.z = d
e.z = i
e.y = c
e.s = c
h.o = i
h.p = i
h.s = i
h.x = c
c.o = d
assert i.s.z.z.r.y.txt == "e"
|
i
|
a
|
i
|
d
|
a
|
e
|
x
|
x
| 7 | 15 | 7 | 5 | 2 |
5,306 |
class A:
def __init__(self, txt: str):
self.r: B = None
self.v: F = None
self.o: F = None
self.p: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: D = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.p: B = None
self.s: E = None
self.w: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: F = None
self.v: B = None
self.s: A = None
self.q: F = None
self.u: G = None
self.o: E = None
self.w: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: B = None
self.x: B = None
self.r: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: A = None
self.x: A = None
self.u: D = None
self.v: A = None
self.t: B = None
self.q: A = None
self.txt = txt
a = A("a")
g = B("g")
c = C("c")
j = D("j")
h = E("h")
b = F("b")
f = G("f")
a.r = g
a.v = b
a.o = b
a.p = b
g.q = j
g.w = c
c.t = g
c.p = g
c.s = h
c.w = f
j.x = b
j.q = b
j.v = g
j.w = g
j.s = a
j.u = f
j.o = h
h.p = b
b.s = g
b.x = g
b.r = c
f.r = a
f.x = a
f.v = a
f.q = a
f.u = j
f.t = g
assert c.s.p.r.w.u.txt == "
|
j"
|
class A:
def __init__(self, txt: str):
self.r: B = None
self.v: F = None
self.o: F = None
self.p: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: D = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.p: B = None
self.s: E = None
self.w: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: F = None
self.v: B = None
self.s: A = None
self.q: F = None
self.u: G = None
self.o: E = None
self.w: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: B = None
self.x: B = None
self.r: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: A = None
self.x: A = None
self.u: D = None
self.v: A = None
self.t: B = None
self.q: A = None
self.txt = txt
a = A("a")
g = B("g")
c = C("c")
j = D("j")
h = E("h")
b = F("b")
f = G("f")
a.r = g
a.v = b
a.o = b
a.p = b
g.q = j
g.w = c
c.t = g
c.p = g
c.s = h
c.w = f
j.x = b
j.q = b
j.v = g
j.w = g
j.s = a
j.u = f
j.o = h
h.p = b
b.s = g
b.x = g
b.r = c
f.r = a
f.x = a
f.v = a
f.q = a
f.u = j
f.t = g
assert c.s.p.r.w.u.txt == "j"
|
c
|
h
|
b
|
c
|
f
|
j
|
x
|
x
| 7 | 18 | 7 | 5 | 1 |
5,307 |
class A:
def __init__(self, txt: str):
self.y: C = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: E = None
self.z: D = None
self.p: F = None
self.u: C = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.w: F = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: E = None
self.w: F = None
self.v: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.u: G = None
self.s: F = None
self.y: F = None
self.r: C = None
self.z: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.t: B = None
self.r: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: F = None
self.txt = txt
i = A("i")
f = B("f")
c = C("c")
h = D("h")
g = E("g")
d = F("d")
a = G("a")
i.y = c
i.t = f
f.v = g
f.z = h
f.p = d
f.u = c
f.x = c
c.r = f
c.x = f
c.w = d
h.r = g
h.w = d
h.v = f
g.t = c
g.r = c
g.u = a
g.s = d
g.y = d
g.z = i
d.z = c
d.t = f
d.r = g
a.q = d
assert i.t.x.x.z.txt == "
|
h"
|
class A:
def __init__(self, txt: str):
self.y: C = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: E = None
self.z: D = None
self.p: F = None
self.u: C = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.w: F = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: E = None
self.w: F = None
self.v: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.u: G = None
self.s: F = None
self.y: F = None
self.r: C = None
self.z: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.t: B = None
self.r: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: F = None
self.txt = txt
i = A("i")
f = B("f")
c = C("c")
h = D("h")
g = E("g")
d = F("d")
a = G("a")
i.y = c
i.t = f
f.v = g
f.z = h
f.p = d
f.u = c
f.x = c
c.r = f
c.x = f
c.w = d
h.r = g
h.w = d
h.v = f
g.t = c
g.r = c
g.u = a
g.s = d
g.y = d
g.z = i
d.z = c
d.t = f
d.r = g
a.q = d
assert i.t.x.x.z.txt == "h"
|
i
|
f
|
c
|
f
|
h
|
x
|
x
|
x
| 7 | 19 | 7 | 4 | 1 |
5,308 |
class A:
def __init__(self, txt: str):
self.y: B = None
self.u: D = None
self.w: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.w: D = None
self.t: A = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: A = None
self.u: B = None
self.w: B = None
self.t: A = None
self.q: G = None
self.s: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: G = None
self.z: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: B = None
self.x: B = None
self.o: E = None
self.q: B = None
self.r: C = None
self.w: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: C = None
self.y: F = None
self.r: A = None
self.x: F = None
self.txt = txt
b = A("b")
e = B("e")
c = C("c")
a = D("a")
i = E("i")
h = F("h")
g = G("g")
b.y = e
b.u = a
b.w = h
e.u = a
e.w = a
e.t = b
e.z = b
c.v = e
a.p = b
a.t = b
a.u = e
a.w = e
a.q = g
a.s = c
i.u = g
i.z = g
h.v = e
h.x = e
h.q = e
h.o = i
h.r = c
h.w = c
g.q = c
g.y = h
g.x = h
g.r = b
assert a.p.y.t.w.v.w.txt == "
|
a"
|
class A:
def __init__(self, txt: str):
self.y: B = None
self.u: D = None
self.w: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.w: D = None
self.t: A = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: A = None
self.u: B = None
self.w: B = None
self.t: A = None
self.q: G = None
self.s: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: G = None
self.z: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: B = None
self.x: B = None
self.o: E = None
self.q: B = None
self.r: C = None
self.w: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: C = None
self.y: F = None
self.r: A = None
self.x: F = None
self.txt = txt
b = A("b")
e = B("e")
c = C("c")
a = D("a")
i = E("i")
h = F("h")
g = G("g")
b.y = e
b.u = a
b.w = h
e.u = a
e.w = a
e.t = b
e.z = b
c.v = e
a.p = b
a.t = b
a.u = e
a.w = e
a.q = g
a.s = c
i.u = g
i.z = g
h.v = e
h.x = e
h.q = e
h.o = i
h.r = c
h.w = c
g.q = c
g.y = h
g.x = h
g.r = b
assert a.p.y.t.w.v.w.txt == "a"
|
a
|
b
|
e
|
b
|
h
|
e
|
a
|
x
| 7 | 17 | 7 | 6 | 3 |
5,309 |
class A:
def __init__(self, txt: str):
self.t: E = None
self.z: D = None
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: F = None
self.v: B = None
self.z: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.y: F = None
self.s: C = None
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: D = None
self.z: G = None
self.v: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: B = None
self.q: F = None
self.w: C = None
self.r: F = None
self.x: A = None
self.o: C = None
self.txt = txt
h = A("h")
j = B("j")
e = C("e")
f = D("f")
c = E("c")
i = F("i")
a = G("a")
h.t = c
h.u = c
h.z = f
j.z = h
j.v = h
e.q = i
e.z = i
e.v = j
f.p = a
c.t = f
c.y = i
c.s = e
c.o = j
i.u = f
i.z = a
i.v = c
a.u = j
a.q = i
a.r = i
a.w = e
a.o = e
a.x = h
assert f.p.r.z.x.txt == "
|
h"
|
class A:
def __init__(self, txt: str):
self.t: E = None
self.z: D = None
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: F = None
self.v: B = None
self.z: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.y: F = None
self.s: C = None
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: D = None
self.z: G = None
self.v: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: B = None
self.q: F = None
self.w: C = None
self.r: F = None
self.x: A = None
self.o: C = None
self.txt = txt
h = A("h")
j = B("j")
e = C("e")
f = D("f")
c = E("c")
i = F("i")
a = G("a")
h.t = c
h.u = c
h.z = f
j.z = h
j.v = h
e.q = i
e.z = i
e.v = j
f.p = a
c.t = f
c.y = i
c.s = e
c.o = j
i.u = f
i.z = a
i.v = c
a.u = j
a.q = i
a.r = i
a.w = e
a.o = e
a.x = h
assert f.p.r.z.x.txt == "h"
|
f
|
a
|
i
|
a
|
h
|
x
|
x
|
x
| 7 | 17 | 7 | 4 | 1 |
5,310 |
class A:
def __init__(self, txt: str):
self.t: G = None
self.s: F = None
self.o: F = None
self.w: D = None
self.r: B = None
self.u: D = None
self.q: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.v: C = None
self.p: F = None
self.x: D = None
self.o: D = None
self.t: E = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.v: G = None
self.r: G = None
self.s: A = None
self.w: B = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.o: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.v: C = None
self.x: B = None
self.q: C = None
self.w: F = None
self.o: G = None
self.u: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: D = None
self.s: A = None
self.x: G = None
self.y: G = None
self.v: C = None
self.w: D = None
self.t: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: A = None
self.s: B = None
self.q: C = None
self.x: E = None
self.r: A = None
self.o: A = None
self.txt = txt
d = A("d")
a = B("a")
g = C("g")
b = D("b")
h = E("h")
i = F("i")
f = G("f")
d.t = f
d.s = i
d.o = i
d.w = b
d.u = b
d.r = a
d.q = h
a.w = g
a.v = g
a.p = i
a.u = i
a.x = b
a.o = b
a.t = h
g.t = b
g.z = b
g.v = f
g.r = f
g.s = d
g.w = a
b.t = d
b.o = i
h.t = b
h.v = g
h.q = g
h.x = a
h.w = i
h.o = f
h.u = f
i.q = b
i.w = b
i.s = d
i.t = d
i.x = f
i.y = f
i.v = g
f.t = d
f.r = d
f.o = d
f.s = a
f.q = g
f.x = h
assert f.t.r.t.t.t.txt == "
|
d"
|
class A:
def __init__(self, txt: str):
self.t: G = None
self.s: F = None
self.o: F = None
self.w: D = None
self.r: B = None
self.u: D = None
self.q: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.v: C = None
self.p: F = None
self.x: D = None
self.o: D = None
self.t: E = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.v: G = None
self.r: G = None
self.s: A = None
self.w: B = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.o: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.v: C = None
self.x: B = None
self.q: C = None
self.w: F = None
self.o: G = None
self.u: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: D = None
self.s: A = None
self.x: G = None
self.y: G = None
self.v: C = None
self.w: D = None
self.t: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: A = None
self.s: B = None
self.q: C = None
self.x: E = None
self.r: A = None
self.o: A = None
self.txt = txt
d = A("d")
a = B("a")
g = C("g")
b = D("b")
h = E("h")
i = F("i")
f = G("f")
d.t = f
d.s = i
d.o = i
d.w = b
d.u = b
d.r = a
d.q = h
a.w = g
a.v = g
a.p = i
a.u = i
a.x = b
a.o = b
a.t = h
g.t = b
g.z = b
g.v = f
g.r = f
g.s = d
g.w = a
b.t = d
b.o = i
h.t = b
h.v = g
h.q = g
h.x = a
h.w = i
h.o = f
h.u = f
i.q = b
i.w = b
i.s = d
i.t = d
i.x = f
i.y = f
i.v = g
f.t = d
f.r = d
f.o = d
f.s = a
f.q = g
f.x = h
assert f.t.r.t.t.t.txt == "d"
|
f
|
d
|
a
|
h
|
b
|
d
|
x
|
x
| 7 | 28 | 7 | 5 | 1 |
5,311 |
class A:
def __init__(self, txt: str):
self.p: E = None
self.s: G = None
self.x: D = None
self.o: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: F = None
self.q: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: E = None
self.q: G = None
self.x: A = None
self.w: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: A = None
self.s: A = None
self.z: F = None
self.x: E = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: B = None
self.v: D = 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.q: A = None
self.x: B = None
self.w: C = None
self.u: A = None
self.r: C = None
self.s: B = None
self.txt = txt
i = A("i")
f = B("f")
c = C("c")
j = D("j")
e = E("e")
g = F("g")
a = G("a")
i.p = e
i.s = a
i.o = a
i.x = j
f.r = g
f.q = g
c.s = e
c.w = e
c.q = a
c.x = i
j.o = i
j.s = i
j.z = g
j.x = e
j.t = e
e.o = f
e.v = j
g.s = i
a.q = i
a.u = i
a.x = f
a.s = f
a.w = c
a.r = c
assert g.s.o.r.q.u.txt == "
|
i"
|
class A:
def __init__(self, txt: str):
self.p: E = None
self.s: G = None
self.x: D = None
self.o: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: F = None
self.q: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: E = None
self.q: G = None
self.x: A = None
self.w: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: A = None
self.s: A = None
self.z: F = None
self.x: E = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: B = None
self.v: D = 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.q: A = None
self.x: B = None
self.w: C = None
self.u: A = None
self.r: C = None
self.s: B = None
self.txt = txt
i = A("i")
f = B("f")
c = C("c")
j = D("j")
e = E("e")
g = F("g")
a = G("a")
i.p = e
i.s = a
i.o = a
i.x = j
f.r = g
f.q = g
c.s = e
c.w = e
c.q = a
c.x = i
j.o = i
j.s = i
j.z = g
j.x = e
j.t = e
e.o = f
e.v = j
g.s = i
a.q = i
a.u = i
a.x = f
a.s = f
a.w = c
a.r = c
assert g.s.o.r.q.u.txt == "i"
|
g
|
i
|
a
|
c
|
a
|
i
|
x
|
x
| 7 | 16 | 7 | 5 | 2 |
5,312 |
class A:
def __init__(self, txt: str):
self.s: C = None
self.x: D = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: D = None
self.x: C = None
self.s: A = None
self.t: E = None
self.u: C = None
self.r: F = 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.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: C = None
self.q: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: B = None
self.t: D = None
self.o: D = None
self.w: C = None
self.z: E = None
self.y: A = None
self.v: F = None
self.txt = txt
a = A("a")
e = B("e")
j = C("j")
h = D("h")
b = E("b")
g = F("g")
d = G("d")
a.s = j
a.x = h
a.y = e
e.w = h
e.x = j
e.u = j
e.s = a
e.t = b
e.r = g
j.y = h
h.s = b
b.p = d
g.o = j
g.q = h
d.u = e
d.t = h
d.o = h
d.w = j
d.z = b
d.y = a
d.v = g
assert h.s.p.y.y.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.s: C = None
self.x: D = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: D = None
self.x: C = None
self.s: A = None
self.t: E = None
self.u: C = None
self.r: F = 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.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: C = None
self.q: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: B = None
self.t: D = None
self.o: D = None
self.w: C = None
self.z: E = None
self.y: A = None
self.v: F = None
self.txt = txt
a = A("a")
e = B("e")
j = C("j")
h = D("h")
b = E("b")
g = F("g")
d = G("d")
a.s = j
a.x = h
a.y = e
e.w = h
e.x = j
e.u = j
e.s = a
e.t = b
e.r = g
j.y = h
h.s = b
b.p = d
g.o = j
g.q = h
d.u = e
d.t = h
d.o = h
d.w = j
d.z = b
d.y = a
d.v = g
assert h.s.p.y.y.txt == "e"
|
h
|
b
|
d
|
a
|
e
|
x
|
x
|
x
| 7 | 19 | 7 | 4 | 0 |
5,313 |
class A:
def __init__(self, txt: str):
self.x: D = None
self.w: D = None
self.u: F = None
self.t: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.v: F = None
self.p: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: F = None
self.s: A = None
self.o: B = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.q: F = None
self.w: B = None
self.y: C = None
self.r: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: G = None
self.x: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: E = None
self.z: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: D = None
self.s: D = None
self.txt = txt
b = A("b")
e = B("e")
d = C("d")
g = D("g")
c = E("c")
a = F("a")
f = G("f")
b.x = g
b.w = g
b.u = a
b.t = a
e.z = c
e.p = c
e.v = a
d.w = a
d.s = b
d.o = e
d.p = g
g.s = a
g.q = a
g.w = e
g.y = d
g.r = d
c.o = f
c.x = f
a.p = c
a.z = b
f.x = g
f.s = g
assert a.z.w.y.o.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.x: D = None
self.w: D = None
self.u: F = None
self.t: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.v: F = None
self.p: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: F = None
self.s: A = None
self.o: B = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.q: F = None
self.w: B = None
self.y: C = None
self.r: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: G = None
self.x: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: E = None
self.z: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: D = None
self.s: D = None
self.txt = txt
b = A("b")
e = B("e")
d = C("d")
g = D("g")
c = E("c")
a = F("a")
f = G("f")
b.x = g
b.w = g
b.u = a
b.t = a
e.z = c
e.p = c
e.v = a
d.w = a
d.s = b
d.o = e
d.p = g
g.s = a
g.q = a
g.w = e
g.y = d
g.r = d
c.o = f
c.x = f
a.p = c
a.z = b
f.x = g
f.s = g
assert a.z.w.y.o.txt == "e"
|
a
|
b
|
g
|
d
|
e
|
x
|
x
|
x
| 7 | 15 | 7 | 4 | 0 |
5,314 |
class A:
def __init__(self, txt: str):
self.s: G = None
self.y: B = None
self.v: G = None
self.t: D = None
self.u: D = None
self.r: C = None
self.x: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.y: F = None
self.u: D = None
self.z: G = None
self.q: G = None
self.o: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.o: A = None
self.v: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: G = None
self.r: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: D = None
self.o: A = None
self.x: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: D = None
self.t: A = None
self.v: C = None
self.x: A = None
self.txt = txt
d = A("d")
j = B("j")
e = C("e")
b = D("b")
c = E("c")
g = F("g")
f = G("f")
d.s = f
d.v = f
d.x = f
d.y = j
d.t = b
d.u = b
d.r = e
j.x = b
e.v = d
e.y = g
e.u = b
e.z = f
e.q = f
e.o = f
b.z = c
b.o = d
b.v = g
c.o = f
c.r = j
g.q = b
g.o = d
g.x = f
f.p = b
f.t = d
f.x = d
f.v = e
assert j.x.v.x.t.u.v.txt == "
|
g"
|
class A:
def __init__(self, txt: str):
self.s: G = None
self.y: B = None
self.v: G = None
self.t: D = None
self.u: D = None
self.r: C = None
self.x: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.y: F = None
self.u: D = None
self.z: G = None
self.q: G = None
self.o: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.o: A = None
self.v: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: G = None
self.r: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: D = None
self.o: A = None
self.x: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: D = None
self.t: A = None
self.v: C = None
self.x: A = None
self.txt = txt
d = A("d")
j = B("j")
e = C("e")
b = D("b")
c = E("c")
g = F("g")
f = G("f")
d.s = f
d.v = f
d.x = f
d.y = j
d.t = b
d.u = b
d.r = e
j.x = b
e.v = d
e.y = g
e.u = b
e.z = f
e.q = f
e.o = f
b.z = c
b.o = d
b.v = g
c.o = f
c.r = j
g.q = b
g.o = d
g.x = f
f.p = b
f.t = d
f.x = d
f.v = e
assert j.x.v.x.t.u.v.txt == "g"
|
j
|
b
|
g
|
f
|
d
|
b
|
g
|
x
| 7 | 20 | 7 | 6 | 2 |
5,315 |
class A:
def __init__(self, txt: str):
self.q: B = None
self.t: B = None
self.y: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: F = None
self.o: F = None
self.u: G = None
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.u: F = None
self.q: E = None
self.v: F = None
self.o: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.t: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: F = None
self.o: D = None
self.q: A = None
self.p: B = None
self.s: G = None
self.v: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: C = None
self.x: G = None
self.y: C = None
self.w: C = None
self.v: E = None
self.p: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: E = None
self.r: F = None
self.y: B = None
self.x: D = None
self.v: E = None
self.z: B = None
self.txt = txt
c = A("c")
j = B("j")
h = C("h")
i = D("i")
f = E("f")
e = F("e")
g = G("g")
c.q = j
c.t = j
c.y = e
j.y = e
j.o = e
j.u = g
j.r = f
h.w = j
h.u = e
h.v = e
h.q = f
h.o = f
i.x = c
i.t = g
f.t = e
f.o = i
f.q = c
f.p = j
f.s = g
f.v = g
e.u = h
e.y = h
e.w = h
e.x = g
e.v = f
e.p = c
g.s = f
g.v = f
g.r = e
g.y = j
g.z = j
g.x = i
assert e.y.w.u.s.p.txt == "
|
j"
|
class A:
def __init__(self, txt: str):
self.q: B = None
self.t: B = None
self.y: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: F = None
self.o: F = None
self.u: G = None
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.u: F = None
self.q: E = None
self.v: F = None
self.o: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.t: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: F = None
self.o: D = None
self.q: A = None
self.p: B = None
self.s: G = None
self.v: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: C = None
self.x: G = None
self.y: C = None
self.w: C = None
self.v: E = None
self.p: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: E = None
self.r: F = None
self.y: B = None
self.x: D = None
self.v: E = None
self.z: B = None
self.txt = txt
c = A("c")
j = B("j")
h = C("h")
i = D("i")
f = E("f")
e = F("e")
g = G("g")
c.q = j
c.t = j
c.y = e
j.y = e
j.o = e
j.u = g
j.r = f
h.w = j
h.u = e
h.v = e
h.q = f
h.o = f
i.x = c
i.t = g
f.t = e
f.o = i
f.q = c
f.p = j
f.s = g
f.v = g
e.u = h
e.y = h
e.w = h
e.x = g
e.v = f
e.p = c
g.s = f
g.v = f
g.r = e
g.y = j
g.z = j
g.x = i
assert e.y.w.u.s.p.txt == "j"
|
e
|
h
|
j
|
g
|
f
|
j
|
x
|
x
| 7 | 23 | 7 | 5 | 1 |
5,316 |
class A:
def __init__(self, txt: str):
self.u: B = None
self.q: E = None
self.w: D = None
self.v: G = None
self.z: D = None
self.p: B = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: F = None
self.o: F = None
self.p: E = None
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.p: D = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: F = None
self.r: E = None
self.t: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.q: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: C = None
self.v: C = None
self.x: D = None
self.q: E = None
self.o: C = None
self.z: B = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: A = None
self.w: E = None
self.txt = txt
i = A("i")
e = B("e")
g = C("g")
f = D("f")
d = E("d")
b = F("b")
h = G("h")
i.u = e
i.p = e
i.q = d
i.w = f
i.z = f
i.v = h
i.o = g
e.w = b
e.o = b
e.p = d
e.u = i
g.s = i
g.p = f
g.w = e
f.w = b
f.t = b
f.r = d
d.v = b
d.q = f
b.r = g
b.v = g
b.o = g
b.x = f
b.q = d
b.z = e
b.y = i
h.q = i
h.w = d
assert i.u.p.q.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.u: B = None
self.q: E = None
self.w: D = None
self.v: G = None
self.z: D = None
self.p: B = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: F = None
self.o: F = None
self.p: E = None
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.p: D = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: F = None
self.r: E = None
self.t: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.q: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: C = None
self.v: C = None
self.x: D = None
self.q: E = None
self.o: C = None
self.z: B = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: A = None
self.w: E = None
self.txt = txt
i = A("i")
e = B("e")
g = C("g")
f = D("f")
d = E("d")
b = F("b")
h = G("h")
i.u = e
i.p = e
i.q = d
i.w = f
i.z = f
i.v = h
i.o = g
e.w = b
e.o = b
e.p = d
e.u = i
g.s = i
g.p = f
g.w = e
f.w = b
f.t = b
f.r = d
d.v = b
d.q = f
b.r = g
b.v = g
b.o = g
b.x = f
b.q = d
b.z = e
b.y = i
h.q = i
h.w = d
assert i.u.p.q.txt == "f"
|
i
|
e
|
d
|
f
|
x
|
x
|
x
|
x
| 7 | 22 | 7 | 3 | 0 |
5,317 |
class A:
def __init__(self, txt: str):
self.r: E = None
self.y: E = None
self.s: F = None
self.q: E = None
self.o: B = None
self.u: D = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: E = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.v: A = None
self.t: A = None
self.w: A = None
self.p: D = None
self.r: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.v: A = None
self.u: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: D = None
self.w: A = None
self.t: F = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: D = None
self.o: D = None
self.p: A = None
self.t: A = None
self.txt = txt
a = A("a")
b = B("b")
i = C("i")
g = D("g")
h = E("h")
d = F("d")
f = G("f")
a.r = h
a.y = h
a.q = h
a.s = d
a.o = b
a.z = b
a.u = g
b.r = h
b.u = d
i.z = a
i.v = a
i.t = a
i.w = a
i.p = g
i.r = g
g.q = a
g.v = a
g.u = f
h.o = g
h.w = a
h.y = a
h.t = d
d.t = b
f.s = g
f.o = g
f.p = a
f.t = a
assert d.t.r.w.z.r.t.txt == "
|
d"
|
class A:
def __init__(self, txt: str):
self.r: E = None
self.y: E = None
self.s: F = None
self.q: E = None
self.o: B = None
self.u: D = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: E = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.v: A = None
self.t: A = None
self.w: A = None
self.p: D = None
self.r: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.v: A = None
self.u: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: D = None
self.w: A = None
self.t: F = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: D = None
self.o: D = None
self.p: A = None
self.t: A = None
self.txt = txt
a = A("a")
b = B("b")
i = C("i")
g = D("g")
h = E("h")
d = F("d")
f = G("f")
a.r = h
a.y = h
a.q = h
a.s = d
a.o = b
a.z = b
a.u = g
b.r = h
b.u = d
i.z = a
i.v = a
i.t = a
i.w = a
i.p = g
i.r = g
g.q = a
g.v = a
g.u = f
h.o = g
h.w = a
h.y = a
h.t = d
d.t = b
f.s = g
f.o = g
f.p = a
f.t = a
assert d.t.r.w.z.r.t.txt == "d"
|
d
|
b
|
h
|
a
|
b
|
h
|
d
|
x
| 7 | 16 | 7 | 6 | 3 |
5,318 |
class A:
def __init__(self, txt: str):
self.s: B = None
self.w: E = None
self.o: B = None
self.p: C = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: G = None
self.o: D = None
self.w: E = None
self.u: D = None
self.x: D = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: F = None
self.z: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: A = None
self.p: F = None
self.t: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: C = None
self.w: C = None
self.x: D = None
self.s: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: D = None
self.v: B = None
self.q: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: B = None
self.p: B = None
self.v: D = None
self.w: B = None
self.txt = txt
i = A("i")
g = B("g")
c = C("c")
e = D("e")
h = E("h")
b = F("b")
a = G("a")
i.s = g
i.o = g
i.w = h
i.p = c
i.u = c
g.s = a
g.o = e
g.u = e
g.x = e
g.w = h
g.v = i
c.t = b
c.z = a
e.u = i
e.p = b
e.t = a
h.u = c
h.w = c
h.x = e
h.s = i
b.s = e
b.v = g
b.q = a
a.u = g
a.p = g
a.w = g
a.v = e
assert c.t.q.p.v.txt == "
|
i"
|
class A:
def __init__(self, txt: str):
self.s: B = None
self.w: E = None
self.o: B = None
self.p: C = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: G = None
self.o: D = None
self.w: E = None
self.u: D = None
self.x: D = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: F = None
self.z: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: A = None
self.p: F = None
self.t: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: C = None
self.w: C = None
self.x: D = None
self.s: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: D = None
self.v: B = None
self.q: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: B = None
self.p: B = None
self.v: D = None
self.w: B = None
self.txt = txt
i = A("i")
g = B("g")
c = C("c")
e = D("e")
h = E("h")
b = F("b")
a = G("a")
i.s = g
i.o = g
i.w = h
i.p = c
i.u = c
g.s = a
g.o = e
g.u = e
g.x = e
g.w = h
g.v = i
c.t = b
c.z = a
e.u = i
e.p = b
e.t = a
h.u = c
h.w = c
h.x = e
h.s = i
b.s = e
b.v = g
b.q = a
a.u = g
a.p = g
a.w = g
a.v = e
assert c.t.q.p.v.txt == "i"
|
c
|
b
|
a
|
g
|
i
|
x
|
x
|
x
| 7 | 20 | 7 | 4 | 0 |
5,319 |
class A:
def __init__(self, txt: str):
self.y: E = None
self.s: D = None
self.t: F = None
self.x: B = None
self.q: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: D = None
self.z: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.w: G = None
self.z: F = None
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.q: C = None
self.p: F = None
self.v: F = None
self.o: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: G = None
self.x: A = None
self.v: B = None
self.s: D = None
self.t: B = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: E = None
self.s: D = None
self.r: C = None
self.u: A = None
self.z: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
e = A("e")
g = B("g")
a = C("a")
c = D("c")
h = E("h")
d = F("d")
i = G("i")
e.y = h
e.s = c
e.t = d
e.x = g
e.q = i
g.t = c
g.z = i
a.x = h
a.w = i
a.z = d
a.r = e
c.t = e
c.q = a
c.p = d
c.v = d
c.o = d
h.q = i
h.x = e
h.y = e
h.v = g
h.t = g
h.s = c
d.q = h
d.s = c
d.r = a
d.u = e
d.z = i
i.t = g
assert h.q.t.z.t.z.txt == "
|
i"
|
class A:
def __init__(self, txt: str):
self.y: E = None
self.s: D = None
self.t: F = None
self.x: B = None
self.q: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: D = None
self.z: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.w: G = None
self.z: F = None
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.q: C = None
self.p: F = None
self.v: F = None
self.o: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: G = None
self.x: A = None
self.v: B = None
self.s: D = None
self.t: B = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: E = None
self.s: D = None
self.r: C = None
self.u: A = None
self.z: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
e = A("e")
g = B("g")
a = C("a")
c = D("c")
h = E("h")
d = F("d")
i = G("i")
e.y = h
e.s = c
e.t = d
e.x = g
e.q = i
g.t = c
g.z = i
a.x = h
a.w = i
a.z = d
a.r = e
c.t = e
c.q = a
c.p = d
c.v = d
c.o = d
h.q = i
h.x = e
h.y = e
h.v = g
h.t = g
h.s = c
d.q = h
d.s = c
d.r = a
d.u = e
d.z = i
i.t = g
assert h.q.t.z.t.z.txt == "i"
|
h
|
i
|
g
|
i
|
g
|
i
|
x
|
x
| 7 | 24 | 7 | 5 | 3 |
5,320 |
class A:
def __init__(self, txt: str):
self.o: E = None
self.z: F = None
self.u: G = None
self.p: C = None
self.y: D = None
self.r: E = None
self.q: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.r: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: G = None
self.q: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: E = None
self.v: A = None
self.x: E = None
self.s: C = None
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: A = None
self.y: C = None
self.u: D = None
self.p: A = None
self.w: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: D = None
self.y: F = None
self.t: F = None
self.o: C = None
self.txt = txt
i = A("i")
f = B("f")
c = C("c")
j = D("j")
a = E("a")
e = F("e")
d = G("d")
i.o = a
i.r = a
i.z = e
i.q = e
i.u = d
i.p = c
i.y = j
f.w = i
f.r = e
c.x = d
c.q = d
j.p = a
j.x = a
j.v = i
j.s = c
j.o = c
a.o = i
a.p = i
a.w = i
a.y = c
a.u = j
e.w = d
d.p = j
d.y = e
d.t = e
d.o = c
assert j.v.z.w.o.x.p.v.txt == "
|
i"
|
class A:
def __init__(self, txt: str):
self.o: E = None
self.z: F = None
self.u: G = None
self.p: C = None
self.y: D = None
self.r: E = None
self.q: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.r: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: G = None
self.q: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: E = None
self.v: A = None
self.x: E = None
self.s: C = None
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: A = None
self.y: C = None
self.u: D = None
self.p: A = None
self.w: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: D = None
self.y: F = None
self.t: F = None
self.o: C = None
self.txt = txt
i = A("i")
f = B("f")
c = C("c")
j = D("j")
a = E("a")
e = F("e")
d = G("d")
i.o = a
i.r = a
i.z = e
i.q = e
i.u = d
i.p = c
i.y = j
f.w = i
f.r = e
c.x = d
c.q = d
j.p = a
j.x = a
j.v = i
j.s = c
j.o = c
a.o = i
a.p = i
a.w = i
a.y = c
a.u = j
e.w = d
d.p = j
d.y = e
d.t = e
d.o = c
assert j.v.z.w.o.x.p.v.txt == "i"
|
j
|
i
|
e
|
d
|
c
|
d
|
j
|
i
| 7 | 18 | 7 | 7 | 3 |
5,321 |
class A:
def __init__(self, txt: str):
self.s: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: E = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = 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.w: D = None
self.s: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: G = None
self.t: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
g = A("g")
a = B("a")
e = C("e")
j = D("j")
i = E("i")
b = F("b")
d = G("d")
g.s = d
a.y = i
a.v = i
e.z = g
j.p = b
i.w = j
i.s = a
b.s = d
b.t = a
d.z = j
assert g.s.z.p.s.z.txt == "
|
j"
|
class A:
def __init__(self, txt: str):
self.s: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: E = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = 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.w: D = None
self.s: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: G = None
self.t: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
g = A("g")
a = B("a")
e = C("e")
j = D("j")
i = E("i")
b = F("b")
d = G("d")
g.s = d
a.y = i
a.v = i
e.z = g
j.p = b
i.w = j
i.s = a
b.s = d
b.t = a
d.z = j
assert g.s.z.p.s.z.txt == "j"
|
g
|
d
|
j
|
b
|
d
|
j
|
x
|
x
| 7 | 9 | 7 | 5 | 2 |
5,322 |
class A:
def __init__(self, txt: str):
self.x: E = None
self.t: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: E = None
self.v: A = None
self.x: A = None
self.z: G = None
self.o: D = None
self.s: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: D = None
self.x: D = None
self.w: F = None
self.o: B = None
self.r: D = None
self.p: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: F = None
self.w: A = None
self.o: C = None
self.y: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.z: F = None
self.r: D = None
self.y: B = None
self.o: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: C = None
self.o: D = None
self.y: E = None
self.z: B = None
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: B = None
self.y: A = None
self.o: C = None
self.txt = txt
j = A("j")
e = B("e")
b = C("b")
g = D("g")
d = E("d")
f = F("f")
c = G("c")
j.x = d
j.t = f
e.t = d
e.v = j
e.x = j
e.z = c
e.o = g
e.s = f
b.u = g
b.x = g
b.r = g
b.w = f
b.p = f
b.o = e
g.q = f
g.w = j
g.o = b
g.y = c
d.s = f
d.z = f
d.o = f
d.r = g
d.y = e
f.r = b
f.o = g
f.y = d
f.z = e
f.s = j
c.w = e
c.y = j
c.o = b
assert e.t.y.z.txt == "
|
c"
|
class A:
def __init__(self, txt: str):
self.x: E = None
self.t: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: E = None
self.v: A = None
self.x: A = None
self.z: G = None
self.o: D = None
self.s: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: D = None
self.x: D = None
self.w: F = None
self.o: B = None
self.r: D = None
self.p: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: F = None
self.w: A = None
self.o: C = None
self.y: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.z: F = None
self.r: D = None
self.y: B = None
self.o: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: C = None
self.o: D = None
self.y: E = None
self.z: B = None
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: B = None
self.y: A = None
self.o: C = None
self.txt = txt
j = A("j")
e = B("e")
b = C("b")
g = D("g")
d = E("d")
f = F("f")
c = G("c")
j.x = d
j.t = f
e.t = d
e.v = j
e.x = j
e.z = c
e.o = g
e.s = f
b.u = g
b.x = g
b.r = g
b.w = f
b.p = f
b.o = e
g.q = f
g.w = j
g.o = b
g.y = c
d.s = f
d.z = f
d.o = f
d.r = g
d.y = e
f.r = b
f.o = g
f.y = d
f.z = e
f.s = j
c.w = e
c.y = j
c.o = b
assert e.t.y.z.txt == "c"
|
e
|
d
|
e
|
c
|
x
|
x
|
x
|
x
| 7 | 25 | 7 | 3 | 1 |
5,323 |
class A:
def __init__(self, txt: str):
self.z: E = None
self.s: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: F = None
self.v: A = None
self.x: D = None
self.y: C = None
self.u: E = None
self.p: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.o: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.z: D = None
self.p: C = None
self.s: B = None
self.o: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: D = None
self.w: A = None
self.u: B = None
self.t: A = None
self.txt = txt
b = A("b")
i = B("i")
d = C("d")
a = D("a")
c = E("c")
g = F("g")
f = G("f")
b.z = c
b.s = g
i.o = g
i.p = g
i.v = b
i.x = a
i.y = d
i.u = c
d.s = b
d.o = g
a.u = i
c.r = a
c.z = a
c.o = a
c.p = d
c.s = i
g.r = d
f.o = a
f.w = b
f.t = b
f.u = i
assert i.v.z.z.u.txt == "
|
i"
|
class A:
def __init__(self, txt: str):
self.z: E = None
self.s: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: F = None
self.v: A = None
self.x: D = None
self.y: C = None
self.u: E = None
self.p: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.o: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.z: D = None
self.p: C = None
self.s: B = None
self.o: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: D = None
self.w: A = None
self.u: B = None
self.t: A = None
self.txt = txt
b = A("b")
i = B("i")
d = C("d")
a = D("a")
c = E("c")
g = F("g")
f = G("f")
b.z = c
b.s = g
i.o = g
i.p = g
i.v = b
i.x = a
i.y = d
i.u = c
d.s = b
d.o = g
a.u = i
c.r = a
c.z = a
c.o = a
c.p = d
c.s = i
g.r = d
f.o = a
f.w = b
f.t = b
f.u = i
assert i.v.z.z.u.txt == "i"
|
i
|
b
|
c
|
a
|
i
|
x
|
x
|
x
| 7 | 17 | 7 | 4 | 1 |
5,324 |
class A:
def __init__(self, txt: str):
self.p: G = None
self.t: E = None
self.o: E = None
self.w: D = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: C = None
self.s: A = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.q: D = None
self.v: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: F = None
self.r: G = None
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: B = None
self.u: F = None
self.s: D = None
self.t: C = None
self.p: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: A = None
self.o: A = None
self.x: G = None
self.q: D = None
self.s: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: B = None
self.x: B = None
self.txt = txt
g = A("g")
e = B("e")
b = C("b")
d = D("d")
i = E("i")
j = F("j")
f = G("f")
g.p = f
g.t = i
g.o = i
g.y = i
g.w = d
e.v = b
e.s = g
e.w = g
b.z = f
b.q = d
b.v = j
d.u = j
d.r = f
d.t = g
i.r = e
i.p = e
i.u = j
i.s = d
i.t = b
j.y = g
j.o = g
j.x = f
j.s = f
j.q = d
f.y = e
f.x = e
assert b.z.y.v.z.y.w.p.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.p: G = None
self.t: E = None
self.o: E = None
self.w: D = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: C = None
self.s: A = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.q: D = None
self.v: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: F = None
self.r: G = None
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: B = None
self.u: F = None
self.s: D = None
self.t: C = None
self.p: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: A = None
self.o: A = None
self.x: G = None
self.q: D = None
self.s: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: B = None
self.x: B = None
self.txt = txt
g = A("g")
e = B("e")
b = C("b")
d = D("d")
i = E("i")
j = F("j")
f = G("f")
g.p = f
g.t = i
g.o = i
g.y = i
g.w = d
e.v = b
e.s = g
e.w = g
b.z = f
b.q = d
b.v = j
d.u = j
d.r = f
d.t = g
i.r = e
i.p = e
i.u = j
i.s = d
i.t = b
j.y = g
j.o = g
j.x = f
j.s = f
j.q = d
f.y = e
f.x = e
assert b.z.y.v.z.y.w.p.txt == "f"
|
b
|
f
|
e
|
b
|
f
|
e
|
g
|
f
| 7 | 19 | 7 | 7 | 4 |
5,325 |
class A:
def __init__(self, txt: str):
self.r: G = None
self.y: C = None
self.v: C = None
self.z: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.o: F = None
self.t: D = None
self.s: D = None
self.x: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: D = None
self.p: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: G = None
self.u: E = None
self.p: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: C = None
self.v: A = None
self.t: D = None
self.q: G = None
self.p: F = None
self.x: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: B = None
self.p: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: B = None
self.v: E = None
self.y: F = None
self.w: D = None
self.z: E = None
self.txt = txt
e = A("e")
c = B("c")
g = C("g")
j = D("j")
f = E("f")
d = F("d")
b = G("b")
e.r = b
e.z = b
e.y = g
e.v = g
c.q = e
c.o = d
c.x = d
c.t = j
c.s = j
g.x = j
g.p = f
j.w = b
j.u = f
j.p = c
f.u = g
f.v = e
f.t = j
f.q = b
f.x = b
f.p = d
d.v = c
d.p = c
b.q = c
b.v = f
b.z = f
b.y = d
b.w = j
assert g.x.u.q.z.t.u.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.r: G = None
self.y: C = None
self.v: C = None
self.z: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.o: F = None
self.t: D = None
self.s: D = None
self.x: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: D = None
self.p: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: G = None
self.u: E = None
self.p: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: C = None
self.v: A = None
self.t: D = None
self.q: G = None
self.p: F = None
self.x: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: B = None
self.p: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: B = None
self.v: E = None
self.y: F = None
self.w: D = None
self.z: E = None
self.txt = txt
e = A("e")
c = B("c")
g = C("g")
j = D("j")
f = E("f")
d = F("d")
b = G("b")
e.r = b
e.z = b
e.y = g
e.v = g
c.q = e
c.o = d
c.x = d
c.t = j
c.s = j
g.x = j
g.p = f
j.w = b
j.u = f
j.p = c
f.u = g
f.v = e
f.t = j
f.q = b
f.x = b
f.p = d
d.v = c
d.p = c
b.q = c
b.v = f
b.z = f
b.y = d
b.w = j
assert g.x.u.q.z.t.u.txt == "f"
|
g
|
j
|
f
|
b
|
f
|
j
|
f
|
x
| 7 | 20 | 7 | 6 | 3 |
5,326 |
class A:
def __init__(self, txt: str):
self.q: C = None
self.v: C = None
self.r: D = None
self.p: G = 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.s: G = None
self.u: B = None
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: A = None
self.r: D = None
self.o: A = None
self.s: C = None
self.p: A = None
self.y: F = None
self.q: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: A = None
self.q: G = None
self.v: G = None
self.x: A = None
self.t: E = None
self.p: B = None
self.z: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
h = A("h")
e = B("e")
i = C("i")
d = D("d")
a = E("a")
c = F("c")
g = G("g")
h.q = i
h.v = i
h.r = d
h.p = g
e.q = h
i.s = g
i.u = e
i.o = d
d.s = a
a.w = h
a.o = h
a.p = h
a.r = d
a.q = d
a.s = i
a.y = c
c.y = h
c.x = h
c.z = h
c.q = g
c.v = g
c.t = a
c.p = e
g.o = e
assert e.q.p.o.q.txt == "
|
h"
|
class A:
def __init__(self, txt: str):
self.q: C = None
self.v: C = None
self.r: D = None
self.p: G = 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.s: G = None
self.u: B = None
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: A = None
self.r: D = None
self.o: A = None
self.s: C = None
self.p: A = None
self.y: F = None
self.q: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: A = None
self.q: G = None
self.v: G = None
self.x: A = None
self.t: E = None
self.p: B = None
self.z: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
h = A("h")
e = B("e")
i = C("i")
d = D("d")
a = E("a")
c = F("c")
g = G("g")
h.q = i
h.v = i
h.r = d
h.p = g
e.q = h
i.s = g
i.u = e
i.o = d
d.s = a
a.w = h
a.o = h
a.p = h
a.r = d
a.q = d
a.s = i
a.y = c
c.y = h
c.x = h
c.z = h
c.q = g
c.v = g
c.t = a
c.p = e
g.o = e
assert e.q.p.o.q.txt == "h"
|
e
|
h
|
g
|
e
|
h
|
x
|
x
|
x
| 7 | 17 | 7 | 4 | 2 |
5,327 |
class A:
def __init__(self, txt: str):
self.q: C = None
self.x: E = None
self.s: E = None
self.v: C = None
self.y: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: F = None
self.p: D = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: G = None
self.x: B = None
self.y: C = None
self.t: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: G = None
self.s: A = None
self.w: C = None
self.p: A = None
self.r: C = None
self.o: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: F = None
self.w: B = None
self.s: A = None
self.r: E = None
self.q: E = None
self.txt = txt
e = A("e")
b = B("b")
f = C("f")
d = D("d")
a = E("a")
i = F("i")
c = G("c")
e.q = f
e.v = f
e.x = a
e.s = a
e.y = i
b.o = i
b.p = d
b.y = a
f.r = i
d.s = c
d.x = b
d.y = f
d.t = f
a.y = c
a.s = e
a.p = e
a.o = e
a.w = f
a.r = f
i.w = f
c.o = i
c.w = b
c.s = e
c.r = a
c.q = a
assert d.y.r.w.r.txt == "
|
i"
|
class A:
def __init__(self, txt: str):
self.q: C = None
self.x: E = None
self.s: E = None
self.v: C = None
self.y: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: F = None
self.p: D = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: G = None
self.x: B = None
self.y: C = None
self.t: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: G = None
self.s: A = None
self.w: C = None
self.p: A = None
self.r: C = None
self.o: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: F = None
self.w: B = None
self.s: A = None
self.r: E = None
self.q: E = None
self.txt = txt
e = A("e")
b = B("b")
f = C("f")
d = D("d")
a = E("a")
i = F("i")
c = G("c")
e.q = f
e.v = f
e.x = a
e.s = a
e.y = i
b.o = i
b.p = d
b.y = a
f.r = i
d.s = c
d.x = b
d.y = f
d.t = f
a.y = c
a.s = e
a.p = e
a.o = e
a.w = f
a.r = f
i.w = f
c.o = i
c.w = b
c.s = e
c.r = a
c.q = a
assert d.y.r.w.r.txt == "i"
|
d
|
f
|
i
|
f
|
i
|
x
|
x
|
x
| 7 | 18 | 7 | 4 | 2 |
5,328 |
class A:
def __init__(self, txt: str):
self.p: G = None
self.w: B = None
self.s: B = None
self.o: F = None
self.v: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: D = None
self.s: C = 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.x: A = None
self.v: A = None
self.s: B = None
self.t: A = None
self.r: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: F = None
self.o: C = None
self.r: D = None
self.z: C = None
self.s: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: B = None
self.s: D = None
self.p: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: D = None
self.x: F = None
self.txt = txt
g = A("g")
a = B("a")
e = C("e")
b = D("b")
f = E("f")
j = F("j")
d = G("d")
g.p = d
g.v = d
g.w = a
g.s = a
g.o = j
a.t = b
a.s = e
e.s = a
b.x = g
b.v = g
b.t = g
b.r = g
b.s = a
f.w = j
f.o = e
f.z = e
f.r = b
f.s = d
j.t = a
j.s = b
j.p = e
d.s = b
d.x = j
assert g.v.x.s.r.w.t.txt == "
|
b"
|
class A:
def __init__(self, txt: str):
self.p: G = None
self.w: B = None
self.s: B = None
self.o: F = None
self.v: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: D = None
self.s: C = 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.x: A = None
self.v: A = None
self.s: B = None
self.t: A = None
self.r: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: F = None
self.o: C = None
self.r: D = None
self.z: C = None
self.s: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: B = None
self.s: D = None
self.p: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: D = None
self.x: F = None
self.txt = txt
g = A("g")
a = B("a")
e = C("e")
b = D("b")
f = E("f")
j = F("j")
d = G("d")
g.p = d
g.v = d
g.w = a
g.s = a
g.o = j
a.t = b
a.s = e
e.s = a
b.x = g
b.v = g
b.t = g
b.r = g
b.s = a
f.w = j
f.o = e
f.z = e
f.r = b
f.s = d
j.t = a
j.s = b
j.p = e
d.s = b
d.x = j
assert g.v.x.s.r.w.t.txt == "b"
|
g
|
d
|
j
|
b
|
g
|
a
|
b
|
x
| 7 | 17 | 7 | 6 | 2 |
5,329 |
class A:
def __init__(self, txt: str):
self.x: G = None
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: E = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.o: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: B = None
self.v: E = None
self.q: A = None
self.r: C = None
self.t: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: B = None
self.r: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: F = None
self.w: F = None
self.v: A = None
self.t: F = None
self.txt = txt
h = A("h")
f = B("f")
b = C("b")
d = D("d")
a = E("a")
g = F("g")
e = G("e")
h.x = e
h.p = d
f.q = a
f.y = b
b.q = h
b.o = f
d.o = f
d.t = f
d.v = a
d.q = h
d.r = b
a.o = f
a.r = e
g.y = f
e.r = g
e.w = g
e.t = g
e.v = h
assert h.x.v.x.v.p.t.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.x: G = None
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: E = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.o: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: B = None
self.v: E = None
self.q: A = None
self.r: C = None
self.t: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: B = None
self.r: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: F = None
self.w: F = None
self.v: A = None
self.t: F = None
self.txt = txt
h = A("h")
f = B("f")
b = C("b")
d = D("d")
a = E("a")
g = F("g")
e = G("e")
h.x = e
h.p = d
f.q = a
f.y = b
b.q = h
b.o = f
d.o = f
d.t = f
d.v = a
d.q = h
d.r = b
a.o = f
a.r = e
g.y = f
e.r = g
e.w = g
e.t = g
e.v = h
assert h.x.v.x.v.p.t.txt == "f"
|
h
|
e
|
h
|
e
|
h
|
d
|
f
|
x
| 7 | 15 | 7 | 6 | 3 |
5,330 |
class A:
def __init__(self, txt: str):
self.s: G = None
self.r: D = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.z: F = 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.v: B = None
self.r: B = None
self.z: B = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: B = None
self.u: D = None
self.r: D = None
self.s: F = None
self.y: D = None
self.q: A = None
self.o: E = None
self.txt = txt
h = A("h")
g = B("g")
f = C("f")
j = D("j")
e = E("e")
c = F("c")
b = G("b")
h.s = b
h.r = j
h.w = g
g.x = j
g.z = c
f.w = j
j.v = g
j.r = g
j.z = g
j.t = e
e.q = b
c.x = f
b.p = g
b.u = j
b.r = j
b.y = j
b.s = c
b.q = h
b.o = e
assert f.w.t.q.p.z.txt == "
|
c"
|
class A:
def __init__(self, txt: str):
self.s: G = None
self.r: D = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.z: F = 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.v: B = None
self.r: B = None
self.z: B = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: B = None
self.u: D = None
self.r: D = None
self.s: F = None
self.y: D = None
self.q: A = None
self.o: E = None
self.txt = txt
h = A("h")
g = B("g")
f = C("f")
j = D("j")
e = E("e")
c = F("c")
b = G("b")
h.s = b
h.r = j
h.w = g
g.x = j
g.z = c
f.w = j
j.v = g
j.r = g
j.z = g
j.t = e
e.q = b
c.x = f
b.p = g
b.u = j
b.r = j
b.y = j
b.s = c
b.q = h
b.o = e
assert f.w.t.q.p.z.txt == "c"
|
f
|
j
|
e
|
b
|
g
|
c
|
x
|
x
| 7 | 15 | 7 | 5 | 0 |
5,331 |
class A:
def __init__(self, txt: str):
self.p: E = None
self.o: F = None
self.v: E = None
self.w: F = None
self.u: G = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.p: C = None
self.z: F = None
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.z: F = None
self.w: A = None
self.t: A = None
self.r: A = None
self.x: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: B = None
self.x: G = None
self.v: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: B = None
self.w: B = None
self.t: D = None
self.s: A = None
self.q: E = None
self.o: A = None
self.v: A = None
self.txt = txt
g = A("g")
h = B("h")
a = C("a")
j = D("j")
f = E("f")
e = F("e")
i = G("i")
g.p = f
g.v = f
g.o = e
g.w = e
g.u = i
g.t = a
h.x = g
h.p = a
a.t = h
j.y = f
j.p = a
j.w = a
j.z = e
f.y = h
f.z = e
f.x = e
f.w = g
f.t = g
f.r = g
e.s = h
e.x = i
e.v = f
i.x = h
i.w = h
i.t = j
i.s = g
i.o = g
i.v = g
i.q = f
assert f.r.v.z.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.p: E = None
self.o: F = None
self.v: E = None
self.w: F = None
self.u: G = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.p: C = None
self.z: F = None
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.z: F = None
self.w: A = None
self.t: A = None
self.r: A = None
self.x: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: B = None
self.x: G = None
self.v: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: B = None
self.w: B = None
self.t: D = None
self.s: A = None
self.q: E = None
self.o: A = None
self.v: A = None
self.txt = txt
g = A("g")
h = B("h")
a = C("a")
j = D("j")
f = E("f")
e = F("e")
i = G("i")
g.p = f
g.v = f
g.o = e
g.w = e
g.u = i
g.t = a
h.x = g
h.p = a
a.t = h
j.y = f
j.p = a
j.w = a
j.z = e
f.y = h
f.z = e
f.x = e
f.w = g
f.t = g
f.r = g
e.s = h
e.x = i
e.v = f
i.x = h
i.w = h
i.t = j
i.s = g
i.o = g
i.v = g
i.q = f
assert f.r.v.z.txt == "e"
|
f
|
g
|
f
|
e
|
x
|
x
|
x
|
x
| 7 | 20 | 7 | 3 | 1 |
5,332 |
class A:
def __init__(self, txt: str):
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.v: E = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: E = None
self.s: C = None
self.x: B = None
self.t: E = None
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: A = None
self.x: C = None
self.z: F = None
self.v: F = None
self.s: C = None
self.t: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: D = None
self.r: D = None
self.u: G = None
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: B = None
self.t: E = None
self.txt = txt
h = A("h")
f = B("f")
j = C("j")
i = D("i")
b = E("b")
d = F("d")
a = G("a")
h.v = d
f.r = h
f.s = h
f.v = b
j.p = i
i.q = b
i.t = b
i.s = j
i.v = j
i.x = f
b.q = h
b.x = j
b.s = j
b.z = d
b.v = d
b.t = f
d.w = i
d.r = i
d.u = a
d.s = h
a.u = f
a.t = b
assert d.r.q.q.v.u.txt == "
|
a"
|
class A:
def __init__(self, txt: str):
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.v: E = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: E = None
self.s: C = None
self.x: B = None
self.t: E = None
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: A = None
self.x: C = None
self.z: F = None
self.v: F = None
self.s: C = None
self.t: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: D = None
self.r: D = None
self.u: G = None
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: B = None
self.t: E = None
self.txt = txt
h = A("h")
f = B("f")
j = C("j")
i = D("i")
b = E("b")
d = F("d")
a = G("a")
h.v = d
f.r = h
f.s = h
f.v = b
j.p = i
i.q = b
i.t = b
i.s = j
i.v = j
i.x = f
b.q = h
b.x = j
b.s = j
b.z = d
b.v = d
b.t = f
d.w = i
d.r = i
d.u = a
d.s = h
a.u = f
a.t = b
assert d.r.q.q.v.u.txt == "a"
|
d
|
i
|
b
|
h
|
d
|
a
|
x
|
x
| 7 | 16 | 7 | 5 | 1 |
5,333 |
class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.q: D = None
self.w: E = None
self.z: G = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: F = None
self.v: G = None
self.s: D = None
self.y: G = None
self.q: F = None
self.p: E = None
self.r: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.v: C = None
self.r: A = None
self.p: F = None
self.s: A = None
self.q: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: C = None
self.v: B = None
self.q: E = None
self.y: E = None
self.w: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.w: D = None
self.y: D = None
self.txt = txt
f = A("f")
h = B("h")
d = C("d")
j = D("j")
a = E("a")
i = F("i")
b = G("b")
f.z = d
h.r = j
h.q = j
h.w = a
h.z = b
h.u = i
d.o = i
d.q = i
d.v = b
d.y = b
d.r = b
d.s = j
d.p = a
j.y = f
a.z = i
a.p = i
a.v = d
a.q = d
a.r = f
a.s = f
i.x = d
i.v = h
i.q = a
i.y = a
i.w = f
b.z = h
b.w = j
b.y = j
assert a.r.z.s.y.z.p.txt == "
|
a"
|
class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.q: D = None
self.w: E = None
self.z: G = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: F = None
self.v: G = None
self.s: D = None
self.y: G = None
self.q: F = None
self.p: E = None
self.r: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.v: C = None
self.r: A = None
self.p: F = None
self.s: A = None
self.q: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: C = None
self.v: B = None
self.q: E = None
self.y: E = None
self.w: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.w: D = None
self.y: D = None
self.txt = txt
f = A("f")
h = B("h")
d = C("d")
j = D("j")
a = E("a")
i = F("i")
b = G("b")
f.z = d
h.r = j
h.q = j
h.w = a
h.z = b
h.u = i
d.o = i
d.q = i
d.v = b
d.y = b
d.r = b
d.s = j
d.p = a
j.y = f
a.z = i
a.p = i
a.v = d
a.q = d
a.r = f
a.s = f
i.x = d
i.v = h
i.q = a
i.y = a
i.w = f
b.z = h
b.w = j
b.y = j
assert a.r.z.s.y.z.p.txt == "a"
|
a
|
f
|
d
|
j
|
f
|
d
|
a
|
x
| 7 | 19 | 7 | 6 | 3 |
5,334 |
class A:
def __init__(self, txt: str):
self.x: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: F = None
self.y: E = None
self.u: G = None
self.x: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: F = None
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.t: F = None
self.o: G = None
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: A = None
self.t: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: F = None
self.txt = txt
g = A("g")
h = B("h")
f = C("f")
d = D("d")
b = E("b")
j = F("j")
e = G("e")
g.x = e
h.s = j
h.y = b
h.x = b
h.u = e
f.u = j
f.r = h
d.p = e
d.o = e
d.t = j
d.r = b
b.x = g
j.p = g
j.t = d
e.w = j
assert h.u.w.t.txt == "
|
d"
|
class A:
def __init__(self, txt: str):
self.x: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: F = None
self.y: E = None
self.u: G = None
self.x: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: F = None
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.t: F = None
self.o: G = None
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: A = None
self.t: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: F = None
self.txt = txt
g = A("g")
h = B("h")
f = C("f")
d = D("d")
b = E("b")
j = F("j")
e = G("e")
g.x = e
h.s = j
h.y = b
h.x = b
h.u = e
f.u = j
f.r = h
d.p = e
d.o = e
d.t = j
d.r = b
b.x = g
j.p = g
j.t = d
e.w = j
assert h.u.w.t.txt == "d"
|
h
|
e
|
j
|
d
|
x
|
x
|
x
|
x
| 7 | 13 | 7 | 3 | 0 |
5,335 |
class A:
def __init__(self, txt: str):
self.r: C = None
self.t: B = None
self.x: F = None
self.y: F = None
self.s: D = None
self.u: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: F = None
self.y: A = None
self.z: D = None
self.p: E = None
self.t: A = None
self.x: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: B = None
self.s: C = None
self.x: E = None
self.p: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: C = None
self.p: F = None
self.u: G = None
self.y: D = None
self.w: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: A = None
self.x: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: F = None
self.t: C = None
self.txt = txt
h = A("h")
f = B("f")
b = C("b")
i = D("i")
c = E("c")
a = F("a")
e = G("e")
h.r = b
h.t = f
h.x = a
h.y = a
h.s = i
h.u = e
f.r = a
f.x = a
f.y = h
f.t = h
f.z = i
f.p = c
b.x = c
i.r = f
i.s = b
i.x = c
i.p = a
c.x = b
c.w = b
c.p = a
c.u = e
c.y = i
a.r = h
a.x = e
e.o = a
e.t = b
assert e.o.r.s.s.x.p.x.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.r: C = None
self.t: B = None
self.x: F = None
self.y: F = None
self.s: D = None
self.u: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: F = None
self.y: A = None
self.z: D = None
self.p: E = None
self.t: A = None
self.x: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: B = None
self.s: C = None
self.x: E = None
self.p: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: C = None
self.p: F = None
self.u: G = None
self.y: D = None
self.w: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: A = None
self.x: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: F = None
self.t: C = None
self.txt = txt
h = A("h")
f = B("f")
b = C("b")
i = D("i")
c = E("c")
a = F("a")
e = G("e")
h.r = b
h.t = f
h.x = a
h.y = a
h.s = i
h.u = e
f.r = a
f.x = a
f.y = h
f.t = h
f.z = i
f.p = c
b.x = c
i.r = f
i.s = b
i.x = c
i.p = a
c.x = b
c.w = b
c.p = a
c.u = e
c.y = i
a.r = h
a.x = e
e.o = a
e.t = b
assert e.o.r.s.s.x.p.x.txt == "e"
|
e
|
a
|
h
|
i
|
b
|
c
|
a
|
e
| 7 | 22 | 7 | 7 | 2 |
5,336 |
class A:
def __init__(self, txt: str):
self.o: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: D = None
self.x: A = None
self.v: G = None
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.p: B = None
self.q: D = None
self.u: F = None
self.z: E = None
self.x: G = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.r: A = None
self.w: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: A = None
self.u: F = None
self.r: E = None
self.s: D = None
self.z: E = None
self.o: C = None
self.txt = txt
g = A("g")
e = B("e")
a = C("a")
j = D("j")
h = E("h")
c = F("c")
d = G("d")
g.o = c
e.o = j
e.s = j
e.x = g
e.v = d
a.r = g
a.p = e
a.y = e
a.q = j
a.u = c
a.z = h
a.x = d
j.s = g
h.t = a
h.r = g
h.w = d
c.r = j
d.x = g
d.u = c
d.r = h
d.z = h
d.s = j
d.o = a
assert a.z.r.o.r.txt == "
|
j"
|
class A:
def __init__(self, txt: str):
self.o: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: D = None
self.x: A = None
self.v: G = None
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.p: B = None
self.q: D = None
self.u: F = None
self.z: E = None
self.x: G = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.r: A = None
self.w: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: A = None
self.u: F = None
self.r: E = None
self.s: D = None
self.z: E = None
self.o: C = None
self.txt = txt
g = A("g")
e = B("e")
a = C("a")
j = D("j")
h = E("h")
c = F("c")
d = G("d")
g.o = c
e.o = j
e.s = j
e.x = g
e.v = d
a.r = g
a.p = e
a.y = e
a.q = j
a.u = c
a.z = h
a.x = d
j.s = g
h.t = a
h.r = g
h.w = d
c.r = j
d.x = g
d.u = c
d.r = h
d.z = h
d.s = j
d.o = a
assert a.z.r.o.r.txt == "j"
|
a
|
h
|
g
|
c
|
j
|
x
|
x
|
x
| 7 | 20 | 7 | 4 | 0 |
5,337 |
class A:
def __init__(self, txt: str):
self.o: B = None
self.y: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.o: F = None
self.r: C = None
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.u: B = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: G = None
self.o: C = None
self.p: G = None
self.x: G = None
self.z: C = None
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: E = None
self.o: E = None
self.z: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
b = A("b")
f = B("f")
d = C("d")
g = D("g")
h = E("h")
c = F("c")
i = G("i")
b.o = f
b.y = i
f.x = g
f.o = c
f.r = d
f.t = d
d.p = f
d.u = f
d.s = f
g.t = i
g.p = i
g.x = i
g.o = d
g.z = d
g.w = d
h.o = b
c.u = h
c.o = h
c.z = b
i.r = d
assert g.p.r.p.r.p.o.txt == "
|
c"
|
class A:
def __init__(self, txt: str):
self.o: B = None
self.y: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.o: F = None
self.r: C = None
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.u: B = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: G = None
self.o: C = None
self.p: G = None
self.x: G = None
self.z: C = None
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: E = None
self.o: E = None
self.z: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
b = A("b")
f = B("f")
d = C("d")
g = D("g")
h = E("h")
c = F("c")
i = G("i")
b.o = f
b.y = i
f.x = g
f.o = c
f.r = d
f.t = d
d.p = f
d.u = f
d.s = f
g.t = i
g.p = i
g.x = i
g.o = d
g.z = d
g.w = d
h.o = b
c.u = h
c.o = h
c.z = b
i.r = d
assert g.p.r.p.r.p.o.txt == "c"
|
g
|
i
|
d
|
f
|
d
|
f
|
c
|
x
| 7 | 12 | 7 | 6 | 2 |
5,338 |
class A:
def __init__(self, txt: str):
self.r: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.t: D = None
self.u: C = None
self.w: F = None
self.x: C = None
self.p: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.o: D = None
self.t: D = None
self.x: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: B = None
self.r: G = None
self.t: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
h = A("h")
a = B("a")
i = C("i")
e = D("e")
b = E("b")
c = F("c")
g = G("g")
h.r = b
a.q = i
a.u = i
a.x = i
a.t = e
a.w = c
a.p = g
i.z = e
i.o = e
i.t = e
i.x = c
e.o = g
b.x = a
b.r = g
b.t = e
c.o = h
g.z = b
assert h.r.r.z.x.txt == "
|
a"
|
class A:
def __init__(self, txt: str):
self.r: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.t: D = None
self.u: C = None
self.w: F = None
self.x: C = None
self.p: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: D = None
self.o: D = None
self.t: D = None
self.x: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: B = None
self.r: G = None
self.t: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
h = A("h")
a = B("a")
i = C("i")
e = D("e")
b = E("b")
c = F("c")
g = G("g")
h.r = b
a.q = i
a.u = i
a.x = i
a.t = e
a.w = c
a.p = g
i.z = e
i.o = e
i.t = e
i.x = c
e.o = g
b.x = a
b.r = g
b.t = e
c.o = h
g.z = b
assert h.r.r.z.x.txt == "a"
|
h
|
b
|
g
|
b
|
a
|
x
|
x
|
x
| 7 | 13 | 7 | 4 | 1 |
5,339 |
class A:
def __init__(self, txt: str):
self.y: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.x: D = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.t: A = None
self.q: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: E = None
self.q: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: F = None
self.txt = txt
h = A("h")
g = B("g")
d = C("d")
e = D("e")
b = E("b")
c = F("c")
f = G("f")
h.y = f
g.z = h
g.x = e
g.w = d
d.y = g
d.t = h
d.q = e
e.w = c
b.z = d
c.o = b
c.q = f
f.x = c
assert e.w.q.x.q.x.o.txt == "
|
b"
|
class A:
def __init__(self, txt: str):
self.y: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.x: D = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.t: A = None
self.q: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: E = None
self.q: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: F = None
self.txt = txt
h = A("h")
g = B("g")
d = C("d")
e = D("e")
b = E("b")
c = F("c")
f = G("f")
h.y = f
g.z = h
g.x = e
g.w = d
d.y = g
d.t = h
d.q = e
e.w = c
b.z = d
c.o = b
c.q = f
f.x = c
assert e.w.q.x.q.x.o.txt == "b"
|
e
|
c
|
f
|
c
|
f
|
c
|
b
|
x
| 7 | 12 | 7 | 6 | 3 |
5,340 |
class A:
def __init__(self, txt: str):
self.r: G = None
self.y: G = None
self.w: G = None
self.q: B = None
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: F = None
self.z: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.p: B = None
self.v: B = None
self.z: B = None
self.y: G = None
self.u: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: F = None
self.u: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: E = None
self.r: A = None
self.s: B = None
self.txt = txt
i = A("i")
g = B("g")
e = C("e")
j = D("j")
c = E("c")
a = F("a")
b = G("b")
i.r = b
i.y = b
i.w = b
i.q = g
i.p = e
g.o = a
g.z = j
e.u = i
j.t = g
j.p = g
j.v = g
j.z = g
j.y = b
j.u = c
c.t = a
c.u = j
a.o = j
b.t = c
b.r = i
b.s = g
assert b.r.y.s.txt == "
|
g"
|
class A:
def __init__(self, txt: str):
self.r: G = None
self.y: G = None
self.w: G = None
self.q: B = None
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: F = None
self.z: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.p: B = None
self.v: B = None
self.z: B = None
self.y: G = None
self.u: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: F = None
self.u: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: E = None
self.r: A = None
self.s: B = None
self.txt = txt
i = A("i")
g = B("g")
e = C("e")
j = D("j")
c = E("c")
a = F("a")
b = G("b")
i.r = b
i.y = b
i.w = b
i.q = g
i.p = e
g.o = a
g.z = j
e.u = i
j.t = g
j.p = g
j.v = g
j.z = g
j.y = b
j.u = c
c.t = a
c.u = j
a.o = j
b.t = c
b.r = i
b.s = g
assert b.r.y.s.txt == "g"
|
b
|
i
|
b
|
g
|
x
|
x
|
x
|
x
| 7 | 15 | 7 | 3 | 1 |
5,341 |
class A:
def __init__(self, txt: str):
self.u: B = None
self.t: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.o: A = None
self.x: D = None
self.t: D = None
self.u: A = None
self.s: F = None
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.q: E = None
self.v: B = None
self.x: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: E = None
self.q: E = None
self.z: C = None
self.w: F = None
self.p: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: A = None
self.u: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: E = None
self.r: E = None
self.s: C = None
self.v: A = None
self.u: E = None
self.z: B = None
self.y: F = None
self.txt = txt
g = A("g")
a = B("a")
b = C("b")
c = D("c")
j = E("j")
i = F("i")
d = G("d")
g.u = a
g.t = j
a.z = g
a.o = g
a.u = g
a.x = c
a.t = c
a.s = i
a.r = j
b.p = c
b.q = j
b.v = a
b.x = i
c.u = j
c.q = j
c.z = b
c.w = i
c.p = g
j.y = g
j.u = g
i.x = d
d.p = j
d.r = j
d.u = j
d.s = b
d.v = g
d.z = a
d.y = i
assert j.y.t.u.t.y.t.u.txt == "
|
g"
|
class A:
def __init__(self, txt: str):
self.u: B = None
self.t: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.o: A = None
self.x: D = None
self.t: D = None
self.u: A = None
self.s: F = None
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.q: E = None
self.v: B = None
self.x: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: E = None
self.q: E = None
self.z: C = None
self.w: F = None
self.p: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: A = None
self.u: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: E = None
self.r: E = None
self.s: C = None
self.v: A = None
self.u: E = None
self.z: B = None
self.y: F = None
self.txt = txt
g = A("g")
a = B("a")
b = C("b")
c = D("c")
j = E("j")
i = F("i")
d = G("d")
g.u = a
g.t = j
a.z = g
a.o = g
a.u = g
a.x = c
a.t = c
a.s = i
a.r = j
b.p = c
b.q = j
b.v = a
b.x = i
c.u = j
c.q = j
c.z = b
c.w = i
c.p = g
j.y = g
j.u = g
i.x = d
d.p = j
d.r = j
d.u = j
d.s = b
d.v = g
d.z = a
d.y = i
assert j.y.t.u.t.y.t.u.txt == "g"
|
j
|
g
|
j
|
g
|
j
|
g
|
j
|
g
| 7 | 21 | 7 | 7 | 6 |
5,342 |
class A:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: G = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: F = None
self.p: G = None
self.v: B = None
self.t: D = None
self.s: D = None
self.w: D = None
self.u: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: B = None
self.x: E = None
self.y: G = None
self.o: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: B = None
self.o: B = None
self.u: E = None
self.r: C = None
self.txt = txt
i = A("i")
d = B("d")
j = C("j")
g = D("g")
h = E("h")
f = F("f")
e = G("e")
i.s = j
d.o = e
d.z = j
j.r = f
j.p = e
j.u = e
j.v = d
j.t = g
j.s = g
j.w = g
g.u = d
h.t = f
f.q = d
f.x = h
f.y = e
f.o = i
e.t = d
e.o = d
e.u = h
e.r = j
assert h.t.o.s.u.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: G = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: F = None
self.p: G = None
self.v: B = None
self.t: D = None
self.s: D = None
self.w: D = None
self.u: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: B = None
self.x: E = None
self.y: G = None
self.o: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: B = None
self.o: B = None
self.u: E = None
self.r: C = None
self.txt = txt
i = A("i")
d = B("d")
j = C("j")
g = D("g")
h = E("h")
f = F("f")
e = G("e")
i.s = j
d.o = e
d.z = j
j.r = f
j.p = e
j.u = e
j.v = d
j.t = g
j.s = g
j.w = g
g.u = d
h.t = f
f.q = d
f.x = h
f.y = e
f.o = i
e.t = d
e.o = d
e.u = h
e.r = j
assert h.t.o.s.u.txt == "e"
|
h
|
f
|
i
|
j
|
e
|
x
|
x
|
x
| 7 | 16 | 7 | 4 | 0 |
5,343 |
class A:
def __init__(self, txt: str):
self.q: E = None
self.u: C = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: G = None
self.q: G = None
self.w: A = None
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.w: E = None
self.z: D = None
self.o: E = None
self.v: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.x: A = None
self.r: C = None
self.o: A = None
self.q: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: F = None
self.p: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: G = None
self.y: C = None
self.o: D = None
self.x: B = None
self.q: E = None
self.w: C = None
self.s: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: D = None
self.p: F = None
self.z: D = None
self.o: A = None
self.r: D = None
self.w: F = None
self.txt = txt
e = A("e")
c = B("c")
g = C("g")
a = D("a")
j = E("j")
b = F("b")
i = G("i")
e.q = j
e.u = g
e.y = g
c.y = i
c.q = i
c.w = e
c.r = j
g.y = c
g.w = j
g.o = j
g.v = j
g.z = a
a.z = i
a.x = e
a.o = e
a.r = g
a.q = b
j.u = b
j.p = e
b.p = i
b.y = g
b.w = g
b.o = a
b.s = a
b.x = c
b.q = j
i.s = a
i.z = a
i.r = a
i.p = b
i.w = b
i.o = e
assert g.y.w.q.u.x.txt == "
|
c"
|
class A:
def __init__(self, txt: str):
self.q: E = None
self.u: C = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: G = None
self.q: G = None
self.w: A = None
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.w: E = None
self.z: D = None
self.o: E = None
self.v: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.x: A = None
self.r: C = None
self.o: A = None
self.q: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: F = None
self.p: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: G = None
self.y: C = None
self.o: D = None
self.x: B = None
self.q: E = None
self.w: C = None
self.s: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: D = None
self.p: F = None
self.z: D = None
self.o: A = None
self.r: D = None
self.w: F = None
self.txt = txt
e = A("e")
c = B("c")
g = C("g")
a = D("a")
j = E("j")
b = F("b")
i = G("i")
e.q = j
e.u = g
e.y = g
c.y = i
c.q = i
c.w = e
c.r = j
g.y = c
g.w = j
g.o = j
g.v = j
g.z = a
a.z = i
a.x = e
a.o = e
a.r = g
a.q = b
j.u = b
j.p = e
b.p = i
b.y = g
b.w = g
b.o = a
b.s = a
b.x = c
b.q = j
i.s = a
i.z = a
i.r = a
i.p = b
i.w = b
i.o = e
assert g.y.w.q.u.x.txt == "c"
|
g
|
c
|
e
|
j
|
b
|
c
|
x
|
x
| 7 | 22 | 7 | 5 | 1 |
5,344 |
class A:
def __init__(self, txt: str):
self.y: G = None
self.q: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: D = None
self.r: G = None
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: F = None
self.p: E = None
self.t: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: D = None
self.s: G = None
self.x: G = None
self.p: D = None
self.q: G = None
self.y: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: C = None
self.u: B = None
self.y: A = None
self.v: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: B = None
self.s: D = None
self.txt = txt
d = A("d")
g = B("g")
j = C("j")
h = D("h")
i = E("i")
c = F("c")
e = G("e")
d.y = e
d.q = e
g.p = j
g.x = h
j.u = h
j.r = e
j.y = d
h.x = c
h.p = i
h.t = e
i.v = h
i.p = h
i.s = e
i.x = e
i.q = e
i.y = e
c.q = j
c.u = g
c.y = d
c.v = e
e.x = g
e.s = h
assert i.q.s.t.s.txt == "
|
h"
|
class A:
def __init__(self, txt: str):
self.y: G = None
self.q: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: D = None
self.r: G = None
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: F = None
self.p: E = None
self.t: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: D = None
self.s: G = None
self.x: G = None
self.p: D = None
self.q: G = None
self.y: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: C = None
self.u: B = None
self.y: A = None
self.v: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: B = None
self.s: D = None
self.txt = txt
d = A("d")
g = B("g")
j = C("j")
h = D("h")
i = E("i")
c = F("c")
e = G("e")
d.y = e
d.q = e
g.p = j
g.x = h
j.u = h
j.r = e
j.y = d
h.x = c
h.p = i
h.t = e
i.v = h
i.p = h
i.s = e
i.x = e
i.q = e
i.y = e
c.q = j
c.u = g
c.y = d
c.v = e
e.x = g
e.s = h
assert i.q.s.t.s.txt == "h"
|
i
|
e
|
h
|
e
|
h
|
x
|
x
|
x
| 7 | 17 | 7 | 4 | 2 |
5,345 |
class A:
def __init__(self, txt: str):
self.v: G = None
self.s: E = None
self.o: C = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.p: A = None
self.v: C = None
self.o: E = None
self.s: C = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.s: D = None
self.t: B = None
self.p: G = None
self.v: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: F = None
self.t: A = None
self.w: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: G = None
self.z: A = None
self.y: C = None
self.s: B = None
self.t: A = None
self.x: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: C = None
self.q: C = None
self.z: C = None
self.r: C = None
self.y: A = None
self.txt = txt
d = A("d")
a = B("a")
f = C("f")
h = D("h")
e = E("e")
c = F("c")
j = G("j")
d.v = j
d.s = e
d.o = f
d.u = a
a.z = j
a.p = d
a.y = d
a.v = f
a.s = f
a.o = e
f.y = a
f.t = a
f.s = h
f.p = j
f.v = j
h.p = c
h.t = d
h.w = a
e.p = j
e.z = d
e.t = d
e.x = d
e.y = f
e.s = a
c.w = j
j.t = f
j.q = f
j.z = f
j.r = f
j.y = d
assert f.t.s.s.p.txt == "
|
c"
|
class A:
def __init__(self, txt: str):
self.v: G = None
self.s: E = None
self.o: C = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.p: A = None
self.v: C = None
self.o: E = None
self.s: C = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.s: D = None
self.t: B = None
self.p: G = None
self.v: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: F = None
self.t: A = None
self.w: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: G = None
self.z: A = None
self.y: C = None
self.s: B = None
self.t: A = None
self.x: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: C = None
self.q: C = None
self.z: C = None
self.r: C = None
self.y: A = None
self.txt = txt
d = A("d")
a = B("a")
f = C("f")
h = D("h")
e = E("e")
c = F("c")
j = G("j")
d.v = j
d.s = e
d.o = f
d.u = a
a.z = j
a.p = d
a.y = d
a.v = f
a.s = f
a.o = e
f.y = a
f.t = a
f.s = h
f.p = j
f.v = j
h.p = c
h.t = d
h.w = a
e.p = j
e.z = d
e.t = d
e.x = d
e.y = f
e.s = a
c.w = j
j.t = f
j.q = f
j.z = f
j.r = f
j.y = d
assert f.t.s.s.p.txt == "c"
|
f
|
a
|
f
|
h
|
c
|
x
|
x
|
x
| 7 | 21 | 7 | 4 | 1 |
5,346 |
class A:
def __init__(self, txt: str):
self.r: E = None
self.x: D = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: G = None
self.p: A = None
self.w: A = None
self.t: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.u: F = None
self.x: E = None
self.q: B = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: F = None
self.w: F = None
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: G = None
self.w: A = None
self.v: C = None
self.x: C = None
self.t: C = None
self.o: F = None
self.q: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: E = None
self.v: B = None
self.x: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: F = None
self.txt = txt
g = A("g")
j = B("j")
c = C("c")
d = D("d")
a = E("a")
f = F("f")
e = G("e")
g.r = a
g.x = d
g.y = c
j.v = e
j.p = g
j.w = g
j.t = a
c.s = j
c.q = j
c.u = f
c.x = a
c.t = g
d.u = f
d.w = f
d.v = c
a.u = e
a.w = g
a.v = c
a.x = c
a.t = c
a.o = f
a.q = f
f.w = a
f.v = j
f.x = g
e.v = f
assert f.x.y.q.w.y.txt == "
|
c"
|
class A:
def __init__(self, txt: str):
self.r: E = None
self.x: D = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: G = None
self.p: A = None
self.w: A = None
self.t: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.u: F = None
self.x: E = None
self.q: B = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: F = None
self.w: F = None
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: G = None
self.w: A = None
self.v: C = None
self.x: C = None
self.t: C = None
self.o: F = None
self.q: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: E = None
self.v: B = None
self.x: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: F = None
self.txt = txt
g = A("g")
j = B("j")
c = C("c")
d = D("d")
a = E("a")
f = F("f")
e = G("e")
g.r = a
g.x = d
g.y = c
j.v = e
j.p = g
j.w = g
j.t = a
c.s = j
c.q = j
c.u = f
c.x = a
c.t = g
d.u = f
d.w = f
d.v = c
a.u = e
a.w = g
a.v = c
a.x = c
a.t = c
a.o = f
a.q = f
f.w = a
f.v = j
f.x = g
e.v = f
assert f.x.y.q.w.y.txt == "c"
|
f
|
g
|
c
|
j
|
g
|
c
|
x
|
x
| 7 | 20 | 7 | 5 | 2 |
5,347 |
class A:
def __init__(self, txt: str):
self.x: G = None
self.w: B = None
self.t: F = None
self.s: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: E = None
self.v: F = None
self.z: G = None
self.w: A = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: F = None
self.r: E = None
self.y: E = None
self.u: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: G = None
self.u: D = None
self.v: D = None
self.s: G = None
self.p: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
a = A("a")
i = B("i")
c = C("c")
j = D("j")
e = E("e")
g = F("g")
h = G("h")
a.x = h
a.w = i
a.t = g
a.s = g
i.w = a
c.r = e
c.v = g
c.z = h
c.w = a
c.x = i
j.v = g
j.u = g
j.r = e
j.y = e
e.w = h
e.s = h
e.u = j
e.v = j
e.p = j
g.z = j
h.v = i
assert c.v.z.r.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.x: G = None
self.w: B = None
self.t: F = None
self.s: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: E = None
self.v: F = None
self.z: G = None
self.w: A = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: F = None
self.r: E = None
self.y: E = None
self.u: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: G = None
self.u: D = None
self.v: D = None
self.s: G = None
self.p: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
a = A("a")
i = B("i")
c = C("c")
j = D("j")
e = E("e")
g = F("g")
h = G("h")
a.x = h
a.w = i
a.t = g
a.s = g
i.w = a
c.r = e
c.v = g
c.z = h
c.w = a
c.x = i
j.v = g
j.u = g
j.r = e
j.y = e
e.w = h
e.s = h
e.u = j
e.v = j
e.p = j
g.z = j
h.v = i
assert c.v.z.r.txt == "e"
|
c
|
g
|
j
|
e
|
x
|
x
|
x
|
x
| 7 | 15 | 7 | 3 | 0 |
5,348 |
class A:
def __init__(self, txt: str):
self.r: B = None
self.q: C = None
self.u: C = None
self.p: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.z: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: F = None
self.p: G = None
self.w: G = None
self.z: A = None
self.r: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: F = None
self.s: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: G = None
self.p: F = None
self.y: C = None
self.q: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: A = None
self.x: A = None
self.w: C = None
self.r: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: F = None
self.v: E = None
self.txt = txt
f = A("f")
b = B("b")
j = C("j")
h = D("h")
c = E("c")
a = F("a")
g = G("g")
f.r = b
f.q = j
f.u = j
f.p = a
b.o = j
b.z = h
j.q = a
j.p = g
j.w = g
j.z = f
j.r = c
h.p = a
h.s = j
c.t = g
c.p = a
c.y = j
c.q = j
a.u = f
a.x = f
a.r = f
a.w = j
g.q = a
g.v = c
assert c.q.w.v.t.txt == "
|
g"
|
class A:
def __init__(self, txt: str):
self.r: B = None
self.q: C = None
self.u: C = None
self.p: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.z: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: F = None
self.p: G = None
self.w: G = None
self.z: A = None
self.r: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: F = None
self.s: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: G = None
self.p: F = None
self.y: C = None
self.q: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: A = None
self.x: A = None
self.w: C = None
self.r: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: F = None
self.v: E = None
self.txt = txt
f = A("f")
b = B("b")
j = C("j")
h = D("h")
c = E("c")
a = F("a")
g = G("g")
f.r = b
f.q = j
f.u = j
f.p = a
b.o = j
b.z = h
j.q = a
j.p = g
j.w = g
j.z = f
j.r = c
h.p = a
h.s = j
c.t = g
c.p = a
c.y = j
c.q = j
a.u = f
a.x = f
a.r = f
a.w = j
g.q = a
g.v = c
assert c.q.w.v.t.txt == "g"
|
c
|
j
|
g
|
c
|
g
|
x
|
x
|
x
| 7 | 18 | 7 | 4 | 2 |
5,349 |
class A:
def __init__(self, txt: str):
self.y: F = None
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: F = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: E = None
self.o: D = None
self.r: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.r: C = None
self.p: B = None
self.t: F = None
self.w: G = None
self.u: G = None
self.y: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.t: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: D = None
self.z: E = None
self.q: A = None
self.x: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: E = None
self.txt = txt
j = A("j")
c = B("c")
e = C("e")
g = D("g")
f = E("f")
i = F("i")
d = G("d")
j.y = i
j.p = e
c.p = i
c.x = g
e.w = f
e.o = g
e.r = d
g.z = j
g.r = e
g.y = e
g.p = c
g.t = i
g.w = d
g.u = d
f.s = i
f.t = e
i.r = g
i.z = f
i.q = j
i.x = e
d.p = f
assert g.u.p.s.z.t.w.t.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.y: F = None
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: F = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: E = None
self.o: D = None
self.r: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.r: C = None
self.p: B = None
self.t: F = None
self.w: G = None
self.u: G = None
self.y: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.t: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: D = None
self.z: E = None
self.q: A = None
self.x: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: E = None
self.txt = txt
j = A("j")
c = B("c")
e = C("e")
g = D("g")
f = E("f")
i = F("i")
d = G("d")
j.y = i
j.p = e
c.p = i
c.x = g
e.w = f
e.o = g
e.r = d
g.z = j
g.r = e
g.y = e
g.p = c
g.t = i
g.w = d
g.u = d
f.s = i
f.t = e
i.r = g
i.z = f
i.q = j
i.x = e
d.p = f
assert g.u.p.s.z.t.w.t.txt == "e"
|
g
|
d
|
f
|
i
|
f
|
e
|
f
|
e
| 7 | 19 | 7 | 7 | 3 |
5,350 |
class A:
def __init__(self, txt: str):
self.y: B = None
self.s: C = None
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.s: E = None
self.z: E = None
self.q: G = None
self.p: F = None
self.r: A = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: B = None
self.t: C = None
self.x: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: D = None
self.v: A = None
self.r: G = None
self.o: G = None
self.q: G = None
self.w: A = None
self.u: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
j = A("j")
f = B("f")
b = C("b")
h = D("h")
g = E("g")
e = F("e")
i = G("i")
j.y = f
j.s = b
j.z = g
f.z = j
b.v = f
b.s = g
b.z = g
b.q = i
b.p = e
b.r = j
b.y = h
h.o = f
h.t = b
h.x = i
g.x = h
g.v = j
g.w = j
g.r = i
g.o = i
g.q = i
g.u = f
e.o = h
e.s = j
i.r = h
assert f.z.s.z.x.txt == "
|
h"
|
class A:
def __init__(self, txt: str):
self.y: B = None
self.s: C = None
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.s: E = None
self.z: E = None
self.q: G = None
self.p: F = None
self.r: A = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: B = None
self.t: C = None
self.x: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: D = None
self.v: A = None
self.r: G = None
self.o: G = None
self.q: G = None
self.w: A = None
self.u: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
j = A("j")
f = B("f")
b = C("b")
h = D("h")
g = E("g")
e = F("e")
i = G("i")
j.y = f
j.s = b
j.z = g
f.z = j
b.v = f
b.s = g
b.z = g
b.q = i
b.p = e
b.r = j
b.y = h
h.o = f
h.t = b
h.x = i
g.x = h
g.v = j
g.w = j
g.r = i
g.o = i
g.q = i
g.u = f
e.o = h
e.s = j
i.r = h
assert f.z.s.z.x.txt == "h"
|
f
|
j
|
b
|
g
|
h
|
x
|
x
|
x
| 7 | 20 | 7 | 4 | 0 |
5,351 |
class A:
def __init__(self, txt: str):
self.v: G = None
self.y: C = None
self.p: D = None
self.q: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: F = None
self.r: E = None
self.x: D = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: D = None
self.z: D = None
self.s: A = None
self.u: E = None
self.v: G = None
self.p: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: F = None
self.z: E = None
self.v: C = None
self.u: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: B = None
self.p: D = None
self.r: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: B = None
self.s: D = None
self.r: D = None
self.w: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: E = None
self.o: B = None
self.t: C = None
self.txt = txt
c = A("c")
b = B("b")
a = C("a")
g = D("g")
h = E("h")
e = F("e")
f = G("f")
c.v = f
c.q = f
c.y = a
c.p = g
b.t = e
b.r = h
b.x = g
b.w = a
a.w = g
a.z = g
a.s = c
a.u = h
a.p = h
a.v = f
g.p = e
g.z = h
g.v = a
g.u = f
h.v = b
h.p = g
h.r = a
e.y = b
e.s = g
e.r = g
e.w = a
f.w = h
f.o = b
f.t = a
assert b.x.v.z.txt == "
|
g"
|
class A:
def __init__(self, txt: str):
self.v: G = None
self.y: C = None
self.p: D = None
self.q: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: F = None
self.r: E = None
self.x: D = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: D = None
self.z: D = None
self.s: A = None
self.u: E = None
self.v: G = None
self.p: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: F = None
self.z: E = None
self.v: C = None
self.u: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: B = None
self.p: D = None
self.r: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: B = None
self.s: D = None
self.r: D = None
self.w: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: E = None
self.o: B = None
self.t: C = None
self.txt = txt
c = A("c")
b = B("b")
a = C("a")
g = D("g")
h = E("h")
e = F("e")
f = G("f")
c.v = f
c.q = f
c.y = a
c.p = g
b.t = e
b.r = h
b.x = g
b.w = a
a.w = g
a.z = g
a.s = c
a.u = h
a.p = h
a.v = f
g.p = e
g.z = h
g.v = a
g.u = f
h.v = b
h.p = g
h.r = a
e.y = b
e.s = g
e.r = g
e.w = a
f.w = h
f.o = b
f.t = a
assert b.x.v.z.txt == "g"
|
b
|
g
|
a
|
g
|
x
|
x
|
x
|
x
| 7 | 24 | 7 | 3 | 1 |
5,352 |
class A:
def __init__(self, txt: str):
self.v: B = None
self.t: D = None
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: G = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: B = None
self.q: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: B = None
self.z: F = None
self.s: F = None
self.o: G = None
self.p: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
h = A("h")
f = B("f")
j = C("j")
c = D("c")
a = E("a")
b = F("b")
d = G("d")
h.v = f
h.t = c
h.z = a
f.w = j
j.q = d
j.p = h
c.u = f
c.q = a
a.w = f
a.z = b
a.s = b
a.o = d
a.p = c
b.u = h
d.o = f
assert h.t.u.w.txt == "
|
j"
|
class A:
def __init__(self, txt: str):
self.v: B = None
self.t: D = None
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: G = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: B = None
self.q: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: B = None
self.z: F = None
self.s: F = None
self.o: G = None
self.p: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
h = A("h")
f = B("f")
j = C("j")
c = D("c")
a = E("a")
b = F("b")
d = G("d")
h.v = f
h.t = c
h.z = a
f.w = j
j.q = d
j.p = h
c.u = f
c.q = a
a.w = f
a.z = b
a.s = b
a.o = d
a.p = c
b.u = h
d.o = f
assert h.t.u.w.txt == "j"
|
h
|
c
|
f
|
j
|
x
|
x
|
x
|
x
| 7 | 14 | 7 | 3 | 0 |
5,353 |
class A:
def __init__(self, txt: str):
self.x: E = None
self.r: D = None
self.o: G = None
self.w: E = None
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: E = None
self.o: G = None
self.r: A = None
self.x: E = None
self.z: E = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.u: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.v: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.x: A = None
self.z: D = None
self.y: F = None
self.r: C = None
self.u: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: F = None
self.u: E = None
self.s: D = None
self.q: D = None
self.t: C = None
self.x: A = None
self.txt = txt
d = A("d")
f = B("f")
h = C("h")
j = D("j")
e = E("e")
a = F("a")
g = G("g")
d.x = e
d.w = e
d.r = j
d.z = j
d.o = g
f.v = e
f.x = e
f.z = e
f.o = g
f.r = d
f.s = d
h.r = f
h.u = e
j.o = h
j.v = a
e.v = a
e.y = a
e.x = d
e.z = j
e.r = h
e.u = h
a.r = f
g.y = a
g.u = e
g.s = j
g.q = j
g.t = h
g.x = d
assert g.s.o.r.s.x.v.r.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.x: E = None
self.r: D = None
self.o: G = None
self.w: E = None
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: E = None
self.o: G = None
self.r: A = None
self.x: E = None
self.z: E = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.u: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.v: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.x: A = None
self.z: D = None
self.y: F = None
self.r: C = None
self.u: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: F = None
self.u: E = None
self.s: D = None
self.q: D = None
self.t: C = None
self.x: A = None
self.txt = txt
d = A("d")
f = B("f")
h = C("h")
j = D("j")
e = E("e")
a = F("a")
g = G("g")
d.x = e
d.w = e
d.r = j
d.z = j
d.o = g
f.v = e
f.x = e
f.z = e
f.o = g
f.r = d
f.s = d
h.r = f
h.u = e
j.o = h
j.v = a
e.v = a
e.y = a
e.x = d
e.z = j
e.r = h
e.u = h
a.r = f
g.y = a
g.u = e
g.s = j
g.q = j
g.t = h
g.x = d
assert g.s.o.r.s.x.v.r.txt == "f"
|
g
|
j
|
h
|
f
|
d
|
e
|
a
|
f
| 7 | 20 | 7 | 7 | 1 |
5,354 |
class A:
def __init__(self, txt: str):
self.z: B = None
self.t: C = None
self.o: D = None
self.u: D = None
self.x: D = None
self.p: F = None
self.w: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: F = None
self.p: D = None
self.v: D = None
self.q: D = None
self.y: D = None
self.r: A = None
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: E = None
self.o: B = None
self.r: G = None
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
i = A("i")
f = B("f")
b = C("b")
g = D("g")
c = E("c")
j = F("j")
h = G("h")
i.z = f
i.t = b
i.o = g
i.u = g
i.x = g
i.p = j
i.w = h
f.x = j
f.p = g
f.v = g
f.q = g
f.y = g
f.r = i
f.z = c
b.s = c
b.o = f
b.r = h
b.x = g
g.x = j
c.u = i
j.t = f
h.r = b
assert i.z.z.u.o.txt == "
|
g"
|
class A:
def __init__(self, txt: str):
self.z: B = None
self.t: C = None
self.o: D = None
self.u: D = None
self.x: D = None
self.p: F = None
self.w: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: F = None
self.p: D = None
self.v: D = None
self.q: D = None
self.y: D = None
self.r: A = None
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: E = None
self.o: B = None
self.r: G = None
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
i = A("i")
f = B("f")
b = C("b")
g = D("g")
c = E("c")
j = F("j")
h = G("h")
i.z = f
i.t = b
i.o = g
i.u = g
i.x = g
i.p = j
i.w = h
f.x = j
f.p = g
f.v = g
f.q = g
f.y = g
f.r = i
f.z = c
b.s = c
b.o = f
b.r = h
b.x = g
g.x = j
c.u = i
j.t = f
h.r = b
assert i.z.z.u.o.txt == "g"
|
i
|
f
|
c
|
i
|
g
|
x
|
x
|
x
| 7 | 17 | 7 | 4 | 1 |
5,355 |
class A:
def __init__(self, txt: str):
self.p: E = None
self.o: F = None
self.r: E = None
self.v: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.s: D = None
self.o: D = None
self.p: G = None
self.x: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.s: D = None
self.q: E = None
self.u: E = None
self.y: D = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: A = None
self.q: C = None
self.p: B = None
self.r: F = None
self.o: F = None
self.z: C = None
self.v: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: C = None
self.r: F = None
self.w: F = None
self.p: C = None
self.t: A = None
self.txt = txt
e = A("e")
b = B("b")
i = C("i")
d = D("d")
f = E("f")
h = F("h")
a = G("a")
e.p = f
e.r = f
e.o = h
e.v = a
b.v = e
b.s = d
b.o = d
b.p = a
b.x = a
i.p = b
i.v = b
i.s = d
i.y = d
i.q = f
i.u = f
d.w = a
f.y = e
f.q = i
f.z = i
f.v = i
f.p = b
f.r = h
f.o = h
h.w = e
a.x = i
a.p = i
a.r = h
a.w = h
a.t = e
assert i.q.v.s.w.t.v.txt == "
|
a"
|
class A:
def __init__(self, txt: str):
self.p: E = None
self.o: F = None
self.r: E = None
self.v: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.s: D = None
self.o: D = None
self.p: G = None
self.x: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.s: D = None
self.q: E = None
self.u: E = None
self.y: D = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: A = None
self.q: C = None
self.p: B = None
self.r: F = None
self.o: F = None
self.z: C = None
self.v: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: C = None
self.r: F = None
self.w: F = None
self.p: C = None
self.t: A = None
self.txt = txt
e = A("e")
b = B("b")
i = C("i")
d = D("d")
f = E("f")
h = F("h")
a = G("a")
e.p = f
e.r = f
e.o = h
e.v = a
b.v = e
b.s = d
b.o = d
b.p = a
b.x = a
i.p = b
i.v = b
i.s = d
i.y = d
i.q = f
i.u = f
d.w = a
f.y = e
f.q = i
f.z = i
f.v = i
f.p = b
f.r = h
f.o = h
h.w = e
a.x = i
a.p = i
a.r = h
a.w = h
a.t = e
assert i.q.v.s.w.t.v.txt == "a"
|
i
|
f
|
i
|
d
|
a
|
e
|
a
|
x
| 7 | 18 | 7 | 6 | 2 |
5,356 |
class A:
def __init__(self, txt: str):
self.v: F = None
self.z: C = None
self.q: F = None
self.o: E = None
self.s: F = None
self.y: G = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.t: C = None
self.x: A = None
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: A = None
self.x: A = None
self.t: B = None
self.o: B = None
self.s: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: E = None
self.v: B = None
self.w: C = None
self.x: E = None
self.s: D = None
self.y: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: D = None
self.s: F = None
self.txt = txt
a = A("a")
j = B("j")
d = C("d")
g = D("g")
b = E("b")
h = F("h")
c = G("c")
a.v = h
a.q = h
a.s = h
a.z = d
a.r = d
a.o = b
a.y = c
j.u = h
d.t = j
g.q = j
g.t = d
g.o = d
g.x = a
b.w = a
b.x = a
b.t = j
b.o = j
b.s = c
h.q = b
h.x = b
h.v = j
h.w = d
h.y = d
h.s = g
c.q = g
c.s = h
assert c.s.q.t.u.txt == "
|
h"
|
class A:
def __init__(self, txt: str):
self.v: F = None
self.z: C = None
self.q: F = None
self.o: E = None
self.s: F = None
self.y: G = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.t: C = None
self.x: A = None
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: A = None
self.x: A = None
self.t: B = None
self.o: B = None
self.s: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: E = None
self.v: B = None
self.w: C = None
self.x: E = None
self.s: D = None
self.y: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: D = None
self.s: F = None
self.txt = txt
a = A("a")
j = B("j")
d = C("d")
g = D("g")
b = E("b")
h = F("h")
c = G("c")
a.v = h
a.q = h
a.s = h
a.z = d
a.r = d
a.o = b
a.y = c
j.u = h
d.t = j
g.q = j
g.t = d
g.o = d
g.x = a
b.w = a
b.x = a
b.t = j
b.o = j
b.s = c
h.q = b
h.x = b
h.v = j
h.w = d
h.y = d
h.s = g
c.q = g
c.s = h
assert c.s.q.t.u.txt == "h"
|
c
|
h
|
b
|
j
|
h
|
x
|
x
|
x
| 7 | 18 | 7 | 4 | 1 |
5,357 |
class A:
def __init__(self, txt: str):
self.q: B = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.z: E = None
self.o: D = None
self.q: F = None
self.r: E = None
self.y: D = None
self.x: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.t: D = None
self.w: D = None
self.r: A = None
self.o: A = None
self.p: G = None
self.s: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: A = None
self.o: G = None
self.v: F = None
self.y: C = None
self.s: E = None
self.p: E = None
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.y: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.s: A = None
self.v: A = None
self.u: G = None
self.t: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.r: A = None
self.s: A = None
self.u: B = None
self.txt = txt
j = A("j")
a = B("a")
f = C("f")
e = D("e")
h = E("h")
d = F("d")
i = G("i")
j.q = a
j.s = f
a.w = j
a.z = h
a.r = h
a.o = e
a.y = e
a.q = d
a.x = i
f.u = j
f.r = j
f.o = j
f.t = e
f.w = e
f.p = i
f.s = d
e.r = j
e.o = i
e.v = d
e.y = f
e.s = h
e.p = h
e.u = a
h.v = d
h.y = e
d.o = e
d.s = j
d.v = j
d.u = i
d.t = h
i.z = h
i.r = j
i.s = j
i.u = a
assert e.o.u.x.u.txt == "
|
a"
|
class A:
def __init__(self, txt: str):
self.q: B = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.z: E = None
self.o: D = None
self.q: F = None
self.r: E = None
self.y: D = None
self.x: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.t: D = None
self.w: D = None
self.r: A = None
self.o: A = None
self.p: G = None
self.s: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: A = None
self.o: G = None
self.v: F = None
self.y: C = None
self.s: E = None
self.p: E = None
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.y: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.s: A = None
self.v: A = None
self.u: G = None
self.t: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.r: A = None
self.s: A = None
self.u: B = None
self.txt = txt
j = A("j")
a = B("a")
f = C("f")
e = D("e")
h = E("h")
d = F("d")
i = G("i")
j.q = a
j.s = f
a.w = j
a.z = h
a.r = h
a.o = e
a.y = e
a.q = d
a.x = i
f.u = j
f.r = j
f.o = j
f.t = e
f.w = e
f.p = i
f.s = d
e.r = j
e.o = i
e.v = d
e.y = f
e.s = h
e.p = h
e.u = a
h.v = d
h.y = e
d.o = e
d.s = j
d.v = j
d.u = i
d.t = h
i.z = h
i.r = j
i.s = j
i.u = a
assert e.o.u.x.u.txt == "a"
|
e
|
i
|
a
|
i
|
a
|
x
|
x
|
x
| 7 | 26 | 7 | 4 | 2 |
5,358 |
class A:
def __init__(self, txt: str):
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: F = None
self.w: F = None
self.q: F = None
self.s: E = None
self.r: D = None
self.t: A = None
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: G = None
self.t: C = None
self.q: F = None
self.s: G = None
self.y: C = None
self.w: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: B = None
self.y: E = None
self.z: C = None
self.q: A = None
self.r: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: B = None
self.r: B = None
self.t: E = None
self.y: A = None
self.txt = txt
e = A("e")
d = B("d")
g = C("g")
h = D("h")
a = E("a")
j = F("j")
c = G("c")
e.t = h
d.p = j
d.w = j
d.q = j
d.s = a
d.r = h
d.t = e
d.o = g
g.q = j
h.u = c
h.s = c
h.t = g
h.y = g
h.q = j
h.w = j
a.v = g
j.s = d
j.y = a
j.z = g
j.q = e
j.r = c
c.p = d
c.r = d
c.t = a
c.y = e
assert a.v.q.q.t.u.t.txt == "
|
a"
|
class A:
def __init__(self, txt: str):
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: F = None
self.w: F = None
self.q: F = None
self.s: E = None
self.r: D = None
self.t: A = None
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: G = None
self.t: C = None
self.q: F = None
self.s: G = None
self.y: C = None
self.w: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: B = None
self.y: E = None
self.z: C = None
self.q: A = None
self.r: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: B = None
self.r: B = None
self.t: E = None
self.y: A = None
self.txt = txt
e = A("e")
d = B("d")
g = C("g")
h = D("h")
a = E("a")
j = F("j")
c = G("c")
e.t = h
d.p = j
d.w = j
d.q = j
d.s = a
d.r = h
d.t = e
d.o = g
g.q = j
h.u = c
h.s = c
h.t = g
h.y = g
h.q = j
h.w = j
a.v = g
j.s = d
j.y = a
j.z = g
j.q = e
j.r = c
c.p = d
c.r = d
c.t = a
c.y = e
assert a.v.q.q.t.u.t.txt == "a"
|
a
|
g
|
j
|
e
|
h
|
c
|
a
|
x
| 7 | 19 | 7 | 6 | 1 |
5,359 |
class A:
def __init__(self, txt: str):
self.x: C = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.s: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.z: B = None
self.w: A = None
self.r: A = None
self.q: D = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: F = None
self.x: F = None
self.p: F = None
self.y: F = None
self.q: F = None
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: A = None
self.r: 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.u: B = None
self.o: A = None
self.r: C = None
self.z: B = None
self.q: E = None
self.t: D = None
self.txt = txt
j = A("j")
e = B("e")
i = C("i")
c = D("c")
b = E("b")
f = F("f")
d = G("d")
j.x = i
j.o = i
e.z = d
e.s = b
i.t = j
i.w = j
i.r = j
i.p = j
i.z = e
i.q = c
c.v = f
c.x = f
c.p = f
c.y = f
c.q = f
c.t = j
b.s = j
b.r = f
f.z = d
d.u = e
d.z = e
d.o = j
d.r = i
d.q = b
d.t = c
assert d.o.x.w.o.z.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.x: C = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.s: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.z: B = None
self.w: A = None
self.r: A = None
self.q: D = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: F = None
self.x: F = None
self.p: F = None
self.y: F = None
self.q: F = None
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: A = None
self.r: 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.u: B = None
self.o: A = None
self.r: C = None
self.z: B = None
self.q: E = None
self.t: D = None
self.txt = txt
j = A("j")
e = B("e")
i = C("i")
c = D("c")
b = E("b")
f = F("f")
d = G("d")
j.x = i
j.o = i
e.z = d
e.s = b
i.t = j
i.w = j
i.r = j
i.p = j
i.z = e
i.q = c
c.v = f
c.x = f
c.p = f
c.y = f
c.q = f
c.t = j
b.s = j
b.r = f
f.z = d
d.u = e
d.z = e
d.o = j
d.r = i
d.q = b
d.t = c
assert d.o.x.w.o.z.txt == "e"
|
d
|
j
|
i
|
j
|
i
|
e
|
x
|
x
| 7 | 16 | 7 | 5 | 2 |
5,360 |
class A:
def __init__(self, txt: str):
self.z: G = None
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: F = None
self.x: G = None
self.p: C = None
self.r: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: G = None
self.r: B = 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.y: G = 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: C = None
self.txt = txt
a = A("a")
i = B("i")
f = C("f")
b = D("b")
j = E("j")
g = F("g")
d = G("d")
a.z = d
a.u = g
i.y = g
i.x = d
i.r = d
i.p = f
f.t = d
f.r = i
b.r = d
j.y = d
g.z = d
d.z = f
assert d.z.t.z.r.txt == "
|
i"
|
class A:
def __init__(self, txt: str):
self.z: G = None
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: F = None
self.x: G = None
self.p: C = None
self.r: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: G = None
self.r: B = 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.y: G = 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: C = None
self.txt = txt
a = A("a")
i = B("i")
f = C("f")
b = D("b")
j = E("j")
g = F("g")
d = G("d")
a.z = d
a.u = g
i.y = g
i.x = d
i.r = d
i.p = f
f.t = d
f.r = i
b.r = d
j.y = d
g.z = d
d.z = f
assert d.z.t.z.r.txt == "i"
|
d
|
f
|
d
|
f
|
i
|
x
|
x
|
x
| 7 | 11 | 7 | 4 | 2 |
5,361 |
class A:
def __init__(self, txt: str):
self.y: G = None
self.p: E = None
self.u: E = 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.x: B = None
self.t: B = None
self.u: G = 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.o: A = None
self.x: G = None
self.q: B = None
self.u: B = None
self.p: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: A = None
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.v: C = None
self.o: A = None
self.txt = txt
a = A("a")
b = B("b")
e = C("e")
c = D("c")
d = E("d")
i = F("i")
g = G("g")
a.y = g
a.p = d
a.u = d
b.q = d
e.x = b
e.t = b
e.u = g
c.p = i
d.o = a
d.p = a
d.x = g
d.q = b
d.u = b
i.q = a
i.s = a
g.z = c
g.v = e
g.o = a
assert d.p.u.p.y.o.txt == "
|
a"
|
class A:
def __init__(self, txt: str):
self.y: G = None
self.p: E = None
self.u: E = 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.x: B = None
self.t: B = None
self.u: G = 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.o: A = None
self.x: G = None
self.q: B = None
self.u: B = None
self.p: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: A = None
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.v: C = None
self.o: A = None
self.txt = txt
a = A("a")
b = B("b")
e = C("e")
c = D("c")
d = E("d")
i = F("i")
g = G("g")
a.y = g
a.p = d
a.u = d
b.q = d
e.x = b
e.t = b
e.u = g
c.p = i
d.o = a
d.p = a
d.x = g
d.q = b
d.u = b
i.q = a
i.s = a
g.z = c
g.v = e
g.o = a
assert d.p.u.p.y.o.txt == "a"
|
d
|
a
|
d
|
a
|
g
|
a
|
x
|
x
| 7 | 13 | 7 | 5 | 3 |
5,362 |
class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: E = None
self.x: B = None
self.u: B = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: G = None
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: G = None
self.r: C = None
self.v: A = None
self.p: F = None
self.x: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: A = None
self.s: D = None
self.t: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: E = None
self.o: C = None
self.x: B = None
self.p: B = None
self.txt = txt
h = A("h")
f = B("f")
a = C("a")
j = D("j")
b = E("b")
g = F("g")
i = G("i")
h.s = f
f.p = b
a.p = b
a.x = f
a.u = f
a.t = h
j.o = i
j.w = b
b.t = i
b.r = a
b.v = h
b.p = g
b.x = j
g.r = h
g.s = j
g.t = a
i.q = b
i.o = a
i.x = f
i.p = f
assert a.p.p.t.p.p.txt == "
|
g"
|
class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: E = None
self.x: B = None
self.u: B = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: G = None
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: G = None
self.r: C = None
self.v: A = None
self.p: F = None
self.x: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: A = None
self.s: D = None
self.t: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: E = None
self.o: C = None
self.x: B = None
self.p: B = None
self.txt = txt
h = A("h")
f = B("f")
a = C("a")
j = D("j")
b = E("b")
g = F("g")
i = G("i")
h.s = f
f.p = b
a.p = b
a.x = f
a.u = f
a.t = h
j.o = i
j.w = b
b.t = i
b.r = a
b.v = h
b.p = g
b.x = j
g.r = h
g.s = j
g.t = a
i.q = b
i.o = a
i.x = f
i.p = f
assert a.p.p.t.p.p.txt == "g"
|
a
|
b
|
g
|
a
|
b
|
g
|
x
|
x
| 7 | 18 | 7 | 5 | 3 |
5,363 |
class A:
def __init__(self, txt: str):
self.z: B = None
self.s: B = None
self.w: C = None
self.o: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.z: A = None
self.r: E = None
self.x: A = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: D = None
self.u: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.o: C = None
self.u: A = None
self.x: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: B = None
self.v: F = None
self.u: F = None
self.q: B = None
self.txt = txt
a = A("a")
i = B("i")
h = C("h")
f = D("f")
c = E("c")
g = F("g")
j = G("j")
a.z = i
a.s = i
a.w = h
a.o = j
i.y = h
i.r = c
h.q = i
h.z = a
h.x = a
h.p = a
h.r = c
f.u = g
c.v = f
c.u = j
g.z = f
g.o = h
g.u = a
g.x = i
j.x = i
j.q = i
j.v = g
j.u = g
assert h.q.r.v.u.x.r.txt == "
|
c"
|
class A:
def __init__(self, txt: str):
self.z: B = None
self.s: B = None
self.w: C = None
self.o: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.z: A = None
self.r: E = None
self.x: A = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: D = None
self.u: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.o: C = None
self.u: A = None
self.x: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: B = None
self.v: F = None
self.u: F = None
self.q: B = None
self.txt = txt
a = A("a")
i = B("i")
h = C("h")
f = D("f")
c = E("c")
g = F("g")
j = G("j")
a.z = i
a.s = i
a.w = h
a.o = j
i.y = h
i.r = c
h.q = i
h.z = a
h.x = a
h.p = a
h.r = c
f.u = g
c.v = f
c.u = j
g.z = f
g.o = h
g.u = a
g.x = i
j.x = i
j.q = i
j.v = g
j.u = g
assert h.q.r.v.u.x.r.txt == "c"
|
h
|
i
|
c
|
f
|
g
|
i
|
c
|
x
| 7 | 17 | 7 | 6 | 2 |
5,364 |
class A:
def __init__(self, txt: str):
self.y: B = None
self.z: F = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: E = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.o: D = None
self.s: E = None
self.q: D = None
self.r: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.q: C = None
self.w: D = None
self.s: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: C = None
self.p: C = None
self.q: C = None
self.y: E = None
self.u: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: E = None
self.w: B = None
self.t: E = None
self.y: D = None
self.txt = txt
d = A("d")
e = B("e")
b = C("b")
a = D("a")
c = E("c")
f = F("f")
h = G("h")
d.y = e
d.z = f
d.x = a
e.q = c
e.r = b
b.v = e
b.o = a
b.q = a
b.r = a
b.s = c
a.s = f
c.z = d
c.q = b
c.w = a
c.s = a
f.s = b
f.p = b
f.q = b
f.y = c
f.u = c
h.q = c
h.t = c
h.w = e
h.y = a
assert f.u.z.z.y.s.s.u.txt == "
|
c"
|
class A:
def __init__(self, txt: str):
self.y: B = None
self.z: F = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: E = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.o: D = None
self.s: E = None
self.q: D = None
self.r: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.q: C = None
self.w: D = None
self.s: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: C = None
self.p: C = None
self.q: C = None
self.y: E = None
self.u: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: E = None
self.w: B = None
self.t: E = None
self.y: D = None
self.txt = txt
d = A("d")
e = B("e")
b = C("b")
a = D("a")
c = E("c")
f = F("f")
h = G("h")
d.y = e
d.z = f
d.x = a
e.q = c
e.r = b
b.v = e
b.o = a
b.q = a
b.r = a
b.s = c
a.s = f
c.z = d
c.q = b
c.w = a
c.s = a
f.s = b
f.p = b
f.q = b
f.y = c
f.u = c
h.q = c
h.t = c
h.w = e
h.y = a
assert f.u.z.z.y.s.s.u.txt == "c"
|
f
|
c
|
d
|
f
|
c
|
a
|
f
|
c
| 7 | 17 | 7 | 7 | 4 |
5,365 |
class A:
def __init__(self, txt: str):
self.s: D = None
self.z: G = None
self.x: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: F = None
self.z: D = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: F = None
self.w: A = 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.x: B = None
self.v: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: G = None
self.x: E = None
self.p: B = None
self.y: B = None
self.v: E = None
self.u: A = None
self.o: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
i = A("i")
h = B("h")
j = C("j")
g = D("g")
f = E("f")
c = F("c")
e = G("e")
i.s = g
i.z = e
i.x = e
h.s = c
h.z = g
h.w = i
j.y = c
j.w = i
g.p = c
f.x = h
f.v = c
c.w = e
c.x = f
c.v = f
c.o = f
c.p = h
c.y = h
c.u = i
e.y = g
assert e.y.p.u.txt == "
|
i"
|
class A:
def __init__(self, txt: str):
self.s: D = None
self.z: G = None
self.x: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: F = None
self.z: D = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: F = None
self.w: A = 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.x: B = None
self.v: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: G = None
self.x: E = None
self.p: B = None
self.y: B = None
self.v: E = None
self.u: A = None
self.o: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
i = A("i")
h = B("h")
j = C("j")
g = D("g")
f = E("f")
c = F("c")
e = G("e")
i.s = g
i.z = e
i.x = e
h.s = c
h.z = g
h.w = i
j.y = c
j.w = i
g.p = c
f.x = h
f.v = c
c.w = e
c.x = f
c.v = f
c.o = f
c.p = h
c.y = h
c.u = i
e.y = g
assert e.y.p.u.txt == "i"
|
e
|
g
|
c
|
i
|
x
|
x
|
x
|
x
| 7 | 15 | 7 | 3 | 0 |
5,366 |
class A:
def __init__(self, txt: str):
self.q: E = None
self.u: D = None
self.p: D = None
self.o: E = None
self.v: G = None
self.t: G = None
self.w: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: F = None
self.q: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: B = None
self.p: F = None
self.q: A = None
self.w: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: G = None
self.z: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: C = None
self.z: E = None
self.s: A = None
self.w: E = None
self.u: E = None
self.txt = txt
d = A("d")
c = B("c")
i = C("i")
e = D("e")
j = E("j")
a = F("a")
g = G("g")
d.q = j
d.o = j
d.u = e
d.p = e
d.v = g
d.t = g
d.w = a
c.y = g
i.w = a
e.y = a
e.q = j
j.v = c
j.w = c
j.p = a
j.q = d
a.p = g
a.z = c
g.o = i
g.z = j
g.w = j
g.u = j
g.s = d
assert d.q.p.p.o.w.z.y.txt == "
|
g"
|
class A:
def __init__(self, txt: str):
self.q: E = None
self.u: D = None
self.p: D = None
self.o: E = None
self.v: G = None
self.t: G = None
self.w: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: F = None
self.q: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: B = None
self.p: F = None
self.q: A = None
self.w: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: G = None
self.z: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: C = None
self.z: E = None
self.s: A = None
self.w: E = None
self.u: E = None
self.txt = txt
d = A("d")
c = B("c")
i = C("i")
e = D("e")
j = E("j")
a = F("a")
g = G("g")
d.q = j
d.o = j
d.u = e
d.p = e
d.v = g
d.t = g
d.w = a
c.y = g
i.w = a
e.y = a
e.q = j
j.v = c
j.w = c
j.p = a
j.q = d
a.p = g
a.z = c
g.o = i
g.z = j
g.w = j
g.u = j
g.s = d
assert d.q.p.p.o.w.z.y.txt == "g"
|
d
|
j
|
a
|
g
|
i
|
a
|
c
|
g
| 7 | 16 | 7 | 7 | 2 |
5,367 |
class A:
def __init__(self, txt: str):
self.z: B = None
self.r: E = None
self.y: B = None
self.v: F = None
self.w: D = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.q: A = None
self.t: A = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: G = None
self.v: C = None
self.z: E = None
self.q: F = None
self.p: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.z: A = None
self.v: A = None
self.o: G = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: E = None
self.z: A = None
self.v: E = None
self.x: F = None
self.p: A = None
self.q: B = None
self.txt = txt
h = A("h")
b = B("b")
g = C("g")
f = D("f")
d = E("d")
c = F("c")
j = G("j")
h.z = b
h.y = b
h.r = d
h.v = c
h.w = f
h.o = g
b.p = f
b.x = f
b.q = h
b.t = h
g.y = h
f.o = j
f.v = g
f.z = d
f.q = c
f.p = b
d.s = c
d.z = h
d.v = h
d.y = h
d.o = j
c.p = j
j.s = d
j.v = d
j.z = h
j.p = h
j.x = c
j.q = b
assert b.p.o.q.txt == "
|
b"
|
class A:
def __init__(self, txt: str):
self.z: B = None
self.r: E = None
self.y: B = None
self.v: F = None
self.w: D = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.q: A = None
self.t: A = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: G = None
self.v: C = None
self.z: E = None
self.q: F = None
self.p: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.z: A = None
self.v: A = None
self.o: G = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: E = None
self.z: A = None
self.v: E = None
self.x: F = None
self.p: A = None
self.q: B = None
self.txt = txt
h = A("h")
b = B("b")
g = C("g")
f = D("f")
d = E("d")
c = F("c")
j = G("j")
h.z = b
h.y = b
h.r = d
h.v = c
h.w = f
h.o = g
b.p = f
b.x = f
b.q = h
b.t = h
g.y = h
f.o = j
f.v = g
f.z = d
f.q = c
f.p = b
d.s = c
d.z = h
d.v = h
d.y = h
d.o = j
c.p = j
j.s = d
j.v = d
j.z = h
j.p = h
j.x = c
j.q = b
assert b.p.o.q.txt == "b"
|
b
|
f
|
j
|
b
|
x
|
x
|
x
|
x
| 7 | 21 | 7 | 3 | 1 |
5,368 |
class A:
def __init__(self, txt: str):
self.z: F = None
self.q: F = None
self.s: G = None
self.o: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: F = None
self.s: D = None
self.w: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.t: G = None
self.u: D = None
self.r: D = None
self.q: E = None
self.p: F = None
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.r: B = None
self.s: C = None
self.q: A = None
self.t: A = None
self.p: F = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: A = None
self.y: B = None
self.q: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: A = None
self.r: B = None
self.u: G = None
self.t: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: F = None
self.p: B = None
self.s: E = None
self.txt = txt
f = A("f")
g = B("g")
a = C("a")
b = D("b")
h = E("h")
i = F("i")
c = G("c")
f.z = i
f.q = i
f.s = c
f.o = h
g.r = i
g.w = i
g.s = b
a.x = h
a.q = h
a.t = c
a.u = b
a.r = b
a.p = i
a.y = f
b.z = c
b.r = g
b.s = a
b.q = f
b.t = f
b.p = i
b.v = h
h.w = f
h.y = g
h.q = g
i.y = f
i.r = g
i.t = g
i.u = c
c.x = i
c.p = g
c.s = h
assert b.s.t.p.s.txt == "
|
b"
|
class A:
def __init__(self, txt: str):
self.z: F = None
self.q: F = None
self.s: G = None
self.o: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: F = None
self.s: D = None
self.w: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.t: G = None
self.u: D = None
self.r: D = None
self.q: E = None
self.p: F = None
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.r: B = None
self.s: C = None
self.q: A = None
self.t: A = None
self.p: F = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: A = None
self.y: B = None
self.q: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: A = None
self.r: B = None
self.u: G = None
self.t: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: F = None
self.p: B = None
self.s: E = None
self.txt = txt
f = A("f")
g = B("g")
a = C("a")
b = D("b")
h = E("h")
i = F("i")
c = G("c")
f.z = i
f.q = i
f.s = c
f.o = h
g.r = i
g.w = i
g.s = b
a.x = h
a.q = h
a.t = c
a.u = b
a.r = b
a.p = i
a.y = f
b.z = c
b.r = g
b.s = a
b.q = f
b.t = f
b.p = i
b.v = h
h.w = f
h.y = g
h.q = g
i.y = f
i.r = g
i.t = g
i.u = c
c.x = i
c.p = g
c.s = h
assert b.s.t.p.s.txt == "b"
|
b
|
a
|
c
|
g
|
b
|
x
|
x
|
x
| 7 | 24 | 7 | 4 | 1 |
5,369 |
class A:
def __init__(self, txt: str):
self.u: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: G = None
self.u: E = None
self.o: G = None
self.q: A = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.o: A = None
self.t: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: G = None
self.u: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: C = None
self.x: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: E = None
self.q: D = None
self.txt = txt
c = A("c")
j = B("j")
f = C("f")
d = D("d")
g = E("g")
b = F("b")
e = G("e")
c.u = d
j.x = e
j.o = e
j.u = g
j.q = c
j.s = f
f.p = j
f.o = c
f.t = g
d.t = e
d.u = g
g.o = e
b.w = f
b.x = j
e.t = g
e.q = d
assert j.s.p.q.u.t.q.txt == "
|
d"
|
class A:
def __init__(self, txt: str):
self.u: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: G = None
self.u: E = None
self.o: G = None
self.q: A = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.o: A = None
self.t: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: G = None
self.u: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: C = None
self.x: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: E = None
self.q: D = None
self.txt = txt
c = A("c")
j = B("j")
f = C("f")
d = D("d")
g = E("g")
b = F("b")
e = G("e")
c.u = d
j.x = e
j.o = e
j.u = g
j.q = c
j.s = f
f.p = j
f.o = c
f.t = g
d.t = e
d.u = g
g.o = e
b.w = f
b.x = j
e.t = g
e.q = d
assert j.s.p.q.u.t.q.txt == "d"
|
j
|
f
|
j
|
c
|
d
|
e
|
d
|
x
| 7 | 15 | 7 | 6 | 2 |
5,370 |
class A:
def __init__(self, txt: str):
self.r: B = 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.r: F = None
self.w: A = None
self.u: A = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.r: G = None
self.v: C = None
self.p: C = None
self.w: F = None
self.s: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: C = None
self.z: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: D = None
self.q: B = None
self.y: F = None
self.v: B = None
self.w: D = None
self.t: A = None
self.r: C = None
self.txt = txt
d = A("d")
c = B("c")
i = C("i")
b = D("b")
g = E("g")
j = F("j")
e = G("e")
d.r = c
c.x = g
i.r = j
i.w = d
i.u = d
i.y = c
b.z = i
b.v = i
b.p = i
b.r = e
b.w = j
b.s = c
g.t = e
j.x = i
j.z = d
e.o = b
e.w = b
e.q = c
e.v = c
e.y = j
e.t = d
e.r = i
assert b.w.x.r.x.r.txt == "
|
j"
|
class A:
def __init__(self, txt: str):
self.r: B = 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.r: F = None
self.w: A = None
self.u: A = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.r: G = None
self.v: C = None
self.p: C = None
self.w: F = None
self.s: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: C = None
self.z: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: D = None
self.q: B = None
self.y: F = None
self.v: B = None
self.w: D = None
self.t: A = None
self.r: C = None
self.txt = txt
d = A("d")
c = B("c")
i = C("i")
b = D("b")
g = E("g")
j = F("j")
e = G("e")
d.r = c
c.x = g
i.r = j
i.w = d
i.u = d
i.y = c
b.z = i
b.v = i
b.p = i
b.r = e
b.w = j
b.s = c
g.t = e
j.x = i
j.z = d
e.o = b
e.w = b
e.q = c
e.v = c
e.y = j
e.t = d
e.r = i
assert b.w.x.r.x.r.txt == "j"
|
b
|
j
|
i
|
j
|
i
|
j
|
x
|
x
| 7 | 17 | 7 | 5 | 3 |
5,371 |
class A:
def __init__(self, txt: str):
self.r: F = None
self.v: E = None
self.y: D = None
self.z: C = None
self.q: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: F = None
self.t: F = None
self.w: E = None
self.q: F = None
self.o: E = None
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: F = None
self.v: C = None
self.u: B = None
self.z: B = None
self.r: G = None
self.s: C = None
self.q: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: C = None
self.v: B = None
self.w: D = None
self.t: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: C = None
self.u: E = None
self.s: E = None
self.x: B = None
self.o: C = None
self.v: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: D = None
self.o: D = None
self.u: B = None
self.txt = txt
i = A("i")
a = B("a")
c = C("c")
j = D("j")
g = E("g")
b = F("b")
d = G("d")
i.r = b
i.q = b
i.v = g
i.y = j
i.z = c
a.o = j
c.p = b
c.t = b
c.q = b
c.w = g
c.o = g
c.u = a
j.o = b
j.v = c
j.s = c
j.u = a
j.z = a
j.r = d
j.q = i
g.p = c
g.v = a
g.w = j
g.t = j
b.y = c
b.o = c
b.v = c
b.u = g
b.s = g
b.x = a
d.q = j
d.o = j
d.u = a
assert d.o.r.o.q.txt == "
|
i"
|
class A:
def __init__(self, txt: str):
self.r: F = None
self.v: E = None
self.y: D = None
self.z: C = None
self.q: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: F = None
self.t: F = None
self.w: E = None
self.q: F = None
self.o: E = None
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: F = None
self.v: C = None
self.u: B = None
self.z: B = None
self.r: G = None
self.s: C = None
self.q: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: C = None
self.v: B = None
self.w: D = None
self.t: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: C = None
self.u: E = None
self.s: E = None
self.x: B = None
self.o: C = None
self.v: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: D = None
self.o: D = None
self.u: B = None
self.txt = txt
i = A("i")
a = B("a")
c = C("c")
j = D("j")
g = E("g")
b = F("b")
d = G("d")
i.r = b
i.q = b
i.v = g
i.y = j
i.z = c
a.o = j
c.p = b
c.t = b
c.q = b
c.w = g
c.o = g
c.u = a
j.o = b
j.v = c
j.s = c
j.u = a
j.z = a
j.r = d
j.q = i
g.p = c
g.v = a
g.w = j
g.t = j
b.y = c
b.o = c
b.v = c
b.u = g
b.s = g
b.x = a
d.q = j
d.o = j
d.u = a
assert d.o.r.o.q.txt == "i"
|
d
|
j
|
d
|
j
|
i
|
x
|
x
|
x
| 7 | 21 | 7 | 4 | 2 |
5,372 |
class A:
def __init__(self, txt: str):
self.y: D = None
self.o: F = None
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: D = None
self.o: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: E = None
self.s: F = None
self.x: E = None
self.z: E = None
self.q: E = None
self.t: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: A = None
self.x: B = None
self.p: G = None
self.v: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: D = None
self.o: C = None
self.s: D = None
self.t: B = None
self.r: B = None
self.w: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
a = A("a")
d = B("d")
b = C("b")
i = D("i")
g = E("g")
c = F("c")
f = G("f")
a.y = i
a.p = i
a.o = c
d.s = i
d.o = f
b.w = g
b.x = g
b.z = g
b.q = g
b.s = c
b.t = c
i.o = a
i.x = d
i.p = f
i.v = c
g.s = c
c.y = i
c.s = i
c.o = b
c.t = d
c.r = d
c.w = a
f.w = d
assert d.o.w.s.o.y.v.txt == "
|
c"
|
class A:
def __init__(self, txt: str):
self.y: D = None
self.o: F = None
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: D = None
self.o: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: E = None
self.s: F = None
self.x: E = None
self.z: E = None
self.q: E = None
self.t: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: A = None
self.x: B = None
self.p: G = None
self.v: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: D = None
self.o: C = None
self.s: D = None
self.t: B = None
self.r: B = None
self.w: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
a = A("a")
d = B("d")
b = C("b")
i = D("i")
g = E("g")
c = F("c")
f = G("f")
a.y = i
a.p = i
a.o = c
d.s = i
d.o = f
b.w = g
b.x = g
b.z = g
b.q = g
b.s = c
b.t = c
i.o = a
i.x = d
i.p = f
i.v = c
g.s = c
c.y = i
c.s = i
c.o = b
c.t = d
c.r = d
c.w = a
f.w = d
assert d.o.w.s.o.y.v.txt == "c"
|
d
|
f
|
d
|
i
|
a
|
i
|
c
|
x
| 7 | 16 | 7 | 6 | 2 |
5,373 |
class A:
def __init__(self, txt: str):
self.w: F = None
self.v: E = None
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: G = None
self.z: G = None
self.t: B = None
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: G = None
self.p: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.r: B = None
self.p: B = None
self.s: C = None
self.v: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: E = None
self.txt = txt
a = A("a")
b = B("b")
d = C("d")
f = D("f")
h = E("h")
c = F("c")
g = G("g")
a.w = c
a.v = h
a.u = h
b.s = g
d.v = g
d.z = g
d.t = b
d.u = b
f.q = b
f.t = h
h.y = g
h.p = c
c.o = f
c.r = b
c.p = b
c.s = d
c.v = g
g.u = h
assert h.p.v.u.p.txt == "
|
c"
|
class A:
def __init__(self, txt: str):
self.w: F = None
self.v: E = None
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: G = None
self.z: G = None
self.t: B = None
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: G = None
self.p: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.r: B = None
self.p: B = None
self.s: C = None
self.v: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: E = None
self.txt = txt
a = A("a")
b = B("b")
d = C("d")
f = D("f")
h = E("h")
c = F("c")
g = G("g")
a.w = c
a.v = h
a.u = h
b.s = g
d.v = g
d.z = g
d.t = b
d.u = b
f.q = b
f.t = h
h.y = g
h.p = c
c.o = f
c.r = b
c.p = b
c.s = d
c.v = g
g.u = h
assert h.p.v.u.p.txt == "c"
|
h
|
c
|
g
|
h
|
c
|
x
|
x
|
x
| 7 | 14 | 7 | 4 | 2 |
5,374 |
class A:
def __init__(self, txt: str):
self.s: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: E = None
self.p: E = None
self.q: D = None
self.y: E = None
self.z: F = None
self.x: A = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: G = None
self.q: D = None
self.o: G = None
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.w: A = None
self.r: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: C = None
self.v: D = None
self.w: D = None
self.q: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: A = None
self.p: B = None
self.u: D = None
self.s: D = None
self.txt = txt
e = A("e")
h = B("h")
g = C("g")
c = D("c")
j = E("j")
d = F("d")
b = G("b")
e.s = b
h.r = j
h.p = j
h.y = j
h.q = c
h.z = d
h.x = e
h.v = g
g.x = b
g.o = b
g.q = c
g.w = e
c.z = e
c.w = e
c.r = d
j.o = g
d.y = g
d.q = g
d.v = c
d.w = c
b.y = e
b.p = h
b.u = c
b.s = c
assert g.q.r.y.txt == "
|
g"
|
class A:
def __init__(self, txt: str):
self.s: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: E = None
self.p: E = None
self.q: D = None
self.y: E = None
self.z: F = None
self.x: A = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: G = None
self.q: D = None
self.o: G = None
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.w: A = None
self.r: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: C = None
self.v: D = None
self.w: D = None
self.q: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: A = None
self.p: B = None
self.u: D = None
self.s: D = None
self.txt = txt
e = A("e")
h = B("h")
g = C("g")
c = D("c")
j = E("j")
d = F("d")
b = G("b")
e.s = b
h.r = j
h.p = j
h.y = j
h.q = c
h.z = d
h.x = e
h.v = g
g.x = b
g.o = b
g.q = c
g.w = e
c.z = e
c.w = e
c.r = d
j.o = g
d.y = g
d.q = g
d.v = c
d.w = c
b.y = e
b.p = h
b.u = c
b.s = c
assert g.q.r.y.txt == "g"
|
g
|
c
|
d
|
g
|
x
|
x
|
x
|
x
| 7 | 17 | 7 | 3 | 1 |
5,375 |
class A:
def __init__(self, txt: str):
self.t: B = None
self.u: B = None
self.y: F = None
self.v: G = None
self.p: C = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.w: C = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.x: A = None
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: A = None
self.s: D = None
self.q: C = None
self.x: D = None
self.y: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: D = None
self.s: C = None
self.y: D = None
self.o: E = None
self.x: D = None
self.t: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: A = None
self.z: D = None
self.s: D = None
self.txt = txt
d = A("d")
j = B("j")
e = C("e")
a = D("a")
h = E("h")
b = F("b")
c = G("c")
d.t = j
d.u = j
d.w = j
d.y = b
d.v = c
d.p = e
j.r = e
j.w = e
j.y = d
e.s = d
e.x = d
e.w = d
a.o = d
h.u = d
h.s = a
h.x = a
h.q = e
h.y = b
b.u = a
b.y = a
b.x = a
b.s = e
b.o = h
b.t = d
c.r = d
c.z = a
c.s = a
assert b.o.q.s.p.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.t: B = None
self.u: B = None
self.y: F = None
self.v: G = None
self.p: C = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.w: C = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.x: A = None
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: A = None
self.s: D = None
self.q: C = None
self.x: D = None
self.y: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: D = None
self.s: C = None
self.y: D = None
self.o: E = None
self.x: D = None
self.t: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: A = None
self.z: D = None
self.s: D = None
self.txt = txt
d = A("d")
j = B("j")
e = C("e")
a = D("a")
h = E("h")
b = F("b")
c = G("c")
d.t = j
d.u = j
d.w = j
d.y = b
d.v = c
d.p = e
j.r = e
j.w = e
j.y = d
e.s = d
e.x = d
e.w = d
a.o = d
h.u = d
h.s = a
h.x = a
h.q = e
h.y = b
b.u = a
b.y = a
b.x = a
b.s = e
b.o = h
b.t = d
c.r = d
c.z = a
c.s = a
assert b.o.q.s.p.txt == "e"
|
b
|
h
|
e
|
d
|
e
|
x
|
x
|
x
| 7 | 18 | 7 | 4 | 1 |
5,376 |
class A:
def __init__(self, txt: str):
self.x: D = None
self.z: B = None
self.w: E = None
self.o: C = None
self.s: E = None
self.q: C = None
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: F = None
self.o: D = None
self.t: E = None
self.z: G = None
self.y: F = None
self.r: C = None
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: G = None
self.y: B = None
self.s: B = None
self.u: C = None
self.v: G = None
self.p: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: G = None
self.w: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: A = None
self.y: A = None
self.o: E = None
self.z: G = None
self.p: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.txt = txt
a = A("a")
e = B("e")
f = C("f")
b = D("b")
j = E("j")
h = F("h")
g = G("g")
a.x = b
a.v = b
a.z = e
a.w = j
a.s = j
a.o = f
a.q = f
e.s = h
e.y = h
e.o = b
e.t = j
e.z = g
e.r = f
e.u = f
f.u = a
b.t = g
b.v = g
b.y = e
b.s = e
b.u = f
b.p = h
j.t = g
j.w = h
h.t = a
h.y = a
h.o = j
h.z = g
h.p = e
g.y = j
assert b.y.s.p.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.x: D = None
self.z: B = None
self.w: E = None
self.o: C = None
self.s: E = None
self.q: C = None
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: F = None
self.o: D = None
self.t: E = None
self.z: G = None
self.y: F = None
self.r: C = None
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: G = None
self.y: B = None
self.s: B = None
self.u: C = None
self.v: G = None
self.p: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: G = None
self.w: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: A = None
self.y: A = None
self.o: E = None
self.z: G = None
self.p: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.txt = txt
a = A("a")
e = B("e")
f = C("f")
b = D("b")
j = E("j")
h = F("h")
g = G("g")
a.x = b
a.v = b
a.z = e
a.w = j
a.s = j
a.o = f
a.q = f
e.s = h
e.y = h
e.o = b
e.t = j
e.z = g
e.r = f
e.u = f
f.u = a
b.t = g
b.v = g
b.y = e
b.s = e
b.u = f
b.p = h
j.t = g
j.w = h
h.t = a
h.y = a
h.o = j
h.z = g
h.p = e
g.y = j
assert b.y.s.p.txt == "e"
|
b
|
e
|
h
|
e
|
x
|
x
|
x
|
x
| 7 | 21 | 7 | 3 | 1 |
5,377 |
class A:
def __init__(self, txt: str):
self.x: B = None
self.q: B = None
self.s: C = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: F = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.t: F = None
self.y: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: G = None
self.z: B = None
self.x: C = None
self.t: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: E = None
self.v: E = None
self.t: A = None
self.o: C = None
self.y: E = None
self.x: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: F = None
self.v: E = None
self.o: B = None
self.u: E = None
self.q: D = None
self.txt = txt
f = A("f")
a = B("a")
h = C("h")
d = D("d")
j = E("j")
i = F("i")
e = G("e")
f.x = a
f.q = a
f.s = h
f.t = h
a.o = i
a.q = h
h.y = a
d.v = h
d.t = i
d.y = e
j.s = e
j.z = a
j.x = h
j.t = d
i.s = j
i.v = j
i.y = j
i.t = f
i.x = f
i.o = h
e.w = i
e.v = j
e.u = j
e.o = a
e.q = d
assert i.o.y.o.txt == "
|
i"
|
class A:
def __init__(self, txt: str):
self.x: B = None
self.q: B = None
self.s: C = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: F = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.t: F = None
self.y: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: G = None
self.z: B = None
self.x: C = None
self.t: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: E = None
self.v: E = None
self.t: A = None
self.o: C = None
self.y: E = None
self.x: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: F = None
self.v: E = None
self.o: B = None
self.u: E = None
self.q: D = None
self.txt = txt
f = A("f")
a = B("a")
h = C("h")
d = D("d")
j = E("j")
i = F("i")
e = G("e")
f.x = a
f.q = a
f.s = h
f.t = h
a.o = i
a.q = h
h.y = a
d.v = h
d.t = i
d.y = e
j.s = e
j.z = a
j.x = h
j.t = d
i.s = j
i.v = j
i.y = j
i.t = f
i.x = f
i.o = h
e.w = i
e.v = j
e.u = j
e.o = a
e.q = d
assert i.o.y.o.txt == "i"
|
i
|
h
|
a
|
i
|
x
|
x
|
x
|
x
| 7 | 19 | 7 | 3 | 1 |
5,378 |
class A:
def __init__(self, txt: str):
self.o: G = None
self.t: F = None
self.r: E = None
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.u: G = None
self.x: E = None
self.q: F = None
self.r: B = None
self.s: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.x: C = None
self.t: A = None
self.s: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: G = None
self.r: B = 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.y: D = None
self.z: D = None
self.w: A = None
self.u: A = None
self.txt = txt
h = A("h")
g = B("g")
c = C("c")
f = D("f")
d = E("d")
b = F("b")
a = G("a")
h.o = a
h.t = b
h.r = d
h.p = f
g.z = d
c.p = g
c.r = g
c.u = a
c.s = a
c.x = d
c.q = b
f.y = g
f.x = c
f.t = h
f.s = a
d.u = a
d.r = g
b.p = g
a.y = f
a.z = f
a.w = h
a.u = h
assert g.z.u.y.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.o: G = None
self.t: F = None
self.r: E = None
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.u: G = None
self.x: E = None
self.q: F = None
self.r: B = None
self.s: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.x: C = None
self.t: A = None
self.s: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: G = None
self.r: B = 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.y: D = None
self.z: D = None
self.w: A = None
self.u: A = None
self.txt = txt
h = A("h")
g = B("g")
c = C("c")
f = D("f")
d = E("d")
b = F("b")
a = G("a")
h.o = a
h.t = b
h.r = d
h.p = f
g.z = d
c.p = g
c.r = g
c.u = a
c.s = a
c.x = d
c.q = b
f.y = g
f.x = c
f.t = h
f.s = a
d.u = a
d.r = g
b.p = g
a.y = f
a.z = f
a.w = h
a.u = h
assert g.z.u.y.txt == "f"
|
g
|
d
|
a
|
f
|
x
|
x
|
x
|
x
| 7 | 18 | 7 | 3 | 0 |
5,379 |
class A:
def __init__(self, txt: str):
self.q: B = None
self.w: E = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.r: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: C = None
self.x: A = None
self.t: F = None
self.y: A = None
self.o: E = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.t: C = None
self.y: A = None
self.o: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: F = None
self.x: D = None
self.o: F = None
self.p: F = None
self.q: F = None
self.txt = txt
j = A("j")
b = B("b")
g = C("g")
c = D("c")
e = E("e")
i = F("i")
a = G("a")
j.q = b
j.r = b
j.w = e
b.p = c
b.r = a
g.t = e
c.q = g
c.x = j
c.y = j
c.t = i
c.o = e
c.v = e
e.s = i
e.o = i
e.t = g
e.y = j
i.v = b
a.w = i
a.o = i
a.p = i
a.q = i
a.x = c
assert g.t.s.v.r.x.v.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.q: B = None
self.w: E = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.r: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: C = None
self.x: A = None
self.t: F = None
self.y: A = None
self.o: E = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.t: C = None
self.y: A = None
self.o: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: F = None
self.x: D = None
self.o: F = None
self.p: F = None
self.q: F = None
self.txt = txt
j = A("j")
b = B("b")
g = C("g")
c = D("c")
e = E("e")
i = F("i")
a = G("a")
j.q = b
j.r = b
j.w = e
b.p = c
b.r = a
g.t = e
c.q = g
c.x = j
c.y = j
c.t = i
c.o = e
c.v = e
e.s = i
e.o = i
e.t = g
e.y = j
i.v = b
a.w = i
a.o = i
a.p = i
a.q = i
a.x = c
assert g.t.s.v.r.x.v.txt == "e"
|
g
|
e
|
i
|
b
|
a
|
c
|
e
|
x
| 7 | 15 | 7 | 6 | 1 |
5,380 |
class A:
def __init__(self, txt: str):
self.u: B = None
self.q: B = None
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: F = None
self.t: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: G = None
self.q: B = None
self.s: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: G = None
self.s: E = None
self.p: E = None
self.r: D = None
self.z: C = None
self.o: A = None
self.v: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: A = None
self.z: F = None
self.w: C = None
self.txt = txt
e = A("e")
b = B("b")
g = C("g")
f = D("f")
j = E("j")
a = F("a")
i = G("i")
e.u = b
e.q = b
e.p = f
b.y = a
b.t = i
g.p = f
f.t = i
f.q = b
f.s = e
j.r = e
a.q = i
a.s = j
a.p = j
a.v = j
a.r = f
a.z = g
a.o = e
i.v = e
i.z = a
i.w = g
assert e.u.y.s.txt == "
|
j"
|
class A:
def __init__(self, txt: str):
self.u: B = None
self.q: B = None
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: F = None
self.t: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: G = None
self.q: B = None
self.s: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: G = None
self.s: E = None
self.p: E = None
self.r: D = None
self.z: C = None
self.o: A = None
self.v: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: A = None
self.z: F = None
self.w: C = None
self.txt = txt
e = A("e")
b = B("b")
g = C("g")
f = D("f")
j = E("j")
a = F("a")
i = G("i")
e.u = b
e.q = b
e.p = f
b.y = a
b.t = i
g.p = f
f.t = i
f.q = b
f.s = e
j.r = e
a.q = i
a.s = j
a.p = j
a.v = j
a.r = f
a.z = g
a.o = e
i.v = e
i.z = a
i.w = g
assert e.u.y.s.txt == "j"
|
e
|
b
|
a
|
j
|
x
|
x
|
x
|
x
| 7 | 17 | 7 | 3 | 0 |
5,381 |
class A:
def __init__(self, txt: str):
self.u: B = None
self.p: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.v: F = None
self.r: G = None
self.t: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: D = None
self.x: E = None
self.o: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: A = None
self.x: C = None
self.w: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: G = None
self.u: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: C = None
self.v: E = None
self.r: D = None
self.q: B = None
self.s: A = None
self.x: B = None
self.u: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: E = None
self.u: B = None
self.r: F = None
self.p: E = None
self.z: C = None
self.q: C = None
self.txt = txt
i = A("i")
g = B("g")
e = C("e")
c = D("c")
d = E("d")
b = F("b")
f = G("f")
i.u = g
i.p = b
g.p = e
g.v = b
g.t = b
g.r = f
e.w = c
e.x = d
e.o = i
c.p = i
c.x = e
c.w = f
d.w = f
d.u = c
b.o = e
b.u = e
b.v = d
b.r = c
b.q = g
b.x = g
b.s = i
f.v = d
f.p = d
f.u = g
f.r = b
f.z = e
f.q = e
assert i.u.v.r.p.u.r.q.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.u: B = None
self.p: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.v: F = None
self.r: G = None
self.t: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: D = None
self.x: E = None
self.o: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: A = None
self.x: C = None
self.w: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: G = None
self.u: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: C = None
self.v: E = None
self.r: D = None
self.q: B = None
self.s: A = None
self.x: B = None
self.u: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: E = None
self.u: B = None
self.r: F = None
self.p: E = None
self.z: C = None
self.q: C = None
self.txt = txt
i = A("i")
g = B("g")
e = C("e")
c = D("c")
d = E("d")
b = F("b")
f = G("f")
i.u = g
i.p = b
g.p = e
g.v = b
g.t = b
g.r = f
e.w = c
e.x = d
e.o = i
c.p = i
c.x = e
c.w = f
d.w = f
d.u = c
b.o = e
b.u = e
b.v = d
b.r = c
b.q = g
b.x = g
b.s = i
f.v = d
f.p = d
f.u = g
f.r = b
f.z = e
f.q = e
assert i.u.v.r.p.u.r.q.txt == "e"
|
i
|
g
|
b
|
c
|
i
|
g
|
f
|
e
| 7 | 22 | 7 | 7 | 2 |
5,382 |
class A:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.w: G = None
self.t: C = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: F = None
self.o: A = None
self.q: G = None
self.s: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.r: A = None
self.s: B = None
self.z: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.r: B = None
self.x: F = None
self.txt = txt
j = A("j")
d = B("d")
c = C("c")
a = D("a")
h = E("h")
b = F("b")
f = G("f")
j.y = c
d.x = c
d.t = c
d.w = f
d.y = j
c.o = a
c.r = d
a.t = b
a.o = j
a.q = f
a.s = d
h.v = b
h.z = b
h.r = j
h.s = d
b.y = c
f.y = h
f.r = d
f.x = b
assert a.s.y.y.o.t.y.r.txt == "
|
d"
|
class A:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.w: G = None
self.t: C = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: F = None
self.o: A = None
self.q: G = None
self.s: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.r: A = None
self.s: B = None
self.z: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.r: B = None
self.x: F = None
self.txt = txt
j = A("j")
d = B("d")
c = C("c")
a = D("a")
h = E("h")
b = F("b")
f = G("f")
j.y = c
d.x = c
d.t = c
d.w = f
d.y = j
c.o = a
c.r = d
a.t = b
a.o = j
a.q = f
a.s = d
h.v = b
h.z = b
h.r = j
h.s = d
b.y = c
f.y = h
f.r = d
f.x = b
assert a.s.y.y.o.t.y.r.txt == "d"
|
a
|
d
|
j
|
c
|
a
|
b
|
c
|
d
| 7 | 17 | 7 | 7 | 3 |
5,383 |
class A:
def __init__(self, txt: str):
self.r: G = None
self.p: G = None
self.w: G = None
self.x: B = None
self.o: G = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.r: F = None
self.p: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.q: A = None
self.t: A = None
self.v: B = None
self.w: A = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.p: G = None
self.q: A = None
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.o: G = None
self.x: D = None
self.t: B = None
self.v: F = None
self.w: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: B = None
self.y: A = None
self.s: B = None
self.z: G = None
self.o: B = None
self.v: C = None
self.x: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: B = None
self.y: E = None
self.txt = txt
a = A("a")
b = B("b")
g = C("g")
e = D("e")
f = E("f")
i = F("i")
d = G("d")
a.r = d
a.p = d
a.w = d
a.o = d
a.x = b
a.y = g
b.x = e
b.r = i
b.p = d
g.o = a
g.q = a
g.t = a
g.w = a
g.v = b
g.p = b
e.z = i
e.p = d
e.q = a
e.w = f
f.p = i
f.v = i
f.o = d
f.x = e
f.t = b
f.w = a
i.w = b
i.s = b
i.o = b
i.y = a
i.x = a
i.z = d
i.v = g
d.v = b
d.y = f
assert d.v.x.z.txt == "
|
i"
|
class A:
def __init__(self, txt: str):
self.r: G = None
self.p: G = None
self.w: G = None
self.x: B = None
self.o: G = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.r: F = None
self.p: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.q: A = None
self.t: A = None
self.v: B = None
self.w: A = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.p: G = None
self.q: A = None
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.o: G = None
self.x: D = None
self.t: B = None
self.v: F = None
self.w: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: B = None
self.y: A = None
self.s: B = None
self.z: G = None
self.o: B = None
self.v: C = None
self.x: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: B = None
self.y: E = None
self.txt = txt
a = A("a")
b = B("b")
g = C("g")
e = D("e")
f = E("f")
i = F("i")
d = G("d")
a.r = d
a.p = d
a.w = d
a.o = d
a.x = b
a.y = g
b.x = e
b.r = i
b.p = d
g.o = a
g.q = a
g.t = a
g.w = a
g.v = b
g.p = b
e.z = i
e.p = d
e.q = a
e.w = f
f.p = i
f.v = i
f.o = d
f.x = e
f.t = b
f.w = a
i.w = b
i.s = b
i.o = b
i.y = a
i.x = a
i.z = d
i.v = g
d.v = b
d.y = f
assert d.v.x.z.txt == "i"
|
d
|
b
|
e
|
i
|
x
|
x
|
x
|
x
| 7 | 23 | 7 | 3 | 0 |
5,384 |
class A:
def __init__(self, txt: str):
self.t: G = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: F = None
self.x: A = None
self.o: D = None
self.w: A = None
self.s: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: G = None
self.p: B = None
self.s: G = None
self.w: F = None
self.t: E = None
self.q: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.z: C = None
self.p: G = None
self.s: C = None
self.w: C = None
self.y: F = None
self.v: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: A = None
self.r: B = None
self.w: E = None
self.q: E = None
self.z: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
j = A("j")
i = B("i")
h = C("h")
e = D("e")
f = E("f")
b = F("b")
g = G("g")
j.t = g
j.x = h
i.v = b
i.x = j
i.w = j
i.o = e
i.s = g
h.x = g
h.s = g
h.p = i
h.q = i
h.w = b
h.t = f
e.r = g
e.p = g
e.v = g
e.z = h
e.s = h
e.w = h
e.y = b
f.x = h
b.p = j
b.r = i
b.w = f
b.q = f
b.z = f
g.t = h
assert j.t.t.s.t.w.txt == "
|
b"
|
class A:
def __init__(self, txt: str):
self.t: G = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: F = None
self.x: A = None
self.o: D = None
self.w: A = None
self.s: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: G = None
self.p: B = None
self.s: G = None
self.w: F = None
self.t: E = None
self.q: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.z: C = None
self.p: G = None
self.s: C = None
self.w: C = None
self.y: F = None
self.v: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: A = None
self.r: B = None
self.w: E = None
self.q: E = None
self.z: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
j = A("j")
i = B("i")
h = C("h")
e = D("e")
f = E("f")
b = F("b")
g = G("g")
j.t = g
j.x = h
i.v = b
i.x = j
i.w = j
i.o = e
i.s = g
h.x = g
h.s = g
h.p = i
h.q = i
h.w = b
h.t = f
e.r = g
e.p = g
e.v = g
e.z = h
e.s = h
e.w = h
e.y = b
f.x = h
b.p = j
b.r = i
b.w = f
b.q = f
b.z = f
g.t = h
assert j.t.t.s.t.w.txt == "b"
|
j
|
g
|
h
|
g
|
h
|
b
|
x
|
x
| 7 | 18 | 7 | 5 | 2 |
5,385 |
class A:
def __init__(self, txt: str):
self.u: B = None
self.y: E = None
self.v: D = None
self.o: C = None
self.q: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.o: C = None
self.r: C = None
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.q: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: B = None
self.y: C = None
self.r: G = None
self.v: F = None
self.o: G = None
self.q: E = None
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: A = None
self.o: B = None
self.t: C = None
self.w: D = None
self.z: B = None
self.p: A = None
self.u: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.s: C = None
self.u: E = None
self.p: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: D = None
self.s: C = None
self.o: D = None
self.t: E = None
self.v: C = None
self.x: F = None
self.txt = txt
e = A("e")
f = B("f")
b = C("b")
g = D("g")
c = E("c")
h = F("h")
a = G("a")
e.u = f
e.y = c
e.v = g
e.o = b
e.q = h
f.p = b
f.o = b
f.r = b
f.t = b
b.v = e
b.q = c
g.p = f
g.y = b
g.r = a
g.o = a
g.v = h
g.q = c
g.t = e
c.v = e
c.p = e
c.o = f
c.z = f
c.t = b
c.u = b
c.w = g
h.z = c
h.u = c
h.s = b
h.p = a
a.w = g
a.o = g
a.s = b
a.v = b
a.t = c
a.x = h
assert g.t.u.o.v.u.r.txt == "
|
b"
|
class A:
def __init__(self, txt: str):
self.u: B = None
self.y: E = None
self.v: D = None
self.o: C = None
self.q: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.o: C = None
self.r: C = None
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.q: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: B = None
self.y: C = None
self.r: G = None
self.v: F = None
self.o: G = None
self.q: E = None
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: A = None
self.o: B = None
self.t: C = None
self.w: D = None
self.z: B = None
self.p: A = None
self.u: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.s: C = None
self.u: E = None
self.p: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: D = None
self.s: C = None
self.o: D = None
self.t: E = None
self.v: C = None
self.x: F = None
self.txt = txt
e = A("e")
f = B("f")
b = C("b")
g = D("g")
c = E("c")
h = F("h")
a = G("a")
e.u = f
e.y = c
e.v = g
e.o = b
e.q = h
f.p = b
f.o = b
f.r = b
f.t = b
b.v = e
b.q = c
g.p = f
g.y = b
g.r = a
g.o = a
g.v = h
g.q = c
g.t = e
c.v = e
c.p = e
c.o = f
c.z = f
c.t = b
c.u = b
c.w = g
h.z = c
h.u = c
h.s = b
h.p = a
a.w = g
a.o = g
a.s = b
a.v = b
a.t = c
a.x = h
assert g.t.u.o.v.u.r.txt == "b"
|
g
|
e
|
f
|
b
|
e
|
f
|
b
|
x
| 7 | 25 | 7 | 6 | 3 |
5,386 |
class A:
def __init__(self, txt: str):
self.s: C = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.t: G = None
self.v: D = 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.s: E = None
self.q: F = None
self.v: B = None
self.r: G = None
self.x: A = None
self.w: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.o: G = None
self.z: B = None
self.w: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: C = None
self.o: G = None
self.t: E = None
self.p: E = None
self.z: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
h = A("h")
e = B("e")
d = C("d")
c = D("c")
g = E("g")
i = F("i")
j = G("j")
h.s = d
h.z = d
e.u = d
e.t = j
e.v = c
d.w = e
c.s = g
c.q = i
c.w = i
c.v = e
c.r = j
c.x = h
g.v = i
g.o = j
g.w = j
g.z = e
i.x = d
i.z = d
i.o = j
i.t = g
i.p = g
j.q = d
assert g.z.u.w.v.v.t.txt == "
|
j"
|
class A:
def __init__(self, txt: str):
self.s: C = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.t: G = None
self.v: D = 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.s: E = None
self.q: F = None
self.v: B = None
self.r: G = None
self.x: A = None
self.w: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.o: G = None
self.z: B = None
self.w: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: C = None
self.o: G = None
self.t: E = None
self.p: E = None
self.z: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
h = A("h")
e = B("e")
d = C("d")
c = D("c")
g = E("g")
i = F("i")
j = G("j")
h.s = d
h.z = d
e.u = d
e.t = j
e.v = c
d.w = e
c.s = g
c.q = i
c.w = i
c.v = e
c.r = j
c.x = h
g.v = i
g.o = j
g.w = j
g.z = e
i.x = d
i.z = d
i.o = j
i.t = g
i.p = g
j.q = d
assert g.z.u.w.v.v.t.txt == "j"
|
g
|
e
|
d
|
e
|
c
|
e
|
j
|
x
| 7 | 17 | 7 | 6 | 2 |
5,387 |
class A:
def __init__(self, txt: str):
self.v: G = None
self.q: F = None
self.r: C = None
self.p: F = None
self.w: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: G = None
self.p: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: G = None
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.v: G = None
self.x: D = None
self.w: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: E = None
self.u: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: E = None
self.r: A = None
self.s: A = None
self.txt = txt
a = A("a")
g = B("g")
d = C("d")
b = D("b")
i = E("i")
e = F("e")
f = G("f")
a.v = f
a.q = e
a.p = e
a.r = d
a.w = g
a.t = g
g.z = d
g.w = d
d.u = f
d.p = f
b.s = f
b.r = i
i.t = b
i.x = b
i.v = f
i.w = a
e.v = i
e.u = b
f.v = i
f.r = a
f.s = a
assert a.q.u.r.v.v.v.v.txt == "
|
i"
|
class A:
def __init__(self, txt: str):
self.v: G = None
self.q: F = None
self.r: C = None
self.p: F = None
self.w: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: G = None
self.p: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: G = None
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.v: G = None
self.x: D = None
self.w: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: E = None
self.u: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: E = None
self.r: A = None
self.s: A = None
self.txt = txt
a = A("a")
g = B("g")
d = C("d")
b = D("b")
i = E("i")
e = F("e")
f = G("f")
a.v = f
a.q = e
a.p = e
a.r = d
a.w = g
a.t = g
g.z = d
g.w = d
d.u = f
d.p = f
b.s = f
b.r = i
i.t = b
i.x = b
i.v = f
i.w = a
e.v = i
e.u = b
f.v = i
f.r = a
f.s = a
assert a.q.u.r.v.v.v.v.txt == "i"
|
a
|
e
|
b
|
i
|
f
|
i
|
f
|
i
| 7 | 15 | 7 | 7 | 3 |
5,388 |
class A:
def __init__(self, txt: str):
self.o: B = 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.x: D = None
self.p: E = None
self.y: B = None
self.z: A = None
self.w: D = None
self.o: E = None
self.u: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: F = None
self.v: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: E = None
self.t: C = None
self.r: D = None
self.w: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: C = None
self.w: A = None
self.x: F = None
self.txt = txt
d = A("d")
g = B("g")
e = C("e")
b = D("b")
i = E("i")
h = F("h")
c = G("c")
d.o = g
g.p = d
e.x = b
e.w = b
e.p = i
e.o = i
e.y = g
e.z = d
e.u = c
b.t = g
b.u = e
i.t = h
i.v = d
h.u = i
h.t = e
h.r = b
h.w = b
c.o = e
c.w = d
c.x = h
assert c.o.u.o.u.o.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.o: B = 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.x: D = None
self.p: E = None
self.y: B = None
self.z: A = None
self.w: D = None
self.o: E = None
self.u: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: F = None
self.v: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: E = None
self.t: C = None
self.r: D = None
self.w: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: C = None
self.w: A = None
self.x: F = None
self.txt = txt
d = A("d")
g = B("g")
e = C("e")
b = D("b")
i = E("i")
h = F("h")
c = G("c")
d.o = g
g.p = d
e.x = b
e.w = b
e.p = i
e.o = i
e.y = g
e.z = d
e.u = c
b.t = g
b.u = e
i.t = h
i.v = d
h.u = i
h.t = e
h.r = b
h.w = b
c.o = e
c.w = d
c.x = h
assert c.o.u.o.u.o.txt == "e"
|
c
|
e
|
c
|
e
|
c
|
e
|
x
|
x
| 7 | 17 | 7 | 5 | 4 |
5,389 |
class A:
def __init__(self, txt: str):
self.y: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.y: D = None
self.q: G = None
self.w: C = None
self.o: G = None
self.x: F = None
self.t: D = 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.q: G = None
self.o: B = None
self.p: G = None
self.s: B = None
self.r: G = None
self.u: C = None
self.t: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: A = None
self.y: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
h = A("h")
d = B("d")
f = C("f")
e = D("e")
i = E("i")
j = F("j")
c = G("c")
h.y = j
d.v = h
d.y = e
d.t = e
d.q = c
d.o = c
d.w = f
d.x = j
f.s = d
e.q = c
e.p = c
e.r = c
e.o = d
e.s = d
e.t = d
e.u = f
i.o = e
j.p = h
j.y = f
c.s = e
assert i.o.u.s.x.p.txt == "
|
h"
|
class A:
def __init__(self, txt: str):
self.y: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.y: D = None
self.q: G = None
self.w: C = None
self.o: G = None
self.x: F = None
self.t: D = 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.q: G = None
self.o: B = None
self.p: G = None
self.s: B = None
self.r: G = None
self.u: C = None
self.t: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: A = None
self.y: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
h = A("h")
d = B("d")
f = C("f")
e = D("e")
i = E("i")
j = F("j")
c = G("c")
h.y = j
d.v = h
d.y = e
d.t = e
d.q = c
d.o = c
d.w = f
d.x = j
f.s = d
e.q = c
e.p = c
e.r = c
e.o = d
e.s = d
e.t = d
e.u = f
i.o = e
j.p = h
j.y = f
c.s = e
assert i.o.u.s.x.p.txt == "h"
|
i
|
e
|
f
|
d
|
j
|
h
|
x
|
x
| 7 | 14 | 7 | 5 | 0 |
5,390 |
class A:
def __init__(self, txt: str):
self.r: B = None
self.q: D = None
self.t: G = None
self.z: B = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.o: D = None
self.y: G = None
self.t: C = None
self.s: A = None
self.w: C = None
self.z: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: G = None
self.x: B = None
self.p: G = None
self.z: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: G = None
self.p: G = None
self.s: F = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: B = None
self.z: G = None
self.x: D = None
self.u: G = None
self.v: C = None
self.p: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: F = None
self.v: B = None
self.txt = txt
e = A("e")
a = B("a")
d = C("d")
c = D("c")
b = E("b")
h = F("h")
f = G("f")
e.r = a
e.z = a
e.q = c
e.t = f
e.y = d
a.p = c
a.o = c
a.y = f
a.t = d
a.w = d
a.s = e
a.z = h
d.s = f
d.p = f
d.x = a
d.z = b
c.x = f
c.p = f
c.s = h
c.t = b
b.t = a
b.z = f
b.u = f
b.x = c
b.v = d
b.p = d
h.w = c
f.p = h
f.v = a
assert a.s.y.z.z.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.r: B = None
self.q: D = None
self.t: G = None
self.z: B = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.o: D = None
self.y: G = None
self.t: C = None
self.s: A = None
self.w: C = None
self.z: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: G = None
self.x: B = None
self.p: G = None
self.z: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: G = None
self.p: G = None
self.s: F = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: B = None
self.z: G = None
self.x: D = None
self.u: G = None
self.v: C = None
self.p: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: F = None
self.v: B = None
self.txt = txt
e = A("e")
a = B("a")
d = C("d")
c = D("c")
b = E("b")
h = F("h")
f = G("f")
e.r = a
e.z = a
e.q = c
e.t = f
e.y = d
a.p = c
a.o = c
a.y = f
a.t = d
a.w = d
a.s = e
a.z = h
d.s = f
d.p = f
d.x = a
d.z = b
c.x = f
c.p = f
c.s = h
c.t = b
b.t = a
b.z = f
b.u = f
b.x = c
b.v = d
b.p = d
h.w = c
f.p = h
f.v = a
assert a.s.y.z.z.txt == "f"
|
a
|
e
|
d
|
b
|
f
|
x
|
x
|
x
| 7 | 22 | 7 | 4 | 0 |
5,391 |
class A:
def __init__(self, txt: str):
self.r: F = None
self.w: F = None
self.x: B = None
self.y: G = None
self.u: D = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: F = None
self.u: D = None
self.z: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: E = None
self.p: E = None
self.y: B = None
self.u: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.p: E = None
self.r: C = None
self.q: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: B = None
self.x: A = None
self.y: E = None
self.v: A = None
self.o: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: F = None
self.v: C = None
self.w: E = None
self.p: D = None
self.z: B = None
self.r: E = None
self.txt = txt
b = A("b")
c = B("c")
h = C("h")
d = D("d")
e = E("e")
i = F("i")
g = G("g")
b.r = i
b.w = i
b.x = c
b.s = c
b.y = g
b.u = d
c.v = i
c.z = i
c.u = d
h.v = e
h.p = e
h.y = c
h.u = i
d.s = i
d.p = e
d.r = h
d.q = h
e.u = h
i.s = c
i.x = b
i.v = b
i.o = b
i.y = e
g.s = i
g.v = h
g.w = e
g.r = e
g.p = d
g.z = c
assert d.s.y.u.u.s.txt == "
|
c"
|
class A:
def __init__(self, txt: str):
self.r: F = None
self.w: F = None
self.x: B = None
self.y: G = None
self.u: D = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: F = None
self.u: D = None
self.z: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: E = None
self.p: E = None
self.y: B = None
self.u: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.p: E = None
self.r: C = None
self.q: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: B = None
self.x: A = None
self.y: E = None
self.v: A = None
self.o: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: F = None
self.v: C = None
self.w: E = None
self.p: D = None
self.z: B = None
self.r: E = None
self.txt = txt
b = A("b")
c = B("c")
h = C("h")
d = D("d")
e = E("e")
i = F("i")
g = G("g")
b.r = i
b.w = i
b.x = c
b.s = c
b.y = g
b.u = d
c.v = i
c.z = i
c.u = d
h.v = e
h.p = e
h.y = c
h.u = i
d.s = i
d.p = e
d.r = h
d.q = h
e.u = h
i.s = c
i.x = b
i.v = b
i.o = b
i.y = e
g.s = i
g.v = h
g.w = e
g.r = e
g.p = d
g.z = c
assert d.s.y.u.u.s.txt == "c"
|
d
|
i
|
e
|
h
|
i
|
c
|
x
|
x
| 7 | 21 | 7 | 5 | 1 |
5,392 |
class A:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.q: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.z: C = None
self.y: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: E = None
self.x: C = None
self.y: E = None
self.o: A = None
self.s: B = None
self.w: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
f = A("f")
b = B("b")
i = C("i")
a = D("a")
e = E("e")
g = F("g")
j = G("j")
f.t = i
b.x = a
i.o = a
i.q = b
a.s = j
e.r = a
e.y = a
e.z = i
g.u = e
g.y = e
g.x = i
g.w = i
g.o = f
g.s = b
j.u = b
assert g.x.q.x.s.txt == "
|
j"
|
class A:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.q: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.z: C = None
self.y: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: E = None
self.x: C = None
self.y: E = None
self.o: A = None
self.s: B = None
self.w: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
f = A("f")
b = B("b")
i = C("i")
a = D("a")
e = E("e")
g = F("g")
j = G("j")
f.t = i
b.x = a
i.o = a
i.q = b
a.s = j
e.r = a
e.y = a
e.z = i
g.u = e
g.y = e
g.x = i
g.w = i
g.o = f
g.s = b
j.u = b
assert g.x.q.x.s.txt == "j"
|
g
|
i
|
b
|
a
|
j
|
x
|
x
|
x
| 7 | 12 | 7 | 4 | 0 |
5,393 |
class A:
def __init__(self, txt: str):
self.y: E = None
self.o: G = None
self.x: E = None
self.w: D = None
self.u: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.x: G = None
self.s: C = None
self.v: A = None
self.y: G = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: F = None
self.o: F = None
self.x: D = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: F = None
self.p: B = None
self.y: E = None
self.z: G = None
self.r: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: F = None
self.y: B = None
self.z: E = None
self.txt = txt
e = A("e")
i = B("i")
b = C("b")
f = D("f")
c = E("c")
h = F("h")
d = G("d")
e.y = c
e.x = c
e.o = d
e.u = d
e.w = f
i.t = e
i.v = e
i.w = e
i.x = d
i.y = d
i.s = b
b.y = h
b.o = h
b.x = f
b.w = i
f.v = h
f.r = h
f.p = i
f.y = c
f.z = d
c.o = d
h.o = f
d.u = h
d.y = i
d.z = c
assert b.w.s.x.y.o.z.txt == "
|
c"
|
class A:
def __init__(self, txt: str):
self.y: E = None
self.o: G = None
self.x: E = None
self.w: D = None
self.u: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.x: G = None
self.s: C = None
self.v: A = None
self.y: G = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: F = None
self.o: F = None
self.x: D = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: F = None
self.p: B = None
self.y: E = None
self.z: G = None
self.r: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: F = None
self.y: B = None
self.z: E = None
self.txt = txt
e = A("e")
i = B("i")
b = C("b")
f = D("f")
c = E("c")
h = F("h")
d = G("d")
e.y = c
e.x = c
e.o = d
e.u = d
e.w = f
i.t = e
i.v = e
i.w = e
i.x = d
i.y = d
i.s = b
b.y = h
b.o = h
b.x = f
b.w = i
f.v = h
f.r = h
f.p = i
f.y = c
f.z = d
c.o = d
h.o = f
d.u = h
d.y = i
d.z = c
assert b.w.s.x.y.o.z.txt == "c"
|
b
|
i
|
b
|
f
|
c
|
d
|
c
|
x
| 7 | 18 | 7 | 6 | 2 |
5,394 |
class A:
def __init__(self, txt: str):
self.q: F = None
self.s: G = None
self.z: F = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: D = None
self.q: A = None
self.r: G = None
self.v: G = None
self.y: A = None
self.z: F = None
self.p: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: F = None
self.s: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: G = None
self.x: G = None
self.u: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: F = None
self.txt = txt
b = A("b")
j = B("j")
e = C("e")
f = D("f")
i = E("i")
g = F("g")
c = G("c")
b.q = g
b.z = g
b.s = c
b.w = e
j.q = e
j.r = i
e.s = f
e.q = b
e.y = b
e.r = c
e.v = c
e.z = g
e.p = g
f.u = g
f.s = j
i.q = c
g.v = c
g.x = c
g.u = e
c.q = g
assert i.q.q.u.z.u.txt == "
|
e"
|
class A:
def __init__(self, txt: str):
self.q: F = None
self.s: G = None
self.z: F = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: D = None
self.q: A = None
self.r: G = None
self.v: G = None
self.y: A = None
self.z: F = None
self.p: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: F = None
self.s: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: G = None
self.x: G = None
self.u: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: F = None
self.txt = txt
b = A("b")
j = B("j")
e = C("e")
f = D("f")
i = E("i")
g = F("g")
c = G("c")
b.q = g
b.z = g
b.s = c
b.w = e
j.q = e
j.r = i
e.s = f
e.q = b
e.y = b
e.r = c
e.v = c
e.z = g
e.p = g
f.u = g
f.s = j
i.q = c
g.v = c
g.x = c
g.u = e
c.q = g
assert i.q.q.u.z.u.txt == "e"
|
i
|
c
|
g
|
e
|
g
|
e
|
x
|
x
| 7 | 15 | 7 | 5 | 2 |
5,395 |
class A:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: G = None
self.y: G = None
self.p: F = None
self.q: A = None
self.s: E = None
self.z: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.t: B = None
self.v: A = None
self.w: G = None
self.p: F = None
self.u: G = None
self.y: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.r: B = None
self.u: A = None
self.o: G = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.v: C = None
self.o: A = None
self.p: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.r: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: B = None
self.s: B = None
self.w: E = None
self.t: B = None
self.o: A = None
self.txt = txt
j = A("j")
e = B("e")
g = C("g")
b = D("b")
d = E("d")
c = F("c")
a = G("a")
j.z = a
e.v = a
e.y = a
e.z = a
e.p = c
e.q = j
e.s = d
g.q = e
g.t = e
g.v = j
g.w = a
g.u = a
g.p = c
g.y = c
b.z = c
b.r = e
b.u = j
b.o = a
b.p = g
d.z = j
d.o = j
d.v = g
d.p = a
c.z = g
c.r = g
a.q = e
a.s = e
a.t = e
a.w = d
a.o = j
assert c.r.y.r.y.z.v.txt == "
|
j"
|
class A:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: G = None
self.y: G = None
self.p: F = None
self.q: A = None
self.s: E = None
self.z: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.t: B = None
self.v: A = None
self.w: G = None
self.p: F = None
self.u: G = None
self.y: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.r: B = None
self.u: A = None
self.o: G = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.v: C = None
self.o: A = None
self.p: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.r: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: B = None
self.s: B = None
self.w: E = None
self.t: B = None
self.o: A = None
self.txt = txt
j = A("j")
e = B("e")
g = C("g")
b = D("b")
d = E("d")
c = F("c")
a = G("a")
j.z = a
e.v = a
e.y = a
e.z = a
e.p = c
e.q = j
e.s = d
g.q = e
g.t = e
g.v = j
g.w = a
g.u = a
g.p = c
g.y = c
b.z = c
b.r = e
b.u = j
b.o = a
b.p = g
d.z = j
d.o = j
d.v = g
d.p = a
c.z = g
c.r = g
a.q = e
a.s = e
a.t = e
a.w = d
a.o = j
assert c.r.y.r.y.z.v.txt == "j"
|
c
|
g
|
c
|
g
|
c
|
g
|
j
|
x
| 7 | 21 | 7 | 6 | 4 |
5,396 |
class A:
def __init__(self, txt: str):
self.x: G = None
self.u: E = None
self.p: E = None
self.w: E = None
self.r: E = None
self.z: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.s: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.p: B = None
self.s: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.u: B = None
self.r: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.z: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: D = None
self.r: D = None
self.q: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
f = A("f")
i = B("i")
b = C("b")
g = D("g")
d = E("d")
e = F("e")
j = G("j")
f.x = j
f.u = d
f.p = d
f.w = d
f.r = d
f.z = e
i.v = f
i.s = e
b.t = g
b.p = i
b.s = j
g.s = e
g.u = i
g.r = i
d.s = e
d.z = i
e.s = g
e.r = g
e.q = g
j.u = b
assert i.s.s.s.s.u.v.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.x: G = None
self.u: E = None
self.p: E = None
self.w: E = None
self.r: E = None
self.z: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.s: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.p: B = None
self.s: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.u: B = None
self.r: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.z: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: D = None
self.r: D = None
self.q: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
f = A("f")
i = B("i")
b = C("b")
g = D("g")
d = E("d")
e = F("e")
j = G("j")
f.x = j
f.u = d
f.p = d
f.w = d
f.r = d
f.z = e
i.v = f
i.s = e
b.t = g
b.p = i
b.s = j
g.s = e
g.u = i
g.r = i
d.s = e
d.z = i
e.s = g
e.r = g
e.q = g
j.u = b
assert i.s.s.s.s.u.v.txt == "f"
|
i
|
e
|
g
|
e
|
g
|
i
|
f
|
x
| 7 | 14 | 7 | 6 | 3 |
5,397 |
class A:
def __init__(self, txt: str):
self.o: E = None
self.w: G = None
self.z: C = None
self.p: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.u: E = None
self.z: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.x: A = None
self.p: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: G = None
self.w: A = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: D = None
self.v: A = None
self.o: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
f = A("f")
b = B("b")
h = C("h")
a = D("a")
i = E("i")
d = F("d")
e = G("e")
f.o = i
f.w = e
f.p = e
f.z = h
b.w = h
b.u = i
b.z = e
h.r = f
h.x = f
h.p = d
a.s = f
i.q = e
i.w = f
i.y = f
d.r = a
d.v = f
d.o = f
e.y = a
assert b.z.y.s.o.q.y.s.txt == "
|
f"
|
class A:
def __init__(self, txt: str):
self.o: E = None
self.w: G = None
self.z: C = None
self.p: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.u: E = None
self.z: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.x: A = None
self.p: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: G = None
self.w: A = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: D = None
self.v: A = None
self.o: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
f = A("f")
b = B("b")
h = C("h")
a = D("a")
i = E("i")
d = F("d")
e = G("e")
f.o = i
f.w = e
f.p = e
f.z = h
b.w = h
b.u = i
b.z = e
h.r = f
h.x = f
h.p = d
a.s = f
i.q = e
i.w = f
i.y = f
d.r = a
d.v = f
d.o = f
e.y = a
assert b.z.y.s.o.q.y.s.txt == "f"
|
b
|
e
|
a
|
f
|
i
|
e
|
a
|
f
| 7 | 14 | 7 | 7 | 3 |
5,398 |
class A:
def __init__(self, txt: str):
self.q: B = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.z: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.w: G = None
self.u: B = None
self.t: B = None
self.o: E = None
self.r: E = None
self.y: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: F = None
self.u: G = None
self.v: E = None
self.t: B = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: D = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: A = None
self.w: D = None
self.r: A = None
self.s: C = None
self.o: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: E = None
self.p: E = None
self.y: B = None
self.s: B = None
self.txt = txt
j = A("j")
i = B("i")
b = C("b")
d = D("d")
h = E("h")
a = F("a")
e = G("e")
j.q = i
j.o = b
i.x = j
i.z = a
b.z = j
b.w = e
b.u = i
b.t = i
b.o = h
b.r = h
b.y = a
d.q = a
d.u = e
d.v = h
d.t = i
d.w = j
h.o = d
h.y = j
a.v = j
a.r = j
a.o = j
a.w = d
a.s = b
e.t = h
e.p = h
e.y = i
e.s = i
assert i.x.q.z.s.txt == "
|
b"
|
class A:
def __init__(self, txt: str):
self.q: B = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.z: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.w: G = None
self.u: B = None
self.t: B = None
self.o: E = None
self.r: E = None
self.y: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: F = None
self.u: G = None
self.v: E = None
self.t: B = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: D = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: A = None
self.w: D = None
self.r: A = None
self.s: C = None
self.o: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: E = None
self.p: E = None
self.y: B = None
self.s: B = None
self.txt = txt
j = A("j")
i = B("i")
b = C("b")
d = D("d")
h = E("h")
a = F("a")
e = G("e")
j.q = i
j.o = b
i.x = j
i.z = a
b.z = j
b.w = e
b.u = i
b.t = i
b.o = h
b.r = h
b.y = a
d.q = a
d.u = e
d.v = h
d.t = i
d.w = j
h.o = d
h.y = j
a.v = j
a.r = j
a.o = j
a.w = d
a.s = b
e.t = h
e.p = h
e.y = i
e.s = i
assert i.x.q.z.s.txt == "b"
|
i
|
j
|
i
|
a
|
b
|
x
|
x
|
x
| 7 | 21 | 7 | 4 | 1 |
5,399 |
class A:
def __init__(self, txt: str):
self.r: C = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: G = None
self.p: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: E = None
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: G = None
self.v: G = None
self.s: F = None
self.r: B = None
self.x: G = None
self.p: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: C = None
self.y: D = None
self.r: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
i = A("i")
a = B("a")
g = C("g")
c = D("c")
d = E("d")
j = F("j")
f = G("f")
i.r = g
i.y = g
a.t = f
a.p = d
g.p = d
g.r = a
c.y = f
c.v = f
c.x = f
c.s = j
c.r = a
c.p = a
d.y = i
j.p = g
j.r = g
j.y = c
f.z = g
assert a.t.z.r.txt == "
|
a"
|
class A:
def __init__(self, txt: str):
self.r: C = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: G = None
self.p: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: E = None
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: G = None
self.v: G = None
self.s: F = None
self.r: B = None
self.x: G = None
self.p: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: C = None
self.y: D = None
self.r: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
i = A("i")
a = B("a")
g = C("g")
c = D("c")
d = E("d")
j = F("j")
f = G("f")
i.r = g
i.y = g
a.t = f
a.p = d
g.p = d
g.r = a
c.y = f
c.v = f
c.x = f
c.s = j
c.r = a
c.p = a
d.y = i
j.p = g
j.r = g
j.y = c
f.z = g
assert a.t.z.r.txt == "a"
|
a
|
f
|
g
|
a
|
x
|
x
|
x
|
x
| 7 | 12 | 7 | 3 | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.